diff --git a/PythonAI/JupyterLab/PythonAI_02.ipynb b/PythonAI/JupyterLab/PythonAI_02.ipynb index 5c03256..ff0e518 100644 --- a/PythonAI/JupyterLab/PythonAI_02.ipynb +++ b/PythonAI/JupyterLab/PythonAI_02.ipynb @@ -10,9 +10,4435 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 1, + "id": "e0b20803-4377-4808-9ba4-c1233afaa3ad", + "metadata": {}, + "outputs": [], + "source": [ + "import numpy as np\n", + "import pandas as pd" + ] + }, + { + "cell_type": "markdown", + "id": "8952bc61-2299-4194-b887-af265e2ae715", + "metadata": {}, + "source": [ + "# " + ] + }, + { + "cell_type": "code", + "execution_count": 8, "id": "cea8feaa-53d9-4eb3-9aa2-0b118bd88d9d", "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "import requests\n", + "import datetime as dt\n", + "yesterday = dt.date.today() - dt.timedelta(days=1)\n", + "api = \"https://earthquake.usgs.gov/fdsnws/event/1/query\"\n", + "payload = {\n", + " \"format\": \"geojson\",\n", + " \"starttime\": yesterday - dt.timedelta(days=21),\n", + " \"endtime\": yesterday\n", + "}\n", + "response = requests.get(api, params=payload)\n", + "response" + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "id": "281db825-3be0-4eec-ad4c-718d643f3887", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "RangeIndex: 6630 entries, 0 to 6629\n", + "Data columns (total 26 columns):\n", + " # Column Non-Null Count Dtype \n", + "--- ------ -------------- ----- \n", + " 0 mag 6629 non-null float64\n", + " 1 place 6630 non-null object \n", + " 2 time 6630 non-null int64 \n", + " 3 updated 6630 non-null int64 \n", + " 4 tz 0 non-null object \n", + " 5 url 6630 non-null object \n", + " 6 detail 6630 non-null object \n", + " 7 felt 454 non-null float64\n", + " 8 cdi 454 non-null float64\n", + " 9 mmi 102 non-null float64\n", + " 10 alert 37 non-null object \n", + " 11 status 6630 non-null object \n", + " 12 tsunami 6630 non-null int64 \n", + " 13 sig 6630 non-null int64 \n", + " 14 net 6630 non-null object \n", + " 15 code 6630 non-null object \n", + " 16 ids 6630 non-null object \n", + " 17 sources 6630 non-null object \n", + " 18 types 6630 non-null object \n", + " 19 nst 5569 non-null float64\n", + " 20 dmin 5568 non-null float64\n", + " 21 rms 6629 non-null float64\n", + " 22 gap 5569 non-null float64\n", + " 23 magType 6629 non-null object \n", + " 24 type 6630 non-null object \n", + " 25 title 6630 non-null object \n", + "dtypes: float64(8), int64(4), object(14)\n", + "memory usage: 1.3+ MB\n" + ] + } + ], + "source": [ + "json = response.json()\n", + "\n", + "data = [quake['properties'] for quake in json['features']]\n", + "data = pd.DataFrame(data)\n", + "data.info()" + ] + }, + { + "cell_type": "markdown", + "id": "2acda05f-fdac-405c-a92f-a17aee1383e5", + "metadata": {}, + "source": [ + "# Czyszczenie i przygotowywanie danych\n", + " - usuwanie duplikatów\n", + " - skalowanie\n", + " - normalizacja i standaryzacja wartości numerycznych (dla algo wrażliwych na skalę wartości)\n", + " - uzupełnianie braków\n", + " - uzupełnianie NaN w zależności od kontekstu\n", + " - konwersja typów\n", + " - najczęściej nietypowe dane są wczytywane jako string, więc jeśli są inne to trzeba je przekonwertować np. na datę" + ] + }, + { + "cell_type": "markdown", + "id": "343d7ceb-d05e-45aa-adb3-766e82c9d183", + "metadata": {}, + "source": [ + "## Jednak czytamy z pliku który został podany przez prowadzącego" + ] + }, + { + "cell_type": "code", + "execution_count": 141, + "id": "56e86530-c7a9-481c-9586-9bfc20bc9cfd", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "(9332, 26)" + ] + }, + "execution_count": 141, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data = pd.read_csv(\"data/earthquakes.csv\")\n", + "data.shape" + ] + }, + { + "cell_type": "code", + "execution_count": 73, + "id": "06b77e4f-2e34-4294-9f0d-54178f0560a4", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "(1866, 26)" + ] + }, + "execution_count": 73, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# maska\n", + "data[data.mag >= 0]\n", + "\n", + "data.loc[(data.tsunami == 1) & (data.alert == 'red')] \n", + "data[data.title.str.contains('Alaska')]['title']\n", + "\n", + "data.loc[data.mag.between(6.5, 8)]\n", + "\n", + "data.loc[data.magType.isin(['mw', 'mwb'])]\n", + "\n", + "data.loc[[data.mag.idxmin(), data.mag.idxmax()]]\n", + "\n", + "data.filter(items=['mag'])\n", + "data.filter(like='mag')\n", + "data.filter(regex=r'^t')\n", + "\n", + "test_data = data.sample(frac=0.2, random_state=123)\n", + "train_data = data.drop(test_data.index)\n", + "\n", + "test_data.shape" + ] + }, + { + "cell_type": "code", + "execution_count": 136, + "id": "2f959ea7-098d-4c85-a3cb-9cb2bc10f660", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
magmag_negative
39-0.10True
49-0.10True
630.10False
790.10False
870.00False
.........
92510.11False
9261-0.02True
9267-0.32True
92800.11False
9305-0.27True
\n", + "

771 rows × 2 columns

\n", + "
" + ], + "text/plain": [ + " mag mag_negative\n", + "39 -0.10 True\n", + "49 -0.10 True\n", + "63 0.10 False\n", + "79 0.10 False\n", + "87 0.00 False\n", + "... ... ...\n", + "9251 0.11 False\n", + "9261 -0.02 True\n", + "9267 -0.32 True\n", + "9280 0.11 False\n", + "9305 -0.27 True\n", + "\n", + "[771 rows x 2 columns]" + ] + }, + "execution_count": 136, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Tworzenie etykiet na podstawie danych w tabeli\n", + "data['mag_negative'] = data.mag < 0\n", + "data[data.mag < 0.2][['mag','mag_negative']]" + ] + }, + { + "cell_type": "code", + "execution_count": 124, + "id": "63581df2-ea46-484e-97df-c376a42b2e9f", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "(9332, 26)" + ] + }, + "execution_count": 124, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data['place'] = data.place.str.replace(\n", + " r'.* of ', '', regex=True # remove anything saying of \n", + ").str.replace(\n", + " 'the ', '' # remove \"the \"\n", + ").str.replace(\n", + " r'CA$', 'California', regex=True # fix California\n", + ").str.replace(\n", + " r'NV$', 'Nevada', regex=True # fix Nevada\n", + ").str.replace(\n", + " r'MX$', 'Mexico', regex=True # fix Mexico\n", + ").str.replace(\n", + " r' region$', '', regex=True # chop off endings with \" region\"\n", + ").str.replace(\n", + " 'northern ', '' # remove \"northern \"\n", + ").str.replace(\n", + " 'Fiji Islands', 'Fiji' # line up the Fiji places\n", + ").str.replace(\n", + " r'^.*, ', '', regex=True # remove anything brefore comma\n", + ").str.strip() # remove any extra spaces\n", + "data.shape" + ] + }, + { + "cell_type": "code", + "execution_count": 108, + "id": "91732b76-8a0c-47f7-8185-bd252f3635bd", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
alertcdicodedetaildminfeltgapidsmagmagType...timetitletsunamitypetypestzupdatedurlin_cain_alaska
1639NaNNaN00660018https://earthquake.usgs.gov/fdsnws/event/1/que...0.2080NaN269.43,nn00660018,0.8ml...1538957373093M 0.8 - 60km NNE of Pahrump, Nevada0earthquake,geoserve,origin,phase-data,-480.01539050747271https://earthquake.usgs.gov/earthquakes/eventp...FalseFalse
8224NaNNaN60297087https://earthquake.usgs.gov/fdsnws/event/1/que...0.3779NaN138.00,uu60297087,1.4ml...1537509006670M 1.4 - 22km NW of Montpelier, Idaho0earthquake,geoserve,origin,phase-data,-420.01537558282160https://earthquake.usgs.gov/earthquakes/eventp...FalseFalse
\n", + "

2 rows × 28 columns

\n", + "
" + ], + "text/plain": [ + " alert cdi code detail \\\n", + "1639 NaN NaN 00660018 https://earthquake.usgs.gov/fdsnws/event/1/que... \n", + "8224 NaN NaN 60297087 https://earthquake.usgs.gov/fdsnws/event/1/que... \n", + "\n", + " dmin felt gap ids mag magType ... time \\\n", + "1639 0.2080 NaN 269.43 ,nn00660018, 0.8 ml ... 1538957373093 \n", + "8224 0.3779 NaN 138.00 ,uu60297087, 1.4 ml ... 1537509006670 \n", + "\n", + " title tsunami type \\\n", + "1639 M 0.8 - 60km NNE of Pahrump, Nevada 0 earthquake \n", + "8224 M 1.4 - 22km NW of Montpelier, Idaho 0 earthquake \n", + "\n", + " types tz updated \\\n", + "1639 ,geoserve,origin,phase-data, -480.0 1539050747271 \n", + "8224 ,geoserve,origin,phase-data, -420.0 1537558282160 \n", + "\n", + " url in_ca in_alaska \n", + "1639 https://earthquake.usgs.gov/earthquakes/eventp... False False \n", + "8224 https://earthquake.usgs.gov/earthquakes/eventp... False False \n", + "\n", + "[2 rows x 28 columns]" + ] + }, + "execution_count": 108, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data.assign(\n", + " in_ca = data.place.str.endswith(\"California\"),\n", + " in_alaska = data.place.str.endswith(\"Alaska\")\n", + ").sample(2)" + ] + }, + { + "cell_type": "code", + "execution_count": 109, + "id": "a1f1a474-0138-4594-af8a-db23c32752f0", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
alertcdicodedetaildminfeltgapidsmagmagType...titletsunamitypetypestzupdatedurlin_cain_alaskaother_places
1914NaNNaN00659912https://earthquake.usgs.gov/fdsnws/event/1/que...0.005NaN92.48,nn00659912,0.8ml...M 0.8 - 13km NW of Virginia City, Nevada0earthquake,geoserve,origin,phase-data,-480.01538938015357https://earthquake.usgs.gov/earthquakes/eventp...FalseFalseTrue
573NaNNaN20277497https://earthquake.usgs.gov/fdsnws/event/1/que...NaNNaNNaN,ak20277497,1.7ml...M 1.7 - 24km NNE of Sterling, Alaska0earthquake,geoserve,origin,-540.01539290268489https://earthquake.usgs.gov/earthquakes/eventp...FalseTrueFalse
\n", + "

2 rows × 29 columns

\n", + "
" + ], + "text/plain": [ + " alert cdi code detail \\\n", + "1914 NaN NaN 00659912 https://earthquake.usgs.gov/fdsnws/event/1/que... \n", + "573 NaN NaN 20277497 https://earthquake.usgs.gov/fdsnws/event/1/que... \n", + "\n", + " dmin felt gap ids mag magType ... \\\n", + "1914 0.005 NaN 92.48 ,nn00659912, 0.8 ml ... \n", + "573 NaN NaN NaN ,ak20277497, 1.7 ml ... \n", + "\n", + " title tsunami type \\\n", + "1914 M 0.8 - 13km NW of Virginia City, Nevada 0 earthquake \n", + "573 M 1.7 - 24km NNE of Sterling, Alaska 0 earthquake \n", + "\n", + " types tz updated \\\n", + "1914 ,geoserve,origin,phase-data, -480.0 1538938015357 \n", + "573 ,geoserve,origin, -540.0 1539290268489 \n", + "\n", + " url in_ca in_alaska \\\n", + "1914 https://earthquake.usgs.gov/earthquakes/eventp... False False \n", + "573 https://earthquake.usgs.gov/earthquakes/eventp... False True \n", + "\n", + " other_places \n", + "1914 True \n", + "573 False \n", + "\n", + "[2 rows x 29 columns]" + ] + }, + "execution_count": 109, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# lambda\n", + "data.assign(\n", + " in_ca = data.place == \"California\",\n", + " in_alaska = data.place == \"Alaska\",\n", + " other_places = lambda x: ~x.in_ca & ~x.in_alaska \n", + ").sample(2)" + ] + }, + { + "cell_type": "code", + "execution_count": 113, + "id": "141b0b4e-d92a-4494-bc2f-804e40a4c0f3", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "place\n", + "Alaska 3665\n", + "California 2861\n", + "Nevada 681\n", + "Hawaii 367\n", + "Puerto Rico 216\n", + " ... \n", + "Colorado 1\n", + "Socotra 1\n", + "Iraq 1\n", + "Somalia 1\n", + "New Mexico 1\n", + "Name: count, Length: 110, dtype: int64" + ] + }, + "execution_count": 113, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data.place.value_counts()" + ] + }, + { + "cell_type": "code", + "execution_count": 114, + "id": "a2984e2d-3394-4b43-ab68-16d8fc13d531", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "((61, 26), (9271, 26), True)" + ] + }, + "execution_count": 114, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# dzielenie setów\n", + "tsunami = data[data.tsunami == 1]\n", + "no_tsunami = data[data.tsunami == 0]\n", + "\n", + "tsunami.shape, no_tsunami.shape, (tsunami+no_tsunami).size == data.size" + ] + }, + { + "cell_type": "code", + "execution_count": 116, + "id": "8fb8866a-eae0-4ce4-a249-3b6dce9bc0ee", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "(9332, 26)" + ] + }, + "execution_count": 116, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "pd.concat([tsunami, no_tsunami]).shape" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "fd163486-227d-4c9c-b341-db792e636bef", + "metadata": {}, + "outputs": [], + "source": [ + "try:\n", + " del data['source']\n", + "except KeyError:\n", + " print(\"Kolumna nie istnieje\")" + ] + }, + { + "cell_type": "code", + "execution_count": 139, + "id": "33d32c58-a81d-4e09-90cc-a1d1421d6e8e", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Kolumna nie istnieje\n" + ] + }, + { + "data": { + "text/plain": [ + "Index(['alert', 'cdi', 'code', 'detail', 'dmin', 'felt', 'gap', 'ids', 'mag',\n", + " 'magType', 'mmi', 'net', 'nst', 'place', 'rms', 'sig', 'sources',\n", + " 'status', 'time', 'title', 'tsunami', 'type', 'types', 'tz', 'updated',\n", + " 'url'],\n", + " dtype='object')" + ] + }, + "execution_count": 139, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "try:\n", + " mag_negative = data.pop('mag_negative')\n", + "except KeyError:\n", + " print(\"Kolumna nie istnieje\")\n", + "data.columns" + ] + }, + { + "cell_type": "code", + "execution_count": 140, + "id": "c85c8110-3cb1-45bf-85e9-5fae2d2b7a12", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
alertmagtimetitletsunami
0NaN1.351539475168010M 1.4 - 9km NE of Aguanga, CA0
1NaN1.291539475129610M 1.3 - 9km NE of Aguanga, CA0
2NaN3.421539475062610M 3.4 - 8km NE of Aguanga, CA0
3NaN0.441539474978070M 0.4 - 9km NE of Aguanga, CA0
4NaN2.161539474716050M 2.2 - 10km NW of Avenal, CA0
\n", + "
" + ], + "text/plain": [ + " alert mag time title tsunami\n", + "0 NaN 1.35 1539475168010 M 1.4 - 9km NE of Aguanga, CA 0\n", + "1 NaN 1.29 1539475129610 M 1.3 - 9km NE of Aguanga, CA 0\n", + "2 NaN 3.42 1539475062610 M 3.4 - 8km NE of Aguanga, CA 0\n", + "3 NaN 0.44 1539474978070 M 0.4 - 9km NE of Aguanga, CA 0\n", + "4 NaN 2.16 1539474716050 M 2.2 - 10km NW of Avenal, CA 0" + ] + }, + "execution_count": 140, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "cols_to_drop = [\n", + " col for col in data.columns\n", + " if col not in ['alert', 'mag', 'title', 'time', 'tsunami']\n", + "]\n", + "data.drop(columns=cols_to_drop).head()" + ] + }, + { + "cell_type": "markdown", + "id": "bf077e35-2ee2-414f-90b4-063e5042a1fd", + "metadata": {}, + "source": [ + "# Ćwiczenia" + ] + }, + { + "cell_type": "code", + "execution_count": 161, + "id": "a5f98a28", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "(9332, 26)" + ] + }, + "execution_count": 161, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data = pd.read_csv(\"data/earthquakes.csv\")\n", + "data.shape" + ] + }, + { + "cell_type": "code", + "execution_count": 162, + "id": "1d4c2c91", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "(9332, 26)" + ] + }, + "execution_count": 162, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data['place'] = data.place.str.replace(\n", + " r'.* of ', '', regex=True # remove anything saying of \n", + ").str.replace(\n", + " 'the ', '' # remove \"the \"\n", + ").str.replace(\n", + " r'CA$', 'California', regex=True # fix California\n", + ").str.replace(\n", + " r'NV$', 'Nevada', regex=True # fix Nevada\n", + ").str.replace(\n", + " r'MX$', 'Mexico', regex=True # fix Mexico\n", + ").str.replace(\n", + " r' region$', '', regex=True # chop off endings with \" region\"\n", + ").str.replace(\n", + " 'northern ', '' # remove \"northern \"\n", + ").str.replace(\n", + " 'Fiji Islands', 'Fiji' # line up the Fiji places\n", + ").str.replace(\n", + " r'^.*, ', '', regex=True # remove anything brefore comma\n", + ").str.strip() # remove any extra spaces\n", + "data.shape" + ] + }, + { + "cell_type": "code", + "execution_count": 155, + "id": "692b5a25-1f4c-4e71-bb30-1922df47016c", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
alertcdicodedetaildminfeltgapidsmagmagType...sourcesstatustimetitletsunamitypetypestzupdatedurl
67NaNNaN1000hbqahttps://earthquake.usgs.gov/fdsnws/event/1/que...1.415NaN72.0,us1000hbqa,4.6mb...,us,reviewed1539448501800M 4.6 - 160km NNW of Nago, Japan0earthquake,geoserve,origin,phase-data,480.01539449501040https://earthquake.usgs.gov/earthquakes/eventp...
713NaNNaN1000hah8https://earthquake.usgs.gov/fdsnws/event/1/que...1.141NaN82.0,us1000hah8,4.7mb...,us,reviewed1539238726290M 4.7 - 139km WSW of Naze, Japan0earthquake,geoserve,origin,phase-data,540.01539240344040https://earthquake.usgs.gov/earthquakes/eventp...
1124NaNNaN1000h9lahttps://earthquake.usgs.gov/fdsnws/event/1/que...1.737NaN135.0,us1000h9la,4.6mb...,us,reviewed1539115120470M 4.6 - 53km ESE of Kamaishi, Japan0earthquake,geoserve,origin,phase-data,540.01539119067040https://earthquake.usgs.gov/earthquakes/eventp...
1309NaNNaN1000h952https://earthquake.usgs.gov/fdsnws/event/1/que...0.897NaN136.0,us1000h952,4.5mb...,us,reviewed1539058606580M 4.5 - 80km ENE of Misawa, Japan0earthquake,geoserve,origin,phase-data,540.01539060436040https://earthquake.usgs.gov/earthquakes/eventp...
1398NaNNaN1000h8zxhttps://earthquake.usgs.gov/fdsnws/event/1/que...0.555NaN124.0,us1000h8zx,4.4mb...,us,reviewed1539034912990M 4.4 - 65km NNE of Hachijo-jima, Japan0earthquake,geoserve,origin,phase-data,540.01539062940040https://earthquake.usgs.gov/earthquakes/eventp...
1422NaN1.01000h8xghttps://earthquake.usgs.gov/fdsnws/event/1/que...0.6861.0129.0,us1000h8xg,4.7mb...,us,reviewed1539028322670M 4.7 - 41km E of Namie, Japan0earthquake,dyfi,geoserve,origin,phase-data,540.01539061047807https://earthquake.usgs.gov/earthquakes/eventp...
1435NaNNaN1000h8vshttps://earthquake.usgs.gov/fdsnws/event/1/que...1.152NaN72.0,us1000h8vs,4.4mb...,us,reviewed1539020712670M 4.4 - 21km E of Tomakomai, Japan0earthquake,geoserve,origin,phase-data,540.01539034924040https://earthquake.usgs.gov/earthquakes/eventp...
1492NaN3.41000h8q7https://earthquake.usgs.gov/fdsnws/event/1/que...1.0594.074.0,us1000h8q7,4.6mb...,us,reviewed1539003238480M 4.6 - 29km E of Tomakomai, Japan0earthquake,dyfi,geoserve,origin,phase-data,540.01539012243124https://earthquake.usgs.gov/earthquakes/eventp...
1563NaNNaN1000h8mjhttps://earthquake.usgs.gov/fdsnws/event/1/que...3.773NaN101.0,us1000h8mj,4.9mb...,us,reviewed1538977532250M 4.9 - 293km ESE of Iwo Jima, Japan0earthquake,geoserve,origin,phase-data,600.01538978864040https://earthquake.usgs.gov/earthquakes/eventp...
1732NaNNaN1000hb41https://earthquake.usgs.gov/fdsnws/event/1/que...1.308NaN154.0,us1000hb41,4.1mb...,us,reviewed1538923896600M 4.1 - 89km NE of Miyako, Japan0earthquake,geoserve,origin,phase-data,600.01539532511040https://earthquake.usgs.gov/earthquakes/eventp...
1875NaNNaN1000h8c2https://earthquake.usgs.gov/fdsnws/event/1/que...1.570NaN82.0,us1000h8c2,4.7mb...,us,reviewed1538881270700M 4.7 - 177km WSW of Chichi-shima, Japan0earthquake,geoserve,origin,phase-data,540.01538882370040https://earthquake.usgs.gov/earthquakes/eventp...
1898NaN3.81000h8b9https://earthquake.usgs.gov/fdsnws/event/1/que...0.51619.066.0,us1000h8b9,4.8mb...,us,reviewed1538874859870M 4.8 - 12km N of Shinshiro, Japan0earthquake,dyfi,geoserve,origin,phase-data,540.01539319234277https://earthquake.usgs.gov/earthquakes/eventp...
2053NaNNaN1000h84nhttps://earthquake.usgs.gov/fdsnws/event/1/que...1.108NaN85.0,us1000h84n,4.8mb...,us,reviewed1538839123780M 4.8 - 147km E of Nago, Japan0earthquake,geoserve,origin,phase-data,540.01538840634040https://earthquake.usgs.gov/earthquakes/eventp...
2191NaN2.71000h800https://earthquake.usgs.gov/fdsnws/event/1/que...1.1341.075.0,us1000h800,4.6mb...,us,reviewed1538799265130M 4.6 - 27km ESE of Chitose, Japan0earthquake,dyfi,geoserve,origin,phase-data,540.01538811844812https://earthquake.usgs.gov/earthquakes/eventp...
2564NaNNaN1000hamshttps://earthquake.usgs.gov/fdsnws/event/1/que...1.187NaN118.0,us1000hams,4.6mb...,us,reviewed1538701532340M 4.6 - 162km E of Nago, Japan0earthquake,geoserve,origin,phase-data,540.01539306889040https://earthquake.usgs.gov/earthquakes/eventp...
2576NaN3.11000h7cnhttps://earthquake.usgs.gov/fdsnws/event/1/que...1.0157.033.0,us1000h7cn,5.4mb...,us,reviewed1538697528010M 5.4 - 37km E of Tomakomai, Japan0earthquake,dyfi,geoserve,moment-tensor,origin,phase-data,540.01538757701040https://earthquake.usgs.gov/earthquakes/eventp...
2688NaNNaN1000hajwhttps://earthquake.usgs.gov/fdsnws/event/1/que...1.539NaN41.0,us1000hajw,4.0mb...,us,reviewed1538673414250M 4.0 - 51km WNW of Mikuni, Japan0earthquake,geoserve,origin,phase-data,540.01539363073040https://earthquake.usgs.gov/earthquakes/eventp...
2824NaNNaN1000h6vjhttps://earthquake.usgs.gov/fdsnws/event/1/que...2.125NaN131.0,us1000h6vj,4.4mb...,us,reviewed1538641253520M 4.4 - 51km SSE of Kushima, Japan0earthquake,geoserve,origin,phase-data,540.01538642265040https://earthquake.usgs.gov/earthquakes/eventp...
3072NaN3.11000h6achttps://earthquake.usgs.gov/fdsnws/event/1/que...2.08215.0118.0,us1000h6ac,4.9mb...,us,reviewed1538579732490M 4.9 - 15km ENE of Hasaki, Japan0earthquake,dyfi,geoserve,origin,phase-data,540.01539230846942https://earthquake.usgs.gov/earthquakes/eventp...
3632NaN3.11000h5ghhttps://earthquake.usgs.gov/fdsnws/event/1/que...1.44919.0117.0,us1000h5gh,4.9mb...,us,reviewed1538450871260M 4.9 - 53km ESE of Hitachi, Japan0earthquake,dyfi,geoserve,origin,phase-data,540.01538581746455https://earthquake.usgs.gov/earthquakes/eventp...
3771NaNNaN1000h7n9https://earthquake.usgs.gov/fdsnws/event/1/que...1.925NaN167.0,us1000h7n9,4.5mb...,us,reviewed1538422163330M 4.5 - 87km ESE of Kamaishi, Japan0earthquake,geoserve,origin,phase-data,600.01539026579040https://earthquake.usgs.gov/earthquakes/eventp...
3851NaNNaN1000h7mmhttps://earthquake.usgs.gov/fdsnws/event/1/que...1.288NaN98.0,us1000h7mm,4.7mb...,us,reviewed1538406431250M 4.7 - 173km E of Nago, Japan0earthquake,geoserve,origin,phase-data,540.01539118704040https://earthquake.usgs.gov/earthquakes/eventp...
4082NaN4.11000h4uwhttps://earthquake.usgs.gov/fdsnws/event/1/que...1.1787.079.0,us1000h4uw,4.8mb...,us,reviewed1538360525340M 4.8 - 31km E of Chitose, Japan0earthquake,dyfi,geoserve,origin,phase-data,540.01539136962751https://earthquake.usgs.gov/earthquakes/eventp...
4192NaN2.21000h4r4https://earthquake.usgs.gov/fdsnws/event/1/que...0.8831.0109.0,us1000h4r4,4.3mb...,us,reviewed1538336412660M 4.3 - 50km NNE of Shizunai, Japan0earthquake,dyfi,geoserve,origin,phase-data,540.01538367048207https://earthquake.usgs.gov/earthquakes/eventp...
4257NaNNaN1000h7kbhttps://earthquake.usgs.gov/fdsnws/event/1/que...4.830NaN89.0,us1000h7kb,4.6mb...,us,reviewed1538323620710M 4.6 - 213km SE of Hachijo-jima, Japan0earthquake,geoserve,origin,phase-data,540.01539103992040https://earthquake.usgs.gov/earthquakes/eventp...
4846NaN2.71000h479https://earthquake.usgs.gov/fdsnws/event/1/que...1.1633.075.0,us1000h479,4.5mb...,us,reviewed1538213154900M 4.5 - 25km ESE of Chitose, Japan0earthquake,dyfi,geoserve,origin,phase-data,540.01538294859215https://earthquake.usgs.gov/earthquakes/eventp...
5655NaNNaN1000h382https://earthquake.usgs.gov/fdsnws/event/1/que...1.105NaN131.0,us1000h382,4.6mb...,us,reviewed1538048754220M 4.6 - 156km ENE of Nago, Japan0earthquake,geoserve,origin,phase-data,540.01538050682040https://earthquake.usgs.gov/earthquakes/eventp...
5915NaNNaN1000h5rxhttps://earthquake.usgs.gov/fdsnws/event/1/que...2.044NaN157.0,us1000h5rx,4.4mb...,us,reviewed1538003928830M 4.4 - 78km ESE of Yamada, Japan0earthquake,geoserve,origin,phase-data,600.01539400764040https://earthquake.usgs.gov/earthquakes/eventp...
6769NaN2.72000hjkwhttps://earthquake.usgs.gov/fdsnws/event/1/que...1.4261.0135.0,us2000hjkw,4.8mb...,us,reviewed1537846261100M 4.8 - 58km SE of Ofunato, Japan0earthquake,dyfi,geoserve,origin,phase-data,540.01537908537284https://earthquake.usgs.gov/earthquakes/eventp...
6961NaNNaN2000hjc4https://earthquake.usgs.gov/fdsnws/event/1/que...2.482NaN116.0,us2000hjc4,4.7mb...,us,reviewed1537799121060M 4.7 - 46km ENE of Hirara, Japan0earthquake,geoserve,origin,phase-data,480.01538419499040https://earthquake.usgs.gov/earthquakes/eventp...
7001NaNNaN1000h3vthttps://earthquake.usgs.gov/fdsnws/event/1/que...1.418NaN87.0,us1000h3vt,4.3mb...,us,reviewed1537792438760M 4.3 - 25km ESE of Muroran, Japan0earthquake,geoserve,origin,phase-data,540.01538375544040https://earthquake.usgs.gov/earthquakes/eventp...
7066NaN3.82000hja7https://earthquake.usgs.gov/fdsnws/event/1/que...1.0343.075.0,us2000hja7,4.4mb...,us,reviewed1537780626560M 4.4 - 35km E of Tomakomai, Japan0earthquake,dyfi,geoserve,origin,phase-data,540.01538238102308https://earthquake.usgs.gov/earthquakes/eventp...
7145NaNNaN2000hj80https://earthquake.usgs.gov/fdsnws/event/1/que...1.242NaN140.0,us2000hj80,4.1mb...,us,reviewed1537764836900M 4.1 - 97km N of Mombetsu, Japan0earthquake,geoserve,origin,phase-data,600.01538716171040https://earthquake.usgs.gov/earthquakes/eventp...
7261NaN2.72000hj4dhttps://earthquake.usgs.gov/fdsnws/event/1/que...2.4212.0106.0,us2000hj4d,4.1mb...,us,reviewed1537738421220M 4.1 - 64km ESE of Owase, Japan0earthquake,dyfi,geoserve,origin,phase-data,540.01537740803336https://earthquake.usgs.gov/earthquakes/eventp...
7381NaN3.32000hj04https://earthquake.usgs.gov/fdsnws/event/1/que...1.37310.0137.0,us2000hj04,4.6mb...,us,reviewed1537715134540M 4.6 - 9km ENE of Funaishikawa, Japan0earthquake,dyfi,geoserve,origin,phase-data,540.01538332135138https://earthquake.usgs.gov/earthquakes/eventp...
7408NaN1.02000hizbhttps://earthquake.usgs.gov/fdsnws/event/1/que...2.3961.0137.0,us2000hizb,4.8mb...,us,reviewed1537709390500M 4.8 - 65km SSE of Hasaki, Japan0earthquake,dyfi,geoserve,origin,phase-data,540.01538329898836https://earthquake.usgs.gov/earthquakes/eventp...
7652NaNNaN1000h3qwhttps://earthquake.usgs.gov/fdsnws/event/1/que...1.228NaN93.0,us1000h3qw,4.2mb...,us,reviewed1537654508260M 4.2 - 164km E of Nago, Japan0earthquake,geoserve,origin,phase-data,540.01539135424040https://earthquake.usgs.gov/earthquakes/eventp...
7696NaNNaN1000h3qphttps://earthquake.usgs.gov/fdsnws/event/1/que...0.223NaN146.0,us1000h3qp,4.0mb...,us,reviewed1537640754840M 4.0 - 65km E of Shizunai, Japan0earthquake,geoserve,origin,phase-data,540.01539294775040https://earthquake.usgs.gov/earthquakes/eventp...
7807NaNNaN1000h3qbhttps://earthquake.usgs.gov/fdsnws/event/1/que...0.571NaN124.0,us1000h3qb,4.4mb...,us,reviewed1537619327220M 4.4 - 67km NNE of Hachijo-jima, Japan0earthquake,geoserve,origin,phase-data,540.01538226419040https://earthquake.usgs.gov/earthquakes/eventp...
8071NaNNaN2000hic7https://earthquake.usgs.gov/fdsnws/event/1/que...2.666NaN150.0,us2000hic7,4.4mb...,us,reviewed1537550307820M 4.4 - 67km E of Nemuro, Japan0earthquake,geoserve,origin,phase-data,600.01539122080040https://earthquake.usgs.gov/earthquakes/eventp...
8311NaNNaN1000h3avhttps://earthquake.usgs.gov/fdsnws/event/1/que...1.230NaN95.0,us1000h3av,4.4mb...,us,reviewed1537487811890M 4.4 - 166km E of Nago, Japan0earthquake,geoserve,origin,phase-data,540.01538880454040https://earthquake.usgs.gov/earthquakes/eventp...
8324NaNNaN2000hhxahttps://earthquake.usgs.gov/fdsnws/event/1/que...1.234NaN82.0,us2000hhxa,4.6mb...,us,reviewed1537484762840M 4.6 - 167km E of Nago, Japan0earthquake,geoserve,origin,phase-data,540.01538969995040https://earthquake.usgs.gov/earthquakes/eventp...
8327NaNNaN2000hhx3https://earthquake.usgs.gov/fdsnws/event/1/que...1.068NaN89.0,us2000hhx3,4.2mb...,us,reviewed1537484169100M 4.2 - 34km ESE of Chitose, Japan0earthquake,geoserve,origin,phase-data,540.01538870822040https://earthquake.usgs.gov/earthquakes/eventp...
8376NaNNaN1000h3amhttps://earthquake.usgs.gov/fdsnws/event/1/que...1.272NaN91.0,us1000h3am,4.4mb...,us,reviewed1537470382450M 4.4 - 171km E of Nago, Japan0earthquake,geoserve,origin,phase-data,540.01539464832040https://earthquake.usgs.gov/earthquakes/eventp...
8431NaNNaN2000hhlfhttps://earthquake.usgs.gov/fdsnws/event/1/que...1.270NaN95.0,us2000hhlf,4.6mb...,us,reviewed1537455447970M 4.6 - 171km E of Nago, Japan0earthquake,geoserve,origin,phase-data,540.01537457187040https://earthquake.usgs.gov/earthquakes/eventp...
8550NaNNaN2000hhgjhttps://earthquake.usgs.gov/fdsnws/event/1/que...1.844NaN164.0,us2000hhgj,4.4mb...,us,reviewed1537430889800M 4.4 - 105km ENE of Miyako, Japan0earthquake,geoserve,origin,phase-data,600.01537510968040https://earthquake.usgs.gov/earthquakes/eventp...
8555NaNNaN2000hhgahttps://earthquake.usgs.gov/fdsnws/event/1/que...1.825NaN129.0,us2000hhga,4.6mb...,us,reviewed1537429466000M 4.6 - 105km ENE of Miyako, Japan0earthquake,geoserve,origin,phase-data,600.01537430366040https://earthquake.usgs.gov/earthquakes/eventp...
8687NaNNaN1000h2t5https://earthquake.usgs.gov/fdsnws/event/1/que...0.485NaN147.0,us1000h2t5,4.2mb...,us,reviewed1537392267190M 4.2 - 39km NE of Misawa, Japan0earthquake,geoserve,origin,phase-data,540.01538890503040https://earthquake.usgs.gov/earthquakes/eventp...
9070NaNNaN2000hgfjhttps://earthquake.usgs.gov/fdsnws/event/1/que...2.315NaN141.0,us2000hgfj,4.7mb...,us,reviewed1537289668660M 4.7 - 96km E of Hasaki, Japan0earthquake,geoserve,origin,phase-data,540.01537976170040https://earthquake.usgs.gov/earthquakes/eventp...
9198NaN3.42000hgaahttps://earthquake.usgs.gov/fdsnws/event/1/que...1.36785.0115.0,us2000hgaa,4.6mb...,us,reviewed1537258271290M 4.6 - 3km ESE of Sugito, Japan0earthquake,dyfi,geoserve,origin,phase-data,540.01538220844777https://earthquake.usgs.gov/earthquakes/eventp...
\n", + "

50 rows × 26 columns

\n", + "
" + ], + "text/plain": [ + " alert cdi code detail \\\n", + "67 NaN NaN 1000hbqa https://earthquake.usgs.gov/fdsnws/event/1/que... \n", + "713 NaN NaN 1000hah8 https://earthquake.usgs.gov/fdsnws/event/1/que... \n", + "1124 NaN NaN 1000h9la https://earthquake.usgs.gov/fdsnws/event/1/que... \n", + "1309 NaN NaN 1000h952 https://earthquake.usgs.gov/fdsnws/event/1/que... \n", + "1398 NaN NaN 1000h8zx https://earthquake.usgs.gov/fdsnws/event/1/que... \n", + "1422 NaN 1.0 1000h8xg https://earthquake.usgs.gov/fdsnws/event/1/que... \n", + "1435 NaN NaN 1000h8vs https://earthquake.usgs.gov/fdsnws/event/1/que... \n", + "1492 NaN 3.4 1000h8q7 https://earthquake.usgs.gov/fdsnws/event/1/que... \n", + "1563 NaN NaN 1000h8mj https://earthquake.usgs.gov/fdsnws/event/1/que... \n", + "1732 NaN NaN 1000hb41 https://earthquake.usgs.gov/fdsnws/event/1/que... \n", + "1875 NaN NaN 1000h8c2 https://earthquake.usgs.gov/fdsnws/event/1/que... \n", + "1898 NaN 3.8 1000h8b9 https://earthquake.usgs.gov/fdsnws/event/1/que... \n", + "2053 NaN NaN 1000h84n https://earthquake.usgs.gov/fdsnws/event/1/que... \n", + "2191 NaN 2.7 1000h800 https://earthquake.usgs.gov/fdsnws/event/1/que... \n", + "2564 NaN NaN 1000hams https://earthquake.usgs.gov/fdsnws/event/1/que... \n", + "2576 NaN 3.1 1000h7cn https://earthquake.usgs.gov/fdsnws/event/1/que... \n", + "2688 NaN NaN 1000hajw https://earthquake.usgs.gov/fdsnws/event/1/que... \n", + "2824 NaN NaN 1000h6vj https://earthquake.usgs.gov/fdsnws/event/1/que... \n", + "3072 NaN 3.1 1000h6ac https://earthquake.usgs.gov/fdsnws/event/1/que... \n", + "3632 NaN 3.1 1000h5gh https://earthquake.usgs.gov/fdsnws/event/1/que... \n", + "3771 NaN NaN 1000h7n9 https://earthquake.usgs.gov/fdsnws/event/1/que... \n", + "3851 NaN NaN 1000h7mm https://earthquake.usgs.gov/fdsnws/event/1/que... \n", + "4082 NaN 4.1 1000h4uw https://earthquake.usgs.gov/fdsnws/event/1/que... \n", + "4192 NaN 2.2 1000h4r4 https://earthquake.usgs.gov/fdsnws/event/1/que... \n", + "4257 NaN NaN 1000h7kb https://earthquake.usgs.gov/fdsnws/event/1/que... \n", + "4846 NaN 2.7 1000h479 https://earthquake.usgs.gov/fdsnws/event/1/que... \n", + "5655 NaN NaN 1000h382 https://earthquake.usgs.gov/fdsnws/event/1/que... \n", + "5915 NaN NaN 1000h5rx https://earthquake.usgs.gov/fdsnws/event/1/que... \n", + "6769 NaN 2.7 2000hjkw https://earthquake.usgs.gov/fdsnws/event/1/que... \n", + "6961 NaN NaN 2000hjc4 https://earthquake.usgs.gov/fdsnws/event/1/que... \n", + "7001 NaN NaN 1000h3vt https://earthquake.usgs.gov/fdsnws/event/1/que... \n", + "7066 NaN 3.8 2000hja7 https://earthquake.usgs.gov/fdsnws/event/1/que... \n", + "7145 NaN NaN 2000hj80 https://earthquake.usgs.gov/fdsnws/event/1/que... \n", + "7261 NaN 2.7 2000hj4d https://earthquake.usgs.gov/fdsnws/event/1/que... \n", + "7381 NaN 3.3 2000hj04 https://earthquake.usgs.gov/fdsnws/event/1/que... \n", + "7408 NaN 1.0 2000hizb https://earthquake.usgs.gov/fdsnws/event/1/que... \n", + "7652 NaN NaN 1000h3qw https://earthquake.usgs.gov/fdsnws/event/1/que... \n", + "7696 NaN NaN 1000h3qp https://earthquake.usgs.gov/fdsnws/event/1/que... \n", + "7807 NaN NaN 1000h3qb https://earthquake.usgs.gov/fdsnws/event/1/que... \n", + "8071 NaN NaN 2000hic7 https://earthquake.usgs.gov/fdsnws/event/1/que... \n", + "8311 NaN NaN 1000h3av https://earthquake.usgs.gov/fdsnws/event/1/que... \n", + "8324 NaN NaN 2000hhxa https://earthquake.usgs.gov/fdsnws/event/1/que... \n", + "8327 NaN NaN 2000hhx3 https://earthquake.usgs.gov/fdsnws/event/1/que... \n", + "8376 NaN NaN 1000h3am https://earthquake.usgs.gov/fdsnws/event/1/que... \n", + "8431 NaN NaN 2000hhlf https://earthquake.usgs.gov/fdsnws/event/1/que... \n", + "8550 NaN NaN 2000hhgj https://earthquake.usgs.gov/fdsnws/event/1/que... \n", + "8555 NaN NaN 2000hhga https://earthquake.usgs.gov/fdsnws/event/1/que... \n", + "8687 NaN NaN 1000h2t5 https://earthquake.usgs.gov/fdsnws/event/1/que... \n", + "9070 NaN NaN 2000hgfj https://earthquake.usgs.gov/fdsnws/event/1/que... \n", + "9198 NaN 3.4 2000hgaa https://earthquake.usgs.gov/fdsnws/event/1/que... \n", + "\n", + " dmin felt gap ids mag magType ... sources status \\\n", + "67 1.415 NaN 72.0 ,us1000hbqa, 4.6 mb ... ,us, reviewed \n", + "713 1.141 NaN 82.0 ,us1000hah8, 4.7 mb ... ,us, reviewed \n", + "1124 1.737 NaN 135.0 ,us1000h9la, 4.6 mb ... ,us, reviewed \n", + "1309 0.897 NaN 136.0 ,us1000h952, 4.5 mb ... ,us, reviewed \n", + "1398 0.555 NaN 124.0 ,us1000h8zx, 4.4 mb ... ,us, reviewed \n", + "1422 0.686 1.0 129.0 ,us1000h8xg, 4.7 mb ... ,us, reviewed \n", + "1435 1.152 NaN 72.0 ,us1000h8vs, 4.4 mb ... ,us, reviewed \n", + "1492 1.059 4.0 74.0 ,us1000h8q7, 4.6 mb ... ,us, reviewed \n", + "1563 3.773 NaN 101.0 ,us1000h8mj, 4.9 mb ... ,us, reviewed \n", + "1732 1.308 NaN 154.0 ,us1000hb41, 4.1 mb ... ,us, reviewed \n", + "1875 1.570 NaN 82.0 ,us1000h8c2, 4.7 mb ... ,us, reviewed \n", + "1898 0.516 19.0 66.0 ,us1000h8b9, 4.8 mb ... ,us, reviewed \n", + "2053 1.108 NaN 85.0 ,us1000h84n, 4.8 mb ... ,us, reviewed \n", + "2191 1.134 1.0 75.0 ,us1000h800, 4.6 mb ... ,us, reviewed \n", + "2564 1.187 NaN 118.0 ,us1000hams, 4.6 mb ... ,us, reviewed \n", + "2576 1.015 7.0 33.0 ,us1000h7cn, 5.4 mb ... ,us, reviewed \n", + "2688 1.539 NaN 41.0 ,us1000hajw, 4.0 mb ... ,us, reviewed \n", + "2824 2.125 NaN 131.0 ,us1000h6vj, 4.4 mb ... ,us, reviewed \n", + "3072 2.082 15.0 118.0 ,us1000h6ac, 4.9 mb ... ,us, reviewed \n", + "3632 1.449 19.0 117.0 ,us1000h5gh, 4.9 mb ... ,us, reviewed \n", + "3771 1.925 NaN 167.0 ,us1000h7n9, 4.5 mb ... ,us, reviewed \n", + "3851 1.288 NaN 98.0 ,us1000h7mm, 4.7 mb ... ,us, reviewed \n", + "4082 1.178 7.0 79.0 ,us1000h4uw, 4.8 mb ... ,us, reviewed \n", + "4192 0.883 1.0 109.0 ,us1000h4r4, 4.3 mb ... ,us, reviewed \n", + "4257 4.830 NaN 89.0 ,us1000h7kb, 4.6 mb ... ,us, reviewed \n", + "4846 1.163 3.0 75.0 ,us1000h479, 4.5 mb ... ,us, reviewed \n", + "5655 1.105 NaN 131.0 ,us1000h382, 4.6 mb ... ,us, reviewed \n", + "5915 2.044 NaN 157.0 ,us1000h5rx, 4.4 mb ... ,us, reviewed \n", + "6769 1.426 1.0 135.0 ,us2000hjkw, 4.8 mb ... ,us, reviewed \n", + "6961 2.482 NaN 116.0 ,us2000hjc4, 4.7 mb ... ,us, reviewed \n", + "7001 1.418 NaN 87.0 ,us1000h3vt, 4.3 mb ... ,us, reviewed \n", + "7066 1.034 3.0 75.0 ,us2000hja7, 4.4 mb ... ,us, reviewed \n", + "7145 1.242 NaN 140.0 ,us2000hj80, 4.1 mb ... ,us, reviewed \n", + "7261 2.421 2.0 106.0 ,us2000hj4d, 4.1 mb ... ,us, reviewed \n", + "7381 1.373 10.0 137.0 ,us2000hj04, 4.6 mb ... ,us, reviewed \n", + "7408 2.396 1.0 137.0 ,us2000hizb, 4.8 mb ... ,us, reviewed \n", + "7652 1.228 NaN 93.0 ,us1000h3qw, 4.2 mb ... ,us, reviewed \n", + "7696 0.223 NaN 146.0 ,us1000h3qp, 4.0 mb ... ,us, reviewed \n", + "7807 0.571 NaN 124.0 ,us1000h3qb, 4.4 mb ... ,us, reviewed \n", + "8071 2.666 NaN 150.0 ,us2000hic7, 4.4 mb ... ,us, reviewed \n", + "8311 1.230 NaN 95.0 ,us1000h3av, 4.4 mb ... ,us, reviewed \n", + "8324 1.234 NaN 82.0 ,us2000hhxa, 4.6 mb ... ,us, reviewed \n", + "8327 1.068 NaN 89.0 ,us2000hhx3, 4.2 mb ... ,us, reviewed \n", + "8376 1.272 NaN 91.0 ,us1000h3am, 4.4 mb ... ,us, reviewed \n", + "8431 1.270 NaN 95.0 ,us2000hhlf, 4.6 mb ... ,us, reviewed \n", + "8550 1.844 NaN 164.0 ,us2000hhgj, 4.4 mb ... ,us, reviewed \n", + "8555 1.825 NaN 129.0 ,us2000hhga, 4.6 mb ... ,us, reviewed \n", + "8687 0.485 NaN 147.0 ,us1000h2t5, 4.2 mb ... ,us, reviewed \n", + "9070 2.315 NaN 141.0 ,us2000hgfj, 4.7 mb ... ,us, reviewed \n", + "9198 1.367 85.0 115.0 ,us2000hgaa, 4.6 mb ... ,us, reviewed \n", + "\n", + " time title tsunami \\\n", + "67 1539448501800 M 4.6 - 160km NNW of Nago, Japan 0 \n", + "713 1539238726290 M 4.7 - 139km WSW of Naze, Japan 0 \n", + "1124 1539115120470 M 4.6 - 53km ESE of Kamaishi, Japan 0 \n", + "1309 1539058606580 M 4.5 - 80km ENE of Misawa, Japan 0 \n", + "1398 1539034912990 M 4.4 - 65km NNE of Hachijo-jima, Japan 0 \n", + "1422 1539028322670 M 4.7 - 41km E of Namie, Japan 0 \n", + "1435 1539020712670 M 4.4 - 21km E of Tomakomai, Japan 0 \n", + "1492 1539003238480 M 4.6 - 29km E of Tomakomai, Japan 0 \n", + "1563 1538977532250 M 4.9 - 293km ESE of Iwo Jima, Japan 0 \n", + "1732 1538923896600 M 4.1 - 89km NE of Miyako, Japan 0 \n", + "1875 1538881270700 M 4.7 - 177km WSW of Chichi-shima, Japan 0 \n", + "1898 1538874859870 M 4.8 - 12km N of Shinshiro, Japan 0 \n", + "2053 1538839123780 M 4.8 - 147km E of Nago, Japan 0 \n", + "2191 1538799265130 M 4.6 - 27km ESE of Chitose, Japan 0 \n", + "2564 1538701532340 M 4.6 - 162km E of Nago, Japan 0 \n", + "2576 1538697528010 M 5.4 - 37km E of Tomakomai, Japan 0 \n", + "2688 1538673414250 M 4.0 - 51km WNW of Mikuni, Japan 0 \n", + "2824 1538641253520 M 4.4 - 51km SSE of Kushima, Japan 0 \n", + "3072 1538579732490 M 4.9 - 15km ENE of Hasaki, Japan 0 \n", + "3632 1538450871260 M 4.9 - 53km ESE of Hitachi, Japan 0 \n", + "3771 1538422163330 M 4.5 - 87km ESE of Kamaishi, Japan 0 \n", + "3851 1538406431250 M 4.7 - 173km E of Nago, Japan 0 \n", + "4082 1538360525340 M 4.8 - 31km E of Chitose, Japan 0 \n", + "4192 1538336412660 M 4.3 - 50km NNE of Shizunai, Japan 0 \n", + "4257 1538323620710 M 4.6 - 213km SE of Hachijo-jima, Japan 0 \n", + "4846 1538213154900 M 4.5 - 25km ESE of Chitose, Japan 0 \n", + "5655 1538048754220 M 4.6 - 156km ENE of Nago, Japan 0 \n", + "5915 1538003928830 M 4.4 - 78km ESE of Yamada, Japan 0 \n", + "6769 1537846261100 M 4.8 - 58km SE of Ofunato, Japan 0 \n", + "6961 1537799121060 M 4.7 - 46km ENE of Hirara, Japan 0 \n", + "7001 1537792438760 M 4.3 - 25km ESE of Muroran, Japan 0 \n", + "7066 1537780626560 M 4.4 - 35km E of Tomakomai, Japan 0 \n", + "7145 1537764836900 M 4.1 - 97km N of Mombetsu, Japan 0 \n", + "7261 1537738421220 M 4.1 - 64km ESE of Owase, Japan 0 \n", + "7381 1537715134540 M 4.6 - 9km ENE of Funaishikawa, Japan 0 \n", + "7408 1537709390500 M 4.8 - 65km SSE of Hasaki, Japan 0 \n", + "7652 1537654508260 M 4.2 - 164km E of Nago, Japan 0 \n", + "7696 1537640754840 M 4.0 - 65km E of Shizunai, Japan 0 \n", + "7807 1537619327220 M 4.4 - 67km NNE of Hachijo-jima, Japan 0 \n", + "8071 1537550307820 M 4.4 - 67km E of Nemuro, Japan 0 \n", + "8311 1537487811890 M 4.4 - 166km E of Nago, Japan 0 \n", + "8324 1537484762840 M 4.6 - 167km E of Nago, Japan 0 \n", + "8327 1537484169100 M 4.2 - 34km ESE of Chitose, Japan 0 \n", + "8376 1537470382450 M 4.4 - 171km E of Nago, Japan 0 \n", + "8431 1537455447970 M 4.6 - 171km E of Nago, Japan 0 \n", + "8550 1537430889800 M 4.4 - 105km ENE of Miyako, Japan 0 \n", + "8555 1537429466000 M 4.6 - 105km ENE of Miyako, Japan 0 \n", + "8687 1537392267190 M 4.2 - 39km NE of Misawa, Japan 0 \n", + "9070 1537289668660 M 4.7 - 96km E of Hasaki, Japan 0 \n", + "9198 1537258271290 M 4.6 - 3km ESE of Sugito, Japan 0 \n", + "\n", + " type types tz \\\n", + "67 earthquake ,geoserve,origin,phase-data, 480.0 \n", + "713 earthquake ,geoserve,origin,phase-data, 540.0 \n", + "1124 earthquake ,geoserve,origin,phase-data, 540.0 \n", + "1309 earthquake ,geoserve,origin,phase-data, 540.0 \n", + "1398 earthquake ,geoserve,origin,phase-data, 540.0 \n", + "1422 earthquake ,dyfi,geoserve,origin,phase-data, 540.0 \n", + "1435 earthquake ,geoserve,origin,phase-data, 540.0 \n", + "1492 earthquake ,dyfi,geoserve,origin,phase-data, 540.0 \n", + "1563 earthquake ,geoserve,origin,phase-data, 600.0 \n", + "1732 earthquake ,geoserve,origin,phase-data, 600.0 \n", + "1875 earthquake ,geoserve,origin,phase-data, 540.0 \n", + "1898 earthquake ,dyfi,geoserve,origin,phase-data, 540.0 \n", + "2053 earthquake ,geoserve,origin,phase-data, 540.0 \n", + "2191 earthquake ,dyfi,geoserve,origin,phase-data, 540.0 \n", + "2564 earthquake ,geoserve,origin,phase-data, 540.0 \n", + "2576 earthquake ,dyfi,geoserve,moment-tensor,origin,phase-data, 540.0 \n", + "2688 earthquake ,geoserve,origin,phase-data, 540.0 \n", + "2824 earthquake ,geoserve,origin,phase-data, 540.0 \n", + "3072 earthquake ,dyfi,geoserve,origin,phase-data, 540.0 \n", + "3632 earthquake ,dyfi,geoserve,origin,phase-data, 540.0 \n", + "3771 earthquake ,geoserve,origin,phase-data, 600.0 \n", + "3851 earthquake ,geoserve,origin,phase-data, 540.0 \n", + "4082 earthquake ,dyfi,geoserve,origin,phase-data, 540.0 \n", + "4192 earthquake ,dyfi,geoserve,origin,phase-data, 540.0 \n", + "4257 earthquake ,geoserve,origin,phase-data, 540.0 \n", + "4846 earthquake ,dyfi,geoserve,origin,phase-data, 540.0 \n", + "5655 earthquake ,geoserve,origin,phase-data, 540.0 \n", + "5915 earthquake ,geoserve,origin,phase-data, 600.0 \n", + "6769 earthquake ,dyfi,geoserve,origin,phase-data, 540.0 \n", + "6961 earthquake ,geoserve,origin,phase-data, 480.0 \n", + "7001 earthquake ,geoserve,origin,phase-data, 540.0 \n", + "7066 earthquake ,dyfi,geoserve,origin,phase-data, 540.0 \n", + "7145 earthquake ,geoserve,origin,phase-data, 600.0 \n", + "7261 earthquake ,dyfi,geoserve,origin,phase-data, 540.0 \n", + "7381 earthquake ,dyfi,geoserve,origin,phase-data, 540.0 \n", + "7408 earthquake ,dyfi,geoserve,origin,phase-data, 540.0 \n", + "7652 earthquake ,geoserve,origin,phase-data, 540.0 \n", + "7696 earthquake ,geoserve,origin,phase-data, 540.0 \n", + "7807 earthquake ,geoserve,origin,phase-data, 540.0 \n", + "8071 earthquake ,geoserve,origin,phase-data, 600.0 \n", + "8311 earthquake ,geoserve,origin,phase-data, 540.0 \n", + "8324 earthquake ,geoserve,origin,phase-data, 540.0 \n", + "8327 earthquake ,geoserve,origin,phase-data, 540.0 \n", + "8376 earthquake ,geoserve,origin,phase-data, 540.0 \n", + "8431 earthquake ,geoserve,origin,phase-data, 540.0 \n", + "8550 earthquake ,geoserve,origin,phase-data, 600.0 \n", + "8555 earthquake ,geoserve,origin,phase-data, 600.0 \n", + "8687 earthquake ,geoserve,origin,phase-data, 540.0 \n", + "9070 earthquake ,geoserve,origin,phase-data, 540.0 \n", + "9198 earthquake ,dyfi,geoserve,origin,phase-data, 540.0 \n", + "\n", + " updated url \n", + "67 1539449501040 https://earthquake.usgs.gov/earthquakes/eventp... \n", + "713 1539240344040 https://earthquake.usgs.gov/earthquakes/eventp... \n", + "1124 1539119067040 https://earthquake.usgs.gov/earthquakes/eventp... \n", + "1309 1539060436040 https://earthquake.usgs.gov/earthquakes/eventp... \n", + "1398 1539062940040 https://earthquake.usgs.gov/earthquakes/eventp... \n", + "1422 1539061047807 https://earthquake.usgs.gov/earthquakes/eventp... \n", + "1435 1539034924040 https://earthquake.usgs.gov/earthquakes/eventp... \n", + "1492 1539012243124 https://earthquake.usgs.gov/earthquakes/eventp... \n", + "1563 1538978864040 https://earthquake.usgs.gov/earthquakes/eventp... \n", + "1732 1539532511040 https://earthquake.usgs.gov/earthquakes/eventp... \n", + "1875 1538882370040 https://earthquake.usgs.gov/earthquakes/eventp... \n", + "1898 1539319234277 https://earthquake.usgs.gov/earthquakes/eventp... \n", + "2053 1538840634040 https://earthquake.usgs.gov/earthquakes/eventp... \n", + "2191 1538811844812 https://earthquake.usgs.gov/earthquakes/eventp... \n", + "2564 1539306889040 https://earthquake.usgs.gov/earthquakes/eventp... \n", + "2576 1538757701040 https://earthquake.usgs.gov/earthquakes/eventp... \n", + "2688 1539363073040 https://earthquake.usgs.gov/earthquakes/eventp... \n", + "2824 1538642265040 https://earthquake.usgs.gov/earthquakes/eventp... \n", + "3072 1539230846942 https://earthquake.usgs.gov/earthquakes/eventp... \n", + "3632 1538581746455 https://earthquake.usgs.gov/earthquakes/eventp... \n", + "3771 1539026579040 https://earthquake.usgs.gov/earthquakes/eventp... \n", + "3851 1539118704040 https://earthquake.usgs.gov/earthquakes/eventp... \n", + "4082 1539136962751 https://earthquake.usgs.gov/earthquakes/eventp... \n", + "4192 1538367048207 https://earthquake.usgs.gov/earthquakes/eventp... \n", + "4257 1539103992040 https://earthquake.usgs.gov/earthquakes/eventp... \n", + "4846 1538294859215 https://earthquake.usgs.gov/earthquakes/eventp... \n", + "5655 1538050682040 https://earthquake.usgs.gov/earthquakes/eventp... \n", + "5915 1539400764040 https://earthquake.usgs.gov/earthquakes/eventp... \n", + "6769 1537908537284 https://earthquake.usgs.gov/earthquakes/eventp... \n", + "6961 1538419499040 https://earthquake.usgs.gov/earthquakes/eventp... \n", + "7001 1538375544040 https://earthquake.usgs.gov/earthquakes/eventp... \n", + "7066 1538238102308 https://earthquake.usgs.gov/earthquakes/eventp... \n", + "7145 1538716171040 https://earthquake.usgs.gov/earthquakes/eventp... \n", + "7261 1537740803336 https://earthquake.usgs.gov/earthquakes/eventp... \n", + "7381 1538332135138 https://earthquake.usgs.gov/earthquakes/eventp... \n", + "7408 1538329898836 https://earthquake.usgs.gov/earthquakes/eventp... \n", + "7652 1539135424040 https://earthquake.usgs.gov/earthquakes/eventp... \n", + "7696 1539294775040 https://earthquake.usgs.gov/earthquakes/eventp... \n", + "7807 1538226419040 https://earthquake.usgs.gov/earthquakes/eventp... \n", + "8071 1539122080040 https://earthquake.usgs.gov/earthquakes/eventp... \n", + "8311 1538880454040 https://earthquake.usgs.gov/earthquakes/eventp... \n", + "8324 1538969995040 https://earthquake.usgs.gov/earthquakes/eventp... \n", + "8327 1538870822040 https://earthquake.usgs.gov/earthquakes/eventp... \n", + "8376 1539464832040 https://earthquake.usgs.gov/earthquakes/eventp... \n", + "8431 1537457187040 https://earthquake.usgs.gov/earthquakes/eventp... \n", + "8550 1537510968040 https://earthquake.usgs.gov/earthquakes/eventp... \n", + "8555 1537430366040 https://earthquake.usgs.gov/earthquakes/eventp... \n", + "8687 1538890503040 https://earthquake.usgs.gov/earthquakes/eventp... \n", + "9070 1537976170040 https://earthquake.usgs.gov/earthquakes/eventp... \n", + "9198 1538220844777 https://earthquake.usgs.gov/earthquakes/eventp... \n", + "\n", + "[50 rows x 26 columns]" + ] + }, + "execution_count": 155, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# znajdz trzęsienia w japonii z typem mag 'mb'\n", + "data[(data.place.str.contains('Japan')) & (data.magType == 'mb')]" + ] + }, + { + "cell_type": "code", + "execution_count": 147, + "id": "e7e30b39-871d-4147-bbca-2ded10396eb8", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
cdidminfeltgapmagmminstrmssigtimetsunamitzupdated
count15.000000681.00000015.000000681.000000681.0000001.00681.000000681.000000681.0000006.810000e+02681.0681.06.810000e+02
mean2.4400000.1661992.400000153.6681200.5000732.8412.6182090.15198610.9706311.538314e+120.0-480.01.538402e+12
std0.5011420.1662284.62601368.7353020.696710NaN9.8669630.08466219.6071505.965637e+080.00.06.010951e+08
min2.0000000.0010001.00000029.140000-0.5000002.843.0000000.0005000.0000001.537247e+120.0-480.01.537307e+12
25%2.0000000.0530001.00000097.380000-0.1000002.846.0000000.1069000.0000001.537854e+120.0-480.01.537928e+12
50%2.2000000.1120001.000000149.1400000.4000002.8410.0000000.1463002.0000001.538280e+120.0-480.01.538428e+12
75%2.9000000.2330001.000000199.7200000.9000002.8416.0000000.18710012.0000001.538821e+120.0-480.01.538878e+12
max3.3000001.41400019.000000355.9100002.9000002.8461.0000000.863400129.0000001.539461e+120.0-480.01.539483e+12
\n", + "
" + ], + "text/plain": [ + " cdi dmin felt gap mag mmi \\\n", + "count 15.000000 681.000000 15.000000 681.000000 681.000000 1.00 \n", + "mean 2.440000 0.166199 2.400000 153.668120 0.500073 2.84 \n", + "std 0.501142 0.166228 4.626013 68.735302 0.696710 NaN \n", + "min 2.000000 0.001000 1.000000 29.140000 -0.500000 2.84 \n", + "25% 2.000000 0.053000 1.000000 97.380000 -0.100000 2.84 \n", + "50% 2.200000 0.112000 1.000000 149.140000 0.400000 2.84 \n", + "75% 2.900000 0.233000 1.000000 199.720000 0.900000 2.84 \n", + "max 3.300000 1.414000 19.000000 355.910000 2.900000 2.84 \n", + "\n", + " nst rms sig time tsunami tz \\\n", + "count 681.000000 681.000000 681.000000 6.810000e+02 681.0 681.0 \n", + "mean 12.618209 0.151986 10.970631 1.538314e+12 0.0 -480.0 \n", + "std 9.866963 0.084662 19.607150 5.965637e+08 0.0 0.0 \n", + "min 3.000000 0.000500 0.000000 1.537247e+12 0.0 -480.0 \n", + "25% 6.000000 0.106900 0.000000 1.537854e+12 0.0 -480.0 \n", + "50% 10.000000 0.146300 2.000000 1.538280e+12 0.0 -480.0 \n", + "75% 16.000000 0.187100 12.000000 1.538821e+12 0.0 -480.0 \n", + "max 61.000000 0.863400 129.000000 1.539461e+12 0.0 -480.0 \n", + "\n", + " updated \n", + "count 6.810000e+02 \n", + "mean 1.538402e+12 \n", + "std 6.010951e+08 \n", + "min 1.537307e+12 \n", + "25% 1.537928e+12 \n", + "50% 1.538428e+12 \n", + "75% 1.538878e+12 \n", + "max 1.539483e+12 " + ] + }, + "execution_count": 147, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# wywołaj opis (describe) który będzie brał pod uwagę tylko Nevadę\n", + "data[data.place == 'Nevada'].describe()" + ] + }, + { + "cell_type": "code", + "execution_count": 171, + "id": "527f0fb8-7217-41f2-a930-7de1439fc139", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "130" + ] + }, + "execution_count": 171, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# sprawdź ilość tsunami w japonii\n", + "data[(data.place.str.contains('Japan')) & (data.tsunami == 1)].size" + ] + }, + { + "cell_type": "code", + "execution_count": 170, + "id": "8629a223-fcac-4cc9-bb82-cfb2f0086e41", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
cdidminfeltgapmagmminstrmssigtimetsunamitzupdated
count16.00000050.00000016.00000050.00000050.0000000.00.050.00000050.0000005.000000e+0150.050.0000005.000000e+01
mean2.8812501.48508011.187500108.8800004.530000NaNNaN0.801800318.0800001.538218e+120.0547.2000001.538746e+12
std0.8833410.80225720.67274831.6767090.266688NaNNaN0.25858938.5702866.404535e+080.026.1112225.518279e+08
min1.0000000.2230001.00000033.0000004.000000NaNNaN0.270000246.0000001.537258e+120.0480.0000001.537430e+12
50%3.1000001.2710003.500000112.0000004.600000NaNNaN0.810000326.0000001.538268e+120.0540.0000001.538886e+12
95%3.8750002.58320035.500000155.6500004.900000NaNNaN1.335500371.7500001.539090e+120.0600.0000001.539428e+12
max4.1000004.83000085.000000167.0000005.400000NaNNaN1.400000451.0000001.539449e+120.0600.0000001.539533e+12
\n", + "
" + ], + "text/plain": [ + " cdi dmin felt gap mag mmi nst \\\n", + "count 16.000000 50.000000 16.000000 50.000000 50.000000 0.0 0.0 \n", + "mean 2.881250 1.485080 11.187500 108.880000 4.530000 NaN NaN \n", + "std 0.883341 0.802257 20.672748 31.676709 0.266688 NaN NaN \n", + "min 1.000000 0.223000 1.000000 33.000000 4.000000 NaN NaN \n", + "50% 3.100000 1.271000 3.500000 112.000000 4.600000 NaN NaN \n", + "95% 3.875000 2.583200 35.500000 155.650000 4.900000 NaN NaN \n", + "max 4.100000 4.830000 85.000000 167.000000 5.400000 NaN NaN \n", + "\n", + " rms sig time tsunami tz updated \n", + "count 50.000000 50.000000 5.000000e+01 50.0 50.000000 5.000000e+01 \n", + "mean 0.801800 318.080000 1.538218e+12 0.0 547.200000 1.538746e+12 \n", + "std 0.258589 38.570286 6.404535e+08 0.0 26.111222 5.518279e+08 \n", + "min 0.270000 246.000000 1.537258e+12 0.0 480.000000 1.537430e+12 \n", + "50% 0.810000 326.000000 1.538268e+12 0.0 540.000000 1.538886e+12 \n", + "95% 1.335500 371.750000 1.539090e+12 0.0 600.000000 1.539428e+12 \n", + "max 1.400000 451.000000 1.539449e+12 0.0 600.000000 1.539533e+12 " + ] + }, + "execution_count": 170, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# oblicz kwantyl 95% trzęsień w Japonii z magnitudą 'mb'\n", + "data[(data.place.str.contains('Japan')) & (data.magType == 'mb')].describe(percentiles=[0.95])" + ] + }, + { + "cell_type": "code", + "execution_count": 178, + "id": "6bd47e02-8b68-4bfa-b2cd-bcc838b127ae", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "0.23129251700680273" + ] + }, + "execution_count": 178, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# oblicz trzęsienia a indonezji z tsunami - podaj wartość w procentach\n", + "x = data[data.place.str.contains('Indonesia') & data.tsunami == 1].size\n", + "y = data[data.place.str.contains('Indonesia')].size\n", + "x/y" + ] + }, + { + "cell_type": "markdown", + "id": "82ff9d7c-695f-4dad-b2c2-2584ab429d02", + "metadata": {}, + "source": [ + "# Long i Wide" + ] + }, + { + "cell_type": "markdown", + "id": "abd12ae2-ce7d-4d14-b996-78f1c6429c6d", + "metadata": {}, + "source": [ + "## matplotlib" + ] + }, + { + "cell_type": "code", + "execution_count": 315, + "id": "3de3ed9f-6905-4eba-bc21-165e5aea097d", + "metadata": {}, + "outputs": [], + "source": [ + "import matplotlib.pyplot as plt" + ] + }, + { + "cell_type": "code", + "execution_count": 215, + "id": "de87d64c-13d0-4458-be5f-4bd1b9b90f67", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "(93, 3)" + ] + }, + "execution_count": 215, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df_long = pd.read_csv(\"data/long_data.csv\", parse_dates=['date'], usecols=['date', 'datatype', 'value'])\n", + "df_wide = pd.read_csv(\"data/wide_data.csv\", parse_dates=['date'])\n", + "\n", + "df_long.shape" + ] + }, + { + "cell_type": "code", + "execution_count": 225, + "id": "387352e3-c1f4-4845-b624-f1ab8305e6b5", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Text(0, 0.5, '˚C')" + ] + }, + "execution_count": 225, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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kGfu3r3brrjiCmvcuHHgvenGG28M/HfUpUuXoOc5h0peXl6J108//WRRUVG2aNGiwLZQmz59etD77z//+c9AbdepU8fuv//+kGeWpqCgwN599117/vnn7b333gt6Dw0lv99vZ599tk2bNs32798floyyFBYW2jfffBP473T//v02ffp0+9e//mU5OTlhzd67d6/Nnz/fXn31Vfv3v/9tn332mRUXF4c187nnnrPmzZuXeJ9s3ry5Pf/882HNLgvHV+HF8VVocXxVPsdXZu69X7EgPwbLly83n88X8t87bdo0i4iIsF69elnnzp0tNjbWXn755UB7Tk5OWP7hR44cacnJyXb77bdbixYt7IYbbrBGjRrZyy+/bFOmTLEGDRrYI488EvLcWrVqlfry+XxWs2bNwNeh5vf7LTc318zM/ve//5nf77errrrKJkyYYNdcc41FRkbajBkzQp7bsGFDW7ZsmZmZXXPNNda6dWtbtmyZ/fzzz7Z8+XJr3769DRo0KOS5Pp/PTjnlFPP5fJaRkWFjx4617du3hzzn13r37m1nnnmmvfnmm9anTx/r1KmTde3a1b777jvbunWrZWVl2cUXXxzy3Mcee8zq169v//znPwNv4A888IC98847duWVV1pcXJwtWbIk5LnDhg2zunXr2sSJE23Dhg2Wn59v+fn5tmHDBnv22WctKSnJhg8fHvLcownXhPHEE09YXFyc3XTTTdavXz+Ljo62hx9+ONAerverIUOGWEZGhj355JPWtWtXu+iii6xly5b20Ucf2fz5861Fixb2t7/9LeS5vz4IOPQ6dMB36H/DkXvo/WrSpEkWGxtr9957r7311lv297//3apXr27PPfdcyHOHDBlib775ppmZbdmyxTIyMiwiIsKSk5MtIiLCWrVqZd99913Ic30+n/Xo0cOio6OtVq1aNmTIEPv8889DnvNrK1assJSUFPP7/dayZUvbvHmztWzZ0qpXr27x8fFWq1YtW7x4cchzi4qKbNiwYRYXFxdUUz6fz1JTU+1///tfyDPN/v9F4YgRI2zu3Lm2evVqW716tc2dO9fuuusuq169uj322GNhyT4Sjq9Cg+Mrjq+q0vGVa+9XZizIzczsT3/60xFfZ599dljeuE877TR74oknAl9Pnz7dqlevHvjLT7gmjBNPPDFw4LV+/Xrz+/326quvBu1Hy5YtQ54bHx9vvXr1shdffDHwmjx5skVERNhDDz0U2BZqPp8vMGF07tzZRowYEdT+0EMPWfv27UOeGxMTYxs3bjQzs7S0NJs/f35Q+2effWYpKSkhzz3U3+XLl9uQIUOsdu3aFh0dbX/+85/t7bffDttZmLp16wYOpH/66Sfz+Xz24YcfBtqXLl1qycnJIc9NS0uzt99+O/D1unXrrE6dOlZQUGBmZrfccoude+65Ic9NTk627OzsMtuzs7MtKSkp5LlHE64FeYsWLWzatGmBrz/++GOrW7eu3XPPPWYWvverRo0a2QcffGBmZt9//735fL7A+5eZ2axZs6xZs2Yhz23QoIH16tXLPvjgA5s3b57NmzfP5s6daxERETZ58uTAtlA7/P2qbdu29uijjwa1P/3009a6deuQ5yYnJ9vKlSvNzKxPnz7WrVs327Fjh5mZ/fDDD3b++efbJZdcEvLcQ/3dsWOHjR071lq0aGF+v9/++Mc/2tNPPx2WqxDMzLKysuySSy6xlStX2q233mrNmze3Sy+91A4ePGgFBQXWr18/69atW8hz77zzTmvevLm9+eab9t5771mXLl3skUcesTVr1tg999xjMTExNnv27JDnNm7c2KZPn15m+6uvvmqNGjUKeS7HVxxfcXz1+7l2fOXa+5UZC3IzM4uMjLSePXvagAEDSn1deOGFYfkHqF69un377bdB2z744AOLj4+3Z555JmwTRmxsrG3evDno68Mv5/r222+tRo0aIc9dv369tWnTxq666irbs2dPYHtkZKStWrUq5HmHHD5hJCUllbjEZu3atZaYmBjy3KZNm9qsWbPMzCw9Pb3EJU6ff/65JSQkhDz38P6a/XIZ5iuvvGLnnHOO+f1+a9iwYWARFUo1atQI1HNRUZFFRkba8uXLA+3r168PS13FxcXZhg0bAl8XFxdbZGSkbd261cx+WaDGx8eHJfeLL74os33FihVWvXr1kOe2bt36iK+MjIywvG9Uq1YtaJzNzFauXGnJyck2YsSIsL1fxcTEBL1fxcXFBV2at3HjRouLiwt57g8//GAXX3yxnXXWWUFnhsvj/erQGZcTTjgh6L8hM7Ovv/46LP8dxcbGBv77bdiwoS1atCiofeXKlXbCCSeEPPfX71dmZp988okNHDjQatSoYXFxcXbllVeGPLdWrVqBS3nz8/MtIiIiqM9ffvml1alTJ+S5KSkptmDBgsDX3333ncXHxwcu13/ggQesQ4cOIc+NjY094qXLq1atsmrVqoU8l+Mrjq84vvr9XDu+cu39yowFuZmZtWrV6oifR/j888/D8g+QkpJin376aYnt8+bNs/j4eLv77rvDkpucnBy0kOjYsWPQAeeaNWvC8kZm9svnq4YPH24nnXSSffTRR2ZWPhPG3LlzbcWKFZaamlriMsS1a9eG5Q3lscces+bNm9v69evtH//4h3Xo0MG+/vprM/tlUu7atWtYzjgdfgnZr23YsMFGjhwZlr8stm/f3kaOHGlmv1xqe2ihdsgDDzxgmZmZIc897bTT7P/+7/8CX8+ZM8fi4uICf6leu3ZtWCaq8847z7p37x44i3i4HTt2WI8ePaxXr14hz42JibH+/fvbfffdV+rr+uuvD9uZ6sMXEoesWrXKkpOT7aqrrgpLbv369W3p0qWBry+//PKg+v7yyy/DcinmIU8//bTVr1/fXnnlFTMrn/erqVOn2htvvGENGza0Tz75JKj9yy+/DMv78x/+8IfAmbzmzZvbe++9F9T+ySefWO3atUOee6T3q71799rzzz9vHTt2DHluYmKiffXVV2ZmdvDgQYuIiAiqszVr1oSlrmrUqGHffPNN4OtDB9fbtm0zs1/+ewrHH5jOOOMMu+qqqwJntg5XWFhoV111lXXp0iXkuRxfcXzF8dXv59rxlWvvV2YsyM3MbMCAAXbjjTeW2b569WpLS0sLee5FF10UuOnHr82dO9eqV68eln/4s84664iXLv373/8Oy3/Yh5szZ441btzY7rrrLouKigr7hHH45/Qef/zxoPZ//etf1qJFi7Bk33zzzRYVFWUZGRkWGxtrfr/foqOjze/32+mnnx44CAul0s44/Vo4LqvKzs622NhYi46OttjYWJs/f741bdrU2rZta+3bt7eIiIgjXoL0W02fPt2ioqKsT58+dtVVV1l8fHzQRDVx4sSwnHE69JnTyMhIa926tfXo0cN69OhhrVu3tsjISPvDH/4QdKYkVDIzM+3pp58usz1cE8bll19uQ4cOLbXtyy+/tLp164Ylt0ePHjZx4sQy2ydPnhyWBdvhVq1aZaeeeqpdfvnl5XKAe/jr73//e1D7888/H5ZL1idPnmwNGza0uXPn2tSpU6158+b2/vvv2/fff28ffPCB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9dcrrtUzueSSS25FzWVBXgavLhwgl1xyyT1eXk1Uro2za7mu1VVVP+D7NdfqmVxyySW3ouayIAeASo5PHiEcXKurqn7ABwComFiQl6Ffv35KSEggl1xyya3wuV5xbZxdy/WKa/31imv1TC655JJbUXO5qRsAVHKDBw/Wgw8+qBNOOMHrXUEV4lpdedVf18YZABCMBfn/s3PnTk2aNKnEY5M6duyoAQMGqG7duuSSSy65FSLXK66Ns2u5XnGtv15xrZ7JJZdccitLLgtySUuWLFFWVpbi4uLUrVs3JScnS5Jyc3M1Z84c5efna/bs2Tr99NPJJZdccj3NlbyZMFwbZ9dyJbfqSnLrgM+1eiaXXHLJrSy5kiSDtWvXzq677jorLi4u0VZcXGzXXXedtW/fnlxyySXX89zFixdbrVq1rEGDBta/f38bPny4DR8+3Pr3728NGza02rVr25IlS0Ke69o4u5brWl151V/Xxplccskll9yjY0FuZrGxsbZmzZoy29esWWOxsbHkkksuuZ7nejVhuDbOruW6VleuHfC5Vs/kkksuuZUl18yMu6zrl0vFFi9eXGb74sWLA5ctkEsuueR6mbtixQrddttt8vl8Jdp8Pp9uu+02LV++POS5ro2za7mu1ZVX/XVtnMkll1xyyT26yLD81krmjjvu0HXXXaelS5fqnHPOKfGZgeeee05jx44ll1xyyfU899CEkZGRUWp7uCYM18bZtVzX6sqr/ro2zuSSSy655B6DsJx3r4ReffVVa9eunUVGRprP5zOfz2eRkZHWrl07mz59Ornkkktuhch96qmnLCYmxm655RZ74403bOHChbZw4UJ744037JZbbrFq1arZhAkTwpLt0ji7lutaXXnVX9fGmVxyySWX3KPjLuu/UlBQoJ07d0qSTjjhBEVFRZFLLrnkVqjc6dOn6/HHH9fSpUtVVFQkSYqIiFBmZqZuv/129enTJ6z5royza7mu1ZVX/XVtnMkll1xyyT0yFuQAUEl5NVGhanOtrlw54AMAVEzc1O0YfPPNNzr77LPJJZdccitUblRUlFJSUpSSkuL5wXxVHmfXcl2rK6/669o4k0suueSSWzoW5Mdg7969mj9/Prnkkktuhc/1aqJybZxdy3WtrqriAd+RuFbP5JJLLrkVKZe7rEt68sknj9j+/fffk0suueRWiNyjCdeE4do4u5Z7NFWtro6mqh3wuVbP5JJLLrmVJVfiM+SSJL/fr5SUFEVHR5fafvDgQeXk5ARuvkIuueSS61XusUwYY8eOrTL9Jbd8cl2rK6/669o4k0suueSSewzCdv/2SiQtLe2It7L//PPPze/3k0suueR6nuvz+ax+/fqWlpZW6qt+/fpVqr/klk+ua3XlVX9dG2dyySWXXHKPjs+QS8rMzNTSpUvLbPf5fLIwXEhALrnkknu8UlNT9fjjj2vDhg2lvt56662QZ0rujbNrua7VlVf9dW2cySWXXHLJPQZhWeZXMqtWrbIlS5aU2X7w4EHbuHEjueSSS67nub1797bhw4eX2b58+XLz+Xwhz3VtnF3Lda2uvOqva+NMLrnkkkvu0fEZcgCoRFavXq38/HydfvrppbYXFBRo69atSk1NLec9Q2XmWl151V/XxhkAcHRcsl6GMWPG6KeffiKXXHLJrVC5LVq0KPNgXvrl2cbldTBflcfZtVzX6sqr/ro2zuSSSy655B6DsJx3rwJq1Khh33zzDbnkkktuhc8dPXq07dq1q9xzXRtn13Jdqyuv+uvaOJNLLrnkkhuMM+RlMI+u5CeXXHLJPV4PP/ywfvzxx3LPdW2cXct1ra686q9r40wuueSSS24wFuQAUMl5NVGhanOtrqr6AR8AoGKK9HoHKqrVq1erQYMG5JJLLrkVPtcrro2za7leca2/XnGtnskll1xyK2oud1k/TFFRkSIiIgJfL168WMXFxWrdurViYmLIJZdccitM7uG2bNmiBg0ayO8P/0VPro2za7mHc6GuDlee/fUq17V6JpdccsmtFLlh/5R6JbBx40bLzMy0iIgI69Gjh+Xl5Vm3bt3M5/OZz+ezE0880datW0cuueSS63nuIYWFhUFfL1q0yD799FPbv39/WPJcG2fXcg9xpa4OKe/+epXrWj2TSy655FaWXDNu6iZJ+utf/6r4+HjNnDlTCQkJOu+881RYWKgtW7bo+++/18knn6w777yTXHLJJdfz3E2bNun0009XTEyMevbsqd27d+vcc89V+/bt1bFjR7Vo0UJfffVVyHNdG2fXcl2rK6/669o4k0suueSSewzCssyvZOrWrWuff/65mZn99NNP5vP57MMPPwy0L1261JKTk8kll1xyPc/t3bu3nXnmmfbmm29anz59rFOnTta1a1f77rvvbOvWrZaVlWUXX3xxyHNdG2fXcl2rK6/669o4k0suueSSe3Tc1E3S/v37VbNmTUlSjRo1FBERoRo1agTaExISlJ+fTy655JLree6CBQv07rvv6rTTTtMZZ5yhWrVqacGCBYGbjjz88MM677zzQp7r2ji7lutaXXnVX9fGmVxyySWX3KPjknVJp5xyiiZNmiRJmjJliurUqaNXX3010P6vf/1LTZs2JZdccsn1PNerCcO1cXYt17W6cu2Az7V6JpdccsmtLLmSuGTdzCw7O9tiY2MtOjraYmNjbf78+da0aVNr27attW/f3iIiImz69OnkkksuuZ7ntm/f3kaOHGlmZpMmTbLk5GQbMWJEoP2BBx6wzMzMkOe6Ns6u5bpWV17117VxJpdccskl9+h47Nn/s3HjRi1dulSZmZlKS0tTbm6uJkyYoPz8fPXq1UtnnXUWueSSS67nubNnz9bFF1+s4uJi+f1+zZ49W9dee60SExPl9/u1ZMkSvfLKK+rTp0/Is10aZ9dyXasrr/rr2jiTSy655JJ7dCzIAaCS8WrCQNXmWl25dsAHAKiYWJAfg8LCQm3dulWNGzcml1xyya3QuV5xbZxdy/WKa/31imv1TC655JJbkXK5qdsxWLVqldLT08kll1xyK3xuYWGhNm/eXO65ro2za7mu1ZVX/XVtnMkll1xyyWVBDgBVilcTFao21+qqKh7wAQAqJp5DLumPf/zjEdt//vlncskll9wKkesV18bZtVyvuNZfr7hWz+SSSy65lSVXYkEuSVq9erUuu+yyMv8qvW3bNn311VfkkksuuZ7nejVhuDbOruW6VleuHfC5Vs/kkksuuZUlV2JBLklq2bKl2rVrp8GDB5favnz5cj333HPkkksuuZ7nejVhuDbOruW6VleuHfC5Vs/kkksuuZUlV2JBLknq1KmT1q1bV2Z7jRo11KVLF3LJJZdcz3O9mjBcG2fXcl2rK9cO+FyrZ3LJJZfcypIr8dgzAKhUbr31Vvl8Po0fP77U9m+++UbXXHON5s6dW747hkrNtbryqr+ujTMA4OhYkAMAAAAA4AEuWT/M4sWL9emnnyonJ0eSVK9ePXXo0EFt27Yll1xyya1QuV5xbZxdy/WKa/31imv1TC655JJbKXINlpuba507dzafz2epqanWtm1ba9u2raWmpprP57POnTtbbm4uueSSS67nuYcsWrTIxo8fbyNGjLARI0bY+PHjbdGiRWHLc22cXcs9xJW6OqS8++tVrmv1TC655JJbWXLNzFiQm1nv3r2tQ4cOtnbt2hJta9eutY4dO9oll1xCLrnkkut5rlcThmvj7Fqua3Xl2gGfa/VMLrnkkltZcs1YkJuZWXx8vC1btqzM9s8++8zi4+PJJZdccj3P9WrCcG2cXct1ra5cO+BzrZ7JJZdccitLrpkZnyGXFBMTo927d5fZvmfPHsXExJBLLrnkep47e/ZsLViwQM2aNSvR1qxZMz355JPq2rVryHNdG2fXcl2rK6/669o4k0suueSSewzCssyvZG688UZLTU21GTNmWF5eXmB7Xl6ezZgxw9LS0mzIkCHkkksuuZ7n1qlTx+bNm1dm+9y5c61OnTohz3VtnF3Lda2uvOqva+NMLrnkkkvu0bEgN7P9+/fbDTfcYNHR0eb3+y02NtZiY2PN7/dbdHS0DR482Pbv308uueSS63muVxOGa+PsWq5rdeXaAZ9r9UwuueSSW1lyzcx4Dvlhdu/eraVLlwbd5j4zM1MJCQnkkksuuRUi98CBAxo6dKgmTZqkwsJCRUdHS5IOHjyoyMhIDRo0SI8//njYLqtyZZxdy3Wtrrzqr2vjTC655JJL7tGxIAeASsiriQpVm2t15dIBHwCgggrLefdKKD8/3z788ENbtWpVibaff/7ZpkyZQi655JJbIXK94to4u5brFdf66xXX6plccsklt7LksiA3s3Xr1gWeAer3+61Lly72/fffB9pzcnLM7/eTSy655Hqea+bNhOHaOLuWa+ZWXZm5dcDnWj2TSy655FaWXDMzv9dn6CuCO++8Uy1bttT27du1bt061ahRQ507d9bmzZvJJZdccitU7ldffaXmzZurS5cuatWqlc4880xt3bo10J6Xl6err7465LmujbNrua7VlVf9dW2cySWXXHLJPQZhWeZXMklJSfbFF18Evi4uLrYbbrjBGjdubN98803Y/iJCLrnkknu8Lr74YuvVq5ft2LHD1q9fb7169bL09HTbtGmTmYXvL7iujbNrua7VlVf9dW2cySWXXHLJPToW5GZWo0YNW716dYntN910kzVs2NAWLFgQln8Acskll9zj5dWE4do4u5brWl25dsDnWj2TSy655FaWXDMW5GZm1qZNG5s6dWqpbTfddJMlJiaG5R+AXHLJJfd4eTVhuDbOruW6VleuHfC5Vs/kkksuuZUl14wFuZmZPfzww9azZ88y2wcPHmw+n49ccskl1/NcryYM18bZtVzX6sq1Az7X6plccsklt7LkmpnxHHIAqERGjx6tDz/8UG+//Xap7TfeeKMmTpyo4uLict4zVGau1ZVX/XVtnAEAR8eCHAAAAAAAD/DYMwAAAAAAPMCCHAAAAAAAD7AgBwAAAADAAyzIAQAAAADwAAtyAAAc1bVrVw0dOtTr3QAAwFksyAEAwFHNmzdPPp9PP/30k9e7AgBAlcGCHAAAAAAAD7AgBwDAAfv27dNVV12l+Ph4paSk6B//+EdQ+0svvaTTTz9dNWrUUL169dS3b19t375dkrRx40adddZZkqRatWrJ5/NpwIABkqTi4mKNHj1a6enpqlatmk499VT95z//Kde+AQBQWbEgBwDAAcOGDdP8+fP1xhtv6N1339W8efO0bNmyQHtBQYEefPBBrVixQjNnztTGjRsDi+5GjRrp9ddflyStW7dO27Zt0xNPPCFJGj16tKZOnaqJEydq1apVuu2229SvXz/Nnz+/3PsIAEBl4zMz83onAABA+Ozdu1d16tTRyy+/rEsvvVSS9OOPP6phw4a67rrrNH78+BI/89lnn6lNmzbas2eP4uPjNW/ePJ111lnatWuXEhMTJUkHDhxQ7dq19f7776tDhw6Bn73mmmuUn5+vV155pTy6BwBApRXp9Q4AAIDw+uabb3Tw4EG1a9cusK127dpq1qxZ4OulS5fqvvvu04oVK7Rr1y4VFxdLkjZv3qwWLVqU+nu//vpr5efn69xzzw3afvDgQbVu3ToMPQEAoGphQQ4AgOP27dunrKwsZWVladq0aapbt642b96srKwsHTx4sMyf27t3ryTprbfeUoMGDYLaYmJiwrrPAABUBSzIAQCo4k466SRFRUVp0aJFaty4sSRp165d+uqrr3TmmWdq7dq1+uGHHzRmzBg1atRI0i+XrB8uOjpaklRUVBTY1qJFC8XExGjz5s0688wzy6k3AABUHSzIAQCo4uLj4zVo0CANGzZMderUUVJSku6++275/b/c27Vx48aKjo7WP//5T91www368ssv9eCDDwb9jtTUVPl8Ps2aNUvnnXeeqlWrpho1auiOO+7QbbfdpuLiYnXu3Fl5eXn6+OOPlZCQoP79+3vRXQAAKg3usg4AgAMee+wxnXHGGbrgggvUrVs3de7cWZmZmZKkunXr6sUXX9Rrr72mFi1aaMyYMRo7dmzQzzdo0ED333+/RowYoeTkZA0ZMkSS9OCDD+qee+7R6NGj1bx5c/Xo0UNvvfWW0tPTy72PAABUNtxlHQAAAAAAD3CGHAAAAAAAD7AgBwAAAADAAyzIAQAAAADwAAtyAAAAAAA8wIIcAAAAAAAPsCAHAAAAAMADLMgBAAAAAPAAC3IAAAAAADzAghwAAAAAAA+wIAcAAAAAwAMsyAEAAAAA8AALcgAAAAAAPPD/AZtCgmBVPlmIAAAAAElFTkSuQmCC", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "df_wide.plot(kind='bar', x='date', figsize=(12,2), title=\"Tempertura\").set_ylabel('˚C')" + ] + }, + { + "cell_type": "markdown", + "id": "28b5c0a4-5a46-4c8c-a22b-5d3e52102111", + "metadata": {}, + "source": [ + "## seaborn" + ] + }, + { + "cell_type": "code", + "execution_count": 230, + "id": "058c4598-8802-4f19-8f88-11d0dfec6b44", + "metadata": {}, + "outputs": [], + "source": [ + "import seaborn as sns" + ] + }, + { + "cell_type": "code", + "execution_count": 248, + "id": "d56db132-d27c-4d8e-9615-1b7ca85322d0", + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/tmp/ipykernel_2480/557238536.py:9: UserWarning: set_ticklabels() should only be used with a fixed number of ticks, i.e. after set_ticks() or using a FixedLocator.\n", + " ax.set_xticklabels(ax.get_xticklabels(), rotation=45)\n" + ] + }, + { + "data": { + "text/plain": [ + "''" + ] + }, + "execution_count": 248, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "sns.set(rc={'figure.figsize':(12,3)})\n", + "ax = sns.lineplot(\n", + " data = df_long,\n", + " x = 'date',\n", + " y = 'value',\n", + " hue = 'datatype' \n", + ")\n", + "ax.set_ylabel('°C')\n", + "ax.set_xticklabels(ax.get_xticklabels(), rotation=45)\n", + ";" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "00412f08-ec65-479f-9fe8-1f5eb8c395d6", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "id": "12090f1a-bbe8-46cf-b40a-67f9ac4fd848", + "metadata": {}, + "source": [ + "# Czyszczenie danych" + ] + }, + { + "cell_type": "code", + "execution_count": 305, + "id": "25ec7d8f-f487-468f-8d4b-384960d203be", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "(502, 5)" + ] + }, + "execution_count": 305, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# df_sp = pd.read_csv(\"data/nyc_temperatures.csv\", usecols=['date', 'datatype', 'value'], parse_dates=['date'])\n", + "df_sp = pd.read_csv(\"data/sp500.csv\", index_col='date', parse_dates=['date']).drop(columns=['adj_close'])\n", + "df_sp.shape" + ] + }, + { + "cell_type": "code", + "execution_count": 306, + "id": "7f7e4ca8-77a1-4409-85f9-616872a45e12", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
highlowopenclosevolumeday_of_weekmonthquarter
date
2017-01-032263.8798832245.1298832251.5700682257.8300783770530000Tuesday11
2017-01-042272.8200682261.6000982261.6000982270.7500003764890000Wednesday11
2017-01-052271.5000002260.4499512268.1799322269.0000003761820000Thursday11
2017-01-062282.1000982264.0600592271.1398932276.9799803339890000Friday11
2017-01-092275.4899902268.8999022273.5900882268.8999023217610000Monday11
...........................
2018-12-242410.3400882351.1000982400.5600592351.1000982613930000Monday124
2018-12-262467.7600102346.5800782363.1201172467.6999514233990000Wednesday124
2018-12-272489.1000982397.9399412442.5000002488.8300784096610000Thursday124
2018-12-282520.2700202472.8898932498.7700202485.7399903702620000Friday124
2018-12-312509.2399902482.8200682498.9399412506.8500983442870000Monday124
\n", + "

502 rows × 8 columns

\n", + "
" + ], + "text/plain": [ + " high low open close volume \\\n", + "date \n", + "2017-01-03 2263.879883 2245.129883 2251.570068 2257.830078 3770530000 \n", + "2017-01-04 2272.820068 2261.600098 2261.600098 2270.750000 3764890000 \n", + "2017-01-05 2271.500000 2260.449951 2268.179932 2269.000000 3761820000 \n", + "2017-01-06 2282.100098 2264.060059 2271.139893 2276.979980 3339890000 \n", + "2017-01-09 2275.489990 2268.899902 2273.590088 2268.899902 3217610000 \n", + "... ... ... ... ... ... \n", + "2018-12-24 2410.340088 2351.100098 2400.560059 2351.100098 2613930000 \n", + "2018-12-26 2467.760010 2346.580078 2363.120117 2467.699951 4233990000 \n", + "2018-12-27 2489.100098 2397.939941 2442.500000 2488.830078 4096610000 \n", + "2018-12-28 2520.270020 2472.889893 2498.770020 2485.739990 3702620000 \n", + "2018-12-31 2509.239990 2482.820068 2498.939941 2506.850098 3442870000 \n", + "\n", + " day_of_week month quarter \n", + "date \n", + "2017-01-03 Tuesday 1 1 \n", + "2017-01-04 Wednesday 1 1 \n", + "2017-01-05 Thursday 1 1 \n", + "2017-01-06 Friday 1 1 \n", + "2017-01-09 Monday 1 1 \n", + "... ... ... ... \n", + "2018-12-24 Monday 12 4 \n", + "2018-12-26 Wednesday 12 4 \n", + "2018-12-27 Thursday 12 4 \n", + "2018-12-28 Friday 12 4 \n", + "2018-12-31 Monday 12 4 \n", + "\n", + "[502 rows x 8 columns]" + ] + }, + "execution_count": 306, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df_sp.assign(\n", + " day_of_week = lambda x: x.index.day_name(),\n", + " month = lambda x: x.index.month,\n", + " quarter = lambda x: x.index.quarter\n", + ")" + ] + }, + { + "cell_type": "markdown", + "id": "1b44e64f-b738-4751-9685-b441ff332f93", + "metadata": {}, + "source": [ + "# Ćwiczenie" + ] + }, + { + "cell_type": "code", + "execution_count": 313, + "id": "bb0e5b0e-0262-4df8-bb15-74d19fd36f99", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
openhighlowclosevolumeday_of_week
date
2017-01-01963.661003.08958.70998.33147775008Sunday
2017-01-02998.621031.39996.701021.75222184992Monday
2017-01-031021.601044.081021.601043.84185168000Tuesday
2017-01-041044.401159.421044.401154.73344945984Wednesday
2017-01-051156.731191.10910.421013.38510199008Thursday
.....................
2018-12-273854.693874.423645.453654.835130222366Thursday
2018-12-283653.133956.143642.633923.925631554348Friday
2018-12-293932.493963.763820.413820.414991655917Saturday
2018-12-303822.383901.913797.223865.954770578575Sunday
2018-12-313866.843868.743725.873742.704661840806Monday
\n", + "

730 rows × 6 columns

\n", + "
" + ], + "text/plain": [ + " open high low close volume day_of_week\n", + "date \n", + "2017-01-01 963.66 1003.08 958.70 998.33 147775008 Sunday\n", + "2017-01-02 998.62 1031.39 996.70 1021.75 222184992 Monday\n", + "2017-01-03 1021.60 1044.08 1021.60 1043.84 185168000 Tuesday\n", + "2017-01-04 1044.40 1159.42 1044.40 1154.73 344945984 Wednesday\n", + "2017-01-05 1156.73 1191.10 910.42 1013.38 510199008 Thursday\n", + "... ... ... ... ... ... ...\n", + "2018-12-27 3854.69 3874.42 3645.45 3654.83 5130222366 Thursday\n", + "2018-12-28 3653.13 3956.14 3642.63 3923.92 5631554348 Friday\n", + "2018-12-29 3932.49 3963.76 3820.41 3820.41 4991655917 Saturday\n", + "2018-12-30 3822.38 3901.91 3797.22 3865.95 4770578575 Sunday\n", + "2018-12-31 3866.84 3868.74 3725.87 3742.70 4661840806 Monday\n", + "\n", + "[730 rows x 6 columns]" + ] + }, + "execution_count": 313, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# otworz plik bitcoin.csv, spraw aby daty były indeksem, wyciągnij dzień tygodnia, zlikwiduj market_cap\n", + "df_btc = pd.read_csv(\"data/bitcoin.csv\", index_col='date', parse_dates=['date']).drop(columns=['market_cap'])\n", + "df_btc.assign(\n", + " day_of_week = lambda x: x.index.day_name()\n", + ")" + ] + }, + { + "cell_type": "code", + "execution_count": 327, + "id": "d1fcf963-92f1-4619-800d-cf1e4f5f89d6", + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAABAoAAAEvCAYAAADM/SMOAAAAOnRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjEwLjEsIGh0dHBzOi8vbWF0cGxvdGxpYi5vcmcvc2/+5QAAAAlwSFlzAAAPYQAAD2EBqD+naQAAoSdJREFUeJzs3Xd4HNW5+PHvlG0qK6u5V7lhg41twAUb05shkARCSyBcHMpNgEAgISEJl+R3geTeBAiBBDAmNwRSIJAAwRC6TTHddOMmuRfZ6tLWmTm/P2Z3pLVkW10r+/08jx/vzp6ZPbtH0u688573aEophRBCCCGEEEIIIQSg93UHhBBCCCGEEEIIkT0kUCCEEEIIIYQQQgiPBAqEEEIIIYQQQgjhkUCBEEIIIYQQQgghPBIoEEIIIYQQQgghhEcCBUIIIYQQQgghhPBIoEAIIYQQQgghhBAeCRQIIYQQQgghhBDCI4ECIYQQQgghhBBCeMy+7kBLzz77LE899RSfffYZ9fX1jBo1igsvvJCzzjoLTdO8do899hgPPPAAW7duZcyYMVx77bUce+yxGcdqaGjgtttu48UXXySZTHLUUUfxk5/8hIEDB2a0++CDD/jlL3/JypUrKS4u5vzzz+fSSy/NeD6lFIsWLeLPf/4z1dXVTJo0iR/96EdMmzatS69XKYXjqC4dozfoutYv+nkgkzHKfjJG/YeMVf8g45T9ZIyyn4xR/yFj1X9k+1jpupZxrrsnmlIqa17Fueeey7BhwzjhhBMoLCzkzTff5IEHHuA73/kOV155JQDPPPMM1113HVdccQWzZ89myZIlPP744zzyyCMZJ+4LFy5k7dq13HDDDQQCAe688050Xefxxx/HNN34yIYNG/jyl7/M3Llz+frXv86qVav41a9+xbXXXsvChQu9Y91///3cddddXH/99UycOJFHHnmEN998kyeffJIRI0Z0+vXatkN1dVOn9+8NpqlTWJhLTU0TluX0dXdEG2SMsp+MUf8hY9U/yDhlPxmj7Cdj1H/IWPUf/WGsiopyMYx9TyzIqoyC3//+9xQVFXn358yZQ21tLX/4wx/49re/ja7r3HXXXZx22mlcc801AMyePZvVq1dzzz33sGjRIgBWrFjB66+/zuLFi5k3bx4AY8aMYcGCBTz//PMsWLAAgMWLF1NYWMjtt9+O3+9nzpw5VFdXc++993LhhRfi9/uJx+Pcd999XHLJJVx88cUAHHbYYZxyyiksXryYm2++udfeHyGEEEIIIYQQoqdlVY2ClkGCtEmTJtHY2EgkEmHTpk2sX7+eU089NaPNggULWL58OYlEAoBly5YRDoeZO3eu16asrIxJkyaxbNkyb9uyZcs4/vjj8fv9Gceqr69nxYoVgDs1obGxMeM5/X4/J554YsaxhBBCCCGEEEKI/UFWZRS05f3332fQoEHk5eXx/vvvA252QEtjx44lmUyyadMmxo4dS3l5OWPGjGk196KsrIzy8nIAIpEI27Zto6ysrFUbTdMoLy9n1qxZXvvd240dO5Y//vGPxGIxgsFgp1+faWZVrKaVdFpKe9JTRN+QMcp+Mkb9h4xV/yDjlP1kjLKfjFH/IWPVf+xPY5XVgYL33nuPJUuWcMMNNwBQV1cHQDgczmiXvp9+vL6+nvz8/FbHKygo4NNPPwXcYodtHcvv9xMKhTKO5ff7CQQCrZ5TKUVdXV2nAwW6rlFYmNupfXtbOBzq6y6IfZAxyn4yRv2HjFX/IOOU/WSMsp+MUf8hY9V/7A9jlbWBgu3bt3Pttdcya9YsLrroor7uTo9wHEV9faSvu7FXhqETDoeor49i29lZkONAJ2OU/WSM+g8Zq/5Bxin7yRhlPxmj/kPGqv/oD2MVDof6XzHDtPr6ei699FIGDBjAb3/7W3TdfSEFBQWAmw1QWlqa0b7l4+FwmO3bt7c6bl1dndcmnXGQzixISyQSRKPRjGMlEgni8XhGVkF9fT2apnntOitbq2HuzradftPXA5WMUfaTMeo/ZKz6Bxmn7CdjlP1kjPqPbBkrx3Gwbauvu5GVDEPD79eIRqPYdu8vLmgYpnfu3FVZFyiIxWJcfvnlNDQ08Le//S1jCkG6TkB5eXlGzYDy8nJ8Pp+3VGFZWRnLly9HKZVRp6CiooIJEyYAkJOTw5AhQ7waBC3bKKW846f/r6io4KCDDsp4zqFDh3apPoEQQgghhBBC9AdKKerrq4lGG/u6K1lt1y4dx+m7gE4olEc4XNSqXl9HZVWgwLIsrrnmGsrLy3nkkUcYNGhQxuMjRoxg9OjRPPfcc5xwwgne9iVLljBnzhxv9YL58+fzu9/9juXLl3PkkUcC7on+559/zre+9S1vv/nz5/PSSy/x/e9/H5/P5x0rHA4zffp0AGbMmEFeXh7PPvusFyhIJpM8//zzzJ8/v+feDCGEEGI/4zRWgeFDD4X33VgIIURWSQcJ8vIK8fsDXT4R3V8ZhtYn2QRKKRKJOI2NNQAUFBR36XhZFSj42c9+xiuvvMIPf/hDGhsb+fDDD73HJk+ejN/v56qrruL6669n5MiRzJo1iyVLlvDxxx/z8MMPe22nT5/OvHnzuPHGG7nhhhsIBALccccdTJw4kZNOOslrt3DhQp5++mmuu+46zj//fFavXs3ixYu59tprvaBDIBDg8ssv57e//S1FRUVMmDCBv/zlL9TW1rJw4cJee2+EEEKI/kzFm2j66w9A08i75H40rf9XhBZCiAOF49hekCAvT4K9e2Oaep9NEfH73anyjY015OcXdmkaQlYFCt544w0AfvGLX7R67KWXXmL48OGcfvrpRKNRFi1axP3338+YMWO4++67vQyAtDvvvJPbbruNm266CcuymDdvHj/5yU8wzeaXPGrUKBYvXswvfvELLrvsMoqKirj66qu55JJLMo516aWXopTiwQcfpLq6mkmTJrF48WJvqoMQQggh9s6p2wGO7d7etRGjdHTfdkgIIUS72bb79zt9IiqyV3qMbNtC1/2dPo6mlOr9vAgBuAVJqqub+robe2WaOoWFudTUNGVF8RTRmoxR9pMx6j9krHqOtXUl0X/9EgD/4V8hMOPMTh9Lxin7yRhlPxmj/iMbxiqZTFBVtY3i4iH4fJ0/+TwQ9GVGAex7rIqKctu16oHk/QkhhBCi5yVi3s3kqtdRqewCIYQQQmQfCRQIIYQQosepRKT5dsNOmv58HU6krg97JIQQQog9yaoaBUIIIYTYP6lENPN+pBZnZwX6qGl90yEhhBAHrOeff5bHHvsLGzduQCkoLS1lypRDufzy71BYWATAlVdexocffgCApmmUlg5k6tRpXHHFlQwePASAJUue5tZbf9bq+F//+jf5z/+8KmPbv/71Tx5++CEqK7czYsQoLrvs28yde1RGm8bGRn7729tZtuxVLMti1qzZXHPNDygpKemJt2GvJFAghBBCiB6XzijwTZyP01SNvflTVKyhj3slhBDiQPPII3/k3nvv5pxzLmDhwitQSlFRsY7nn3+OXbt2eoECgClTDuU737kGx7EpL1/LokW/Z+XKz/jjH/9KMBj02v36178lNzcPANPUKCzMPLF/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llUDiuLhZ0FERERERL6GjQJqkhwYioCwHrCUVQN25y+hhriRkE09oJSeA/R+gCRBWKpgPf4eROUFWI/ubnRfuqhfQBcZC0CCZPAH9EboImIAnQFwWOEoyQEUO+AXBMkvGJJfkPNIhZ8Og5dDu7n1y73kHwxDv1Gt9hq0JV3XvtB17dtguSTrETD+/9qhIiIiIiIi6ujYKKCrouvSG7ouvV2W6Xsnou7g64DeD7rIWOcZ8QUACZACwyCH92xy7ruua2wbV01ERERERETNYaOAWo0caELA5N81vyIRERERERF5Lc+csp6IiIiIiIiINIGNAjfl5OTggQceQGJiIkaPHo1169bBarW2d1lERERERERErYpTD9xgNptx//33o0+fPtiwYQNKSkqwZs0aWCwWLF++vL3LIyIiIiIiImo1bBS4YevWraiursbGjRthMpkAAA6HA6tWrcK8efMQGRnZvgUSERERERERtRJOPXBDVlYWRo4cqTYJAGDq1KlQFAXZ2dntVxgRERERERFRK+MRBW7Izc3Fr371K5dlISEhiIiIQG5u7jXtW6/37l6NTie7/E3ehxl5P2akHcxKG5iT92NG3o8ZaQez0g5fyoqNAjdUVFQgJCSkwfLQ0FCYzear3q8sSwgLC7qW0jwmJCSgvUugZjAj78eMtINZaQNz8n7MyPsxI+1gVtrhC1mxUdDOHA6lvUtokiQBsixDURQI0d7VUGOYkfdjRtrBrLSBOXk/ZuT9mJF2MCvt0EJWsixBkqRm12OjwA0hISGorKxssNxsNiM0NPSq9ytJEnS65kPyBrKs/cNnfB0z8n7MSDuYlTYwJ+/HjLwfM9IOZqUdvpCV9p+BB/Tt27fBuQgqKytx4cIF9O3bt52qIiIiIiIiImp9bBS4ITk5GZ988gkqKirUZRkZGZBlGaNHj27HyoiIiIiIiIhalySEt86e8B5msxnTpk1DTEwM5s2bh5KSEqxZswYpKSlYvnx5e5dHRERERERE1GrYKHBTTk4OnnnmGRw7dgxBQUGYPn06Fi9eDKPR2N6lEREREREREbUaNgqIiIiIiIiISMVzFBARERERERGRio0CIiIiIiIiIlKxUUBEREREREREKjYKiIiIiIiIiEjFRgERERERERERqdgoICIiIiIiIiIVGwVEREREREREpGKjgIiIiIiIiIhUbBRoyPvvv49HHnkEycnJSExMxPTp0/H2229DCOGy3vbt2zF58mQMHDgQt99+O/bv3+9yv9Vqxbp163DPPfcgMTERCQkJKC0tbfB4EyZMQEJCQqN/jh8/3my9OTk5eOCBB5CYmIjRo0dj3bp1sFqtLuukp6dj4cKFSE5ORkJCAv7xj3+0/IXxEr6Yz6U++ugjJCQk4LbbbnPvBfFSvpbT+fPnr7j/gQMHXt2L5AW0lFN+fj6WL1+O6dOnY8CAAU2+R5qrV4s8nVX9vlJSUpCYmIixY8ciLS0NFy9edKtejk3az+dSHJu8MydfHZsAbWXVkcen9shpx44dmDJlCq6//npMmjQJmzdvdrvekpISLFy4EIMGDUJSUhKeeuopVFVVuayTnZ2Nxx9/HBMnTkRCQgJWr17t9v6vhr5N906t6p///CeioqKQmpqKsLAwfPLJJ3j66adRXFyMBQsWAADee+89PP3003j44YcxYsQIpKenY8GCBdiyZQsSExMBABaLBdu3b8fAgQMxZMgQHDp0qNHH27hxY4PB+cUXX0ROTg6uv/76Jms1m824//770adPH2zYsAElJSVYs2YNLBYLli9frq6XkZGBc+fOYdy4cdi2bds1vDrtzxfzqWexWPD888+jS5cuV/HKeBdfy6lr164N3jtCCMyZMwcjRoy4mpfIK2gpp9OnT+PAgQO48cYboShKgw8h9dypV4s8ndW7776LtLQ0PPTQQ7jppptQVFSE9evX48yZM9i6dWuTtXJs8o186nFs8t6cfHVsArSVVUcenzydU3p6Op588kncd999GDduHD7//HO88MILkCQJ9957b5O12mw2zJkzBwDw0ksvwWKxYO3atXj88cfxyiuvqOsdPHgQ3333HYYNGwaz2dwKr1IzBGnGxYsXGyxLS0sTgwcPFg6HQwghxC233CKWLFniss5dd90l5syZ47JMURQhhBA7duwQ8fHxje77ctXV1SIxMVGsXLmy2XU3bdokEhMTRVlZmbps69aton///qK4uFhdVl+3EELEx8eLv//9783u21v5Yj71/vSnP4l77rlHLFu2TEybNq3Z/XszX86p3pEjR0R8fLxIT09v9jG8lZZyuvTnWFPvEXfr1RpPZ/Xggw+Ke++912XZ22+/LeLj40VRUVGTtXJsctJ6PvU4Nmkjp3q+MDYJoa2sOvL45OmcJk+eLBYs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d9JSTrW1terliwoLC1FVVaWeZC0pKUn9wOBuvVrjyawkScLMmTPxr3/9C8HBwRg2bBiKioqwceNG9OvXr9n5zxybtJ8PxyZt5FTP18YmQFtZdeTxydOfIw4cOICCggLExcXBbDZjz549+PTTT/HWW281W+vkyZPxyiuvYOHChViyZAlqa2uxbt06jBs3DjfccIO6XmFhIU6ePAnAmW1BQYGa55QpU67p9WqMJLz9LAqkmjBhAgoLCxu9LzMzU+1Qbd++HX/7299QVFSEmJgYLFmyBOPHj3drXwsWLMDChQvV22fOnMG0adOwYsUKzJ49u0X15uTk4JlnnsGxY8cQFBSE6dOnY/HixS4dug0bNmDjxo0Nto2KisLHH3/cosdrb76Yz+VSU1Px1Vdfqd+6apGv5rRlyxasXr0a6enpDT5Ea5GWcjp//jxuvvnmRu+7fJ6oO/VqjaezslqtePXVV7Fr1y4UFRUhLCwMw4cPx+LFi9GtW7dm6+XY9DOt5nM5jk3em5OvjU2AtrLqyOOTp3PKzs7GunXrkJ+fD71ej6SkJDz++ONu/78vKSnBs88+i0OHDkGv12PSpEl48sknERwcrK6zc+dO/OEPf2h0+++//96tx2kJNgqIiIiIiIiISMXLIxIRERERERGRio0CIiIiIiIiIlKxUUBEREREREREKjYKiIiIiIiIiEjFRgERERERERERqdgoICIiIiIiIiIVGwVEREREREREpGKjgIiIiIiIiIhUbBQQERGRppw/fx4JCQnYuXNne5dCRETkk9goICIioja1c+dOJCQk4OTJk+1dChEREbmBjQIiIiIiIiIiUrFRQEREREREREQqNgqIiIjIo1JTUzFo0CCUlJTg0UcfxaBBgzBixAisXbsWDofDZd2KigqkpqZiyJAhGDp0KJYtW4bKyspG95uTk4PHHnsMSUlJGDhwIGbMmIHMzEz1/osXL2LEiBH4zW9+AyGEujw/Px+JiYlYtGhRmzxfIiIirWGjgIiIiDzO4XDgoYcegslkwu9//3skJSXh1VdfxbZt29R1hBB49NFHsWvXLtx+++1YtGgRiouLsWzZsgb7O336NO666y7k5ORg7ty5SE1NRWBgIObPn48PP/wQANC5c2esXLkSn332GTZv3gwAUBQFqampCAoKwooVKzzz5ImIiLycvr0LICIioo6nrq4OU6dOxfz58wEAs2bNwh133IG3334bs2fPBgBkZmbiv//9L5544gnMmTNHXe++++5rsL/nnnsO3bt3x44dO2A0GgEAs2fPxqxZs/Diiy9i0qRJAIApU6bgtttuwx//+EckJycjMzMTR48exZ///GeEhYV54qkTERF5PR5RQERERO1i1qxZLreHDBmC8+fPq7ezsrKg1+td1tPpdLj33ntdtisvL8eRI0cwdepUVFVVobS0FKWlpSgrK8OYMWOQl5eHkpISdf2nn34awcHBeOyxx/Dyyy9j+vTpmDhxYhs9SyIiIu3hEQVERETkcX5+fggPD3dZFhoaCrPZrN4uLCxEREQEgoKCXNaLiYlxuV1QUAAhBF5++WW8/PLLjT7exYsXERkZCQAwmUxIS0vD7373O3Tp0gVpaWmt8ZSIiIh8BhsFRERE5HE6na7V9qUoCgDgwQcfxE033dToOr169XK5fejQIQCA2WxGcXExQkJCWq0eIiIirWOjgIiIiLxSVFQUjhw5gurqapejCs6ePeuyXnR0NADAYDBg1KhRze43KysL27dvx5w5c7Bnzx6kpqbi3//+N/R6fiwiIiICeI4CIiIi8lLJycmw2+1466231GUOhwNvvvmmy3qdO3dGUlIStm3bhh9++KHBfkpLS9V/V1RUIC0tDTfccAOWLFmCZ599Fl9//TU2bdrUdk+EiIhIY9g6JyIiIq80YcIEDB48GC+99BIKCwsRFxeHffv2obKyssG6K1aswOzZs5GSkoKZM2ciOjoaP/74I44fP47i4mLs3r0bgPPqCOXl5Xjttdeg0+mQnJyMO++8E5s2bcLEiRNx3XXXefppEhEReR0eUUBEREReSZZl/OUvf0FKSgp2796N9evXIzIyEmvXrm2wblxcHHbs2IFx48bhnXfewerVq7F161bIsqxegjEzMxPvvvsuFi9ejNjYWHXb1NRUdO3aFcuWLYPNZvPY8yMiIvJWkhBCtHcRREREREREROQdeEQBEREREREREanYKCAiIiIiIiIiFRsFRERERERERKRio4CIiIiIiIiIVGwUEBEREREREZGKjQIiIiIiIiIiUrFRQEREREREREQqNgqIiIiIiIiISMVGARERERERERGp2CggIiIiIiIiIhUbBURERERERESkYqOAiIiIiIiIiFT/HxNXzZKEQ7XmAAAAAElFTkSuQmCC", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# Create figure and axes\n", + "fig, ax = plt.subplots()\n", + "\n", + "# Plot both DataFrames\n", + "sns.lineplot(data=df_sp, x=df_sp.index, y='close', label='SP500')\n", + "sns.lineplot(data=df_btc, x=df_btc.index, y='close', label='Bitcoin')\n", + "\n", + "# Customize the plot (e.g., labels, legend)\n", + "ax.set_xlabel('Index')\n", + "ax.set_ylabel('Close')\n", + "ax.legend()\n", + "\n", + "# Display the plot\n", + "plt.show()\n" + ] + }, + { + "cell_type": "code", + "execution_count": 348, + "id": "84fafaeb-21c1-4632-b106-e7c6893f977c", + "metadata": {}, + "outputs": [], + "source": [ + "df_sp_f = df_sp.reindex(df_btc.index).ffill().bfill()" + ] + }, + { + "cell_type": "code", + "execution_count": 353, + "id": "e09ce8ea-3bec-4d16-8a38-3f0591d2d247", + "metadata": {}, + "outputs": [], + "source": [ + "portfolio = pd.concat([df_btc, df_sp_f], sort=False).groupby(level='date').sum()" + ] + }, + { + "cell_type": "code", + "execution_count": 360, + "id": "f84c2022-c673-46dd-9775-e3a4542b3c95", + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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dtpfV4xPg2AwyO9//3vS09MP4ZvpWLpanDIzM5v9dizL4sorr2TixImH8hV1CJ0pThs3buSTTz5h5MiRmKbZ7CKkQWvq2xm1daxef/11brvtNq644gqmTZvGzp07eeSRR9i0aRPPP//8fusq56auEZ8Gcm7quHHqqucm6FyxOprPT20dp3nz5nHrrbfyve99jxkzZrBkyRLuvfdeFEXhkksu2W9dI5EIV155JQAPPfQQwWCQ+++/n5/97Gf83//9n13u008/Zd26dRxzzDFUVlYehm/pACzRaZSWljbbdtttt1ljxoyxDMOwLMuyTjzxROumm26KK3P++edbV155Zdw20zQty7KsV155xRo4cGCL+95bbW2tNWrUKOvOO+88YNknnnjCGjVqlFVeXm5ve/75563Bgwdbu3fvtrc11NuyLGvgwIHW3//+9wPuu6PqivFp8Oijj1oXX3yxdfPNN1unnnrqAfffkXXlODX48ssvrYEDB1rz5s074Ht0VJ0pTk2PY/v7jbS2vp1NW8fq8ssvty655JK4bS+//LI1cOBAa+fOnfutq5ybYjp7fBrIualzxKlBVzg3WVbnitXRfH5q6ziddNJJ1nXXXRe37e6777bGjx9vhcPh/db1rbfesvLy8qzNmzfb2z799FNr4MCB1vLly+1tTeN53HHHWXfdddd+9/tdydCDTiQ1NbXZtsGDB1NTU0NdXR3btm2joKCAU045Ja7M7Nmz+eKLL+LulimKctDvv2DBAurq6pg7d+4Byy5cuJBJkyaRnJxsbzvllFMwTZNFixbZ21S16/wJdsX4ABQWFvLPf/6T22677aDr1BF11Tg19fbbb5OQkMDMmTMPun4dRWeKU2uOYwdT386mrWMVjUZJSEiI25aYmAiwz7tlDeTcFNPZ4wNybmrQ0ePUVFc4N0HnitXRfH5qyzgFAgEKCgqYMmVK3PapU6dSUVFxwCGMCxcuJC8vj759+9rbpkyZQnJyMp988om9ra3PTV3nTHiU+uabb8jKyiIhIYH8/HwA+vTpE1emX79+RCIRtm3b9p3e6+233yY7O5sxY8YcsGx+fn7cHzuA3+8nIyPDrufRoCvE55577uH0009n0KBB36l+HVlXiFODSCTCe++9xwknnIDL5fpOde1oOmqcWuNI17ejOZKxOuecc/j000+ZP38+NTU1bNy4kSeeeILjjjuOHj167Pe1cm6K6QrxkXNTTEePU4OufG6Cjhur1jiazk9HKk7hcBjLsnA6nXHbGx5v3rx5v69v6TelKAp9+vRp13OTzFHQiS1ZsoR58+Zx8803A9hjVfx+f1y5hsffZSxLeXk5ixYt4vLLL29V+aqqqmb1AEhKSmqbMTUdQFeIz4cffsiyZcuYP3/+Ideto+sKcWpq4cKFVFRUdPqJvfbWkePUGkeyvh3NkY7V3LlzCQQC/PznPycSiQAwefJkHnnkkQO+Vs5NXSM+cm5q1JHj1FRXPTdBx45Vaxwt56cjGaekpCSSk5NZsWIFZ511lr29oSfBgfZVVVVl9xLZe7/t+f1Lj4JOavfu3dx4441MmDCB733ve0f8/d555x0ikUizA7xhGESjUfu/A3WBOlp0hfiEQiF+//vfc/3117fYfasr6Apx2ttbb71Feno6kyZN+q7V7TC6Ypy6qraI1Xvvvcd9993Hj3/8Y5555hnuv/9+tm7dyg033GDHRGLVsq4QHzk3HR5t/Tvqiucm6Jqx6oraIk4XXXQRr776Km+99RaVlZV89NFHPP3000Dj0AXTNDtVnKRHQSdUVVXFVVddRXJyMo899pg9XiUpKQmA6upqMjIy4so3ff5QvP322+Tl5TFw4MC47T/4wQ9YvHix/fjpp59mwoQJ+P1+qqurm+2nsrLyO9WjM+gq8fn3v/+Nqqqceuqpdh0jkQimaVJVVYXb7W7Wxaoz6Spxaqq2tpaPPvqIc889F03TDrmeHUlniFNrHMn6dhRtESvLsrjjjjs477zzuPbaa+3tOTk5XHTRRSxatIipU6fKuakFXSU+cm7qHHFqqiuem6BzxKo1uvr5qa2uI66++moKCwv5xS9+gWVZeL1efv7zn3P33Xfb+7/11lt57bXX7Nfce++9nHXWWfj9/mZLIULsN9W9e/eD+8CHkSQKOplgMMjVV19NdXU1L7zwQlw3lYaxLXuPc8nPz8fhcJCTk3NI77lz506WLl3KTTfd1Oy5u+66i9raWvtxwzifvn37NhtTU11dTUlJSbMxOF1JV4pPfn4+W7dubTH7f8wxx3DnnXdy4YUXHlKd21tXilNT77//PsFgsFUT8HUGnSVOrXGk6ttRtFWsysrKKCsrazYufciQIUBsgjuQc9PeulJ85NzUOeLUVFc7N0HniVVrdOXzU1teR7jdbh566CF+/etfU1JSQk5ODps2bQJg5MiRAFx33XVcfPHF9mt69uxp12XDhg1x+7Msiy1btjSbILEtSaKgE4lGo9xwww3k5+fz7LPPkpWVFfd8Tk4Oubm5zJ8/n1mzZtnb582bx6RJkw45w/72228DtDiubF8XVtOnT+eJJ56IG8c2f/58VFVt1z/4I6mrxeeqq67izDPPjHvdk08+yZYtW7j33nvJzc09pPq2t64Wp73fo1evXvYJqTPrTHFqjSNV346gLWOVmpqKx+NhzZo1nHHGGfb21atXA5CdnQ3IuamprhYfOTd1jjg11ZXOTdC5YtUaXfX81F7XEampqfawqGeffZZx48bZ8enZs6edHGhq+vTpvPnmmxQUFNjHsC+++IKKigqOPfbYQ6rH4SCJgk7krrvu4qOPPuKWW26hpqYmbqmNIUOG4HQ6uf766/n5z39Or169mDBhAvPmzWPFihX85z//idvXJ598QiAQYNWqVQB89NFH+Hw++vfvT//+/ePKvv3224wZM+agZla94IILeOaZZ7j22mu5+uqrKSoq4oEHHuCCCy6I+6Fu2rTJzrYBbNiwgfnz5+PxeNr1h3Eoulp8+vXrR79+/eJe99prr1FUVNTq7mwdUVeLU4OysjK++OILrrrqqoP8RjqmzhSnQCBgL1+0Y8cOampq7EnWxo8fb18wtLa+nU1bxkpRFM477zyee+45EhISOOaYY9i5cyePP/44AwYMOOD4Zzk3df74yLmpc8SpQVc7N0HnitXRfH5q6+uITz75hMLCQvr3709lZSVvvfUWX331Ff/9738PWNeTTjqJ//u//+P666/npptuIhAI8MADDzBjxgxGjBhhl9uxYwcrV64EYrEtLCy043nyySd/p++rJYrV0WdRELaZM2eyY8eOFp9bsGCBnaF66aWX+Nvf/sbOnTvp06cPN910E8cdd1yr9nXddddx/fXX2483bdrEqaeeyh133MFFF110UPXdvHkzv/3tb1m2bBk+n4/TTz+dG2+8MS5D99hjj/H44483e212djYffvjhQb1fe+uK8dnbLbfcwqpVq+y7rp1RV43Ts88+y9133828efOaXUR3Rp0pTtu3b+f4449v8bm9x4m2pr6dTVvHKhwO849//IM33niDnTt3kpKSwoQJE7jxxhvp1q3bAesr56ZGnTU+e5NzU8eNU1c7N0HnitXRfH5q6zgtWrSIBx54gK1bt6LrOuPHj+dnP/tZq//ui4qK+N3vfsdnn32GruuccMIJ3HrrrSQkJNhlXn31VX71q1+1+Pr169e36n0OhiQKhBBCCCGEEEIIYZPlEYUQQgghhBBCCGGTRIEQQgghhBBCCCFskigQQgghhBBCCCGETRIFQgghhBBCCCGEsEmiQAghhBBCCCGEEDZJFAghhBBCCCGEEMImiQIhhBBCCCGEEELYJFEghBBCCCGEEEIImyQKhBBCCNGpbN++nby8PF599dX2rooQQgjRJUmiQAghhBBH1KuvvkpeXh4rV65s76oIIYQQohUkUSCEEEIIIYQQQgibJAqEEEIIIYQQQghhk0SBEEIIIdrULbfcwujRoykqKuKaa65h9OjRTJw4kfvvvx/DMOLKVlVVccsttzB27FjGjRvHzTffTHV1dYv73bx5Mz/5yU8YP348w4cP56yzzmLBggX286WlpUycOJFLL70Uy7Ls7Vu3bmXUqFHccMMNR+TzCiGEEJ2NJAqEEEII0eYMw+CKK64gOTmZX/7yl4wfP55//OMfvPDCC3YZy7K45ppreOONNzjttNO44YYb2L17NzfffHOz/W3cuJHzzz+fzZs3c9VVV3HLLbfg9Xq59tpref/99wFIS0vjzjvvZPHixTzzzDMAmKbJLbfcgs/n44477mibDy+EEEJ0cHp7V0AIIYQQR59QKMQpp5zCtddeC8CFF17ImWeeycsvv8xFF10EwIIFC/j666/5xS9+wZVXXmmX+973vtdsf/fccw/du3fnlVdewel0AnDRRRdx4YUX8uCDD3LCCScAcPLJJzNnzhwefvhhpk+fzoIFC1i6dCl//vOfSUlJaYuPLoQQQnR40qNACCGEEO3iwgsvjHs8duxYtm/fbj9euHAhuq7HldM0jUsuuSTudRUVFXz55Zeccsop1NTUUFZWRllZGeXl5UydOpWCggKKiors8r/5zW9ISEjgJz/5CX/84x85/fTTmTVr1hH6lEIIIUTnIz0KhBBCCNHmXC4XqampcduSkpKorKy0H+/YsYOMjAx8Pl9cuT59+sQ9LiwsxLIs/vjHP/LHP/6xxfcrLS0lKysLgOTkZG677TZ++tOfkp6ezm233XY4PpIQQgjRZUiiQAghhBBtTtO0w7Yv0zQBuPzyy5k2bVqLZXr16hX3+LPPPgOgsrKS3bt34/f7D1t9hBBCiM5OEgVCCCGE6JCys7P58ssvqa2tjetVsGXLlrhyOTk5ADgcDiZPnnzA/S5cuJCXXnqJK6+8krfeeotbbrmFF198EV2XyyIhhBACZI4CIYQQQnRQ06dPJxqN8t///tfeZhgG//nPf+LKpaWlMX78eF544QWKi4ub7aesrMz+d1VVFbfddhsjRozgpptu4ne/+x2rV6/miSeeOHIfRAghhOhkJHUuhBBCiA5p5syZjBkzhoceeogdO3bQv39/3nvvPaqrq5uVveOOO7jooouYO3cu5513Hjk5OezZs4dvv/2W3bt38+abbwKx1REqKir45z//iaZpTJ8+nXPPPZcnnniCWbNmMWjQoLb+mEIIIUSHIz0KhBBCCNEhqarKX//6V+bOncubb77JI488QlZWFvfff3+zsv379+eVV15hxowZvPbaa9x99908//zzqKpqL8G4YMECXn/9dW688Ub69etnv/aWW24hMzOTm2++mUgk0mafTwghhOioFMuyrPauhBBCCCGEEEIIIToG6VEghBBCCCGEEEIImyQKhBBCCCGEEEIIYZNEgRBCCCGEEEIIIWySKBBCCCGEEEIIIYRNEgVCCCGEEEIIIYSwSaJACCGEEEIIIYQQNkkUCCGEEEIIIYQQwiaJAiGEEEIIIYQQQtgkUSCEEEIIIYQQQgibJAqEEEIIIYQQQghhk0SBEEIIIYQQQgghbJIoEEIIIYQQQgghhO3/AV12v/4GSwxiAAAAAElFTkSuQmCC", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# Create figure and axes\n", + "fig, ax = plt.subplots()\n", + "\n", + "# Plot both DataFrames\n", + "sns.lineplot(data=portfolio, x=portfolio.index, y='close', label='SP500 + BTC', linestyle='dashdot')\n", + "sns.lineplot(data=df_btc, x=df_btc.index, y='close', label='BTC', linestyle='dotted')\n", + "sns.lineplot(data=df_sp_f, x=df_sp_f.index, y='close', label='SP500', linestyle='--')\n", + "\n", + "# Customize the plot (e.g., labels, legend)\n", + "ax.set_xlabel('Index')\n", + "ax.set_ylabel('Close')\n", + "ax.legend()\n", + "\n", + "# Display the plot\n", + "plt.show()" + ] + }, + { + "cell_type": "markdown", + "id": "2c31f40f-ef10-49f3-8b4d-7bfd5ed89965", + "metadata": {}, + "source": [ + "## Naprawa df_long" + ] + }, + { + "cell_type": "code", + "execution_count": 371, + "id": "b44f84d3-ce86-439c-8ab8-1847cc3664f4", + "metadata": {}, + "outputs": [], + "source": [ + "df_long = pd.read_csv(\"data/long_data.csv\", parse_dates=['date'], usecols=['date', 'datatype', 'value'])" + ] + }, + { + "cell_type": "code", + "execution_count": 372, + "id": "3fcf062f-de19-42f5-9c60-ccf6f097deef", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "RangeIndex: 93 entries, 0 to 92\n", + "Data columns (total 4 columns):\n", + " # Column Non-Null Count Dtype \n", + "--- ------ -------------- ----- \n", + " 0 datatype 93 non-null object \n", + " 1 date 93 non-null datetime64[ns]\n", + " 2 temp_C 93 non-null float64 \n", + " 3 temp_F 93 non-null float64 \n", + "dtypes: datetime64[ns](1), float64(2), object(1)\n", + "memory usage: 3.0+ KB\n" + ] + } + ], + "source": [ + "df_long = df_long.assign(temp_F = lambda x: x.value * 9/5 + 32).rename(columns={'value':'temp_C'})\n", + "df_long.info()" + ] + }, + { + "cell_type": "code", + "execution_count": 369, + "id": "f44206d7-4511-4a17-8e1a-a17fc6795c4e", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
date2018-10-012018-10-012018-10-012018-10-022018-10-022018-10-022018-10-032018-10-032018-10-032018-10-04...2018-10-282018-10-292018-10-292018-10-292018-10-302018-10-302018-10-302018-10-312018-10-312018-10-31
datatypeTMAXTMINTOBSTMAXTMINTOBSTMAXTMINTOBSTMAX...TOBSTMAXTMINTOBSTMAXTMINTOBSTMAXTMINTOBS
temp_C21.18.913.923.913.917.225.015.616.122.8...7.210.66.78.313.32.25.012.20.00.0
temp_F69.9848.0257.0275.0257.0262.9677.060.0860.9873.04...44.9651.0844.0646.9455.9435.9641.053.9632.032.0
\n", + "

3 rows × 93 columns

\n", + "
" + ], + "text/plain": [ + "date 2018-10-01 2018-10-01 2018-10-01 2018-10-02 2018-10-02 2018-10-02 \\\n", + "datatype TMAX TMIN TOBS TMAX TMIN TOBS \n", + "temp_C 21.1 8.9 13.9 23.9 13.9 17.2 \n", + "temp_F 69.98 48.02 57.02 75.02 57.02 62.96 \n", + "\n", + "date 2018-10-03 2018-10-03 2018-10-03 2018-10-04 ... 2018-10-28 \\\n", + "datatype TMAX TMIN TOBS TMAX ... TOBS \n", + "temp_C 25.0 15.6 16.1 22.8 ... 7.2 \n", + "temp_F 77.0 60.08 60.98 73.04 ... 44.96 \n", + "\n", + "date 2018-10-29 2018-10-29 2018-10-29 2018-10-30 2018-10-30 2018-10-30 \\\n", + "datatype TMAX TMIN TOBS TMAX TMIN TOBS \n", + "temp_C 10.6 6.7 8.3 13.3 2.2 5.0 \n", + "temp_F 51.08 44.06 46.94 55.94 35.96 41.0 \n", + "\n", + "date 2018-10-31 2018-10-31 2018-10-31 \n", + "datatype TMAX TMIN TOBS \n", + "temp_C 12.2 0.0 0.0 \n", + "temp_F 53.96 32.0 32.0 \n", + "\n", + "[3 rows x 93 columns]" + ] + }, + "execution_count": 369, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# transpose\n", + "df_long.set_index('date').T" + ] + }, + { + "cell_type": "code", + "execution_count": 393, + "id": "5e026fc2-5ef7-4867-9c84-d961b93776f3", + "metadata": {}, + "outputs": [], + "source": [ + "# pivot\n", + "df_long_piv = df_long.pivot(\n", + " index='date',\n", + " columns='datatype',\n", + " values=['temp_C', 'temp_F']\n", + ")" + ] + }, + { + "cell_type": "code", + "execution_count": 397, + "id": "a49458b0-b1ef-4cb0-b5e5-69b784b8ee5a", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " temp_C temp_F\n", + "date datatype \n", + "2018-10-01 TMAX 21.1 69.98\n", + " TMIN 8.9 48.02\n", + " TOBS 13.9 57.02\n", + "2018-10-02 TMAX 23.9 75.02\n", + " TMIN 13.9 57.02\n" + ] + }, + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 397, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "print(df_long.set_index(['date','datatype']).head())\n", + "df_long.set_index(['date','datatype']).unstack().equals(df_long_piv)" + ] + }, + { + "cell_type": "markdown", + "id": "9acff35d-4675-4f7d-92a7-81287e2f3e1a", + "metadata": {}, + "source": [ + "## Dirty data" + ] + }, + { + "cell_type": "code", + "execution_count": 419, + "id": "186dafe4-4c8c-41fc-9c22-e2ff8f059cd4", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
datestationPRCPSNOWSNWDTMAXTMINTOBSWESFinclement_weather
3782018-06-29T00:00:00?0.5NaNNaN5505.0-40.0NaNNaNNaN
7422018-12-24T00:00:00?1.5NaNNaN5505.0-40.0NaNNaNNaN
2472018-04-30T00:00:00GHCND:USC002809070.00.0-inf13.37.27.2NaNFalse
\n", + "
" + ], + "text/plain": [ + " date station PRCP SNOW SNWD TMAX TMIN \\\n", + "378 2018-06-29T00:00:00 ? 0.5 NaN NaN 5505.0 -40.0 \n", + "742 2018-12-24T00:00:00 ? 1.5 NaN NaN 5505.0 -40.0 \n", + "247 2018-04-30T00:00:00 GHCND:USC00280907 0.0 0.0 -inf 13.3 7.2 \n", + "\n", + " TOBS WESF inclement_weather \n", + "378 NaN NaN NaN \n", + "742 NaN NaN NaN \n", + "247 7.2 NaN False " + ] + }, + "execution_count": 419, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df = pd.read_csv(\"data/dirty_data.csv\")\n", + "df.sample(3)" + ] + }, + { + "cell_type": "code", + "execution_count": 424, + "id": "dcc25f9d-b9b2-4ffa-b8f6-34b7a4920291", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
datestationPRCPSNOWSNWDTMAXTMINTOBSWESFinclement_weather
92018-01-05T00:00:00?0.3NaNNaN5505.0-40.0NaNNaNNaN
102018-01-05T00:00:00?0.3NaNNaN5505.0-40.0NaNNaNNaN
212018-01-12T00:00:00?0.5NaNNaN5505.0-40.0NaNNaNNaN
222018-01-12T00:00:00?0.5NaNNaN5505.0-40.0NaNNaNNaN
252018-01-13T00:00:00?17.5NaNNaN5505.0-40.0NaNNaNNaN
.................................
7542018-12-28T00:00:00?11.4NaNNaN5505.0-40.0NaNNaNNaN
7562018-12-28T00:00:00?11.4NaNNaN5505.0-40.0NaNNaNNaN
7572018-12-29T00:00:00?21.3NaNNaN5505.0-40.0NaNNaNNaN
7582018-12-29T00:00:00?21.3NaNNaN5505.0-40.0NaNNaNNaN
7592018-12-30T00:00:00?0.0NaNNaN5505.0-40.0NaNNaNNaN
\n", + "

188 rows × 10 columns

\n", + "
" + ], + "text/plain": [ + " date station PRCP SNOW SNWD TMAX TMIN TOBS WESF \\\n", + "9 2018-01-05T00:00:00 ? 0.3 NaN NaN 5505.0 -40.0 NaN NaN \n", + "10 2018-01-05T00:00:00 ? 0.3 NaN NaN 5505.0 -40.0 NaN NaN \n", + "21 2018-01-12T00:00:00 ? 0.5 NaN NaN 5505.0 -40.0 NaN NaN \n", + "22 2018-01-12T00:00:00 ? 0.5 NaN NaN 5505.0 -40.0 NaN NaN \n", + "25 2018-01-13T00:00:00 ? 17.5 NaN NaN 5505.0 -40.0 NaN NaN \n", + ".. ... ... ... ... ... ... ... ... ... \n", + "754 2018-12-28T00:00:00 ? 11.4 NaN NaN 5505.0 -40.0 NaN NaN \n", + "756 2018-12-28T00:00:00 ? 11.4 NaN NaN 5505.0 -40.0 NaN NaN \n", + "757 2018-12-29T00:00:00 ? 21.3 NaN NaN 5505.0 -40.0 NaN NaN \n", + "758 2018-12-29T00:00:00 ? 21.3 NaN NaN 5505.0 -40.0 NaN NaN \n", + "759 2018-12-30T00:00:00 ? 0.0 NaN NaN 5505.0 -40.0 NaN NaN \n", + "\n", + " inclement_weather \n", + "9 NaN \n", + "10 NaN \n", + "21 NaN \n", + "22 NaN \n", + "25 NaN \n", + ".. ... \n", + "754 NaN \n", + "756 NaN \n", + "757 NaN \n", + "758 NaN \n", + "759 NaN \n", + "\n", + "[188 rows x 10 columns]" + ] + }, + "execution_count": 424, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "has_nan = df[df.PRCP.isna() | df.SNOW.isna() | df.SNWD.isna() ]\n", + "has_nan" + ] + }, + { + "cell_type": "code", + "execution_count": 426, + "id": "46e2ff43-6923-45a2-a378-e650355c09d0", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
datestationPRCPSNOWSNWDTMAXTMINTOBSWESFinclement_weather
12018-01-01T00:00:00?0.00.0-inf5505.0-40.0NaNNaNNaN
22018-01-01T00:00:00?0.00.0-inf5505.0-40.0NaNNaNNaN
52018-01-03T00:00:00GHCND:USC002809070.00.0-inf-4.4-13.9-13.3NaNFalse
62018-01-03T00:00:00GHCND:USC002809070.00.0-inf-4.4-13.9-13.3NaNFalse
82018-01-04T00:00:00?20.6229.0inf5505.0-40.0NaN19.3True
.................................
7562018-12-28T00:00:00?11.4NaNNaN5505.0-40.0NaNNaNNaN
7582018-12-29T00:00:00?21.3NaNNaN5505.0-40.0NaNNaNNaN
7612018-12-31T00:00:00GHCND:USC002809070.00.0-inf3.3-3.3-2.8NaNFalse
7622018-12-31T00:00:00GHCND:USC002809070.00.0-inf3.3-3.3-2.8NaNFalse
7642018-12-31T00:00:00?0.00.0-inf5505.0-40.0NaNNaNNaN
\n", + "

284 rows × 10 columns

\n", + "
" + ], + "text/plain": [ + " date station PRCP SNOW SNWD TMAX TMIN \\\n", + "1 2018-01-01T00:00:00 ? 0.0 0.0 -inf 5505.0 -40.0 \n", + "2 2018-01-01T00:00:00 ? 0.0 0.0 -inf 5505.0 -40.0 \n", + "5 2018-01-03T00:00:00 GHCND:USC00280907 0.0 0.0 -inf -4.4 -13.9 \n", + "6 2018-01-03T00:00:00 GHCND:USC00280907 0.0 0.0 -inf -4.4 -13.9 \n", + "8 2018-01-04T00:00:00 ? 20.6 229.0 inf 5505.0 -40.0 \n", + ".. ... ... ... ... ... ... ... \n", + "756 2018-12-28T00:00:00 ? 11.4 NaN NaN 5505.0 -40.0 \n", + "758 2018-12-29T00:00:00 ? 21.3 NaN NaN 5505.0 -40.0 \n", + "761 2018-12-31T00:00:00 GHCND:USC00280907 0.0 0.0 -inf 3.3 -3.3 \n", + "762 2018-12-31T00:00:00 GHCND:USC00280907 0.0 0.0 -inf 3.3 -3.3 \n", + "764 2018-12-31T00:00:00 ? 0.0 0.0 -inf 5505.0 -40.0 \n", + "\n", + " TOBS WESF inclement_weather \n", + "1 NaN NaN NaN \n", + "2 NaN NaN NaN \n", + "5 -13.3 NaN False \n", + "6 -13.3 NaN False \n", + "8 NaN 19.3 True \n", + ".. ... ... ... \n", + "756 NaN NaN NaN \n", + "758 NaN NaN NaN \n", + "761 -2.8 NaN False \n", + "762 -2.8 NaN False \n", + "764 NaN NaN NaN \n", + "\n", + "[284 rows x 10 columns]" + ] + }, + "execution_count": 426, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df[df.duplicated()]" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "fa315af5-022a-4194-8704-099f91fc0548", + "metadata": {}, "outputs": [], "source": [] } diff --git a/PythonAI/JupyterLab/data/bitcoin.csv b/PythonAI/JupyterLab/data/bitcoin.csv new file mode 100644 index 0000000..422810e --- /dev/null +++ b/PythonAI/JupyterLab/data/bitcoin.csv @@ -0,0 +1,731 @@ +date,open,high,low,close,volume,market_cap +2017-01-01,963.66,1003.08,958.7,998.33,147775008,16050407461 +2017-01-02,998.62,1031.39,996.7,1021.75,222184992,16429024775 +2017-01-03,1021.6,1044.08,1021.6,1043.84,185168000,16786368910 +2017-01-04,1044.4,1159.42,1044.4,1154.73,344945984,18571869009 +2017-01-05,1156.73,1191.1,910.42,1013.38,510199008,16300254795 +2017-01-06,1014.24,1046.81,883.94,902.2,351876000,14513695758 +2017-01-07,903.49,908.59,823.56,908.59,279550016,14618030536 +2017-01-08,908.17,942.72,887.25,911.2,158715008,14661966429 +2017-01-09,913.24,913.69,879.81,902.83,141876992,14528815565 +2017-01-10,902.44,914.87,901.06,907.68,115808000,14608685049 +2017-01-11,908.11,919.45,762.77,777.76,310928992,12519135996 +2017-01-12,775.18,826.25,755.76,804.83,222326000,12956730411 +2017-01-13,803.74,829.0,780.0,823.98,168968000,13266554392 +2017-01-14,825.14,835.09,812.46,818.41,93063296,13178601992 +2017-01-15,818.14,823.31,812.87,821.8,71013600,13234840657 +2017-01-16,821.78,834.53,820.27,831.53,82755200,13393372620 +2017-01-17,830.95,910.56,830.8,907.94,155095008,14625779851 +2017-01-18,909.37,917.5,858.3,886.62,225676992,14284036613 +2017-01-19,888.34,904.61,884.34,899.07,105625000,14486616700 +2017-01-20,898.17,899.4,887.01,895.03,86728400,14423545371 +2017-01-21,895.55,927.37,895.53,921.79,111158000,14856911163 +2017-01-22,922.21,937.53,897.56,924.67,116573000,14905439337 +2017-01-23,925.5,928.27,916.74,921.01,73588600,14848013909 +2017-01-24,910.68,924.15,892.29,892.69,111349000,14393026385 +2017-01-25,891.92,903.25,891.69,901.54,120831000,14537488261 +2017-01-26,902.4,919.33,902.22,917.59,131958000,14797955301 +2017-01-27,918.36,923.22,915.85,919.75,125594000,14834831700 +2017-01-28,919.81,923.91,919.81,921.59,68979600,14866260449 +2017-01-29,922.07,923.42,919.15,919.5,60851700,14834377926 +2017-01-30,920.15,923.05,919.47,920.38,78227296,14850351605 +2017-01-31,920.96,972.02,920.96,970.4,164582000,15659186515 +2017-02-01,970.94,989.11,970.74,989.02,150110000,15962015276 +2017-02-02,990.0,1013.52,983.22,1011.8,145820992,16331615570 +2017-02-03,1011.46,1033.87,1008.79,1029.91,201278000,16625849489 +2017-02-04,1031.33,1045.9,1015.16,1042.9,155064000,16837411920 +2017-02-05,1043.52,1043.63,1022.37,1027.34,114208000,16588240157 +2017-02-06,1028.4,1044.64,1028.16,1038.15,111762000,16764422010 +2017-02-07,1040.14,1061.93,1040.14,1061.35,146007008,17141080574 +2017-02-08,1062.32,1078.97,1037.49,1063.07,201855008,17170799127 +2017-02-09,1064.7,1088.99,953.34,994.38,407220000,16063448932 +2017-02-10,995.63,998.91,946.69,988.67,190452000,15973053725 +2017-02-11,988.9,1009.29,982.83,1004.45,102261000,16229677099 +2017-02-12,1003.52,1004.76,996.92,999.18,67530000,16146290349 +2017-02-13,998.89,1002.1,976.0,990.64,100607000,16010322103 +2017-02-14,991.73,1011.51,986.47,1004.55,137946000,16237219721 +2017-02-15,1006.21,1008.84,1001.58,1007.48,89759400,16286329282 +2017-02-16,1007.65,1033.37,1007.65,1027.44,122277000,16610905026 +2017-02-17,1026.12,1053.17,1025.64,1046.21,136474000,16916338976 +2017-02-18,1049.21,1061.1,1046.96,1054.42,99073504,17051064834 +2017-02-19,1054.76,1056.81,1043.46,1047.87,77423296,16946913346 +2017-02-20,1048.69,1080.49,1041.69,1079.98,109478000,17468244508 +2017-02-21,1079.28,1117.25,1076.93,1115.3,186868992,18041455273 +2017-02-22,1114.8,1125.39,1100.55,1117.44,136100000,18077985665 +2017-02-23,1117.27,1176.62,1116.96,1166.72,189454000,18877442096 +2017-02-24,1172.71,1200.39,1131.96,1173.68,330759008,18992415818 +2017-02-25,1170.41,1174.85,1124.59,1143.84,139960992,18511906560 +2017-02-26,1144.27,1167.47,1130.2,1165.2,116486000,18860247630 +2017-02-27,1163.78,1181.98,1163.38,1179.97,131570000,19101427518 +2017-02-28,1180.72,1193.25,1171.82,1179.97,184956000,19103684801 +2017-03-01,1180.04,1222.5,1179.69,1222.5,229056992,19794459608 +2017-03-02,1224.68,1262.13,1215.62,1251.01,368275008,20258543188 +2017-03-03,1250.71,1280.31,1250.71,1274.99,315739008,20649259919 +2017-03-04,1277.43,1279.4,1230.51,1255.15,183270000,20329978338 +2017-03-05,1254.29,1267.29,1238.06,1267.12,134127000,20526235270 +2017-03-06,1267.47,1276.0,1264.6,1272.83,153656992,20620991547 +2017-03-07,1273.21,1275.55,1204.8,1223.54,291256000,19824773912 +2017-03-08,1223.23,1232.16,1148.08,1150.0,332603008,18635275050 +2017-03-09,1150.35,1197.46,1141.23,1188.49,212283008,19261188310 +2017-03-10,1189.36,1270.47,1077.25,1116.72,563795968,18100188612 +2017-03-11,1116.32,1193.83,1116.32,1175.83,283320000,19060468862 +2017-03-12,1176.62,1226.98,1175.36,1221.38,227176000,19801195767 +2017-03-13,1221.78,1237.37,1217.03,1231.92,380276992,19974334865 +2017-03-14,1232.16,1244.81,1220.72,1240.0,245306000,20107761880 +2017-03-15,1240.16,1251.61,1239.75,1249.61,297804992,20265831337 +2017-03-16,1251.33,1257.98,1152.44,1187.81,638568000,19265847025 +2017-03-17,1180.16,1180.16,1099.57,1100.23,706598976,17847435957 +2017-03-18,1099.69,1114.07,957.66,973.82,621302016,15798760668 +2017-03-19,976.73,1069.91,976.73,1036.74,406648000,16821676707 +2017-03-20,1037.24,1063.03,1036.68,1054.23,286529984,17107266418 +2017-03-21,1055.36,1122.43,1055.36,1120.54,337391008,18185299687 +2017-03-22,1120.65,1120.65,1014.21,1049.14,380840992,17028630158 +2017-03-23,1050.05,1058.01,1028.93,1038.59,248540000,16859314109 +2017-03-24,1038.45,1040.47,934.36,937.52,491038016,15220718764 +2017-03-25,936.54,975.76,903.71,972.78,435803008,15794781102 +2017-03-26,974.02,1007.96,954.19,966.72,303668000,15698465531 +2017-03-27,972.05,1046.4,971.98,1045.77,372535008,16983801541 +2017-03-28,1044.58,1064.65,1027.73,1047.15,326332000,17008241726 +2017-03-29,1046.08,1055.13,1015.88,1039.97,298457984,16893415156 +2017-03-30,1042.21,1049.29,1020.04,1026.43,352968992,16675587066 +2017-03-31,1026.64,1074.92,1026.64,1071.79,447287008,17414322808 +2017-04-01,1071.71,1091.72,1061.09,1080.5,289633984,17557597716 +2017-04-02,1080.61,1107.59,1075.45,1102.17,514187008,17911915755 +2017-04-03,1102.95,1151.74,1102.95,1143.81,580444032,18591158323 +2017-04-04,1145.52,1156.44,1120.52,1133.25,436310016,18421262063 +2017-04-05,1134.14,1135.09,1113.63,1124.78,414784000,18285857775 +2017-04-06,1125.81,1188.37,1125.81,1182.68,511222016,19229356147 +2017-04-07,1178.94,1186.58,1163.39,1176.9,317022016,19137747435 +2017-04-08,1172.65,1184.98,1162.58,1175.95,209312000,19124327856 +2017-04-09,1176.57,1197.21,1171.86,1187.87,242343008,19320511927 +2017-04-10,1187.3,1190.34,1179.04,1187.13,215883008,19310642460 +2017-04-11,1187.46,1208.07,1187.46,1205.01,216182000,19604036563 +2017-04-12,1204.81,1207.14,1196.76,1200.37,288702016,19530680104 +2017-04-13,1201.02,1205.89,1156.44,1169.28,351968992,19026699552 +2017-04-14,1170.33,1190.8,1159.79,1167.54,254827008,19000400018 +2017-04-15,1167.3,1188.0,1164.96,1172.52,203559008,19083656460 +2017-04-16,1172.61,1187.22,1172.61,1182.94,183231008,19255408766 +2017-04-17,1183.25,1194.9,1172.65,1193.91,253206000,19436033390 +2017-04-18,1193.77,1217.57,1193.77,1211.67,270524000,19727334977 +2017-04-19,1212.13,1215.51,1205.08,1210.29,288060992,19707045565 +2017-04-20,1211.08,1240.79,1208.41,1229.08,315108000,20015137622 +2017-04-21,1229.42,1235.94,1215.56,1222.05,272167008,19903192286 +2017-04-22,1222.71,1235.56,1208.47,1231.71,249320000,20062753908 +2017-04-23,1231.92,1232.2,1203.94,1207.21,258951008,19665994145 +2017-04-24,1209.63,1250.94,1209.63,1250.15,235806000,20367443800 +2017-04-25,1250.45,1267.58,1249.97,1265.49,242556000,20619704237 +2017-04-26,1265.99,1294.83,1265.93,1281.08,329631008,20876159410 +2017-04-27,1281.88,1319.7,1281.3,1317.73,449196992,21475836448 +2017-04-28,1317.74,1331.28,1292.37,1316.48,527488992,21457669552 +2017-04-29,1317.84,1327.2,1315.21,1321.79,422705984,21547126640 +2017-04-30,1321.87,1347.91,1314.92,1347.89,413115008,21975104909 +2017-05-01,1348.3,1434.32,1348.3,1421.6,713624000,23179524919 +2017-05-02,1421.03,1473.9,1415.69,1452.82,477337984,23691443738 +2017-05-03,1453.78,1492.77,1447.49,1490.09,583795968,24301634925 +2017-05-04,1490.72,1608.91,1490.72,1537.67,933548992,25080858487 +2017-05-05,1540.87,1618.03,1530.31,1555.45,946035968,25373374563 +2017-05-06,1556.81,1578.8,1542.5,1578.8,582529984,25757608890 +2017-05-07,1579.47,1596.72,1559.76,1596.71,1080029952,26053077975 +2017-05-08,1596.92,1723.35,1596.92,1723.35,1340320000,28123369330 +2017-05-09,1723.89,1833.49,1716.3,1755.36,1167920000,28649119972 +2017-05-10,1756.52,1788.44,1719.1,1787.13,915723008,29170965564 +2017-05-11,1780.37,1873.93,1755.35,1848.57,799489984,30176934751 +2017-05-12,1845.76,1856.15,1694.01,1724.24,740984000,28150631936 +2017-05-13,1723.12,1812.99,1651.08,1804.91,579635008,29471223857 +2017-05-14,1800.86,1831.42,1776.62,1808.91,437196000,29540290794 +2017-05-15,1808.44,1812.8,1708.54,1738.43,731529024,28392885375 +2017-05-16,1741.7,1785.94,1686.54,1734.45,959044992,28330874003 +2017-05-17,1726.73,1864.05,1661.91,1839.09,1064729984,30043626195 +2017-05-18,1818.7,1904.48,1807.12,1888.65,894321024,30856574835 +2017-05-19,1897.37,2004.52,1890.25,1987.71,1157289984,32479082015 +2017-05-20,1984.24,2084.73,1974.92,2084.73,961336000,34068630559 +2017-05-21,2067.03,2119.08,2037.5,2041.2,1147859968,33361091114 +2017-05-22,2043.19,2303.9,2017.87,2173.4,1942220032,35525744380 +2017-05-23,2191.56,2320.82,2178.5,2320.42,1378749952,37933704066 +2017-05-24,2321.37,2523.72,2321.37,2443.64,1725379968,39952841999 +2017-05-25,2446.24,2763.71,2285.3,2304.98,2406700032,37690456715 +2017-05-26,2320.89,2573.79,2071.99,2202.42,1763480064,36017660894 +2017-05-27,2196.27,2260.2,1855.83,2038.87,1700480000,33347170525 +2017-05-28,2054.08,2267.34,2054.08,2155.8,1147139968,35264171110 +2017-05-29,2159.43,2307.05,2107.17,2255.61,994625024,36901102917 +2017-05-30,2255.36,2301.96,2124.57,2175.47,1443970048,35594903085 +2017-05-31,2187.19,2311.08,2145.57,2286.41,1544829952,37414813240 +2017-06-01,2288.33,2448.39,2288.33,2407.88,1653180032,39407633763 +2017-06-02,2404.03,2488.55,2373.32,2488.55,1317030016,40732491835 +2017-06-03,2493.72,2581.91,2423.57,2515.35,1514950016,41177190057 +2017-06-04,2547.79,2585.89,2452.54,2511.81,1355120000,41124262595 +2017-06-05,2512.4,2686.81,2510.22,2686.81,1369309952,43994968834 +2017-06-06,2690.84,2999.91,2690.84,2863.2,2089609984,46888622160 +2017-06-07,2869.38,2869.38,2700.56,2732.16,1517709952,44748237218 +2017-06-08,2720.49,2815.3,2670.95,2805.62,1281170048,45957247989 +2017-06-09,2807.44,2901.71,2795.62,2823.81,1348950016,46260465854 +2017-06-10,2828.14,2950.99,2746.55,2947.71,2018889984,48295501718 +2017-06-11,2942.41,2996.6,2840.53,2958.11,1752400000,48471330146 +2017-06-12,2953.22,2997.26,2518.56,2659.63,2569530112,43585351533 +2017-06-13,2680.91,2789.04,2650.38,2717.02,1781200000,44530631894 +2017-06-14,2716.88,2786.83,2412.94,2506.37,1696560000,41082567339 +2017-06-15,2499.58,2534.71,2212.96,2464.58,2026259968,40402259202 +2017-06-16,2469.57,2539.92,2385.15,2518.56,1195190016,41291821423 +2017-06-17,2514.01,2685.19,2484.96,2655.88,1534509952,43548031452 +2017-06-18,2655.35,2662.1,2516.33,2548.29,1178659968,41788418974 +2017-06-19,2549.03,2662.85,2549.03,2589.6,1446840064,42470734800 +2017-06-20,2591.26,2763.45,2589.82,2721.79,1854189952,44643512689 +2017-06-21,2709.43,2772.01,2660.4,2689.1,1626579968,44111929173 +2017-06-22,2691.03,2723.74,2642.36,2705.41,1097939968,44384244937 +2017-06-23,2707.34,2765.17,2706.37,2744.91,961318976,45037797053 +2017-06-24,2738.52,2757.94,2583.19,2608.72,982750016,42807952581 +2017-06-25,2607.25,2682.26,2552.12,2589.41,1161100032,42495001716 +2017-06-26,2590.57,2615.25,2376.29,2478.45,1663280000,40677994354 +2017-06-27,2478.45,2552.45,2332.99,2552.45,1489789952,41897190525 +2017-06-28,2553.03,2603.98,2484.42,2574.79,1183869952,42268942193 +2017-06-29,2567.56,2588.83,2510.48,2539.32,949979008,41690395783 +2017-06-30,2539.24,2559.25,2478.43,2480.84,860273024,40735082695 +2017-07-01,2492.6,2515.27,2419.23,2434.55,779913984,39980058373 +2017-07-02,2436.4,2514.28,2394.84,2506.47,803747008,41167015221 +2017-07-03,2498.56,2595.0,2480.47,2564.06,964112000,42118211083 +2017-07-04,2561.0,2631.59,2559.35,2601.64,985516032,42740618673 +2017-07-05,2602.87,2622.65,2538.55,2601.99,941566016,42751085999 +2017-07-06,2608.1,2616.72,2581.69,2608.56,761956992,42863758795 +2017-07-07,2608.59,2916.14,2498.87,2518.66,917411968,41391217675 +2017-07-08,2520.27,2571.34,2492.31,2571.34,733329984,42262222823 +2017-07-09,2572.61,2635.49,2517.59,2518.44,527856000,41397076604 +2017-07-10,2525.25,2537.16,2321.13,2372.56,1111200000,39005033499 +2017-07-11,2385.89,2413.47,2296.81,2337.79,1329760000,38438497236 +2017-07-12,2332.77,2423.71,2275.14,2398.84,1117410048,39447604438 +2017-07-13,2402.7,2425.22,2340.83,2357.9,835769984,38778935907 +2017-07-14,2360.59,2363.25,2183.22,2233.34,882502976,36734255488 +2017-07-15,2230.12,2231.14,1990.41,1998.86,993608000,32880721300 +2017-07-16,1991.98,2058.77,1843.03,1929.82,1182870016,31748939343 +2017-07-17,1932.62,2230.49,1932.62,2228.41,1201760000,36665393517 +2017-07-18,2233.52,2387.61,2164.77,2318.88,1512450048,38158677672 +2017-07-19,2323.08,2397.17,2260.23,2273.43,1245100032,37415031061 +2017-07-20,2269.89,2900.7,2269.89,2817.6,2249260032,46376428080 +2017-07-21,2838.41,2838.41,2621.85,2667.76,1489449984,43915296559 +2017-07-22,2668.63,2862.42,2657.71,2810.12,1177129984,46264340367 +2017-07-23,2808.1,2832.18,2653.94,2730.4,1072840000,44957775265 +2017-07-24,2732.7,2777.26,2699.19,2754.86,866473984,45366654309 +2017-07-25,2757.5,2768.08,2480.96,2576.48,1460089984,42433788244 +2017-07-26,2577.77,2610.76,2450.8,2529.45,937404032,41663929265 +2017-07-27,2538.71,2693.32,2529.34,2671.78,789104000,44013533097 +2017-07-28,2679.73,2897.45,2679.73,2809.01,1380099968,46279316161 +2017-07-29,2807.02,2808.76,2692.8,2726.45,803745984,44924534585 +2017-07-30,2724.39,2758.53,2644.85,2757.18,705942976,45435913868 +2017-07-31,2763.24,2889.62,2720.61,2875.34,860574976,47388334773 +2017-08-01,2871.3,2921.35,2685.61,2718.26,1324669952,44804603885 +2017-08-02,2727.13,2762.53,2668.59,2710.67,1094950016,44684649516 +2017-08-03,2709.56,2813.31,2685.14,2804.73,804796992,46239970790 +2017-08-04,2806.93,2899.33,2743.72,2895.89,1002120000,47749461443 +2017-08-05,2897.63,3290.01,2874.83,3252.91,1945699968,53643452554 +2017-08-06,3257.61,3293.29,3155.6,3213.94,1105030016,53006426108 +2017-08-07,3212.78,3397.68,3180.89,3378.94,1482279936,55734179251 +2017-08-08,3370.22,3484.85,3345.83,3419.94,1752760064,56417337745 +2017-08-09,3420.4,3422.76,3247.67,3342.47,1468960000,55145196472 +2017-08-10,3341.84,3453.45,3319.47,3381.28,1515110016,55791120000 +2017-08-11,3373.82,3679.72,3372.12,3650.62,2021190016,60241844923 +2017-08-12,3650.63,3949.92,3613.7,3884.71,2219589888,64111163866 +2017-08-13,3880.04,4208.39,3857.8,4073.26,3159089920,67230528989 +2017-08-14,4066.1,4325.13,3989.16,4325.13,2463089920,71394704654 +2017-08-15,4326.99,4455.97,3906.18,4181.93,3258050048,69038855081 +2017-08-16,4200.34,4381.23,3994.42,4376.63,2272039936,72260183303 +2017-08-17,4384.44,4484.7,4243.71,4331.69,2553359872,71527949443 +2017-08-18,4324.34,4370.13,4015.4,4160.62,2941710080,68710871037 +2017-08-19,4137.75,4243.26,3970.55,4193.7,2975820032,69265141208 +2017-08-20,4189.31,4196.29,4069.88,4087.66,2109769984,67520478838 +2017-08-21,4090.48,4109.14,3988.6,4001.74,2800890112,66106992038 +2017-08-22,3998.35,4128.76,3674.58,4100.52,3764239872,67743202431 +2017-08-23,4089.01,4255.78,4078.41,4151.52,2369819904,68593954170 +2017-08-24,4137.6,4376.39,4130.26,4334.68,2037750016,71625870868 +2017-08-25,4332.82,4455.7,4307.35,4371.6,1727970048,72241507489 +2017-08-26,4372.06,4379.28,4269.52,4352.4,1511609984,71929882019 +2017-08-27,4345.1,4416.59,4317.29,4382.88,1537459968,72441993792 +2017-08-28,4384.45,4403.93,4224.64,4382.66,1959330048,72445588933 +2017-08-29,4389.21,4625.68,4352.13,4579.02,2486080000,75699786263 +2017-08-30,4570.36,4626.52,4471.41,4565.3,1937849984,75482724984 +2017-08-31,4555.59,4736.05,4549.4,4703.39,1944930048,77775374625 +2017-09-01,4701.76,4892.01,4678.53,4892.01,2599079936,80905039782 +2017-09-02,4901.42,4975.04,4469.24,4578.77,2722139904,75734114962 +2017-09-03,4585.27,4714.08,4417.59,4582.96,1933190016,75812181334 +2017-09-04,4591.63,4591.63,4108.4,4236.31,2987330048,70087101256 +2017-09-05,4228.29,4427.84,3998.11,4376.53,2697969920,72417728536 +2017-09-06,4376.59,4617.25,4376.59,4597.12,2172100096,76077049312 +2017-09-07,4589.14,4655.04,4491.33,4599.88,1844620032,76132843874 +2017-09-08,4605.16,4661.0,4075.18,4228.75,2700890112,69999555938 +2017-09-09,4229.81,4308.82,4114.11,4226.06,1386230016,69963847482 +2017-09-10,4229.34,4245.44,3951.04,4122.94,1679090048,68263826801 +2017-09-11,4122.47,4261.67,4099.4,4161.27,1557330048,68907352119 +2017-09-12,4168.88,4344.65,4085.22,4130.81,1864530048,68412822896 +2017-09-13,4131.98,4131.98,3789.92,3882.59,2219409920,64311123695 +2017-09-14,3875.37,3920.6,3153.86,3154.95,2716310016,52265453816 +2017-09-15,3166.3,3733.45,2946.62,3637.52,4148069888,60267886368 +2017-09-16,3637.75,3808.84,3487.79,3625.04,1818400000,60068678195 +2017-09-17,3606.28,3664.81,3445.64,3582.88,1239149952,59377995376 +2017-09-18,3591.09,4079.23,3591.09,4065.2,1943209984,67377945990 +2017-09-19,4073.79,4094.07,3868.87,3924.97,1563980032,65061185838 +2017-09-20,3916.36,4031.39,3857.73,3905.95,1213830016,64751811835 +2017-09-21,3901.47,3916.42,3613.63,3631.04,1411480064,60202370872 +2017-09-22,3628.02,3758.27,3553.53,3630.7,1194829952,60203040223 +2017-09-23,3629.92,3819.21,3594.58,3792.4,928113984,62892069389 +2017-09-24,3796.15,3796.15,3666.9,3682.84,768014976,61081971156 +2017-09-25,3681.58,3950.25,3681.58,3926.07,1374210048,65122213849 +2017-09-26,3928.41,3969.89,3869.9,3892.35,1043740032,64569365079 +2017-09-27,3892.94,4210.05,3884.82,4200.67,1686880000,69691950752 +2017-09-28,4197.13,4279.31,4109.7,4174.73,1712320000,69270823146 +2017-09-29,4171.62,4214.63,4039.29,4163.07,1367049984,69086146650 +2017-09-30,4166.11,4358.43,4160.86,4338.71,1207449984,72008428789 +2017-10-01,4341.05,4403.74,4269.81,4403.74,1208210048,73094870674 +2017-10-02,4395.81,4470.23,4377.46,4409.32,1431730048,73195646776 +2017-10-03,4408.46,4432.47,4258.89,4317.48,1288019968,71681069637 +2017-10-04,4319.37,4352.31,4210.42,4229.36,1116770048,70225033578 +2017-10-05,4229.88,4362.64,4164.05,4328.41,1161769984,71876277937 +2017-10-06,4324.46,4413.27,4320.53,4370.81,1069939968,72589262957 +2017-10-07,4369.35,4443.88,4321.05,4426.89,906928000,73529314833 +2017-10-08,4429.67,4624.14,4405.64,4610.48,1313869952,76589293760 +2017-10-09,4614.52,4878.71,4564.25,4772.02,1968739968,79282158943 +2017-10-10,4776.21,4922.17,4765.1,4781.99,1597139968,79457603224 +2017-10-11,4789.25,4873.73,4751.63,4826.48,1222279936,80205238020 +2017-10-12,4829.58,5446.91,4822.0,5446.91,2791610112,90525666972 +2017-10-13,5464.16,5840.3,5436.85,5647.21,3615480064,93864253934 +2017-10-14,5643.53,5837.7,5591.64,5831.79,1669030016,96942498331 +2017-10-15,5835.96,5852.48,5478.61,5678.19,1976039936,94403031755 +2017-10-16,5687.57,5776.23,5544.21,5725.59,2008070016,95203392843 +2017-10-17,5741.58,5800.35,5472.72,5605.51,1821570048,93218297189 +2017-10-18,5603.82,5603.82,5151.44,5590.69,2399269888,92982539106 +2017-10-19,5583.74,5744.35,5531.06,5708.52,1780540032,94954808115 +2017-10-20,5708.11,6060.11,5627.23,6011.45,2354429952,100007083345 +2017-10-21,5996.79,6194.88,5965.07,6031.6,2207099904,100353682389 +2017-10-22,6036.66,6076.26,5792.34,6008.42,2034630016,99981911326 +2017-10-23,6006.0,6075.59,5732.47,5930.32,2401840128,98695054084 +2017-10-24,5935.52,5935.52,5504.18,5526.64,2735699968,91988225800 +2017-10-25,5524.6,5754.33,5397.88,5750.8,1966989952,95732630220 +2017-10-26,5747.95,5976.8,5721.22,5904.83,1905040000,98310176011 +2017-10-27,5899.74,5988.39,5728.82,5780.9,1710130048,96254297360 +2017-10-28,5787.82,5876.72,5689.19,5753.09,1403920000,95797359518 +2017-10-29,5754.44,6255.71,5724.58,6153.85,2859040000,102482445590 +2017-10-30,6114.85,6214.99,6040.85,6130.53,1772150016,102105356519 +2017-10-31,6132.02,6470.43,6103.33,6468.4,2311379968,107743731291 +2017-11-01,6440.97,6767.31,6377.88,6767.31,2870320128,112735345036 +2017-11-02,6777.77,7367.33,6758.72,7078.5,4653770240,117933380780 +2017-11-03,7087.53,7461.29,7002.94,7207.76,3369860096,120097405359 +2017-11-04,7164.48,7492.86,7031.28,7379.95,2483800064,122978748805 +2017-11-05,7404.52,7617.48,7333.19,7407.41,2380410112,123449206170 +2017-11-06,7403.22,7445.77,7007.31,7022.76,3111899904,117050623317 +2017-11-07,7023.1,7253.32,7023.1,7144.38,2326340096,119091456315 +2017-11-08,7141.38,7776.42,7114.02,7459.69,4602200064,124360767999 +2017-11-09,7446.83,7446.83,7101.52,7143.58,3226249984,119104730750 +2017-11-10,7173.73,7312.0,6436.87,6618.14,5208249856,110354089394 +2017-11-11,6618.61,6873.15,6204.22,6357.6,4908680192,106016076151 +2017-11-12,6295.45,6625.05,5519.01,5950.07,8957349888,99226193603 +2017-11-13,5938.25,6811.19,5844.29,6559.49,6263249920,109400650105 +2017-11-14,6561.48,6764.98,6461.75,6635.75,3197110016,110683148744 +2017-11-15,6634.76,7342.25,6634.76,7315.54,4200880128,122035826506 +2017-11-16,7323.24,7967.38,7176.58,7871.69,5123809792,131328418537 +2017-11-17,7853.57,8004.59,7561.09,7708.99,4651670016,128621507062 +2017-11-18,7697.21,7884.99,7463.44,7790.15,3667190016,129997247838 +2017-11-19,7766.03,8101.91,7694.1,8036.49,3149319936,134124196206 +2017-11-20,8039.07,8336.86,7949.36,8200.64,3488450048,136881802624 +2017-11-21,8205.74,8348.66,7762.71,8071.26,4277609984,134739693480 +2017-11-22,8077.95,8302.26,8075.47,8253.55,3633530112,137797862084 +2017-11-23,8232.38,8267.4,8038.77,8038.77,4225179904,134227860479 +2017-11-24,8074.02,8374.16,7940.93,8253.69,5058610176,137831976173 +2017-11-25,8241.71,8790.92,8191.15,8790.92,4342060032,146820557006 +2017-11-26,8789.04,9522.93,8775.59,9330.55,5475579904,155850742551 +2017-11-27,9352.72,9818.35,9352.72,9818.35,5653320192,164019464090 +2017-11-28,9823.43,10125.7,9736.3,10058.8,6348819968,168056012886 +2017-11-29,10077.4,11517.4,9601.03,9888.61,11568799744,165233728795 +2017-11-30,9906.79,10801.0,9202.05,10233.6,8310689792,171020085600 +2017-12-01,10198.6,11046.7,9694.65,10975.6,6783119872,183444663767 +2017-12-02,10978.3,11320.2,10905.1,11074.6,5138500096,185122039035 +2017-12-03,11082.7,11858.7,10862.0,11323.2,6608309760,189302389920 +2017-12-04,11315.4,11657.2,11081.8,11657.2,6132409856,194912755450 +2017-12-05,11685.7,12032.0,11604.6,11916.7,6895260160,199278350420 +2017-12-06,11923.4,14369.1,11923.4,14291.5,12656300032,239024437136 +2017-12-07,14266.1,17899.7,14057.3,17899.7,17950699520,299405364249 +2017-12-08,17802.9,18353.4,14336.9,16569.4,21135998976,277185764485 +2017-12-09,16523.3,16783.0,13674.9,15178.2,13911300096,253946084745 +2017-12-10,15168.4,15850.6,13226.6,15455.4,13433299968,258615393665 +2017-12-11,15427.4,17513.9,15404.8,16936.8,12153900032,283439888520 +2017-12-12,16919.8,17781.8,16571.6,17415.4,14603799552,291483935710 +2017-12-13,17500.0,17653.1,16039.7,16408.2,12976900096,274663619978 +2017-12-14,16384.6,17085.8,16185.9,16564.0,13777399808,277310347000 +2017-12-15,16601.3,18154.1,16601.3,17706.9,14309999616,296482120238 +2017-12-16,17760.3,19716.7,17515.3,19497.4,12740599808,326502485530 +2017-12-17,19475.8,20089.0,18974.1,19140.8,13314599936,320576568850 +2017-12-18,19106.4,19371.0,18355.9,19114.2,14839499776,320174318520 +2017-12-19,19118.3,19177.8,17275.4,17776.7,16894499840,297801055828 +2017-12-20,17760.3,17934.7,16077.7,16624.6,22149699584,278528964015 +2017-12-21,16642.4,17567.7,15342.7,15802.9,16516599808,264788651530 +2017-12-22,15898.0,15943.4,11833.0,13831.8,22197999616,231788283457 +2017-12-23,13948.7,15603.2,13828.8,14699.2,13086000128,246349213910 +2017-12-24,14608.2,14626.0,12747.7,13925.8,11572299776,233414163395 +2017-12-25,13995.9,14593.0,13448.9,14026.6,10664699904,235126843805 +2017-12-26,14036.6,16461.2,14028.9,16099.8,13454300160,269908107763 +2017-12-27,16163.5,16930.9,15114.3,15838.5,12487600128,265559172050 +2017-12-28,15864.1,15888.4,13937.3,14606.5,12336499712,244929825575 +2017-12-29,14695.8,15279.0,14307.0,14656.2,13025500160,245793634125 +2017-12-30,14681.9,14681.9,12350.1,12952.2,14452599808,217239803085 +2017-12-31,12897.7,14377.4,12755.6,14156.4,12136299520,237465823980 +2018-01-01,14112.2,14112.2,13154.7,13657.2,10291200000,229119155396 +2018-01-02,13625.0,15444.6,13163.6,14982.1,16846600192,251377913955 +2018-01-03,14978.2,15572.8,14844.5,15201.0,16871900160,255080562912 +2018-01-04,15270.7,15739.7,14522.2,15599.2,21783199744,261795321110 +2018-01-05,15477.2,17705.2,15202.8,17429.5,23840899072,292544135538 +2018-01-06,17462.1,17712.4,16764.6,17527.0,18314600448,294217423675 +2018-01-07,17527.3,17579.6,16087.7,16477.6,15866000384,276634797271 +2018-01-08,16476.2,16537.9,14208.2,15170.1,18413899776,254715263101 +2018-01-09,15123.7,15497.5,14424.0,14595.4,16659999744,245095808695 +2018-01-10,14588.5,14973.3,13691.2,14973.3,18500800512,251472635522 +2018-01-11,14968.2,15018.8,13105.9,13405.8,16534099968,225178724050 +2018-01-12,13453.9,14229.9,13158.1,13980.6,12065699840,234865160377 +2018-01-13,13952.4,14659.5,13952.4,14360.2,12763599872,241268592240 +2018-01-14,14370.8,14511.8,13268.0,13772.0,11084099584,231413491364 +2018-01-15,13767.3,14445.5,13641.7,13819.8,12750799872,232242775485 +2018-01-16,13836.1,13843.1,10194.9,11490.5,18853799936,193121120762 +2018-01-17,11431.1,11678.0,9402.29,11188.6,18830600192,188070430523 +2018-01-18,11198.8,12107.3,10942.5,11474.9,15020399616,192907550324 +2018-01-19,11429.8,11992.8,11172.1,11607.4,10740400128,195158837709 +2018-01-20,11656.2,13103.0,11656.2,12899.2,11801700352,216907619830 +2018-01-21,12889.2,12895.9,11288.2,11600.1,9935179776,195089460991 +2018-01-22,11633.1,11966.4,10240.2,10931.4,10537400320,183866421285 +2018-01-23,10944.5,11377.6,10129.7,10868.4,9660609536,182830257191 +2018-01-24,10903.4,11501.4,10639.8,11359.4,9940989952,191115225673 +2018-01-25,11421.7,11785.7,11057.4,11259.4,8873169920,189455303273 +2018-01-26,11256.0,11656.7,10470.3,11171.4,9746199552,187995804677 +2018-01-27,11174.9,11614.9,10989.2,11440.7,7583269888,192550550498 +2018-01-28,11475.3,12040.3,11475.3,11786.3,8350360064,198389948175 +2018-01-29,11755.5,11875.6,11179.2,11296.4,7107359744,190164444830 +2018-01-30,11306.8,11307.2,10036.2,10106.3,8637859840,170151556678 +2018-01-31,10108.2,10381.6,9777.42,10221.1,8041160192,172099559942 +2018-02-01,10237.3,10288.8,8812.28,9170.54,9959400448,154428564694 +2018-02-02,9142.28,9142.28,7796.49,8830.75,12726899712,148725283812 +2018-02-03,8852.12,9430.75,8251.63,9174.91,7263790080,154540000411 +2018-02-04,9175.7,9334.87,8031.22,8277.01,7073549824,139433682759 +2018-02-05,8270.54,8364.84,6756.68,6955.27,9285289984,117184385122 +2018-02-06,7051.75,7850.7,6048.26,7754.0,13999800320,130658094648 +2018-02-07,7755.49,8509.11,7236.79,7621.3,9169280000,128435001186 +2018-02-08,7637.86,8558.77,7637.86,8265.59,9346750464,139306699929 +2018-02-09,8271.84,8736.98,7884.71,8736.98,6784820224,147266052809 +2018-02-10,8720.08,9122.55,8295.47,8621.9,7780960256,145341842785 +2018-02-11,8616.13,8616.13,7931.1,8129.97,6122189824,137064586975 +2018-02-12,8141.43,8985.92,8141.43,8926.57,6256439808,150513128412 +2018-02-13,8926.72,8958.47,8455.41,8598.31,5696719872,144995984203 +2018-02-14,8599.92,9518.54,8599.92,9494.63,7909819904,160131558835 +2018-02-15,9488.32,10234.8,9395.58,10166.4,9062540288,171477807437 +2018-02-16,10135.7,10324.1,9824.82,10233.9,7296159744,172637061144 +2018-02-17,10207.5,11139.5,10149.4,11112.7,8660880384,187482083882 +2018-02-18,11123.4,11349.8,10326.0,10551.8,8744009728,178040648022 +2018-02-19,10552.6,11273.8,10513.2,11225.3,7652089856,189426791571 +2018-02-20,11231.8,11958.5,11231.8,11403.7,9926540288,192457815912 +2018-02-21,11372.2,11418.5,10479.1,10690.4,9405339648,180442459820 +2018-02-22,10660.4,11039.1,9939.09,10005.0,8040079872,168892273935 +2018-02-23,9937.07,10487.3,9734.56,10301.1,7739500032,173909350860 +2018-02-24,10287.7,10597.2,9546.97,9813.07,6917929984,165687799108 +2018-02-25,9796.42,9923.22,9407.06,9664.73,5706939904,163204062358 +2018-02-26,9669.43,10475.0,9501.73,10366.7,7287690240,175076064010 +2018-02-27,10393.9,10878.5,10246.1,10725.6,6966179840,181158869820 +2018-02-28,10687.2,11089.8,10393.1,10397.9,6936189952,175644310997 +2018-03-01,10385.0,11052.3,10352.7,10951.0,7317279744,185009753075 +2018-03-02,10977.4,11189.0,10850.1,11086.4,7620590080,187318996197 +2018-03-03,11101.9,11528.2,11002.4,11489.7,6690570240,194159120569 +2018-03-04,11497.4,11512.6,11136.1,11512.6,6084149760,194567395376 +2018-03-05,11532.4,11704.1,11443.9,11573.3,6468539904,195614809925 +2018-03-06,11500.1,11500.1,10694.3,10779.9,6832169984,182225316082 +2018-03-07,10803.9,10929.5,9692.12,9965.57,8797910016,168479670395 +2018-03-08,9951.44,10147.4,9335.87,9395.01,7186089984,158852238332 +2018-03-09,9414.69,9466.35,8513.03,9337.55,8704190464,157898203939 +2018-03-10,9350.59,9531.32,8828.47,8866.0,5386319872,149939797150 +2018-03-11,8852.78,9711.89,8607.12,9578.63,6296370176,162009710243 +2018-03-12,9602.93,9937.5,8956.43,9205.12,6457399808,155710928717 +2018-03-13,9173.04,9470.38,8958.19,9194.85,5991139840,155555594312 +2018-03-14,9214.65,9355.85,8068.59,8269.81,6438230016,139920843550 +2018-03-15,8290.76,8428.35,7783.05,8300.86,6834429952,140460819364 +2018-03-16,8322.91,8585.15,8005.31,8338.35,5289379840,141111773179 +2018-03-17,8321.91,8346.53,7812.82,7916.88,4426149888,133993486925 +2018-03-18,7890.52,8245.51,7397.99,8223.68,6639190016,139201713268 +2018-03-19,8344.12,8675.87,8182.4,8630.65,6729110016,146107514353 +2018-03-20,8619.67,9051.02,8389.89,8913.47,6361789952,150909503835 +2018-03-21,8937.48,9177.37,8846.33,8929.28,6043129856,151193917440 +2018-03-22,8939.44,9100.71,8564.9,8728.47,5530390016,147809220250 +2018-03-23,8736.25,8879.62,8360.62,8879.62,5954120192,150383574951 +2018-03-24,8901.95,8996.18,8665.7,8668.12,5664600064,146818882936 +2018-03-25,8612.81,8682.01,8449.1,8495.78,4569880064,143914265310 +2018-03-26,8498.47,8530.08,7921.43,8209.4,5921039872,139078211968 +2018-03-27,8200.0,8232.78,7797.28,7833.04,5378250240,132717053150 +2018-03-28,7836.83,8122.89,7809.17,7954.48,4935289856,134788265876 +2018-03-29,7979.07,7994.33,7081.38,7165.7,6361229824,121436043045 +2018-03-30,7171.45,7276.66,6683.93,6890.52,6289509888,116786562165 +2018-03-31,6892.48,7207.85,6863.52,6973.53,4553269760,118204645927 +2018-04-01,7003.06,7060.95,6526.87,6844.23,4532100096,116026809075 +2018-04-02,6844.86,7135.47,6816.58,7083.8,4333440000,120101932910 +2018-04-03,7102.26,7530.94,7072.49,7456.11,5499700224,126429245883 +2018-04-04,7456.41,7469.88,6803.88,6853.84,4936000000,116229557118 +2018-04-05,6848.65,6933.82,6644.8,6811.47,5639320064,115524404354 +2018-04-06,6815.96,6857.49,6575.0,6636.32,3766810112,112565173568 +2018-04-07,6630.51,7050.54,6630.51,6911.09,3976610048,117241368688 +2018-04-08,6919.98,7111.56,6919.98,7023.52,3652499968,119162880482 +2018-04-09,7044.32,7178.11,6661.99,6770.73,4894060032,114886335694 +2018-04-10,6795.44,6872.41,6704.15,6834.76,4272750080,115978358964 +2018-04-11,6843.47,6968.32,6817.59,6968.32,4641889792,118267198080 +2018-04-12,6955.38,7899.23,6806.51,7889.25,8906250240,133912618634 +2018-04-13,7901.09,8183.96,7758.93,7895.96,7764460032,134043001354 +2018-04-14,7874.67,8140.71,7846.0,7986.24,5191430144,135589384440 +2018-04-15,7999.33,8338.42,7999.33,8329.11,5244480000,141427138383 +2018-04-16,8337.57,8371.15,7925.73,8058.67,5631309824,136849408643 +2018-04-17,8071.66,8285.96,7881.72,7902.09,6900879872,134206623206 +2018-04-18,7944.43,8197.8,7886.01,8163.42,6529909760,138661092884 +2018-04-19,8159.27,8298.69,8138.78,8294.31,7063209984,140902801023 +2018-04-20,8286.88,8880.23,8244.54,8845.83,8438110208,150287113368 +2018-04-21,8848.79,8997.57,8652.15,8895.58,7548550144,151150137128 +2018-04-22,8925.06,9001.64,8779.61,8802.46,6629899776,149585589886 +2018-04-23,8794.39,8958.55,8788.81,8930.88,6925190144,151784994312 +2018-04-24,8934.34,9732.61,8927.83,9697.5,10678800384,164833256250 +2018-04-25,9701.03,9745.32,8799.84,8845.74,11083100160,150369282696 +2018-04-26,8867.32,9281.51,8727.09,9281.51,8970559488,157793327246 +2018-04-27,9290.63,9375.47,8987.05,8987.05,7566289920,152802874822 +2018-04-28,8939.27,9412.09,8931.99,9348.48,7805479936,158963068374 +2018-04-29,9346.41,9531.49,9193.71,9419.08,8853000192,160182287342 +2018-04-30,9426.11,9477.14,9166.81,9240.55,8673920000,157163847314 +2018-05-01,9251.47,9255.88,8891.05,9119.01,7713019904,155114132125 +2018-05-02,9104.6,9256.52,9015.14,9235.92,7558159872,157119854754 +2018-05-03,9233.97,9798.33,9188.15,9743.86,10207299584,165778380092 +2018-05-04,9695.5,9779.2,9585.96,9700.76,8217829888,165062796742 +2018-05-05,9700.28,9964.5,9695.12,9858.15,7651939840,167759953654 +2018-05-06,9845.31,9940.14,9465.25,9654.8,7222280192,164316605278 +2018-05-07,9645.67,9665.85,9231.53,9373.01,7394019840,159538115686 +2018-05-08,9380.87,9462.75,9127.77,9234.82,7415869952,157202142973 +2018-05-09,9223.73,9374.76,9031.62,9325.18,7226890240,158758858205 +2018-05-10,9325.96,9396.04,9040.52,9043.94,6906699776,153988453198 +2018-05-11,9052.96,9052.96,8394.46,8441.49,8488520192,143743802092 +2018-05-12,8441.44,8664.86,8223.5,8504.89,6821380096,144841040789 +2018-05-13,8515.49,8773.55,8395.12,8723.94,5866379776,148587777457 +2018-05-14,8713.1,8881.12,8367.97,8716.79,7364149760,148480275422 +2018-05-15,8705.19,8836.19,8456.45,8510.38,6705710080,144979744412 +2018-05-16,8504.41,8508.43,8175.49,8368.83,6760220160,142587497878 +2018-05-17,8370.05,8445.54,8054.12,8094.32,5862530048,137923772714 +2018-05-18,8091.83,8274.12,7974.82,8250.97,5764190208,140607667610 +2018-05-19,8255.73,8372.06,8183.35,8247.18,4712399872,140559162894 +2018-05-20,8246.99,8562.41,8205.24,8513.25,5191059968,145109512565 +2018-05-21,8522.33,8557.52,8365.12,8418.99,5154990080,143518943480 +2018-05-22,8419.87,8423.25,8004.58,8041.78,5137010176,137104106176 +2018-05-23,8037.08,8054.66,7507.88,7557.82,6491120128,128868479514 +2018-05-24,7561.12,7738.6,7331.14,7587.34,6049220096,129385391552 +2018-05-25,7592.3,7659.14,7392.65,7480.14,4867829760,127573690458 +2018-05-26,7486.48,7595.16,7349.12,7355.88,4051539968,125469061263 +2018-05-27,7362.08,7381.74,7270.96,7368.22,4056519936,125695017596 +2018-05-28,7371.31,7419.05,7100.89,7135.99,5040600064,121747389422 +2018-05-29,7129.46,7526.42,7090.68,7472.59,5662660096,127502651064 +2018-05-30,7469.73,7573.77,7313.6,7406.52,4922540032,126391893474 +2018-05-31,7406.15,7608.9,7361.13,7494.17,5127130112,127902999390 +2018-06-01,7500.7,7604.73,7407.34,7541.45,4921460224,128725854692 +2018-06-02,7536.72,7695.83,7497.26,7643.45,4939299840,130481526036 +2018-06-03,7632.09,7754.89,7613.04,7720.25,4851760128,131808021256 +2018-06-04,7722.53,7753.82,7474.04,7514.47,4993169920,128312205314 +2018-06-05,7500.9,7643.23,7397.0,7633.76,4961739776,130365918088 +2018-06-06,7625.97,7680.43,7502.01,7653.98,4692259840,130725095161 +2018-06-07,7650.82,7741.27,7650.82,7678.24,4485799936,131153169176 +2018-06-08,7685.14,7698.19,7558.4,7624.92,4227579904,130256218613 +2018-06-09,7632.52,7683.58,7531.98,7531.98,3845220096,128682085689 +2018-06-10,7499.55,7499.55,6709.07,6786.02,5804839936,115948312827 +2018-06-11,6799.29,6910.18,6706.63,6906.92,4745269760,118025877189 +2018-06-12,6905.82,6907.96,6542.08,6582.36,4654380032,112491874164 +2018-06-13,6596.88,6631.66,6285.63,6349.9,5052349952,108530585830 +2018-06-14,6342.75,6707.14,6334.46,6675.35,5138710016,114106009748 +2018-06-15,6674.08,6681.08,6433.87,6456.58,3955389952,110378702283 +2018-06-16,6455.45,6592.49,6402.29,6550.16,3194170112,111992015616 +2018-06-17,6545.53,6589.11,6499.27,6499.27,3104019968,111134754810 +2018-06-18,6510.07,6781.14,6446.68,6734.82,4039200000,115176197712 +2018-06-19,6742.39,6822.5,6709.92,6769.94,4057029888,115789919278 +2018-06-20,6770.76,6821.56,6611.88,6776.55,3888640000,115916357344 +2018-06-21,6780.09,6810.94,6715.17,6729.74,3529129984,115129700024 +2018-06-22,6737.88,6747.08,6006.6,6083.69,5079810048,104088814967 +2018-06-23,6090.1,6224.82,6071.81,6162.48,3431360000,105449276520 +2018-06-24,6164.28,6223.78,5826.41,6173.23,4566909952,105646571668 +2018-06-25,6171.97,6327.37,6119.68,6249.18,5500810240,106958465208 +2018-06-26,6253.55,6290.16,6093.67,6093.67,3279759872,104307939200 +2018-06-27,6084.4,6180.0,6052.85,6157.13,3296219904,105403600614 +2018-06-28,6153.16,6170.41,5873.05,5903.44,3467800064,101072353482 +2018-06-29,5898.13,6261.66,5835.75,6218.3,3966230016,106474707240 +2018-06-30,6214.22,6465.51,6214.22,6404.0,4543860224,109665618200 +2018-07-01,6411.68,6432.85,6289.29,6385.82,4788259840,109366024632 +2018-07-02,6380.38,6683.86,6305.7,6614.18,4396930048,113288832522 +2018-07-03,6596.66,6671.37,6447.75,6529.59,4672309760,111849428104 +2018-07-04,6550.87,6771.92,6450.46,6597.55,4176689920,113024522547 +2018-07-05,6599.71,6749.54,6546.65,6639.14,4999240192,113748385620 +2018-07-06,6638.69,6700.94,6533.55,6673.5,4313959936,114350502582 +2018-07-07,6668.71,6863.99,6579.24,6856.93,3961080064,117506606000 +2018-07-08,6857.8,6885.91,6747.98,6773.88,3386210048,116097021279 +2018-07-09,6775.08,6838.68,6724.34,6741.75,3718129920,115557889495 +2018-07-10,6739.21,6767.74,6320.72,6329.95,4052430080,108511009626 +2018-07-11,6330.77,6444.96,6330.47,6394.71,3644859904,109631867446 +2018-07-12,6396.78,6397.1,6136.42,6228.81,3770170112,106798864820 +2018-07-13,6235.03,6310.55,6192.24,6238.05,3805400064,106968440793 +2018-07-14,6247.5,6298.19,6212.22,6276.12,2923670016,107631453835 +2018-07-15,6272.7,6403.46,6256.51,6359.64,3285459968,109074579938 +2018-07-16,6357.01,6741.75,6357.01,6741.75,4725799936,115638203962 +2018-07-17,6739.65,7387.24,6684.17,7321.04,5961950208,125588963706 +2018-07-18,7315.32,7534.99,7280.47,7370.78,6103410176,126458165406 +2018-07-19,7378.2,7494.46,7295.46,7466.86,5111629824,128122730711 +2018-07-20,7467.4,7594.67,7323.26,7354.13,4936869888,126202570251 +2018-07-21,7352.72,7437.64,7262.41,7419.29,3726609920,127333468174 +2018-07-22,7417.8,7537.95,7383.82,7418.49,3695460096,127336615249 +2018-07-23,7414.71,7771.5,7409.1,7711.11,5132480000,132375368459 +2018-07-24,7716.51,8424.27,7705.5,8424.27,7277689856,144634918474 +2018-07-25,8379.66,8416.87,8086.36,8181.39,5845400064,140482950401 +2018-07-26,8176.85,8290.33,7878.71,7951.58,4899089920,136553079708 +2018-07-27,7950.4,8262.66,7839.76,8165.01,5195879936,140235573607 +2018-07-28,8169.06,8222.85,8110.77,8192.15,3988750080,140716560550 +2018-07-29,8205.82,8272.26,8141.18,8218.46,4107190016,141185844808 +2018-07-30,8221.58,8235.5,7917.5,8180.48,5551400000,140547190784 +2018-07-31,8181.2,8181.53,7696.93,7780.44,5287530000,133688476220 +2018-08-01,7769.04,7769.04,7504.95,7624.91,4797620000,131030166771 +2018-08-02,7634.19,7712.77,7523.44,7567.15,4214110000,130052066760 +2018-08-03,7562.14,7562.14,7328.65,7434.39,4627150000,127785826655 +2018-08-04,7438.67,7497.49,6984.07,7032.85,4268390000,120899698889 +2018-08-05,7031.08,7102.77,6940.7,7068.48,3679110000,121526079384 +2018-08-06,7062.94,7166.55,6890.54,6951.8,3925900000,119531508535 +2018-08-07,6958.32,7146.56,6748.24,6753.12,4682800000,116128339800 +2018-08-08,6746.85,6746.85,6226.22,6305.8,5064430000,108448409560 +2018-08-09,6305.56,6625.73,6249.07,6568.23,4267040000,112973963230 +2018-08-10,6571.42,6591.26,6124.52,6184.71,4528680000,106390927598 +2018-08-11,6185.79,6455.74,6109.03,6295.73,4047850000,108314257212 +2018-08-12,6283.65,6409.85,6237.5,6322.69,5665250000,108790259014 +2018-08-13,6341.36,6537.05,6225.72,6297.57,4083980000,108369686635 +2018-08-14,6287.66,6287.94,5971.05,6199.71,5301700000,106696389129 +2018-08-15,6221.42,6588.49,6221.42,6308.52,4895450000,108581773101 +2018-08-16,6294.23,6473.5,6276.41,6334.73,4328420000,109045250379 +2018-08-17,6340.91,6582.5,6324.97,6580.63,4992990000,113290724406 +2018-08-18,6583.43,6617.35,6353.73,6423.76,3984520000,110603014928 +2018-08-19,6422.57,6537.98,6361.55,6506.07,3311170000,112031838393 +2018-08-20,6500.51,6536.92,6297.93,6308.53,3665100000,108642191682 +2018-08-21,6301.07,6500.87,6298.24,6488.76,3377180000,111758100192 +2018-08-22,6486.25,6816.79,6310.11,6376.71,4668110000,109840902181 +2018-08-23,6371.34,6546.54,6371.34,6534.88,3426180000,112577436411 +2018-08-24,6551.52,6719.96,6498.64,6719.96,4097820000,115778358839 +2018-08-25,6719.95,6789.63,6700.96,6763.19,3312600000,116534497933 +2018-08-26,6754.64,6774.75,6620.75,6707.26,3295500000,115585205491 +2018-08-27,6710.8,6884.64,6689.71,6884.64,4019000000,118657885712 +2018-08-28,6891.08,7109.56,6882.34,7096.28,4659940000,122319195736 +2018-08-29,7091.71,7113.3,6970.82,7047.16,4145880000,121484666374 +2018-08-30,7043.76,7072.69,6834.69,6978.23,4463250000,120309828156 +2018-08-31,6973.97,7057.17,6920.16,7037.58,4495650000,121346613238 +2018-09-01,7044.81,7242.29,7038.05,7193.25,4116050000,124044625438 +2018-09-02,7189.58,7306.31,7132.16,7272.72,4329540000,125427780027 +2018-09-03,7279.03,7317.94,7208.15,7260.06,4087760000,125222785390 +2018-09-04,7263.0,7388.26,7255.44,7361.66,4273640000,126986882925 +2018-09-05,7361.46,7388.43,6792.83,6792.83,5800460000,117185657641 +2018-09-06,6755.14,6755.14,6404.72,6529.17,5523470000,112649565532 +2018-09-07,6528.92,6555.29,6396.87,6467.07,4264680000,111590424587 +2018-09-08,6460.17,6534.25,6197.52,6225.98,3835060000,107442122871 +2018-09-09,6223.38,6446.26,6201.22,6300.86,3671890000,108747090915 +2018-09-10,6301.57,6374.98,6292.76,6329.7,3714100000,109255603474 +2018-09-11,6331.88,6398.92,6260.21,6321.2,3849910000,109119948884 +2018-09-12,6317.01,6363.87,6265.09,6351.8,4064230000,109661521297 +2018-09-13,6354.24,6535.41,6354.24,6517.31,4210910000,112530970182 +2018-09-14,6515.41,6596.1,6456.17,6512.71,4076220000,112462453186 +2018-09-15,6509.4,6561.72,6493.55,6543.2,3216300000,113000324618 +2018-09-16,6536.68,6544.33,6460.1,6517.18,3273730000,112562367224 +2018-09-17,6514.06,6540.21,6257.52,6281.2,3910780000,108497127334 +2018-09-18,6280.91,6384.18,6265.71,6371.3,4180090000,110064685348 +2018-09-19,6371.85,6448.46,6208.34,6398.54,4431340000,110547735544 +2018-09-20,6398.85,6529.26,6395.95,6519.67,4348110000,112653130183 +2018-09-21,6513.87,6794.33,6496.36,6734.95,6531940000,116385068032 +2018-09-22,6735.05,6814.56,6616.8,6721.98,4509660000,116173876360 +2018-09-23,6715.32,6766.15,6679.42,6710.63,4197500000,115990387532 +2018-09-24,6704.77,6713.56,6580.9,6595.41,4177310000,114011060309 +2018-09-25,6603.64,6603.64,6381.86,6446.47,4726180000,111450035114 +2018-09-26,6452.79,6585.91,6397.89,6495.0,4437300000,112300336125 +2018-09-27,6495.29,6712.1,6464.95,6676.75,4606810000,115454861756 +2018-09-28,6678.75,6785.03,6598.32,6644.13,5014430000,114903584220 +2018-09-29,6643.1,6643.1,6511.65,6601.96,4363690000,114186839964 +2018-09-30,6604.71,6643.78,6566.54,6625.56,4002280000,114608519470 +2018-10-01,6619.85,6653.3,6549.08,6589.62,4000970000,113999846113 +2018-10-02,6593.24,6611.84,6537.9,6556.1,3979260000,113431019760 +2018-10-03,6553.86,6571.46,6454.03,6502.59,3887310000,112516993837 +2018-10-04,6497.91,6603.31,6497.91,6576.69,3838410000,113811343543 +2018-10-05,6574.15,6623.62,6557.41,6622.48,3671500000,114614764674 +2018-10-06,6622.45,6628.54,6577.8,6588.31,3259740000,114033598927 +2018-10-07,6590.68,6641.49,6557.04,6602.95,3306630000,114298880311 +2018-10-08,6600.19,6675.06,6576.04,6652.23,3979460000,115162906843 +2018-10-09,6653.08,6661.41,6606.94,6642.64,3580810000,115007759484 +2018-10-10,6640.29,6640.29,6538.96,6585.53,3787650000,114030835912 +2018-10-11,6586.74,6586.74,6243.74,6256.24,5181640000,108341572839 +2018-10-12,6239.25,6328.5,6236.47,6274.58,3783500000,108669526315 +2018-10-13,6278.08,6308.51,6259.81,6285.99,3064030000,108878136724 +2018-10-14,6288.49,6363.21,6280.15,6290.93,3085320000,108972590373 +2018-10-15,6292.64,6965.06,6258.68,6596.54,7370770000,114280022340 +2018-10-16,6601.41,6673.59,6571.37,6596.11,4074800000,114283707152 +2018-10-17,6590.52,6601.21,6517.45,6544.43,4088420000,113399343801 +2018-10-18,6542.33,6567.54,6450.04,6476.71,3924080000,112237252159 +2018-10-19,6478.07,6493.68,6445.31,6465.41,3578870000,112052990522 +2018-10-20,6460.92,6497.72,6449.0,6489.19,3379130000,112476559221 +2018-10-21,6490.09,6556.38,6476.0,6482.35,3253610000,112369106369 +2018-10-22,6486.05,6543.8,6462.98,6487.16,3672860000,112465213723 +2018-10-23,6472.36,6506.01,6451.27,6475.74,3716150000,112279779884 +2018-10-24,6478.89,6521.99,6468.86,6495.84,3424670000,112637293966 +2018-10-25,6484.65,6504.65,6447.03,6476.29,3230550000,112309554478 +2018-10-26,6468.44,6498.29,6449.61,6474.75,3306050000,112294341019 +2018-10-27,6480.84,6507.41,6453.53,6480.38,3393250000,112403001148 +2018-10-28,6482.66,6502.28,6447.91,6486.39,3445190000,112518434372 +2018-10-29,6492.35,6503.6,6306.99,6332.63,4199910000,109862898081 +2018-10-30,6337.04,6364.99,6310.14,6334.27,3781100000,109903543419 +2018-10-31,6336.99,6349.16,6316.88,6317.61,4191240000,109627117226 +2018-11-01,6318.14,6547.14,6311.83,6377.78,3789400000,110683820788 +2018-11-02,6378.92,6396.86,6327.38,6388.44,4234870000,110880236966 +2018-11-03,6387.24,6400.07,6342.37,6361.26,3658640000,110421212888 +2018-11-04,6365.47,6388.63,6294.57,6376.13,4390020000,110689215104 +2018-11-05,6363.62,6480.59,6363.62,6419.66,4174800000,111456211022 +2018-11-06,6433.38,6463.55,6408.16,6461.01,4700040000,112095603776 +2018-11-07,6468.5,6552.16,6468.31,6530.14,4941260000,113395632955 +2018-11-08,6522.27,6536.92,6438.53,6453.72,4665260000,112078367037 +2018-11-09,6442.6,6456.46,6373.37,6385.62,4346820000,110905767441 +2018-11-10,6386.13,6437.28,6385.31,6409.22,3705320000,111326145314 +2018-11-11,6413.63,6423.25,6350.17,6411.27,3939060000,111373453740 +2018-11-12,6411.76,6434.21,6360.47,6371.27,4295770000,110689666528 +2018-11-13,6373.19,6395.27,6342.67,6359.49,4503800000,110494466204 +2018-11-14,6351.24,6371.55,5544.09,5738.35,7398940000,99712077259 +2018-11-15,5736.15,5774.82,5358.38,5648.03,7032140000,98151606541 +2018-11-16,5645.32,5657.02,5498.94,5575.55,5279320000,96900828780 +2018-11-17,5578.58,5578.58,5519.56,5554.33,4303150000,96542098114 +2018-11-18,5559.74,5653.61,5559.74,5623.54,4159680000,97753714643 +2018-11-19,5620.78,5620.78,4842.91,4871.49,7039560000,84688539692 +2018-11-20,4863.93,4951.61,4272.11,4451.87,8428290000,77401044320 +2018-11-21,4465.54,4675.73,4343.98,4602.17,6120120000,80020171047 +2018-11-22,4611.57,4629.64,4365.64,4365.94,4569370000,75919439809 +2018-11-23,4360.7,4396.42,4195.68,4347.11,4871490000,75598851166 +2018-11-24,4347.69,4413.09,3795.16,3880.76,4679500000,67495633205 +2018-11-25,3880.78,4120.87,3585.06,4009.97,6825640000,69749265801 +2018-11-26,4015.07,4107.14,3643.92,3779.13,6476900000,65739289046 +2018-11-27,3765.95,3862.96,3661.01,3820.72,5998720000,66468970322 +2018-11-28,3822.47,4385.9,3822.47,4257.42,7280280000,74072560088 +2018-11-29,4269.0,4413.02,4145.77,4278.85,6503347767,74451016927 +2018-11-30,4289.09,4322.98,3942.82,4017.27,6048016717,69904637061 +2018-12-01,4024.46,4309.38,3969.71,4214.67,5375314093,73346194969 +2018-12-02,4200.73,4301.52,4110.98,4139.88,5262697895,72050487506 +2018-12-03,4147.32,4155.98,3840.45,3894.13,5089570994,67779050170 +2018-12-04,3886.29,4075.63,3832.75,3956.89,5028069239,68878292608 +2018-12-05,3958.89,3969.54,3753.99,3753.99,5302481574,65352496336 +2018-12-06,3754.07,3874.97,3521.1,3521.1,5878333109,61303965508 +2018-12-07,3512.59,3512.59,3280.23,3419.94,6835615448,59547645578 +2018-12-08,3421.91,3506.04,3350.65,3476.11,5305024497,60531278392 +2018-12-09,3473.23,3685.31,3469.09,3614.23,4947372847,62942160928 +2018-12-10,3612.05,3647.33,3470.14,3502.66,5020968740,61004445982 +2018-12-11,3497.55,3513.18,3392.25,3424.59,4696765188,59650201102 +2018-12-12,3421.46,3534.23,3413.48,3486.95,4139364829,60741625426 +2018-12-13,3487.88,3489.74,3298.13,3313.68,4343372456,57728688216 +2018-12-14,3311.75,3329.56,3206.54,3242.48,4372763663,56494379457 +2018-12-15,3244.0,3275.38,3191.3,3236.76,3551763561,56400691425 +2018-12-16,3236.27,3305.75,3233.82,3252.84,3744248994,56685436644 +2018-12-17,3253.12,3597.92,3253.12,3545.86,5409247918,61798926687 +2018-12-18,3544.76,3701.35,3487.17,3696.06,5911325473,64422587801 +2018-12-19,3706.82,3949.32,3687.23,3745.95,6810689119,65299132785 +2018-12-20,3742.2,4191.23,3728.97,4134.44,8927129279,72078243771 +2018-12-21,4133.7,4198.43,3850.95,3896.54,7206015706,67937650255 +2018-12-22,3898.08,4014.18,3855.74,4014.18,5605823233,69997508295 +2018-12-23,4020.99,4085.72,3976.41,3998.98,6151275490,69741217417 +2018-12-24,4000.33,4271.79,4000.33,4078.6,7240968501,71137548589 +2018-12-25,4081.03,4089.56,3760.02,3815.49,6158207293,66556033172 +2018-12-26,3819.67,3893.36,3769.86,3857.3,5326547918,67292819465 +2018-12-27,3854.69,3874.42,3645.45,3654.83,5130222366,63768757101 +2018-12-28,3653.13,3956.14,3642.63,3923.92,5631554348,68471837969 +2018-12-29,3932.49,3963.76,3820.41,3820.41,4991655917,66672244158 +2018-12-30,3822.38,3901.91,3797.22,3865.95,4770578575,67475512827 +2018-12-31,3866.84,3868.74,3725.87,3742.7,4661840806,65331499158 diff --git a/PythonAI/JupyterLab/data/dirty_data.csv b/PythonAI/JupyterLab/data/dirty_data.csv new file mode 100644 index 0000000..57f88f7 --- /dev/null +++ b/PythonAI/JupyterLab/data/dirty_data.csv @@ -0,0 +1,766 @@ +date,station,PRCP,SNOW,SNWD,TMAX,TMIN,TOBS,WESF,inclement_weather +2018-01-01T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-01-01T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-01-01T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-01-02T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,-8.3,-16.1,-12.2,,False +2018-01-03T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,-4.4,-13.9,-13.3,,False +2018-01-03T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,-4.4,-13.9,-13.3,,False +2018-01-03T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,-4.4,-13.9,-13.3,,False +2018-01-04T00:00:00,?,20.6,229.0,inf,5505.0,-40.0,,19.3,True +2018-01-04T00:00:00,?,20.6,229.0,inf,5505.0,-40.0,,19.3,True +2018-01-05T00:00:00,?,0.3,,,5505.0,-40.0,,, +2018-01-05T00:00:00,?,0.3,,,5505.0,-40.0,,, +2018-01-05T00:00:00,GHCND:USC00280907,14.2,127.0,inf,-4.4,-13.9,-13.9,,True +2018-01-06T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,-10.0,-15.6,-15.0,,False +2018-01-07T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,-11.7,-17.2,-16.1,,False +2018-01-07T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-01-08T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-01-08T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,-7.8,-16.7,-8.3,,False +2018-01-10T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-01-10T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,5.0,-7.8,-7.8,,False +2018-01-11T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,4.4,-7.8,1.1,,False +2018-01-12T00:00:00,GHCND:USC00280907,1.3,0.0,-inf,9.4,0.6,7.8,,False +2018-01-12T00:00:00,?,0.5,,,5505.0,-40.0,,, +2018-01-12T00:00:00,?,0.5,,,5505.0,-40.0,,, +2018-01-12T00:00:00,GHCND:USC00280907,1.3,0.0,-inf,9.4,0.6,7.8,,False +2018-01-12T00:00:00,GHCND:USC00280907,1.3,0.0,-inf,9.4,0.6,7.8,,False +2018-01-13T00:00:00,?,17.5,,,5505.0,-40.0,,, +2018-01-14T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,2.2,-11.1,-11.1,,False +2018-01-14T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-01-14T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-01-14T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,2.2,-11.1,-11.1,,False +2018-01-15T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,-5.0,-11.7,-8.9,,False +2018-01-16T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,-1.1,-9.4,-4.4,,False +2018-01-16T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,-1.1,-9.4,-4.4,,False +2018-01-17T00:00:00,?,4.8,,,5505.0,-40.0,,, +2018-01-17T00:00:00,GHCND:USC00280907,3.0,25.0,inf,0.6,-5.0,0.0,,True +2018-01-17T00:00:00,GHCND:USC00280907,3.0,25.0,inf,0.6,-5.0,0.0,,True +2018-01-18T00:00:00,GHCND:USC00280907,1.3,13.0,inf,0.0,-11.1,-8.9,,True +2018-01-18T00:00:00,GHCND:USC00280907,1.3,13.0,inf,0.0,-11.1,-8.9,,True +2018-01-18T00:00:00,GHCND:USC00280907,1.3,13.0,inf,0.0,-11.1,-8.9,,True +2018-01-19T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,-1.1,-11.7,-10.6,,False +2018-01-19T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-01-19T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,-1.1,-11.7,-10.6,,False +2018-01-20T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,2.8,-11.7,0.0,,False +2018-01-21T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-01-21T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,8.3,-3.3,-2.2,,False +2018-01-22T00:00:00,?,0.3,,,5505.0,-40.0,,, +2018-01-23T00:00:00,GHCND:USC00280907,18.0,0.0,-inf,8.9,2.2,5.0,,False +2018-01-23T00:00:00,?,3.3,,,5505.0,-40.0,,, +2018-01-24T00:00:00,GHCND:USC00280907,3.3,0.0,-inf,13.3,3.3,4.4,,False +2018-01-24T00:00:00,?,5.3,,,5505.0,-40.0,,, +2018-01-25T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-01-25T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,4.4,-6.7,-4.4,,False +2018-01-26T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,0.0,-7.2,-6.1,,False +2018-01-26T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-01-26T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-01-27T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-01-28T00:00:00,GHCND:USC00280907,1.5,0.0,-inf,11.1,-5.0,5.0,,False +2018-01-28T00:00:00,GHCND:USC00280907,1.5,0.0,-inf,11.1,-5.0,5.0,,False +2018-01-30T00:00:00,?,1.5,13.0,inf,5505.0,-40.0,,1.8,True +2018-01-30T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,6.7,-1.7,-0.6,,False +2018-01-31T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,6.7,-10.0,-8.9,,False +2018-01-31T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,6.7,-10.0,-8.9,,False +2018-02-01T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-02-01T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-02-02T00:00:00,?,3.8,0.0,-inf,5505.0,-40.0,,, +2018-02-02T00:00:00,?,3.8,0.0,-inf,5505.0,-40.0,,, +2018-02-05T00:00:00,?,21.8,,,5505.0,-40.0,,, +2018-02-05T00:00:00,?,21.8,,,5505.0,-40.0,,, +2018-02-05T00:00:00,GHCND:USC00280907,19.8,,,2.8,-3.9,2.2,,False +2018-02-05T00:00:00,GHCND:USC00280907,19.8,,,2.8,-3.9,2.2,,False +2018-02-05T00:00:00,?,21.8,,,5505.0,-40.0,,, +2018-02-05T00:00:00,GHCND:USC00280907,19.8,,,2.8,-3.9,2.2,,False +2018-02-06T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-02-08T00:00:00,GHCND:USC00280907,24.4,25.0,inf,3.3,-5.6,-5.6,,True +2018-02-08T00:00:00,GHCND:USC00280907,24.4,25.0,inf,3.3,-5.6,-5.6,,True +2018-02-08T00:00:00,?,24.6,,,5505.0,-40.0,,, +2018-02-09T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-02-09T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,-1.1,-8.3,-8.3,,False +2018-02-09T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-02-09T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,-1.1,-8.3,-8.3,,False +2018-02-10T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,0.0,-8.3,0.0,,False +2018-02-10T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,0.0,-8.3,0.0,,False +2018-02-10T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-02-10T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,0.0,-8.3,0.0,,False +2018-02-11T00:00:00,GHCND:USC00280907,18.0,0.0,-inf,5.0,0.0,3.3,,False +2018-02-11T00:00:00,?,31.2,,,5505.0,-40.0,,, +2018-02-11T00:00:00,GHCND:USC00280907,18.0,0.0,-inf,5.0,0.0,3.3,,False +2018-02-12T00:00:00,GHCND:USC00280907,9.4,0.0,-inf,13.9,3.3,3.9,,False +2018-02-13T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,5.6,-5.0,-4.4,,False +2018-02-13T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,5.6,-5.0,-4.4,,False +2018-02-14T00:00:00,?,0.5,,,5505.0,-40.0,,, +2018-02-14T00:00:00,GHCND:USC00280907,0.5,0.0,-inf,2.2,-4.4,0.0,,False +2018-02-14T00:00:00,?,0.5,,,5505.0,-40.0,,, +2018-02-15T00:00:00,?,1.8,,,5505.0,-40.0,,, +2018-02-15T00:00:00,GHCND:USC00280907,0.5,0.0,-inf,9.4,-0.6,5.0,,False +2018-02-15T00:00:00,?,1.8,,,5505.0,-40.0,,, +2018-02-16T00:00:00,?,3.3,,,5505.0,-40.0,,, +2018-02-16T00:00:00,GHCND:USC00280907,3.3,0.0,-inf,13.3,3.3,10.0,,False +2018-02-16T00:00:00,GHCND:USC00280907,3.3,0.0,-inf,13.3,3.3,10.0,,False +2018-02-16T00:00:00,?,3.3,,,5505.0,-40.0,,, +2018-02-17T00:00:00,?,1.5,,,5505.0,-40.0,,, +2018-02-17T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,13.3,-4.4,-3.3,,False +2018-02-18T00:00:00,GHCND:USC00280907,18.8,178.0,inf,3.9,-3.9,0.6,,True +2018-02-19T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-02-19T00:00:00,GHCND:USC00280907,0.0,,,5.6,-5.0,-3.3,,False +2018-02-20T00:00:00,GHCND:USC00280907,1.3,0.0,-inf,7.2,-3.3,7.2,,False +2018-02-21T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,17.8,6.1,12.8,,False +2018-02-22T00:00:00,GHCND:USC00280907,8.6,0.0,-inf,23.9,5.6,5.6,,False +2018-02-22T00:00:00,?,6.1,,,5505.0,-40.0,,, +2018-02-23T00:00:00,GHCND:USC00280907,7.4,0.0,-inf,7.2,1.1,2.2,,False +2018-02-23T00:00:00,GHCND:USC00280907,7.4,0.0,-inf,7.2,1.1,2.2,,False +2018-02-23T00:00:00,?,6.1,,,5505.0,-40.0,,, +2018-02-25T00:00:00,?,21.3,,,5505.0,-40.0,,, +2018-02-25T00:00:00,GHCND:USC00280907,16.5,0.0,-inf,11.1,3.9,4.4,,False +2018-02-26T00:00:00,?,3.0,,,5505.0,-40.0,,, +2018-02-27T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,10.6,0.0,0.0,,False +2018-02-27T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,10.6,0.0,0.0,,False +2018-02-28T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,12.2,0.0,0.0,,False +2018-02-28T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-02-28T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-03-01T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,14.4,0.0,3.9,,False +2018-03-01T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,14.4,0.0,3.9,,False +2018-03-01T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,14.4,0.0,3.9,,False +2018-03-01T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,14.4,0.0,3.9,,False +2018-03-03T00:00:00,GHCND:USC00280907,25.4,,,2.8,0.0,1.1,,False +2018-03-03T00:00:00,?,18.0,,,5505.0,-40.0,,, +2018-03-04T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,6.1,1.1,2.8,,False +2018-03-04T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,6.1,1.1,2.8,,False +2018-03-04T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-03-05T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,5.6,-1.1,-1.1,,False +2018-03-05T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-03-06T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,6.1,-2.2,-1.7,,False +2018-03-06T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,6.1,-2.2,-1.7,,False +2018-03-06T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-03-06T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,6.1,-2.2,-1.7,,False +2018-03-08T00:00:00,GHCND:USC00280907,48.8,,,1.1,-0.6,1.1,,False +2018-03-08T00:00:00,GHCND:USC00280907,48.8,,,1.1,-0.6,1.1,,False +2018-03-08T00:00:00,?,28.4,,,5505.0,-40.0,,28.7, +2018-03-08T00:00:00,GHCND:USC00280907,48.8,,,1.1,-0.6,1.1,,False +2018-03-09T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-03-09T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-03-10T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,4.4,-1.7,0.0,,False +2018-03-10T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-03-12T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,5.6,-3.9,-3.9,,False +2018-03-12T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,5.6,-3.9,-3.9,,False +2018-03-13T00:00:00,GHCND:USC00280907,4.1,51.0,inf,5.6,-3.9,0.0,,True +2018-03-13T00:00:00,?,3.0,13.0,inf,5505.0,-40.0,,3.0,True +2018-03-14T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-03-15T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,3.3,-2.2,-0.6,,False +2018-03-15T00:00:00,?,0.3,0.0,-inf,5505.0,-40.0,,, +2018-03-16T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,6.7,-1.1,-0.6,,False +2018-03-16T00:00:00,?,1.8,,,5505.0,-40.0,,, +2018-03-17T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,3.9,-3.9,-3.3,,False +2018-03-17T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-03-18T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-03-19T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,5.0,-4.4,-3.3,,False +2018-03-19T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-03-19T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-03-20T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-03-21T00:00:00,?,6.6,114.0,inf,5505.0,-40.0,,8.6,True +2018-03-21T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,2.8,-2.8,0.6,,False +2018-03-21T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,2.8,-2.8,0.6,,False +2018-03-21T00:00:00,?,6.6,114.0,inf,5505.0,-40.0,,8.6,True +2018-03-22T00:00:00,GHCND:USC00280907,17.3,178.0,inf,1.7,-1.7,0.0,,True +2018-03-22T00:00:00,GHCND:USC00280907,17.3,178.0,inf,1.7,-1.7,0.0,,True +2018-03-23T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,8.9,0.0,1.1,,False +2018-03-23T00:00:00,?,1.8,,,5505.0,-40.0,,, +2018-03-23T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,8.9,0.0,1.1,,False +2018-03-25T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-03-25T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,8.3,-1.1,-0.6,,False +2018-03-25T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,8.3,-1.1,-0.6,,False +2018-03-26T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,6.1,-3.9,-2.2,,False +2018-03-26T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,6.1,-3.9,-2.2,,False +2018-03-26T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,6.1,-3.9,-2.2,,False +2018-03-27T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-03-27T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,10.0,-3.3,-3.3,,False +2018-03-27T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-03-29T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,10.6,1.7,7.2,,False +2018-03-29T00:00:00,?,0.5,,,5505.0,-40.0,,, +2018-03-30T00:00:00,?,0.8,,,5505.0,-40.0,,, +2018-03-30T00:00:00,?,0.8,,,5505.0,-40.0,,, +2018-03-31T00:00:00,?,0.3,,,5505.0,-40.0,,, +2018-03-31T00:00:00,GHCND:USC00280907,1.0,0.0,-inf,13.3,1.7,2.8,,False +2018-03-31T00:00:00,GHCND:USC00280907,1.0,0.0,-inf,13.3,1.7,2.8,,False +2018-03-31T00:00:00,GHCND:USC00280907,1.0,0.0,-inf,13.3,1.7,2.8,,False +2018-04-02T00:00:00,GHCND:USC00280907,9.1,127.0,inf,12.8,-1.1,-1.1,,True +2018-04-02T00:00:00,?,14.0,152.0,inf,5505.0,-40.0,,15.2,True +2018-04-02T00:00:00,GHCND:USC00280907,9.1,127.0,inf,12.8,-1.1,-1.1,,True +2018-04-03T00:00:00,?,4.8,,,5505.0,-40.0,,, +2018-04-03T00:00:00,?,4.8,,,5505.0,-40.0,,, +2018-04-03T00:00:00,?,4.8,,,5505.0,-40.0,,, +2018-04-04T00:00:00,GHCND:USC00280907,11.4,0.0,-inf,3.9,-0.6,3.9,,False +2018-04-04T00:00:00,GHCND:USC00280907,11.4,0.0,-inf,3.9,-0.6,3.9,,False +2018-04-04T00:00:00,GHCND:USC00280907,11.4,0.0,-inf,3.9,-0.6,3.9,,False +2018-04-04T00:00:00,GHCND:USC00280907,11.4,0.0,-inf,3.9,-0.6,3.9,,False +2018-04-05T00:00:00,GHCND:USC00280907,0.3,0.0,-inf,11.7,-0.6,-0.6,,False +2018-04-05T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-04-06T00:00:00,?,0.3,,,5505.0,-40.0,,, +2018-04-07T00:00:00,GHCND:USC00280907,0.8,0.0,-inf,13.9,-1.7,2.8,,False +2018-04-07T00:00:00,?,0.5,,,5505.0,-40.0,,, +2018-04-08T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-04-08T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-04-09T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,6.1,-2.2,-1.7,,False +2018-04-10T00:00:00,GHCND:USC00280907,0.5,0.0,-inf,8.9,-1.7,1.7,,False +2018-04-10T00:00:00,GHCND:USC00280907,0.5,0.0,-inf,8.9,-1.7,1.7,,False +2018-04-11T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,8.9,-3.3,-3.3,,False +2018-04-12T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-04-12T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,10.0,-3.3,2.2,,False +2018-04-12T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-04-12T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-04-13T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-04-13T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-04-14T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-04-14T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,26.7,11.1,12.8,,False +2018-04-14T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,26.7,11.1,12.8,,False +2018-04-14T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,26.7,11.1,12.8,,False +2018-04-14T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-04-15T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-04-17T00:00:00,?,26.2,,,5505.0,-40.0,,, +2018-04-18T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,7.2,2.2,2.8,,False +2018-04-18T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,7.2,2.2,2.8,,False +2018-04-19T00:00:00,?,2.5,,,5505.0,-40.0,,, +2018-04-19T00:00:00,GHCND:USC00280907,6.9,0.0,-inf,11.1,2.8,3.9,,False +2018-04-19T00:00:00,?,2.5,,,5505.0,-40.0,,, +2018-04-20T00:00:00,GHCND:USC00280907,1.3,0.0,-inf,7.8,1.7,1.7,,False +2018-04-22T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,15.6,4.4,7.8,,False +2018-04-22T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-04-22T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,15.6,4.4,7.8,,False +2018-04-22T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-04-23T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,18.3,1.1,1.7,,False +2018-04-24T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-04-25T00:00:00,GHCND:USC00280907,10.2,0.0,-inf,18.9,2.2,10.6,,False +2018-04-25T00:00:00,GHCND:USC00280907,10.2,0.0,-inf,18.9,2.2,10.6,,False +2018-04-25T00:00:00,GHCND:USC00280907,10.2,0.0,-inf,18.9,2.2,10.6,,False +2018-04-25T00:00:00,GHCND:USC00280907,10.2,0.0,-inf,18.9,2.2,10.6,,False +2018-04-26T00:00:00,GHCND:USC00280907,28.4,0.0,-inf,15.0,10.6,12.2,,False +2018-04-26T00:00:00,?,9.1,,,5505.0,-40.0,,, +2018-04-27T00:00:00,?,1.0,,,5505.0,-40.0,,, +2018-04-27T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,20.0,8.9,10.6,,False +2018-04-27T00:00:00,?,1.0,,,5505.0,-40.0,,, +2018-04-28T00:00:00,GHCND:USC00280907,2.8,0.0,-inf,12.8,7.8,9.4,,False +2018-04-28T00:00:00,?,1.0,,,5505.0,-40.0,,, +2018-04-28T00:00:00,?,1.0,,,5505.0,-40.0,,, +2018-04-29T00:00:00,?,8.9,,,5505.0,-40.0,,, +2018-04-29T00:00:00,GHCND:USC00280907,9.4,0.0,-inf,21.1,8.9,8.9,,False +2018-04-29T00:00:00,GHCND:USC00280907,9.4,0.0,-inf,21.1,8.9,8.9,,False +2018-04-29T00:00:00,GHCND:USC00280907,9.4,0.0,-inf,21.1,8.9,8.9,,False +2018-04-30T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,13.3,7.2,7.2,,False +2018-05-01T00:00:00,?,2.0,,,5505.0,-40.0,,, +2018-05-01T00:00:00,GHCND:USC00280907,1.3,0.0,-inf,9.4,3.3,3.9,,False +2018-05-01T00:00:00,?,2.0,,,5505.0,-40.0,,, +2018-05-02T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,26.1,3.9,11.1,,False +2018-05-02T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-05-03T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-05-04T00:00:00,?,0.8,,,5505.0,-40.0,,, +2018-05-05T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,28.3,15.0,15.0,,False +2018-05-05T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,28.3,15.0,15.0,,False +2018-05-06T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-05-06T00:00:00,GHCND:USC00280907,0.8,0.0,-inf,23.9,13.9,13.9,,False +2018-05-06T00:00:00,GHCND:USC00280907,0.8,0.0,-inf,23.9,13.9,13.9,,False +2018-05-06T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-05-07T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-05-07T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-05-07T00:00:00,GHCND:USC00280907,5.6,0.0,-inf,16.7,9.4,9.4,,False +2018-05-07T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-05-08T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-05-09T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-05-10T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-05-10T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,26.1,8.9,10.0,,False +2018-05-10T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,26.1,8.9,10.0,,False +2018-05-11T00:00:00,?,8.9,,,5505.0,-40.0,,, +2018-05-11T00:00:00,GHCND:USC00280907,12.2,0.0,-inf,23.3,10.0,13.9,,False +2018-05-11T00:00:00,GHCND:USC00280907,12.2,0.0,-inf,23.3,10.0,13.9,,False +2018-05-11T00:00:00,?,8.9,,,5505.0,-40.0,,, +2018-05-12T00:00:00,?,4.8,,,5505.0,-40.0,,, +2018-05-12T00:00:00,?,4.8,,,5505.0,-40.0,,, +2018-05-12T00:00:00,?,4.8,,,5505.0,-40.0,,, +2018-05-12T00:00:00,GHCND:USC00280907,3.0,0.0,-inf,22.2,8.9,10.0,,False +2018-05-13T00:00:00,GHCND:USC00280907,5.1,0.0,-inf,12.8,9.4,10.6,,False +2018-05-13T00:00:00,?,2.0,,,5505.0,-40.0,,, +2018-05-14T00:00:00,GHCND:USC00280907,5.8,0.0,-inf,11.7,10.0,11.1,,False +2018-05-15T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-05-15T00:00:00,GHCND:USC00280907,0.5,0.0,-inf,23.3,10.6,17.8,,False +2018-05-17T00:00:00,?,13.7,,,5505.0,-40.0,,, +2018-05-17T00:00:00,?,13.7,,,5505.0,-40.0,,, +2018-05-18T00:00:00,?,0.8,,,5505.0,-40.0,,, +2018-05-19T00:00:00,?,9.7,,,5505.0,-40.0,,, +2018-05-19T00:00:00,GHCND:USC00280907,3.0,0.0,-inf,18.9,7.8,8.3,,False +2018-05-20T00:00:00,?,9.7,,,5505.0,-40.0,,, +2018-05-20T00:00:00,?,9.7,,,5505.0,-40.0,,, +2018-05-20T00:00:00,GHCND:USC00280907,15.2,0.0,-inf,14.4,7.8,13.9,,False +2018-05-20T00:00:00,?,9.7,,,5505.0,-40.0,,, +2018-05-20T00:00:00,?,9.7,,,5505.0,-40.0,,, +2018-05-20T00:00:00,?,9.7,,,5505.0,-40.0,,, +2018-05-21T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-05-21T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-05-21T00:00:00,GHCND:USC00280907,0.8,0.0,-inf,27.2,12.8,13.3,,False +2018-05-22T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-05-23T00:00:00,GHCND:USC00280907,16.8,0.0,-inf,19.4,13.3,16.1,,False +2018-05-23T00:00:00,?,17.0,,,5505.0,-40.0,,, +2018-05-24T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-05-24T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,26.1,15.0,15.6,,False +2018-05-25T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-05-26T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-05-26T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,29.4,13.9,20.0,,False +2018-05-26T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,29.4,13.9,20.0,,False +2018-05-27T00:00:00,GHCND:USC00280907,1.3,0.0,-inf,31.7,18.3,18.3,,False +2018-05-27T00:00:00,?,9.4,,,5505.0,-40.0,,, +2018-05-27T00:00:00,?,9.4,,,5505.0,-40.0,,, +2018-05-27T00:00:00,?,9.4,,,5505.0,-40.0,,, +2018-05-28T00:00:00,?,0.5,,,5505.0,-40.0,,, +2018-05-28T00:00:00,?,0.5,,,5505.0,-40.0,,, +2018-05-28T00:00:00,?,0.5,,,5505.0,-40.0,,, +2018-05-29T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-05-30T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-05-30T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-05-30T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-05-30T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-05-31T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-05-31T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-05-31T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,25.6,15.0,16.7,,False +2018-06-04T00:00:00,?,10.2,,,5505.0,-40.0,,, +2018-06-04T00:00:00,GHCND:USC00280907,16.8,0.0,-inf,18.9,10.6,11.1,,False +2018-06-04T00:00:00,GHCND:USC00280907,16.8,0.0,-inf,18.9,10.6,11.1,,False +2018-06-04T00:00:00,?,10.2,,,5505.0,-40.0,,, +2018-06-05T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,23.3,11.1,12.2,,False +2018-06-05T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-06-06T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,23.3,11.7,13.3,,False +2018-06-07T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-06-07T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-06-08T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,22.2,11.7,13.3,,False +2018-06-08T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,22.2,11.7,13.3,,False +2018-06-08T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-06-08T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,22.2,11.7,13.3,,False +2018-06-08T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-06-09T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-06-09T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-06-09T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-06-10T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,26.7,16.7,18.9,,False +2018-06-10T00:00:00,?,0.5,,,5505.0,-40.0,,, +2018-06-10T00:00:00,?,0.5,,,5505.0,-40.0,,, +2018-06-10T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,26.7,16.7,18.9,,False +2018-06-11T00:00:00,?,1.3,,,5505.0,-40.0,,, +2018-06-12T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-06-12T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-06-13T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,24.4,8.9,16.7,,False +2018-06-13T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-06-13T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-06-14T00:00:00,?,1.3,,,5505.0,-40.0,,, +2018-06-14T00:00:00,?,1.3,,,5505.0,-40.0,,, +2018-06-15T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-06-16T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-06-16T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,25.0,12.8,16.1,,False +2018-06-16T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,25.0,12.8,16.1,,False +2018-06-17T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,28.3,13.3,15.0,,False +2018-06-18T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-06-18T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,32.2,15.0,18.9,,False +2018-06-18T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,32.2,15.0,18.9,,False +2018-06-18T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,32.2,15.0,18.9,,False +2018-06-18T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,32.2,15.0,18.9,,False +2018-06-19T00:00:00,GHCND:USC00280907,5.3,0.0,-inf,32.2,18.9,24.4,,False +2018-06-19T00:00:00,?,3.0,,,5505.0,-40.0,,, +2018-06-21T00:00:00,?,17.5,,,5505.0,-40.0,,, +2018-06-22T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,29.4,18.3,18.3,,False +2018-06-23T00:00:00,?,1.8,,,5505.0,-40.0,,, +2018-06-24T00:00:00,?,0.0,,,5505.0,-40.0,,, +2018-06-24T00:00:00,GHCND:USC00280907,0.8,0.0,-inf,20.0,16.1,19.4,,False +2018-06-25T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-06-25T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-06-27T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,26.1,14.4,15.6,,False +2018-06-27T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-06-27T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-06-27T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,26.1,14.4,15.6,,False +2018-06-28T00:00:00,GHCND:USC00280907,16.0,0.0,-inf,22.8,15.6,21.1,,False +2018-06-28T00:00:00,GHCND:USC00280907,16.0,0.0,-inf,22.8,15.6,21.1,,False +2018-06-28T00:00:00,GHCND:USC00280907,16.0,0.0,-inf,22.8,15.6,21.1,,False +2018-06-28T00:00:00,?,16.3,,,5505.0,-40.0,,, +2018-06-29T00:00:00,GHCND:USC00280907,1.5,0.0,-inf,30.0,18.3,21.1,,False +2018-06-29T00:00:00,?,0.5,,,5505.0,-40.0,,, +2018-06-30T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-06-30T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,32.2,19.4,21.1,,False +2018-06-30T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-07-01T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-07-02T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-07-02T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,35.0,20.0,21.1,,False +2018-07-03T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-07-04T00:00:00,?,16.8,,,5505.0,-40.0,,, +2018-07-04T00:00:00,GHCND:USC00280907,2.8,0.0,-inf,35.0,22.8,25.0,,False +2018-07-05T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-07-05T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-07-05T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-07-05T00:00:00,GHCND:USC00280907,2.5,0.0,-inf,32.2,22.2,23.9,,False +2018-07-05T00:00:00,GHCND:USC00280907,2.5,0.0,-inf,32.2,22.2,23.9,,False +2018-07-05T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-07-05T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-07-05T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-07-06T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,32.8,23.9,25.0,,False +2018-07-07T00:00:00,?,1.0,,,5505.0,-40.0,,, +2018-07-07T00:00:00,GHCND:USC00280907,0.3,0.0,-inf,28.3,13.3,15.0,,False +2018-07-08T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,26.1,11.7,13.3,,False +2018-07-08T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-07-08T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,26.1,11.7,13.3,,False +2018-07-08T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-07-09T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-07-09T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,29.4,13.3,15.0,,False +2018-07-10T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-07-11T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-07-11T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-07-11T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-07-11T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-07-11T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,33.3,17.2,21.7,,False +2018-07-12T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,30.0,18.9,20.0,,False +2018-07-12T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-07-13T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-07-14T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-07-14T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,31.1,15.6,22.2,,False +2018-07-15T00:00:00,GHCND:USC00280907,18.3,0.0,-inf,31.7,20.6,21.1,,False +2018-07-15T00:00:00,?,14.7,,,5505.0,-40.0,,, +2018-07-15T00:00:00,GHCND:USC00280907,18.3,0.0,-inf,31.7,20.6,21.1,,False +2018-07-16T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-07-17T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,32.8,21.1,23.3,,False +2018-07-18T00:00:00,GHCND:USC00280907,32.5,0.0,-inf,31.1,16.1,18.9,,False +2018-07-20T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-07-22T00:00:00,?,29.0,,,5505.0,-40.0,,, +2018-07-22T00:00:00,GHCND:USC00280907,44.5,0.0,-inf,26.7,16.7,21.7,,False +2018-07-22T00:00:00,GHCND:USC00280907,44.5,0.0,-inf,26.7,16.7,21.7,,False +2018-07-23T00:00:00,?,12.7,,,5505.0,-40.0,,, +2018-07-24T00:00:00,?,2.3,,,5505.0,-40.0,,, +2018-07-24T00:00:00,GHCND:USC00280907,11.4,0.0,-inf,28.3,23.3,24.4,,False +2018-07-24T00:00:00,GHCND:USC00280907,11.4,0.0,-inf,28.3,23.3,24.4,,False +2018-07-26T00:00:00,?,5.1,,,5505.0,-40.0,,, +2018-07-26T00:00:00,GHCND:USC00280907,24.9,0.0,-inf,27.2,21.7,21.7,,False +2018-07-27T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,31.1,19.4,20.0,,False +2018-07-27T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,31.1,19.4,20.0,,False +2018-07-28T00:00:00,?,14.0,,,5505.0,-40.0,,, +2018-07-28T00:00:00,?,14.0,,,5505.0,-40.0,,, +2018-07-28T00:00:00,?,14.0,,,5505.0,-40.0,,, +2018-07-28T00:00:00,?,14.0,,,5505.0,-40.0,,, +2018-07-28T00:00:00,GHCND:USC00280907,23.4,0.0,-inf,30.0,19.4,20.0,,False +2018-07-29T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,29.4,18.9,18.9,,False +2018-07-29T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,29.4,18.9,18.9,,False +2018-07-30T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-07-30T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-07-30T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,29.4,15.6,16.7,,False +2018-07-31T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,25.6,16.1,20.0,,False +2018-08-01T00:00:00,?,4.3,,,5505.0,-40.0,,, +2018-08-01T00:00:00,?,4.3,,,5505.0,-40.0,,, +2018-08-01T00:00:00,?,4.3,,,5505.0,-40.0,,, +2018-08-01T00:00:00,?,4.3,,,5505.0,-40.0,,, +2018-08-01T00:00:00,GHCND:USC00280907,0.3,0.0,-inf,28.3,20.0,21.1,,False +2018-08-02T00:00:00,GHCND:USC00280907,17.5,0.0,-inf,30.0,20.6,24.4,,False +2018-08-02T00:00:00,GHCND:USC00280907,17.5,0.0,-inf,30.0,20.6,24.4,,False +2018-08-03T00:00:00,?,2.8,,,5505.0,-40.0,,, +2018-08-03T00:00:00,GHCND:USC00280907,34.5,0.0,-inf,30.0,21.7,22.8,,False +2018-08-04T00:00:00,GHCND:USC00280907,50.5,0.0,-inf,30.6,21.1,21.1,,False +2018-08-05T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-08-06T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,33.3,21.7,22.2,,False +2018-08-07T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-08-07T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-08-08T00:00:00,?,3.0,,,5505.0,-40.0,,, +2018-08-08T00:00:00,?,3.0,,,5505.0,-40.0,,, +2018-08-09T00:00:00,?,41.1,,,5505.0,-40.0,,, +2018-08-09T00:00:00,?,41.1,,,5505.0,-40.0,,, +2018-08-09T00:00:00,?,41.1,,,5505.0,-40.0,,, +2018-08-09T00:00:00,?,41.1,,,5505.0,-40.0,,, +2018-08-09T00:00:00,GHCND:USC00280907,9.9,0.0,-inf,32.8,21.1,22.2,,False +2018-08-09T00:00:00,GHCND:USC00280907,9.9,0.0,-inf,32.8,21.1,22.2,,False +2018-08-09T00:00:00,GHCND:USC00280907,9.9,0.0,-inf,32.8,21.1,22.2,,False +2018-08-10T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-08-10T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,30.6,18.3,18.9,,False +2018-08-10T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,30.6,18.3,18.9,,False +2018-08-10T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,30.6,18.3,18.9,,False +2018-08-11T00:00:00,GHCND:USC00280907,0.3,0.0,-inf,30.6,18.3,21.7,,False +2018-08-11T00:00:00,GHCND:USC00280907,0.3,0.0,-inf,30.6,18.3,21.7,,False +2018-08-13T00:00:00,GHCND:USC00280907,2.3,0.0,-inf,28.3,20.6,21.7,,False +2018-08-13T00:00:00,GHCND:USC00280907,2.3,0.0,-inf,28.3,20.6,21.7,,False +2018-08-14T00:00:00,GHCND:USC00280907,11.9,0.0,-inf,22.8,20.0,20.6,,False +2018-08-14T00:00:00,GHCND:USC00280907,11.9,0.0,-inf,22.8,20.0,20.6,,False +2018-08-14T00:00:00,GHCND:USC00280907,11.9,0.0,-inf,22.8,20.0,20.6,,False +2018-08-15T00:00:00,GHCND:USC00280907,7.4,0.0,-inf,26.7,20.6,21.1,,False +2018-08-17T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,31.7,21.1,21.7,,False +2018-08-18T00:00:00,GHCND:USC00280907,32.5,0.0,-inf,31.7,21.1,22.2,,False +2018-08-18T00:00:00,GHCND:USC00280907,32.5,0.0,-inf,31.7,21.1,22.2,,False +2018-08-18T00:00:00,GHCND:USC00280907,32.5,0.0,-inf,31.7,21.1,22.2,,False +2018-08-19T00:00:00,GHCND:USC00280907,13.0,0.0,-inf,30.0,19.4,19.4,,False +2018-08-19T00:00:00,GHCND:USC00280907,13.0,0.0,-inf,30.0,19.4,19.4,,False +2018-08-19T00:00:00,?,3.6,,,5505.0,-40.0,,, +2018-08-19T00:00:00,GHCND:USC00280907,13.0,0.0,-inf,30.0,19.4,19.4,,False +2018-08-20T00:00:00,GHCND:USC00280907,1.0,0.0,-inf,22.2,18.3,18.3,,False +2018-08-20T00:00:00,?,0.3,,,5505.0,-40.0,,, +2018-08-20T00:00:00,?,0.3,,,5505.0,-40.0,,, +2018-08-21T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,23.3,17.2,17.8,,False +2018-08-22T00:00:00,GHCND:USC00280907,19.8,0.0,-inf,25.6,17.8,21.1,,False +2018-08-23T00:00:00,GHCND:USC00280907,0.5,0.0,-inf,28.9,17.8,18.3,,False +2018-08-23T00:00:00,?,0.5,,,5505.0,-40.0,,, +2018-08-24T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,24.4,13.3,13.3,,False +2018-08-24T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-08-24T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-08-25T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,28.3,13.3,17.2,,False +2018-08-25T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-08-26T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-08-26T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-08-27T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-08-28T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-08-28T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-08-29T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,33.9,22.8,26.1,,False +2018-08-29T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,33.9,22.8,26.1,,False +2018-08-29T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-08-30T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-08-30T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,33.3,23.9,26.1,,False +2018-08-31T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,33.3,21.1,21.7,,False +2018-09-01T00:00:00,?,5.8,,,5505.0,-40.0,,, +2018-09-01T00:00:00,?,5.8,,,5505.0,-40.0,,, +2018-09-01T00:00:00,GHCND:USC00280907,32.5,0.0,-inf,22.2,18.3,18.9,,False +2018-09-01T00:00:00,GHCND:USC00280907,32.5,0.0,-inf,22.2,18.3,18.9,,False +2018-09-01T00:00:00,?,5.8,,,5505.0,-40.0,,, +2018-09-01T00:00:00,GHCND:USC00280907,32.5,0.0,-inf,22.2,18.3,18.9,,False +2018-09-02T00:00:00,?,0.3,,,5505.0,-40.0,,, +2018-09-02T00:00:00,GHCND:USC00280907,0.3,0.0,-inf,25.6,16.7,17.8,,False +2018-09-02T00:00:00,?,0.3,,,5505.0,-40.0,,, +2018-09-02T00:00:00,?,0.3,,,5505.0,-40.0,,, +2018-09-03T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-09-03T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,28.3,17.8,23.9,,False +2018-09-03T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-09-04T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-09-04T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,32.8,21.7,22.8,,False +2018-09-04T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-09-05T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,32.8,20.6,21.1,,False +2018-09-05T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-09-07T00:00:00,GHCND:USC00280907,15.7,0.0,-inf,34.4,21.7,22.8,,False +2018-09-08T00:00:00,?,0.0,,,5505.0,-40.0,,, +2018-09-09T00:00:00,GHCND:USC00280907,2.8,0.0,-inf,19.4,11.7,11.7,,False +2018-09-10T00:00:00,?,23.9,,,5505.0,-40.0,,, +2018-09-10T00:00:00,GHCND:USC00280907,26.4,0.0,-inf,13.9,10.6,11.1,,False +2018-09-10T00:00:00,?,23.9,,,5505.0,-40.0,,, +2018-09-11T00:00:00,?,12.7,,,5505.0,-40.0,,, +2018-09-12T00:00:00,?,0.8,,,5505.0,-40.0,,, +2018-09-12T00:00:00,GHCND:USC00280907,1.3,0.0,-inf,22.8,15.6,21.1,,False +2018-09-12T00:00:00,GHCND:USC00280907,1.3,0.0,-inf,22.8,15.6,21.1,,False +2018-09-12T00:00:00,GHCND:USC00280907,1.3,0.0,-inf,22.8,15.6,21.1,,False +2018-09-13T00:00:00,?,5.3,,,5505.0,-40.0,,, +2018-09-13T00:00:00,GHCND:USC00280907,4.3,0.0,-inf,24.4,20.6,20.6,,False +2018-09-13T00:00:00,GHCND:USC00280907,4.3,0.0,-inf,24.4,20.6,20.6,,False +2018-09-13T00:00:00,?,5.3,,,5505.0,-40.0,,, +2018-09-14T00:00:00,?,0.5,,,5505.0,-40.0,,, +2018-09-14T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,25.0,19.4,19.4,,False +2018-09-14T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,25.0,19.4,19.4,,False +2018-09-16T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,27.2,15.6,16.7,,False +2018-09-17T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,30.0,16.7,16.7,,False +2018-09-19T00:00:00,GHCND:USC00280907,3.3,0.0,-inf,26.1,17.8,19.4,,False +2018-09-19T00:00:00,GHCND:USC00280907,3.3,0.0,-inf,26.1,17.8,19.4,,False +2018-09-20T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,28.3,17.2,17.2,,False +2018-09-21T00:00:00,?,0.3,,,5505.0,-40.0,,, +2018-09-21T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,21.1,17.2,18.3,,False +2018-09-21T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,21.1,17.2,18.3,,False +2018-09-22T00:00:00,?,0.0,,,5505.0,-40.0,,, +2018-09-22T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,23.3,18.3,21.7,,False +2018-09-22T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,23.3,18.3,21.7,,False +2018-09-23T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,21.7,12.8,13.9,,False +2018-09-23T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-09-23T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,21.7,12.8,13.9,,False +2018-09-23T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,21.7,12.8,13.9,,False +2018-09-23T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,21.7,12.8,13.9,,False +2018-09-24T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,18.3,13.9,17.2,,False +2018-09-24T00:00:00,?,0.0,,,5505.0,-40.0,,, +2018-09-25T00:00:00,?,14.0,,,5505.0,-40.0,,, +2018-09-25T00:00:00,?,14.0,,,5505.0,-40.0,,, +2018-09-26T00:00:00,GHCND:USC00280907,61.7,0.0,-inf,19.4,11.7,19.4,,False +2018-09-27T00:00:00,GHCND:USC00280907,2.3,0.0,-inf,27.2,14.4,14.4,,False +2018-09-27T00:00:00,GHCND:USC00280907,2.3,0.0,-inf,27.2,14.4,14.4,,False +2018-09-28T00:00:00,?,29.2,,,5505.0,-40.0,,, +2018-09-28T00:00:00,GHCND:USC00280907,29.5,0.0,-inf,21.1,13.9,14.4,,False +2018-09-28T00:00:00,GHCND:USC00280907,29.5,0.0,-inf,21.1,13.9,14.4,,False +2018-09-28T00:00:00,?,29.2,,,5505.0,-40.0,,, +2018-09-30T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,22.2,8.9,8.9,,False +2018-10-01T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,21.1,8.9,13.9,,False +2018-10-02T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,23.9,13.9,17.2,,False +2018-10-02T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,23.9,13.9,17.2,,False +2018-10-03T00:00:00,GHCND:USC00280907,19.6,0.0,-inf,25.0,15.6,16.1,,False +2018-10-03T00:00:00,GHCND:USC00280907,19.6,0.0,-inf,25.0,15.6,16.1,,False +2018-10-04T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,22.8,11.7,11.7,,False +2018-10-04T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,22.8,11.7,11.7,,False +2018-10-04T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,22.8,11.7,11.7,,False +2018-10-04T00:00:00,?,0.3,,,5505.0,-40.0,,, +2018-10-04T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,22.8,11.7,11.7,,False +2018-10-05T00:00:00,GHCND:USC00280907,4.6,0.0,-inf,23.3,11.7,18.9,,False +2018-10-08T00:00:00,?,0.5,,,5505.0,-40.0,,, +2018-10-08T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,26.7,17.8,17.8,,False +2018-10-09T00:00:00,GHCND:USC00280907,2.5,0.0,-inf,18.9,17.2,17.8,,False +2018-10-10T00:00:00,GHCND:USC00280907,0.8,0.0,-inf,24.4,17.2,18.3,,False +2018-10-10T00:00:00,?,0.3,,,5505.0,-40.0,,, +2018-10-10T00:00:00,?,0.3,,,5505.0,-40.0,,, +2018-10-10T00:00:00,GHCND:USC00280907,0.8,0.0,-inf,24.4,17.2,18.3,,False +2018-10-10T00:00:00,?,0.3,,,5505.0,-40.0,,, +2018-10-10T00:00:00,GHCND:USC00280907,0.8,0.0,-inf,24.4,17.2,18.3,,False +2018-10-11T00:00:00,?,0.0,,,5505.0,-40.0,,, +2018-10-12T00:00:00,GHCND:USC00280907,27.9,0.0,-inf,22.8,14.4,15.6,,False +2018-10-12T00:00:00,?,25.7,,,5505.0,-40.0,,, +2018-10-12T00:00:00,GHCND:USC00280907,27.9,0.0,-inf,22.8,14.4,15.6,,False +2018-10-12T00:00:00,?,25.7,,,5505.0,-40.0,,, +2018-10-12T00:00:00,GHCND:USC00280907,27.9,0.0,-inf,22.8,14.4,15.6,,False +2018-10-13T00:00:00,?,2.3,,,5505.0,-40.0,,, +2018-10-14T00:00:00,?,0.5,,,5505.0,-40.0,,, +2018-10-14T00:00:00,GHCND:USC00280907,2.8,0.0,-inf,13.3,5.6,6.7,,False +2018-10-14T00:00:00,GHCND:USC00280907,2.8,0.0,-inf,13.3,5.6,6.7,,False +2018-10-15T00:00:00,GHCND:USC00280907,1.5,0.0,-inf,13.3,6.7,10.0,,False +2018-10-15T00:00:00,GHCND:USC00280907,1.5,0.0,-inf,13.3,6.7,10.0,,False +2018-10-15T00:00:00,GHCND:USC00280907,1.5,0.0,-inf,13.3,6.7,10.0,,False +2018-10-15T00:00:00,GHCND:USC00280907,1.5,0.0,-inf,13.3,6.7,10.0,,False +2018-10-16T00:00:00,?,1.3,,,5505.0,-40.0,,, +2018-10-18T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,16.1,4.4,5.0,,False +2018-10-19T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-10-19T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-10-19T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,10.0,-1.1,0.0,,False +2018-10-20T00:00:00,GHCND:USC00280907,0.5,0.0,-inf,15.0,-0.6,10.6,,False +2018-10-20T00:00:00,?,1.0,,,5505.0,-40.0,,, +2018-10-21T00:00:00,GHCND:USC00280907,1.3,0.0,-inf,16.7,7.8,7.8,,False +2018-10-21T00:00:00,GHCND:USC00280907,1.3,0.0,-inf,16.7,7.8,7.8,,False +2018-10-21T00:00:00,GHCND:USC00280907,1.3,0.0,-inf,16.7,7.8,7.8,,False +2018-10-22T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,7.8,-1.1,-1.1,,False +2018-10-23T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,15.6,-1.1,10.0,,False +2018-10-23T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-10-24T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,16.7,4.4,6.7,,False +2018-10-25T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,11.7,2.8,2.8,,False +2018-10-25T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,11.7,2.8,2.8,,False +2018-10-26T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,9.4,-0.6,-0.6,,False +2018-10-26T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,9.4,-0.6,-0.6,,False +2018-10-27T00:00:00,?,13.2,,,5505.0,-40.0,,, +2018-10-27T00:00:00,GHCND:USC00280907,11.9,0.0,-inf,8.9,-0.6,6.1,,False +2018-10-27T00:00:00,?,13.2,,,5505.0,-40.0,,, +2018-10-28T00:00:00,?,25.9,,,5505.0,-40.0,,, +2018-10-28T00:00:00,GHCND:USC00280907,11.2,0.0,-inf,8.3,5.0,7.2,,False +2018-10-28T00:00:00,?,25.9,,,5505.0,-40.0,,, +2018-10-28T00:00:00,GHCND:USC00280907,11.2,0.0,-inf,8.3,5.0,7.2,,False +2018-10-28T00:00:00,?,25.9,,,5505.0,-40.0,,, +2018-10-28T00:00:00,?,25.9,,,5505.0,-40.0,,, +2018-10-29T00:00:00,GHCND:USC00280907,3.3,0.0,-inf,10.6,6.7,8.3,,False +2018-10-29T00:00:00,?,1.3,,,5505.0,-40.0,,, +2018-10-30T00:00:00,?,0.0,,,5505.0,-40.0,,, +2018-10-31T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,12.2,0.0,0.0,,False +2018-10-31T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-11-02T00:00:00,GHCND:USC00280907,1.0,0.0,-inf,21.1,8.9,19.4,,False +2018-11-02T00:00:00,GHCND:USC00280907,1.0,0.0,-inf,21.1,8.9,19.4,,False +2018-11-03T00:00:00,?,17.5,,,5505.0,-40.0,,, +2018-11-03T00:00:00,?,17.5,,,5505.0,-40.0,,, +2018-11-03T00:00:00,GHCND:USC00280907,43.9,0.0,-inf,21.7,12.8,13.3,,False +2018-11-03T00:00:00,GHCND:USC00280907,43.9,0.0,-inf,21.7,12.8,13.3,,False +2018-11-04T00:00:00,GHCND:USC00280907,1.0,0.0,-inf,13.3,1.7,6.7,,False +2018-11-04T00:00:00,?,0.3,0.0,-inf,5505.0,-40.0,,, +2018-11-04T00:00:00,?,0.3,0.0,-inf,5505.0,-40.0,,, +2018-11-04T00:00:00,GHCND:USC00280907,1.0,0.0,-inf,13.3,1.7,6.7,,False +2018-11-04T00:00:00,GHCND:USC00280907,1.0,0.0,-inf,13.3,1.7,6.7,,False +2018-11-05T00:00:00,?,1.3,,,5505.0,-40.0,,, +2018-11-05T00:00:00,?,1.3,,,5505.0,-40.0,,, +2018-11-06T00:00:00,GHCND:USC00280907,7.6,0.0,-inf,10.6,7.2,8.3,,False +2018-11-06T00:00:00,GHCND:USC00280907,7.6,0.0,-inf,10.6,7.2,8.3,,False +2018-11-06T00:00:00,GHCND:USC00280907,7.6,0.0,-inf,10.6,7.2,8.3,,False +2018-11-07T00:00:00,?,20.8,,,5505.0,-40.0,,, +2018-11-07T00:00:00,GHCND:USC00280907,14.2,0.0,-inf,13.3,6.1,6.1,,False +2018-11-07T00:00:00,?,20.8,,,5505.0,-40.0,,, +2018-11-07T00:00:00,?,20.8,,,5505.0,-40.0,,, +2018-11-10T00:00:00,GHCND:USC00280907,17.0,0.0,-inf,8.3,0.0,6.1,,False +2018-11-10T00:00:00,GHCND:USC00280907,17.0,0.0,-inf,8.3,0.0,6.1,,False +2018-11-10T00:00:00,GHCND:USC00280907,17.0,0.0,-inf,8.3,0.0,6.1,,False +2018-11-10T00:00:00,GHCND:USC00280907,17.0,0.0,-inf,8.3,0.0,6.1,,False +2018-11-11T00:00:00,?,0.3,,,5505.0,-40.0,,, +2018-11-12T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,7.2,-3.3,-2.8,,False +2018-11-12T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-11-12T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,7.2,-3.3,-2.8,,False +2018-11-13T00:00:00,?,25.1,,,5505.0,-40.0,,, +2018-11-14T00:00:00,GHCND:USC00280907,10.7,0.0,-inf,8.9,1.1,1.1,,False +2018-11-14T00:00:00,?,1.3,,,5505.0,-40.0,,, +2018-11-14T00:00:00,?,1.3,,,5505.0,-40.0,,, +2018-11-14T00:00:00,GHCND:USC00280907,10.7,0.0,-inf,8.9,1.1,1.1,,False +2018-11-14T00:00:00,?,1.3,,,5505.0,-40.0,,, +2018-11-15T00:00:00,?,0.5,,,5505.0,-40.0,,, +2018-11-15T00:00:00,?,0.5,,,5505.0,-40.0,,, +2018-11-15T00:00:00,GHCND:USC00280907,0.3,0.0,-inf,3.3,-2.8,-2.2,,False +2018-11-16T00:00:00,?,47.0,152.0,inf,5505.0,-40.0,,24.9,True +2018-11-16T00:00:00,?,47.0,152.0,inf,5505.0,-40.0,,24.9,True +2018-11-16T00:00:00,?,47.0,152.0,inf,5505.0,-40.0,,24.9,True +2018-11-17T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,6.1,1.1,4.4,,False +2018-11-19T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-11-19T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-11-19T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-11-19T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,4.4,1.7,2.8,,False +2018-11-20T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-11-20T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,9.4,2.8,5.0,,False +2018-11-20T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-11-21T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-11-24T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-11-24T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,-1.1,-12.2,-5.0,,False +2018-11-25T00:00:00,GHCND:USC00280907,41.1,0.0,-inf,7.8,-5.0,6.7,,False +2018-11-25T00:00:00,?,38.1,,,5505.0,-40.0,,, +2018-11-26T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,12.2,2.8,5.0,,False +2018-11-27T00:00:00,GHCND:USC00280907,24.9,0.0,-inf,10.0,3.9,3.9,,False +2018-11-27T00:00:00,GHCND:USC00280907,24.9,0.0,-inf,10.0,3.9,3.9,,False +2018-11-28T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,6.1,1.1,1.1,,False +2018-11-29T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,4.4,0.6,3.3,,False +2018-11-30T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,6.1,0.6,2.2,,False +2018-11-30T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-11-30T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,6.1,0.6,2.2,,False +2018-12-01T00:00:00,GHCND:USC00280907,1.3,,,4.4,-0.6,0.0,,False +2018-12-01T00:00:00,GHCND:USC00280907,1.3,,,4.4,-0.6,0.0,,False +2018-12-01T00:00:00,GHCND:USC00280907,1.3,,,4.4,-0.6,0.0,,False +2018-12-01T00:00:00,?,0.5,,,5505.0,-40.0,,, +2018-12-03T00:00:00,GHCND:USC00280907,6.6,0.0,-inf,10.6,5.6,10.0,,False +2018-12-05T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,3.9,-6.7,-6.7,,False +2018-12-05T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,3.9,-6.7,-6.7,,False +2018-12-06T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,2.2,-6.7,-2.8,,False +2018-12-06T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-12-07T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,3.3,-2.8,0.0,,False +2018-12-07T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-12-07T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-12-08T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,2.2,-8.3,-5.6,,False +2018-12-08T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-12-09T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-12-09T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-12-09T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-12-10T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,0.6,-6.1,-5.0,,False +2018-12-10T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,0.6,-6.1,-5.0,,False +2018-12-10T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,0.6,-6.1,-5.0,,False +2018-12-11T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-12-12T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,3.3,-7.8,0.0,,False +2018-12-12T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,3.3,-7.8,0.0,,False +2018-12-13T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,8.3,-3.3,-0.6,,False +2018-12-14T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,2.8,-1.7,2.8,,False +2018-12-14T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,2.8,-1.7,2.8,,False +2018-12-14T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,2.8,-1.7,2.8,,False +2018-12-15T00:00:00,?,5.8,,,5505.0,-40.0,,, +2018-12-16T00:00:00,?,19.1,,,5505.0,-40.0,,, +2018-12-16T00:00:00,?,19.1,,,5505.0,-40.0,,, +2018-12-16T00:00:00,GHCND:USC00280907,23.9,0.0,-inf,10.0,2.2,2.8,,False +2018-12-17T00:00:00,GHCND:USC00280907,25.4,0.0,-inf,7.2,2.8,4.4,,False +2018-12-18T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,6.7,-0.6,-0.6,,False +2018-12-20T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,5.0,-5.6,-4.4,,False +2018-12-20T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,5.0,-5.6,-4.4,,False +2018-12-21T00:00:00,GHCND:USC00280907,42.9,0.0,-inf,14.4,-4.4,13.9,,False +2018-12-22T00:00:00,GHCND:USC00280907,12.2,0.0,-inf,16.1,6.7,6.7,,False +2018-12-23T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-12-23T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-12-23T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-12-24T00:00:00,?,1.5,,,5505.0,-40.0,,, +2018-12-25T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-12-25T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-12-25T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-12-25T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-12-26T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-12-26T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-12-26T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-12-27T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,5.6,-2.2,-1.1,,False +2018-12-27T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,5.6,-2.2,-1.1,,False +2018-12-27T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,5.6,-2.2,-1.1,,False +2018-12-27T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-12-28T00:00:00,?,11.4,,,5505.0,-40.0,,, +2018-12-28T00:00:00,GHCND:USC00280907,11.7,0.0,-inf,6.1,-1.7,5.0,,False +2018-12-28T00:00:00,?,11.4,,,5505.0,-40.0,,, +2018-12-29T00:00:00,?,21.3,,,5505.0,-40.0,,, +2018-12-29T00:00:00,?,21.3,,,5505.0,-40.0,,, +2018-12-30T00:00:00,?,0.0,,,5505.0,-40.0,,, +2018-12-31T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,3.3,-3.3,-2.8,,False +2018-12-31T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,3.3,-3.3,-2.8,,False +2018-12-31T00:00:00,GHCND:USC00280907,0.0,0.0,-inf,3.3,-3.3,-2.8,,False +2018-12-31T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, +2018-12-31T00:00:00,?,0.0,0.0,-inf,5505.0,-40.0,,, diff --git a/PythonAI/JupyterLab/data/earthquakes.csv b/PythonAI/JupyterLab/data/earthquakes.csv new file mode 100644 index 0000000..06ae063 --- /dev/null +++ b/PythonAI/JupyterLab/data/earthquakes.csv @@ -0,0 +1,9333 @@ +alert,cdi,code,detail,dmin,felt,gap,ids,mag,magType,mmi,net,nst,place,rms,sig,sources,status,time,title,tsunami,type,types,tz,updated,url +,,37389218,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37389218&format=geojson,0.008693,,85.0,",ci37389218,",1.35,ml,,ci,26.0,"9km NE of Aguanga, CA",0.19,28,",ci,",automatic,1539475168010,"M 1.4 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539475395144,https://earthquake.usgs.gov/earthquakes/eventpage/ci37389218 +,,37389202,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37389202&format=geojson,0.02003,,79.0,",ci37389202,",1.29,ml,,ci,20.0,"9km NE of Aguanga, CA",0.29,26,",ci,",automatic,1539475129610,"M 1.3 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539475253925,https://earthquake.usgs.gov/earthquakes/eventpage/ci37389202 +,4.4,37389194,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37389194&format=geojson,0.02137,28.0,21.0,",ci37389194,",3.42,ml,,ci,111.0,"8km NE of Aguanga, CA",0.22,192,",ci,",automatic,1539475062610,"M 3.4 - 8km NE of Aguanga, CA",0,earthquake,",dyfi,focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1539536756176,https://earthquake.usgs.gov/earthquakes/eventpage/ci37389194 +,,37389186,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37389186&format=geojson,0.02618,,39.0,",ci37389186,",0.44,ml,,ci,26.0,"9km NE of Aguanga, CA",0.17,3,",ci,",automatic,1539474978070,"M 0.4 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539475196167,https://earthquake.usgs.gov/earthquakes/eventpage/ci37389186 +,,73096941,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096941&format=geojson,0.07799,,192.0,",nc73096941,",2.16,md,,nc,18.0,"10km NW of Avenal, CA",0.05,72,",nc,",automatic,1539474716050,"M 2.2 - 10km NW of Avenal, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539477547926,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096941 +,,2018286011,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018286011&format=geojson,0.4373,,158.0,",pr2018286011,",2.61,md,,pr,10.0,"55km ESE of Punta Cana, Dominican Republic",0.41,105,",pr,",reviewed,1539473686440,"M 2.6 - 55km ESE of Punta Cana, Dominican Republic",0,earthquake,",geoserve,origin,phase-data,",-300.0,1539500579236,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018286011 +,,20280432,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20280432&format=geojson,,,,",ak20280432,",1.7,ml,,ak,,"105km W of Talkeetna, Alaska",0.54,44,",ak,",automatic,1539473176017,"M 1.7 - 105km W of Talkeetna, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539473596465,https://earthquake.usgs.gov/earthquakes/eventpage/ak20280432 +,,73096936,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096936&format=geojson,0.01622,,83.0,",nc73096936,",1.13,md,,nc,16.0,"10km NW of Parkfield, CA",0.05,20,",nc,",automatic,1539473060280,"M 1.1 - 10km NW of Parkfield, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539476642808,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096936 +,,73096931,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096931&format=geojson,0.009138,,52.0,",nc73096931,",0.92,md,,nc,20.0,"6km NW of The Geysers, CA",0.04,13,",nc,",automatic,1539473042310,"M 0.9 - 6km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539475027632,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096931 +,,1000hbtn,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000hbtn&format=geojson,3.191,,37.0,",us1000hbtn,",4.7,mb,,us,,"219km SSE of Saparua, Indonesia",0.78,340,",us,",reviewed,1539472814760,"M 4.7 - 219km SSE of Saparua, Indonesia",0,earthquake,",geoserve,origin,phase-data,",540.0,1539473712040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000hbtn +,,37389162,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37389162&format=geojson,0.005116,,57.0,",ci37389162,",0.5,ml,,ci,20.0,"10km NE of Aguanga, CA",0.25,4,",ci,",automatic,1539471831030,"M 0.5 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539472054436,https://earthquake.usgs.gov/earthquakes/eventpage/ci37389162 +,,2018286010,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018286010&format=geojson,0.9477,,186.0,",pr2018286010,",2.77,md,,pr,7.0,"53km SE of Punta Cana, Dominican Republic",0.53,118,",pr,",reviewed,1539471621260,"M 2.8 - 53km SE of Punta Cana, Dominican Republic",0,earthquake,",geoserve,origin,phase-data,",-300.0,1539500530876,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018286010 +,,37389146,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37389146&format=geojson,0.01517,,76.0,",ci37389146,",0.5,ml,,ci,22.0,"9km NE of Aguanga, CA",0.15,4,",ci,",automatic,1539470934710,"M 0.5 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539471147309,https://earthquake.usgs.gov/earthquakes/eventpage/ci37389146 +,,1000hbti,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000hbti&format=geojson,2.193,,157.0,",us1000hbti,",4.5,mb,,us,,"120km SSW of Banda Aceh, Indonesia",0.69,312,",us,",reviewed,1539470898340,"M 4.5 - 120km SSW of Banda Aceh, Indonesia",0,earthquake,",geoserve,origin,phase-data,",360.0,1539493516040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000hbti +,,73096921,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096921&format=geojson,0.02641,,71.0,",nc73096921,",2.13,md,,nc,25.0,"14km NW of Parkfield, CA",0.07,70,",nc,",automatic,1539470851950,"M 2.1 - 14km NW of Parkfield, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539473045436,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096921 +,,20280430,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20280430&format=geojson,,,,",ak20280430,",2.0,ml,,ak,,"156km WNW of Haines Junction, Canada",0.34,62,",ak,",automatic,1539470304219,"M 2.0 - 156km WNW of Haines Junction, Canada",0,earthquake,",geoserve,origin,",-480.0,1539473366902,https://earthquake.usgs.gov/earthquakes/eventpage/ak20280430 +,,73096911,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096911&format=geojson,0.01993,,159.0,",nc73096911,",0.72,md,,nc,8.0,"2km N of The Geysers, CA",0.03,8,",nc,",automatic,1539470237230,"M 0.7 - 2km N of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539472143341,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096911 +,,2018286009,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018286009&format=geojson,0.1061,,145.0,",pr2018286009,",1.69,md,,pr,5.0,"2km S of Maricao, Puerto Rico",0.07,44,",pr,",reviewed,1539468879730,"M 1.7 - 2km S of Maricao, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1539480026152,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018286009 +,,20280424,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20280424&format=geojson,,,,",ak20280424,",2.0,ml,,ak,,"57km SSW of Kaktovik, Alaska",0.98,62,",ak,",automatic,1539468687232,"M 2.0 - 57km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539469037574,https://earthquake.usgs.gov/earthquakes/eventpage/ak20280424 +,,37389114,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37389114&format=geojson,0.07711,,49.0,",ci37389114,",0.92,ml,,ci,30.0,"4km ENE of Calimesa, CA",0.23,13,",ci,",automatic,1539468671340,"M 0.9 - 4km ENE of Calimesa, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539468893882,https://earthquake.usgs.gov/earthquakes/eventpage/ci37389114 +,,2018286008,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018286008&format=geojson,0.7059,,294.0,",pr2018286008,",2.82,md,,pr,6.0,"61km N of Tierras Nuevas Poniente, Puerto Rico",0.37,122,",pr,",reviewed,1539467908560,"M 2.8 - 61km N of Tierras Nuevas Poniente, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1539480002872,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018286008 +,,20280421,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20280421&format=geojson,,,,",ak20280421,",1.7,ml,,ak,,"64km SSW of Salcha, Alaska",0.85,44,",ak,",automatic,1539467905609,"M 1.7 - 64km SSW of Salcha, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539468224954,https://earthquake.usgs.gov/earthquakes/eventpage/ak20280421 +,,37389098,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37389098&format=geojson,0.1078,,185.0,",ci37389098,",0.81,ml,,ci,16.0,"4km NW of San Clemente, CA",0.18,10,",ci,",automatic,1539467508540,"M 0.8 - 4km NW of San Clemente, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539467729448,https://earthquake.usgs.gov/earthquakes/eventpage/ci37389098 +,,37389082,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37389082&format=geojson,0.1078,,108.0,",ci37389082,",0.55,ml,,ci,9.0,"27km E of Coso Junction, CA",0.12,5,",ci,",automatic,1539466580200,"M 0.6 - 27km E of Coso Junction, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539466791682,https://earthquake.usgs.gov/earthquakes/eventpage/ci37389082 +,,37389074,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37389074&format=geojson,0.02752,,109.0,",ci37389074,",0.67,ml,,ci,22.0,"6km SSE of Idyllwild, CA",0.18,7,",ci,",automatic,1539466409430,"M 0.7 - 6km SSE of Idyllwild, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539466624165,https://earthquake.usgs.gov/earthquakes/eventpage/ci37389074 +,,73096901,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096901&format=geojson,0.02641,,73.0,",nc73096901,",2.1,md,,nc,26.0,"14km NW of Parkfield, CA",0.08,68,",nc,",automatic,1539466356170,"M 2.1 - 14km NW of Parkfield, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539469444108,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096901 +,,20280415,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20280415&format=geojson,,,,",ak20280415,us1000hbta,",2.8,ml,,ak,,"111km NNW of Arctic Village, Alaska",0.81,121,",ak,us,",automatic,1539466288954,"M 2.8 - 111km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539478515040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20280415 +,,20280412,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20280412&format=geojson,,,,",ak20280412,",1.1,ml,,ak,,"43km S of Redoubt Volcano, Alaska",0.35,19,",ak,",automatic,1539465520462,"M 1.1 - 43km S of Redoubt Volcano, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539465930832,https://earthquake.usgs.gov/earthquakes/eventpage/ak20280412 +,,20280407,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20280407&format=geojson,,,,",ak20280407,",1.8,ml,,ak,,"86km SW of Anchor Point, Alaska",1.05,50,",ak,",automatic,1539464607849,"M 1.8 - 86km SW of Anchor Point, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539464959401,https://earthquake.usgs.gov/earthquakes/eventpage/ak20280407 +,,73096891,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096891&format=geojson,0.02024,,147.0,",nc73096891,",0.93,md,,nc,9.0,"15km NW of Parkfield, CA",0.03,13,",nc,",automatic,1539464503490,"M 0.9 - 15km NW of Parkfield, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539468544026,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096891 +,,80314224,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80314224&format=geojson,0.302,,88.0,",mb80314224,",1.52,ml,,mb,13.0,"2km WNW of Manhattan, Montana",0.09,36,",mb,",reviewed,1539463322040,"M 1.5 - 2km WNW of Manhattan, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539464332470,https://earthquake.usgs.gov/earthquakes/eventpage/mb80314224 +,,20280403,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20280403&format=geojson,,,,",ak20280403,",2.3,ml,,ak,,"79km SW of Kaktovik, Alaska",0.93,81,",ak,",automatic,1539462724148,"M 2.3 - 79km SW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539463033137,https://earthquake.usgs.gov/earthquakes/eventpage/ak20280403 +,,00660878,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660878&format=geojson,0.091,,155.59,",nn00660878,",1.3,ml,,nn,10.0,"13km E of Hawthorne, Nevada",0.12,26,",nn,",reviewed,1539461038285,"M 1.3 - 13km E of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539482691389,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660878 +,,20280397,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20280397&format=geojson,,,,",ak20280397,",1.7,ml,,ak,,"45km S of Kaktovik, Alaska",0.8,44,",ak,",automatic,1539460963493,"M 1.7 - 45km S of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539461612173,https://earthquake.usgs.gov/earthquakes/eventpage/ak20280397 +,,20280396,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20280396&format=geojson,,,,",ak20280396,",2.2,ml,,ak,,"83km W of Anchor Point, Alaska",0.39,74,",ak,",automatic,1539460430189,"M 2.2 - 83km W of Anchor Point, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539460664056,https://earthquake.usgs.gov/earthquakes/eventpage/ak20280396 +,,20280395,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20280395&format=geojson,,,,",ak20280395,",1.9,ml,,ak,,"60km S of Cantwell, Alaska",0.89,56,",ak,",automatic,1539460155900,"M 1.9 - 60km S of Cantwell, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539460344052,https://earthquake.usgs.gov/earthquakes/eventpage/ak20280395 +,,1000hbsa,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000hbsa&format=geojson,1.541,,51.0,",us1000hbsa,",5.0,mww,,us,,"165km NNW of Flying Fish Cove, Christmas Island",0.95,385,",us,",reviewed,1539459504090,"M 5.0 - 165km NNW of Flying Fish Cove, Christmas Island",1,earthquake,",geoserve,origin,phase-data,",420.0,1539461285040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000hbsa +,,20280391,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20280391&format=geojson,,,,",ak20280391,",1.6,ml,,ak,,"95km N of College, Alaska",0.49,39,",ak,",automatic,1539459197502,"M 1.6 - 95km N of College, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539459368147,https://earthquake.usgs.gov/earthquakes/eventpage/ak20280391 +,,70650197,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70650197&format=geojson,0.006633,,44.0,",hv70650197,",2.12,ml,,hv,25.0,"7km SW of Volcano, Hawaii",0.35,69,",hv,",automatic,1539458974490,"M 2.1 - 7km SW of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539459318220,https://earthquake.usgs.gov/earthquakes/eventpage/hv70650197 +,,00660886,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660886&format=geojson,0.095,,155.25,",nn00660886,",-0.1,ml,,nn,4.0,"6km NW of Lemmon Valley, Nevada",0.0359,0,",nn,",reviewed,1539458844506,"M -0.1 - 6km NW of Lemmon Valley, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539482703428,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660886 +,,80314214,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80314214&format=geojson,0.08,,117.0,",mb80314214,",1.31,ml,,mb,12.0,"10km ESE of Lincoln, Montana",0.09,26,",mb,",reviewed,1539458726910,"M 1.3 - 10km ESE of Lincoln, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539464731020,https://earthquake.usgs.gov/earthquakes/eventpage/mb80314214 +,,00660885,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660885&format=geojson,0.097,,156.31,",nn00660885,",0.2,ml,,nn,6.0,"6km NW of Lemmon Valley, Nevada",0.0549,1,",nn,",reviewed,1539458665088,"M 0.2 - 6km NW of Lemmon Valley, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539482702050,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660885 +,,37389010,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37389010&format=geojson,0.09885,,205.0,",ci37389010,",0.86,ml,,ci,26.0,"12km N of Borrego Springs, CA",0.2,11,",ci,",automatic,1539457997460,"M 0.9 - 12km N of Borrego Springs, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539458211473,https://earthquake.usgs.gov/earthquakes/eventpage/ci37389010 +,,2018286007,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018286007&format=geojson,0.5878,,291.0,",pr2018286007,",2.92,md,,pr,10.0,"67km NNE of Arecibo, Puerto Rico",0.32,131,",pr,",reviewed,1539457653730,"M 2.9 - 67km NNE of Arecibo, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1539479987680,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018286007 +,,37388994,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37388994&format=geojson,0.07303,,71.0,",ci37388994,",0.32,ml,,ci,12.0,"10km NE of Aguanga, CA",0.12,2,",ci,",automatic,1539457563160,"M 0.3 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539457786112,https://earthquake.usgs.gov/earthquakes/eventpage/ci37388994 +,,73096866,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096866&format=geojson,0.3947,,186.0,",nc73096866,",1.84,md,,nc,7.0,"23km SSW of South Dos Palos, CA",0.17,52,",nc,",automatic,1539457145410,"M 1.8 - 23km SSW of South Dos Palos, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539463638552,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096866 +,,20280389,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20280389&format=geojson,,,,",ak20280389,",1.9,ml,,ak,,"13km W of Y, Alaska",1.04,56,",ak,",automatic,1539457095255,"M 1.9 - 13km W of Y, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539457291185,https://earthquake.usgs.gov/earthquakes/eventpage/ak20280389 +,,73096861,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096861&format=geojson,0.008078,,164.0,",nc73096861,",1.14,md,,nc,7.0,"6km NNW of Pinnacles, CA",0.02,20,",nc,",automatic,1539455748700,"M 1.1 - 6km NNW of Pinnacles, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539462009384,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096861 +,,00660867,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660867&format=geojson,0.326,,111.14,",nn00660867,",0.9,ml,,nn,13.0,"42km WSW of Tonopah, Nevada",0.1655,12,",nn,",reviewed,1539455306730,"M 0.9 - 42km WSW of Tonopah, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539482685124,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660867 +,,00660884,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660884&format=geojson,0.097,,155.98,",nn00660884,",-0.1,ml,,nn,4.0,"6km NW of Lemmon Valley, Nevada",0.0226,0,",nn,",reviewed,1539455017464,"M -0.1 - 6km NW of Lemmon Valley, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539482700579,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660884 +,,20280381,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20280381&format=geojson,,,,",ak20280381,",2.4,ml,,ak,,"65km SSW of Kaktovik, Alaska",0.83,89,",ak,",automatic,1539454521999,"M 2.4 - 65km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539455215638,https://earthquake.usgs.gov/earthquakes/eventpage/ak20280381 +,,20280377,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20280377&format=geojson,,,,",ak20280377,",2.2,ml,,ak,,"78km SW of Kaktovik, Alaska",1.12,74,",ak,",automatic,1539454417376,"M 2.2 - 78km SW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539454918071,https://earthquake.usgs.gov/earthquakes/eventpage/ak20280377 +,,20280372,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20280372&format=geojson,,,,",ak20280372,",2.5,ml,,ak,,"61km S of Cantwell, Alaska",0.93,96,",ak,",automatic,1539454164309,"M 2.5 - 61km S of Cantwell, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539454804411,https://earthquake.usgs.gov/earthquakes/eventpage/ak20280372 +,,00660865,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660865&format=geojson,0.079,,232.14,",nn00660865,",0.2,ml,,nn,26.0,"61km N of Pahrump, Nevada",0.2223,1,",nn,",reviewed,1539453350904,"M 0.2 - 61km N of Pahrump, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539482683399,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660865 +,,37388978,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37388978&format=geojson,0.03796,,71.0,",ci37388978,",1.46,ml,,ci,21.0,"4km SSW of Carpinteria, CA",0.27,33,",ci,",automatic,1539453348990,"M 1.5 - 4km SSW of Carpinteria, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539453572333,https://earthquake.usgs.gov/earthquakes/eventpage/ci37388978 +,,1000hbrc,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000hbrc&format=geojson,4.807,,124.0,",us1000hbrc,",4.6,mb,,us,,"242km NNW of Farallon de Pajaros, Northern Mariana Islands",0.92,326,",us,",reviewed,1539453241120,"M 4.6 - 242km NNW of Farallon de Pajaros, Northern Mariana Islands",0,earthquake,",geoserve,origin,phase-data,",600.0,1539454808040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000hbrc +,,80314199,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80314199&format=geojson,0.307,,73.0,",mb80314199,",2.21,ml,,mb,23.0,"2km WNW of Manhattan, Montana",0.16,75,",mb,",reviewed,1539453156220,"M 2.2 - 2km WNW of Manhattan, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539465403060,https://earthquake.usgs.gov/earthquakes/eventpage/mb80314199 +,,20280369,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20280369&format=geojson,,,,",ak20280369,",2.1,ml,,ak,,"109km NW of Arctic Village, Alaska",0.9,68,",ak,",automatic,1539452972561,"M 2.1 - 109km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539453256203,https://earthquake.usgs.gov/earthquakes/eventpage/ak20280369 +,,70649957,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70649957&format=geojson,0.04506,,140.0,",hv70649957,",1.83,ml,,hv,45.0,"17km SE of Volcano, Hawaii",0.26,52,",hv,",automatic,1539452579990,"M 1.8 - 17km SE of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539452921730,https://earthquake.usgs.gov/earthquakes/eventpage/hv70649957 +,,37388970,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37388970&format=geojson,0.04478,,35.0,",ci37388970,",2.15,ml,,ci,80.0,"2km WNW of Big Bear City, CA",0.18,71,",ci,",automatic,1539452346280,"M 2.2 - 2km WNW of Big Bear City, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1539453035850,https://earthquake.usgs.gov/earthquakes/eventpage/ci37388970 +,,73096846,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096846&format=geojson,0.02706,,103.0,",nc73096846,",1.44,md,,nc,19.0,"5km WNW of San Juan Bautista, CA",0.05,32,",nc,",automatic,1539451650330,"M 1.4 - 5km WNW of San Juan Bautista, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539459489142,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096846 +,,37388954,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37388954&format=geojson,0.2762,,77.0,",ci37388954,",2.07,ml,,ci,16.0,"30km NNW of Santa Barbara Is., CA",0.24,66,",ci,",automatic,1539450846660,"M 2.1 - 30km NNW of Santa Barbara Is., CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539451077295,https://earthquake.usgs.gov/earthquakes/eventpage/ci37388954 +,,73096836,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096836&format=geojson,0.007332,,163.0,",nc73096836,",0.86,md,,nc,7.0,"6km NNW of Pinnacles, CA",0.01,11,",nc,",automatic,1539450775480,"M 0.9 - 6km NNW of Pinnacles, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539457803964,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096836 +,,00660883,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660883&format=geojson,0.096,,146.38,",nn00660883,",0.1,ml,,nn,6.0,"6km NW of Lemmon Valley, Nevada",0.0506,0,",nn,",reviewed,1539450455710,"M 0.1 - 6km NW of Lemmon Valley, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539482699204,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660883 +,,20280363,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20280363&format=geojson,,,,",ak20280363,",2.0,ml,,ak,,"131km WNW of Arctic Village, Alaska",0.84,62,",ak,",automatic,1539450453274,"M 2.0 - 131km WNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539450808977,https://earthquake.usgs.gov/earthquakes/eventpage/ak20280363 +,2.0,73096831,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096831&format=geojson,0.007582,1.0,50.0,",nc73096831,us1000hbqe,",2.76,md,,nc,49.0,"6km NNW of Pinnacles, CA",0.1,117,",nc,us,",automatic,1539449830890,"M 2.8 - 6km NNW of Pinnacles, CA",0,earthquake,",dyfi,focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539475854780,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096831 +,,70649847,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70649847&format=geojson,0.04521,,95.0,",hv70649847,",2.24,ml,,hv,30.0,"22km E of Honaunau-Napoopoo, Hawaii",0.19,77,",hv,",automatic,1539448516170,"M 2.2 - 22km E of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539448858120,https://earthquake.usgs.gov/earthquakes/eventpage/hv70649847 +,,1000hbqa,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000hbqa&format=geojson,1.415,,72.0,",us1000hbqa,",4.6,mb,,us,,"160km NNW of Nago, Japan",1.0,326,",us,",reviewed,1539448501800,"M 4.6 - 160km NNW of Nago, Japan",0,earthquake,",geoserve,origin,phase-data,",480.0,1539449501040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000hbqa +,,37388906,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37388906&format=geojson,0.06902,,62.0,",ci37388906,",1.14,ml,,ci,25.0,"1km SE of Placentia, CA",0.17,20,",ci,",automatic,1539446932070,"M 1.1 - 1km SE of Placentia, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539447148137,https://earthquake.usgs.gov/earthquakes/eventpage/ci37388906 +,,37388898,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37388898&format=geojson,0.07167,,35.0,",ci37388898,",1.45,ml,,ci,50.0,"6km NNE of Banning, CA",0.19,32,",ci,",automatic,1539446803660,"M 1.5 - 6km NNE of Banning, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1539447488980,https://earthquake.usgs.gov/earthquakes/eventpage/ci37388898 +,,73096811,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096811&format=geojson,0.03099,,173.0,",nc73096811,",0.35,md,,nc,9.0,"18km NW of Parkfield, CA",0.05,2,",nc,",automatic,1539446197020,"M 0.4 - 18km NW of Parkfield, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539452044397,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096811 +,,00660903,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660903&format=geojson,0.131,,185.18,",nn00660903,",0.7,ml,,nn,6.0,"36km ENE of Big Pine, California",0.1767,8,",nn,",reviewed,1539445657953,"M 0.7 - 36km ENE of Big Pine, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539482720187,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660903 +,,00660856,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660856&format=geojson,0.199,,136.46,",nn00660856,",0.7,ml,,nn,40.0,"58km NNE of Pahrump, Nevada",0.2433,8,",nn,",reviewed,1539445449797,"M 0.7 - 58km NNE of Pahrump, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539482681464,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660856 +,,2018286006,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018286006&format=geojson,0.6192,,295.0,",pr2018286006,",2.43,md,,pr,9.0,"70km N of Tierras Nuevas Poniente, Puerto Rico",0.38,91,",pr,",reviewed,1539445438030,"M 2.4 - 70km N of Tierras Nuevas Poniente, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1539462489853,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018286006 +,,20280349,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20280349&format=geojson,,,,",ak20280349,",1.7,ml,,ak,,"74km NW of Larsen Bay, Alaska",0.63,44,",ak,",automatic,1539444927723,"M 1.7 - 74km NW of Larsen Bay, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539445180938,https://earthquake.usgs.gov/earthquakes/eventpage/ak20280349 +,,73096796,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096796&format=geojson,0.01618,,130.0,",nc73096796,",1.12,md,,nc,6.0,"6km WNW of The Geysers, CA",0.01,19,",nc,",automatic,1539444768320,"M 1.1 - 6km WNW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539450483238,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096796 +,,20280347,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20280347&format=geojson,,,,",ak20280347,",1.5,ml,,ak,,"77km NNW of New Allakaket, Alaska",0.77,35,",ak,",automatic,1539444762403,"M 1.5 - 77km NNW of New Allakaket, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539445069866,https://earthquake.usgs.gov/earthquakes/eventpage/ak20280347 +,,37388890,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37388890&format=geojson,0.01128,,47.0,",ci37388890,",0.62,ml,,ci,21.0,"11km NE of Aguanga, CA",0.21,6,",ci,",automatic,1539444416080,"M 0.6 - 11km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539444639166,https://earthquake.usgs.gov/earthquakes/eventpage/ci37388890 +,,00660851,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660851&format=geojson,0.199,,265.57,",nn00660851,",0.5,ml,,nn,28.0,"59km NNE of Pahrump, Nevada",0.2396,4,",nn,",reviewed,1539444377073,"M 0.5 - 59km NNE of Pahrump, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539482678757,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660851 +,,00660881,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660881&format=geojson,0.025,,166.08,",nn00660881,",0.1,ml,,nn,6.0,"13km S of Reno, Nevada",0.133,0,",nn,",reviewed,1539443271217,"M 0.1 - 13km S of Reno, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539482697210,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660881 +,,70649732,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70649732&format=geojson,0.02787,,124.0,",hv70649732,",2.01,ml,,hv,25.0,"21km ENE of Honaunau-Napoopoo, Hawaii",0.29,62,",hv,",automatic,1539443097270,"M 2.0 - 21km ENE of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539443441450,https://earthquake.usgs.gov/earthquakes/eventpage/hv70649732 +,,20280344,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20280344&format=geojson,,,,",ak20280344,",1.4,ml,,ak,,"93km ENE of Kobuk, Alaska",0.38,30,",ak,",automatic,1539442812757,"M 1.4 - 93km ENE of Kobuk, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539444516169,https://earthquake.usgs.gov/earthquakes/eventpage/ak20280344 +,,20280343,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20280343&format=geojson,,,,",ak20280343,",1.7,ml,,ak,,"123km NNW of Arctic Village, Alaska",0.97,44,",ak,",automatic,1539442808570,"M 1.7 - 123km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539444515901,https://earthquake.usgs.gov/earthquakes/eventpage/ak20280343 +,,73096781,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096781&format=geojson,0.008442,,88.0,",nc73096781,",0.83,md,,nc,13.0,"5km NNW of The Geysers, CA",0.03,11,",nc,",automatic,1539442092640,"M 0.8 - 5km NNW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539447182943,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096781 +,,00660880,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660880&format=geojson,0.073,,125.08,",nn00660880,",1.1,ml,,nn,7.0,"14km NE of East Quincy, California",0.1463,19,",nn,",reviewed,1539442019022,"M 1.1 - 14km NE of East Quincy, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539482695547,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660880 +,,20280338,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20280338&format=geojson,,,,",ak20280338,",1.4,ml,,ak,,"41km NNW of North Nenana, Alaska",0.71,30,",ak,",automatic,1539440518313,"M 1.4 - 41km NNW of North Nenana, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539444308158,https://earthquake.usgs.gov/earthquakes/eventpage/ak20280338 +,,20280339,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20280339&format=geojson,,,,",ak20280339,",1.4,ml,,ak,,"28km N of North Nenana, Alaska",0.47,30,",ak,",automatic,1539440502602,"M 1.4 - 28km N of North Nenana, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539444308430,https://earthquake.usgs.gov/earthquakes/eventpage/ak20280339 +,,00660901,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660901&format=geojson,0.254,,217.52,",nn00660901,",0.0,ml,,nn,7.0,"57km SSW of Beatty, Nevada",0.1301,0,",nn,",reviewed,1539439366287,"M 0.0 - 57km SSW of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539482718719,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660901 +,,20280334,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20280334&format=geojson,,,,",ak20280334,",1.8,ml,,ak,,"11km WNW of Sutton-Alpine, Alaska",1.01,50,",ak,",automatic,1539439062925,"M 1.8 - 11km WNW of Sutton-Alpine, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539444198778,https://earthquake.usgs.gov/earthquakes/eventpage/ak20280334 +,,20280328,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20280328&format=geojson,,,,",ak20280328,",2.0,ml,,ak,,"50km E of Cantwell, Alaska",0.5,62,",ak,",automatic,1539438722986,"M 2.0 - 50km E of Cantwell, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539444089086,https://earthquake.usgs.gov/earthquakes/eventpage/ak20280328 +,4.5,73096771,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096771&format=geojson,0.009227,11.0,50.0,",nc73096771,us1000hbp6,",3.22,ml,,nc,60.0,"6km NNW of Pinnacles, CA",0.07,164,",nc,us,",automatic,1539438366550,"M 3.2 - 6km NNW of Pinnacles, CA",0,earthquake,",dyfi,focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539455566040,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096771 +,,1000hbp3,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000hbp3&format=geojson,1.379,,144.0,",us1000hbp3,",4.7,mb,,us,,"32km SE of Muisne, Ecuador",1.11,340,",us,",reviewed,1539437762090,"M 4.7 - 32km SE of Muisne, Ecuador",0,earthquake,",geoserve,origin,phase-data,",-300.0,1539438710040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000hbp3 +,,1000hbp4,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000hbp4&format=geojson,6.603,,132.0,",us1000hbp4,",4.6,mb,,us,,"150km E of Luganville, Vanuatu",1.2,326,",us,",reviewed,1539437595250,"M 4.6 - 150km E of Luganville, Vanuatu",0,earthquake,",geoserve,origin,phase-data,",660.0,1539440969040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000hbp4 +,,37388818,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37388818&format=geojson,0.05191,,54.0,",ci37388818,",0.75,ml,,ci,26.0,"6km S of Palomar Observatory, CA",0.16,9,",ci,",automatic,1539437502970,"M 0.8 - 6km S of Palomar Observatory, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539437721640,https://earthquake.usgs.gov/earthquakes/eventpage/ci37388818 +,,20280325,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20280325&format=geojson,,,,",ak20280325,",1.9,ml,,ak,,"10km SSE of Redoubt Volcano, Alaska",0.76,56,",ak,",automatic,1539437373237,"M 1.9 - 10km SSE of Redoubt Volcano, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539443869457,https://earthquake.usgs.gov/earthquakes/eventpage/ak20280325 +,,73096766,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096766&format=geojson,0.01506,,49.0,",nc73096766,",1.57,md,,nc,21.0,"3km NNE of The Geysers, CA",0.04,38,",nc,",automatic,1539436429230,"M 1.6 - 3km NNE of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539465377799,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096766 +,,00660828,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660828&format=geojson,0.03,,88.54,",nn00660828,",0.9,ml,,nn,21.0,"60km E of Big Pine, California",0.1842,12,",nn,",reviewed,1539436205237,"M 0.9 - 60km E of Big Pine, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539482676266,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660828 +,,20280318,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20280318&format=geojson,,,,",ak20280318,",1.3,ml,,ak,,"45km WSW of Big Lake, Alaska",0.39,26,",ak,",automatic,1539436163990,"M 1.3 - 45km WSW of Big Lake, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539443661357,https://earthquake.usgs.gov/earthquakes/eventpage/ak20280318 +,,20280314,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20280314&format=geojson,,,,",ak20280314,",1.8,ml,,ak,,"66km SW of Cantwell, Alaska",0.71,50,",ak,",automatic,1539435949390,"M 1.8 - 66km SW of Cantwell, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539443661049,https://earthquake.usgs.gov/earthquakes/eventpage/ak20280314 +,,20280313,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20280313&format=geojson,,,,",ak20280313,",1.6,ml,,ak,,"112km NNW of Arctic Village, Alaska",0.92,39,",ak,",automatic,1539435921824,"M 1.6 - 112km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539443660763,https://earthquake.usgs.gov/earthquakes/eventpage/ak20280313 +,,20280310,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20280310&format=geojson,,,,",ak20280310,",1.2,ml,,ak,,"25km NW of Ester, Alaska",0.76,22,",ak,",automatic,1539435449480,"M 1.2 - 25km NW of Ester, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539443551010,https://earthquake.usgs.gov/earthquakes/eventpage/ak20280310 +,,73096756,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096756&format=geojson,0.01355,,185.0,",nc73096756,",0.59,md,,nc,7.0,"8km ESE of Mammoth Lakes, CA",0.03,5,",nc,",automatic,1539435391320,"M 0.6 - 8km ESE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539439802162,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096756 +,,37388730,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37388730&format=geojson,0.02987,,39.0,",ci37388730,",1.33,ml,,ci,55.0,"8km ENE of Aguanga, CA",0.17,27,",ci,",automatic,1539435293090,"M 1.3 - 8km ENE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1539435940470,https://earthquake.usgs.gov/earthquakes/eventpage/ci37388730 +,,37388722,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37388722&format=geojson,0.03667,,183.0,",ci37388722,",0.03,ml,,ci,10.0,"5km WSW of Anza, CA",0.08,0,",ci,",automatic,1539434854250,"M 0.0 - 5km WSW of Anza, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539435060684,https://earthquake.usgs.gov/earthquakes/eventpage/ci37388722 +,,37388706,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37388706&format=geojson,0.1908,,148.0,",ci37388706,",1.64,ml,,ci,13.0,"10km S of Progreso, B.C., MX",0.26,41,",ci,",automatic,1539434531500,"M 1.6 - 10km S of Progreso, B.C., MX",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539434742639,https://earthquake.usgs.gov/earthquakes/eventpage/ci37388706 +,,37388690,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37388690&format=geojson,0.1012,,165.0,",ci37388690,",0.57,ml,,ci,19.0,"12km N of Borrego Springs, CA",0.18,5,",ci,",automatic,1539434338510,"M 0.6 - 12km N of Borrego Springs, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539434559906,https://earthquake.usgs.gov/earthquakes/eventpage/ci37388690 +,,80314124,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80314124&format=geojson,0.113,,108.0,",mb80314124,",1.44,ml,,mb,10.0,"14km ESE of Lincoln, Montana",0.1,32,",mb,",reviewed,1539434260530,"M 1.4 - 14km ESE of Lincoln, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539444476860,https://earthquake.usgs.gov/earthquakes/eventpage/mb80314124 +,3.0,73096741,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096741&format=geojson,0.0285,7.0,49.0,",nc73096741,",2.81,md,,nc,54.0,"5km WNW of San Juan Bautista, CA",0.11,124,",nc,",automatic,1539434155600,"M 2.8 - 5km WNW of San Juan Bautista, CA",0,earthquake,",dyfi,focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539483300983,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096741 +,,37388674,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37388674&format=geojson,0.06802,,70.0,",ci37388674,",0.29,ml,,ci,12.0,"11km NE of Aguanga, CA",0.09,1,",ci,",automatic,1539433618700,"M 0.3 - 11km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539433833716,https://earthquake.usgs.gov/earthquakes/eventpage/ci37388674 +,,20280307,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20280307&format=geojson,,,,",ak20280307,",2.2,ml,,ak,,"112km NE of Kodiak, Alaska",1.27,74,",ak,",automatic,1539433351265,"M 2.2 - 112km NE of Kodiak, Alaska",0,earthquake,",geoserve,origin,",-600.0,1539443441421,https://earthquake.usgs.gov/earthquakes/eventpage/ak20280307 +,,20280305,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20280305&format=geojson,,,,",ak20280305,",1.1,ml,,ak,,"35km S of Ester, Alaska",0.81,19,",ak,",automatic,1539432831700,"M 1.1 - 35km S of Ester, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539443331895,https://earthquake.usgs.gov/earthquakes/eventpage/ak20280305 +,,20280293,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20280293&format=geojson,,,,",ak20280293,",1.9,ml,,ak,,"93km WNW of Arctic Village, Alaska",0.58,56,",ak,",automatic,1539431731581,"M 1.9 - 93km WNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539443156018,https://earthquake.usgs.gov/earthquakes/eventpage/ak20280293 +,,00660899,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660899&format=geojson,0.197,,80.04,",nn00660899,",0.9,ml,,nn,8.0,"20km WSW of Smith Valley, Nevada",0.2038,12,",nn,",reviewed,1539430916036,"M 0.9 - 20km WSW of Smith Valley, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539482717278,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660899 +,,00660879,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660879&format=geojson,0.118,,149.55,",nn00660879,",0.1,ml,,nn,7.0,"13km S of Verdi, Nevada",0.112,0,",nn,",reviewed,1539430605947,"M 0.1 - 13km S of Verdi, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539482692887,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660879 +,,20280265,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20280265&format=geojson,,,,",ak20280265,",2.3,ml,,ak,,"93km SW of Kaktovik, Alaska",1.48,81,",ak,",automatic,1539430033878,"M 2.3 - 93km SW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539441428965,https://earthquake.usgs.gov/earthquakes/eventpage/ak20280265 +,,73096731,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096731&format=geojson,0.007222,,49.0,",nc73096731,",2.84,md,,nc,46.0,"6km NNW of Pinnacles, CA",0.07,124,",nc,",automatic,1539429835910,"M 2.8 - 6km NNW of Pinnacles, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539458782522,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096731 +,,70649442,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70649442&format=geojson,0.01218,,112.0,",hv70649442,",2.16,md,,hv,27.0,"26km WNW of Volcano, Hawaii",0.36,72,",hv,",automatic,1539429776760,"M 2.2 - 26km WNW of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539429957540,https://earthquake.usgs.gov/earthquakes/eventpage/hv70649442 +,,70649437,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70649437&format=geojson,0.00563,,58.0,",hv70649437,",2.01,md,,hv,17.0,"5km WSW of Volcano, Hawaii",0.18,62,",hv,",automatic,1539429745980,"M 2.0 - 5km WSW of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539429922200,https://earthquake.usgs.gov/earthquakes/eventpage/hv70649437 +green,,1000hbkz,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000hbkz&format=geojson,2.623,,25.0,",pt18286001,at00pgjb1a,us1000hbkz,",6.7,mww,3.04,us,,"262km NW of Ozernovskiy, Russia",0.98,691,",pt,at,us,",reviewed,1539429023560,"M 6.7 - 262km NW of Ozernovskiy, Russia",1,earthquake,",geoserve,ground-failure,impact-link,losspager,moment-tensor,origin,phase-data,shakemap,",600.0,1539455437040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000hbkz +,,70649427,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70649427&format=geojson,0.02715,,71.0,",hv70649427,",2.36,ml,,hv,44.0,"22km ENE of Honaunau-Napoopoo, Hawaii",0.24,86,",hv,",automatic,1539428857620,"M 2.4 - 22km ENE of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539429198670,https://earthquake.usgs.gov/earthquakes/eventpage/hv70649427 +,,37388474,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37388474&format=geojson,0.007106,,39.0,",ci37388474,",0.83,ml,,ci,32.0,"10km NE of Aguanga, CA",0.15,11,",ci,",automatic,1539428257990,"M 0.8 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539428482976,https://earthquake.usgs.gov/earthquakes/eventpage/ci37388474 +,,20280157,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20280157&format=geojson,,,,",ak20280157,",1.6,ml,,ak,,"48km NE of Talkeetna, Alaska",0.69,39,",ak,",automatic,1539427991797,"M 1.6 - 48km NE of Talkeetna, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539428289252,https://earthquake.usgs.gov/earthquakes/eventpage/ak20280157 +,,2018286004,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018286004&format=geojson,0.9246,,335.0,",pr2018286004,",2.61,md,,pr,5.0,"52km ESE of Punta Cana, Dominican Republic",0.25,105,",pr,",reviewed,1539426944370,"M 2.6 - 52km ESE of Punta Cana, Dominican Republic",0,earthquake,",geoserve,origin,phase-data,",-300.0,1539435952549,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018286004 +,,20280153,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20280153&format=geojson,,,,",ak20280153,",2.2,ml,,ak,,"69km SW of Kaktovik, Alaska",0.93,74,",ak,",automatic,1539426811876,"M 2.2 - 69km SW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539427496123,https://earthquake.usgs.gov/earthquakes/eventpage/ak20280153 +,,37388466,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37388466&format=geojson,0.029,,118.0,",ci37388466,",0.62,ml,,ci,8.0,"4km SE of Lake Henshaw, CA",0.08,6,",ci,",automatic,1539426592850,"M 0.6 - 4km SE of Lake Henshaw, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539426806029,https://earthquake.usgs.gov/earthquakes/eventpage/ci37388466 +,,37388458,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37388458&format=geojson,0.01395,,31.0,",ci37388458,",0.73,ml,,ci,32.0,"9km NE of Aguanga, CA",0.15,8,",ci,",automatic,1539426495810,"M 0.7 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539426714950,https://earthquake.usgs.gov/earthquakes/eventpage/ci37388458 +,,2018286005,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018286005&format=geojson,1.5025,,345.0,",pr2018286005,",2.97,md,,pr,3.0,"40km NNW of Road Town, British Virgin Islands",0.18,136,",pr,",reviewed,1539425495370,"M 3.0 - 40km NNW of Road Town, British Virgin Islands",0,earthquake,",geoserve,origin,phase-data,",-240.0,1539437651286,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018286005 +,,70649337,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70649337&format=geojson,0.005425,,131.0,",hv70649337,",2.09,ml,,hv,11.0,"13km S of Fern Acres, Hawaii",0.24,67,",hv,",automatic,1539425473350,"M 2.1 - 13km S of Fern Acres, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539425816230,https://earthquake.usgs.gov/earthquakes/eventpage/hv70649337 +,,70649327,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70649327&format=geojson,0.003197,,135.0,",hv70649327,",1.85,ml,,hv,31.0,"14km S of Fern Acres, Hawaii",0.39,53,",hv,",automatic,1539425231160,"M 1.9 - 14km S of Fern Acres, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539425574470,https://earthquake.usgs.gov/earthquakes/eventpage/hv70649327 +,,37388450,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37388450&format=geojson,0.03138,,54.0,",ci37388450,",0.4,ml,,ci,16.0,"5km WSW of Anza, CA",0.12,2,",ci,",automatic,1539425169090,"M 0.4 - 5km WSW of Anza, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539425382713,https://earthquake.usgs.gov/earthquakes/eventpage/ci37388450 +,,20280148,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20280148&format=geojson,,,,",ak20280148,",1.9,ml,,ak,,"103km NNW of Arctic Village, Alaska",0.85,56,",ak,",automatic,1539424559440,"M 1.9 - 103km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539424983927,https://earthquake.usgs.gov/earthquakes/eventpage/ak20280148 +,,20280144,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20280144&format=geojson,,,,",ak20280144,",2.0,ml,,ak,,"63km SSW of Kaktovik, Alaska",1.43,62,",ak,",automatic,1539424267420,"M 2.0 - 63km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539424684718,https://earthquake.usgs.gov/earthquakes/eventpage/ak20280144 +,,00660769,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660769&format=geojson,0.073,,152.15,",nn00660769,",0.8,ml,,nn,28.0,"33km N of Beatty, Nevada",0.1622,10,",nn,",reviewed,1539424240238,"M 0.8 - 33km N of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539482673612,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660769 +,,20280140,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20280140&format=geojson,,,,",ak20280140,us1000hbk8,",2.7,ml,,ak,,"90km SW of Kaktovik, Alaska",0.79,112,",ak,us,",reviewed,1539422285876,"M 2.7 - 90km SW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539464466628,https://earthquake.usgs.gov/earthquakes/eventpage/ak20280140 +,,61437386,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61437386&format=geojson,0.0224,,101.0,",uw61437386,",0.72,ml,,uw,10.0,"28km NNW of Packwood, Washington",0.1,8,",uw,",reviewed,1539422190670,"M 0.7 - 28km NNW of Packwood, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539502044790,https://earthquake.usgs.gov/earthquakes/eventpage/uw61437386 +,,00660897,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660897&format=geojson,0.092,,71.82,",nn00660897,",-0.4,ml,,nn,14.0,"10km SSE of Beatty, Nevada",0.137,0,",nn,",reviewed,1539422175717,"M -0.4 - 10km SSE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539482715521,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660897 +,2.2,20280138,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20280138&format=geojson,,1.0,,",ak20280138,",1.7,ml,,ak,,"45km NW of Talkeetna, Alaska",0.79,45,",ak,",automatic,1539422097703,"M 1.7 - 45km NW of Talkeetna, Alaska",0,earthquake,",dyfi,geoserve,origin,",-540.0,1539422571367,https://earthquake.usgs.gov/earthquakes/eventpage/ak20280138 +,,73096696,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096696&format=geojson,0.006355,,106.0,",nc73096696,",1.5,md,,nc,16.0,"12km WNW of The Geysers, CA",0.05,35,",nc,",automatic,1539421706930,"M 1.5 - 12km WNW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539423663550,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096696 +,,37388442,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37388442&format=geojson,0.08283,,90.0,",ci37388442,",0.33,ml,,ci,14.0,"9km NE of Aguanga, CA",0.12,2,",ci,",automatic,1539421600320,"M 0.3 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539421817272,https://earthquake.usgs.gov/earthquakes/eventpage/ci37388442 +,,2018286003,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018286003&format=geojson,0.0918,,177.0,",pr2018286003,",1.57,md,,pr,4.0,"3km SSW of Maricao, Puerto Rico",0.1,38,",pr,",reviewed,1539421392650,"M 1.6 - 3km SSW of Maricao, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1539435905125,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018286003 +,,20280132,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20280132&format=geojson,,,,",ak20280132,",2.2,ml,,ak,,"78km SW of Kaktovik, Alaska",0.6,74,",ak,",automatic,1539420720097,"M 2.2 - 78km SW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539421068519,https://earthquake.usgs.gov/earthquakes/eventpage/ak20280132 +,,2018286002,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018286002&format=geojson,0.0785,,71.0,",pr2018286002,",2.49,md,,pr,17.0,"3km WSW of Maricao, Puerto Rico",0.23,95,",pr,",reviewed,1539420584150,"M 2.5 - 3km WSW of Maricao, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1539421576373,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018286002 +,,20280128,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20280128&format=geojson,,,,",ak20280128,us1000hbjv,",3.0,ml,,ak,,"84km SW of Kaktovik, Alaska",0.62,138,",ak,us,",reviewed,1539420212233,"M 3.0 - 84km SW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539464006687,https://earthquake.usgs.gov/earthquakes/eventpage/ak20280128 +,,37388426,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37388426&format=geojson,0.0413,,83.0,",ci37388426,",0.89,ml,,ci,12.0,"4km N of Pacoima, CA",0.25,12,",ci,",automatic,1539419935930,"M 0.9 - 4km N of Pacoima, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539420154451,https://earthquake.usgs.gov/earthquakes/eventpage/ci37388426 +,,20280124,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20280124&format=geojson,,,,",ak20280124,",1.4,ml,,ak,,"10km ENE of Badger, Alaska",1.32,30,",ak,",automatic,1539419448036,"M 1.4 - 10km ENE of Badger, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539419724160,https://earthquake.usgs.gov/earthquakes/eventpage/ak20280124 +,,1000hbjt,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000hbjt&format=geojson,3.643,,107.0,",us1000hbjt,",4.2,mb,,us,,"95km SE of Angoram, Papua New Guinea",1.39,271,",us,",reviewed,1539419034770,"M 4.2 - 95km SE of Angoram, Papua New Guinea",0,earthquake,",geoserve,origin,phase-data,",600.0,1539420155040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000hbjt +,,73096691,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096691&format=geojson,0.007941,,160.0,",nc73096691,",0.6,md,,nc,8.0,"4km WNW of Mammoth Lakes, CA",0.01,6,",nc,",automatic,1539418860720,"M 0.6 - 4km WNW of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539421986355,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096691 +,,20280116,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20280116&format=geojson,,,,",ak20280116,us1000hbjs,",2.9,ml,,ak,,"90km SW of Kaktovik, Alaska",0.87,129,",ak,us,",automatic,1539418190027,"M 2.9 - 90km SW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539418945040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20280116 +,,37388410,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37388410&format=geojson,0.02041,,134.0,",ci37388410,",0.58,ml,,ci,16.0,"9km NNE of Aguanga, CA",0.16,5,",ci,",automatic,1539417704970,"M 0.6 - 9km NNE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539417919167,https://earthquake.usgs.gov/earthquakes/eventpage/ci37388410 +,,37388402,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37388402&format=geojson,0.1344,,130.0,",ci37388402,",0.74,ml,,ci,23.0,"21km SSW of La Quinta, CA",0.21,8,",ci,",automatic,1539416644850,"M 0.7 - 21km SSW of La Quinta, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539416859877,https://earthquake.usgs.gov/earthquakes/eventpage/ci37388402 +,,70648992,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70648992&format=geojson,0.002386,,67.0,",hv70648992,",1.83,ml,,hv,20.0,"5km WSW of Volcano, Hawaii",0.1,52,",hv,",automatic,1539415768940,"M 1.8 - 5km WSW of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539416112550,https://earthquake.usgs.gov/earthquakes/eventpage/hv70648992 +,,20280108,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20280108&format=geojson,,,,",ak20280108,",2.1,ml,,ak,,"57km N of Petersburg, Alaska",1.26,68,",ak,",automatic,1539415586548,"M 2.1 - 57km N of Petersburg, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539415905462,https://earthquake.usgs.gov/earthquakes/eventpage/ak20280108 +,,80314089,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80314089&format=geojson,0.077,,122.0,",mb80314089,",1.38,ml,,mb,13.0,"10km ESE of Lincoln, Montana",0.18,29,",mb,",reviewed,1539415534350,"M 1.4 - 10km ESE of Lincoln, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539433664010,https://earthquake.usgs.gov/earthquakes/eventpage/mb80314089 +,,37388370,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37388370&format=geojson,0.05041,,119.0,",ci37388370,",0.61,ml,,ci,13.0,"6km S of Palomar Observatory, CA",0.16,6,",ci,",automatic,1539415182880,"M 0.6 - 6km S of Palomar Observatory, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539415410052,https://earthquake.usgs.gov/earthquakes/eventpage/ci37388370 +,,37388346,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37388346&format=geojson,0.1522,,115.0,",ci37388346,",0.73,ml,,ci,7.0,"2km NNW of Indio, CA",0.11,8,",ci,",automatic,1539414406200,"M 0.7 - 2km NNW of Indio, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539414622031,https://earthquake.usgs.gov/earthquakes/eventpage/ci37388346 +,,20280105,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20280105&format=geojson,,,,",ak20280105,",1.6,ml,,ak,,"71km SSW of Kaktovik, Alaska",1.11,39,",ak,",automatic,1539414329646,"M 1.6 - 71km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539414579671,https://earthquake.usgs.gov/earthquakes/eventpage/ak20280105 +,,37388338,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37388338&format=geojson,0.01537,,40.0,",ci37388338,",0.61,ml,,ci,26.0,"9km NE of Aguanga, CA",0.19,6,",ci,",automatic,1539413767020,"M 0.6 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539413987291,https://earthquake.usgs.gov/earthquakes/eventpage/ci37388338 +,,00660895,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660895&format=geojson,0.187,,218.54,",nn00660895,",0.1,ml,,nn,8.0,"69km S of Beatty, Nevada",0.1763,0,",nn,",reviewed,1539413440487,"M 0.1 - 69km S of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539482713829,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660895 +,,37388306,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37388306&format=geojson,0.04332,,52.0,",ci37388306,",0.65,ml,,ci,25.0,"5km SW of Anza, CA",0.09,6,",ci,",automatic,1539413253200,"M 0.7 - 5km SW of Anza, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539413472297,https://earthquake.usgs.gov/earthquakes/eventpage/ci37388306 +,,73096686,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096686&format=geojson,0.05577,,190.0,",nc73096686,",1.38,md,,nc,11.0,"15km NW of Pinnacles, CA",0.07,29,",nc,",automatic,1539412953120,"M 1.4 - 15km NW of Pinnacles, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539417241851,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096686 +,,20280102,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20280102&format=geojson,,,,",ak20280102,",2.2,ml,,ak,,"80km S of Kaktovik, Alaska",1.28,74,",ak,",automatic,1539412675870,"M 2.2 - 80km S of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539413029361,https://earthquake.usgs.gov/earthquakes/eventpage/ak20280102 +,,80314084,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80314084&format=geojson,0.148,,117.0,",mb80314084,",-0.02,md,,mb,7.0,"20km SSE of Ronan, Montana",0.06,0,",mb,",reviewed,1539412475360,"M -0.0 - 20km SSE of Ronan, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539433905970,https://earthquake.usgs.gov/earthquakes/eventpage/mb80314084 +,,00660894,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660894&format=geojson,0.16,,65.02,",nn00660894,",1.1,ml,,nn,12.0,"29km ENE of Bridgeport, California",0.224,19,",nn,",reviewed,1539412316581,"M 1.1 - 29km ENE of Bridgeport, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539482711726,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660894 +,,37388266,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37388266&format=geojson,0.03344,,73.0,",ci37388266,",0.75,ml,,ci,37.0,"9km ENE of Aguanga, CA",0.23,9,",ci,",automatic,1539410619050,"M 0.8 - 9km ENE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539410843715,https://earthquake.usgs.gov/earthquakes/eventpage/ci37388266 +,,73096676,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096676&format=geojson,0.01572,,74.0,",nc73096676,",0.88,md,,nc,15.0,"6km WNW of The Geysers, CA",0.04,12,",nc,",automatic,1539410311250,"M 0.9 - 6km WNW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539413764539,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096676 +,,20280096,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20280096&format=geojson,,,,",ak20280096,",1.4,ml,,ak,,"105km NW of Arctic Village, Alaska",1.43,30,",ak,",automatic,1539410152217,"M 1.4 - 105km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539410530365,https://earthquake.usgs.gov/earthquakes/eventpage/ak20280096 +,,20280094,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20280094&format=geojson,,,,",ak20280094,",1.6,ml,,ak,,"104km NW of Talkeetna, Alaska",0.55,39,",ak,",automatic,1539409698450,"M 1.6 - 104km NW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539409865180,https://earthquake.usgs.gov/earthquakes/eventpage/ak20280094 +,,20280091,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20280091&format=geojson,,,,",ak20280091,",2.3,ml,,ak,,"84km SSW of Kaktovik, Alaska",0.95,81,",ak,",automatic,1539409512309,"M 2.3 - 84km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539410308608,https://earthquake.usgs.gov/earthquakes/eventpage/ak20280091 +,,00660762,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660762&format=geojson,0.328,,81.54,",nn00660762,",1.2,ml,,nn,12.0,"42km WSW of Tonopah, Nevada",0.1115,22,",nn,",reviewed,1539409248997,"M 1.2 - 42km WSW of Tonopah, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539482671277,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660762 +,,37388218,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37388218&format=geojson,0.07383,,84.0,",ci37388218,",0.35,ml,,ci,15.0,"10km NE of Aguanga, CA",0.13,2,",ci,",automatic,1539408989000,"M 0.4 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539409212062,https://earthquake.usgs.gov/earthquakes/eventpage/ci37388218 +,,73096656,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096656&format=geojson,0.04201,,185.0,",nc73096656,",1.41,md,,nc,9.0,"8km ENE of Mammoth Lakes, CA",0.23,31,",nc,",automatic,1539408288970,"M 1.4 - 8km ENE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539410463225,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096656 +,,37388194,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37388194&format=geojson,0.2612,,129.0,",ci37388194,",1.08,ml,,ci,11.0,"7km ESE of Yucaipa, CA",0.26,18,",ci,",automatic,1539408106850,"M 1.1 - 7km ESE of Yucaipa, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539408333652,https://earthquake.usgs.gov/earthquakes/eventpage/ci37388194 +,,20280085,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20280085&format=geojson,,,,",ak20280085,",1.3,ml,,ak,,"100km WNW of Arctic Village, Alaska",0.96,26,",ak,",automatic,1539408025731,"M 1.3 - 100km WNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539408437557,https://earthquake.usgs.gov/earthquakes/eventpage/ak20280085 +,,00660877,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660877&format=geojson,0.095,,146.35,",nn00660877,",0.6,ml,,nn,9.0,"6km NW of Lemmon Valley, Nevada",0.0455,6,",nn,",reviewed,1539408002843,"M 0.6 - 6km NW of Lemmon Valley, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539482688852,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660877 +,,20280082,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20280082&format=geojson,,,,",ak20280082,",1.7,ml,,ak,,"91km W of Willow, Alaska",0.7,44,",ak,",automatic,1539407892842,"M 1.7 - 91km W of Willow, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539408226083,https://earthquake.usgs.gov/earthquakes/eventpage/ak20280082 +,,00660757,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660757&format=geojson,0.333,,82.47,",nn00660757,",1.1,ml,,nn,15.0,"42km WSW of Tonopah, Nevada",0.1482,19,",nn,",reviewed,1539406792979,"M 1.1 - 42km WSW of Tonopah, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539482668775,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660757 +,,1000hbig,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000hbig&format=geojson,4.527,,72.0,",us1000hbig,",4.5,mb,,us,,South of the Fiji Islands,1.28,312,",us,",reviewed,1539406159290,M 4.5 - South of the Fiji Islands,0,earthquake,",geoserve,origin,phase-data,",720.0,1539407362040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000hbig +,,73096651,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096651&format=geojson,0.01281,,87.0,",nc73096651,",0.68,md,,nc,13.0,"5km WNW of The Geysers, CA",0.04,7,",nc,",automatic,1539405816910,"M 0.7 - 5km WNW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539408034983,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096651 +,,00660876,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660876&format=geojson,0.128,,100.04,",nn00660876,",0.5,ml,,nn,11.0,"12km SSE of Verdi, Nevada",0.1677,4,",nn,",reviewed,1539405684408,"M 0.5 - 12km SSE of Verdi, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539482687030,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660876 +,,20280058,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20280058&format=geojson,,,,",ak20280058,",2.1,ml,,ak,,"102km NNE of Kodiak, Alaska",0.78,68,",ak,",automatic,1539405496766,"M 2.1 - 102km NNE of Kodiak, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539406079460,https://earthquake.usgs.gov/earthquakes/eventpage/ak20280058 +green,,1000hbhw,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000hbhw&format=geojson,2.077,,23.0,",us1000hbhw,",5.2,mww,3.54,us,,"25km E of Bitung, Indonesia",1.43,416,",us,",reviewed,1539405255580,"M 5.2 - 25km E of Bitung, Indonesia",0,earthquake,",geoserve,losspager,origin,phase-data,shakemap,",480.0,1539412565560,https://earthquake.usgs.gov/earthquakes/eventpage/us1000hbhw +,,70648697,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70648697&format=geojson,0.1133,,225.0,",hv70648697,",1.75,ml,,hv,44.0,"14km S of Leilani Estates, Hawaii",0.33,47,",hv,",automatic,1539405109740,"M 1.8 - 14km S of Leilani Estates, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539405451810,https://earthquake.usgs.gov/earthquakes/eventpage/hv70648697 +,,37388074,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37388074&format=geojson,0.02838,,62.0,",ci37388074,",0.54,ml,,ci,25.0,"6km NE of Anza, CA",0.21,4,",ci,",automatic,1539404874900,"M 0.5 - 6km NE of Anza, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539405101634,https://earthquake.usgs.gov/earthquakes/eventpage/ci37388074 +,,37388066,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37388066&format=geojson,0.1017,,86.0,",ci37388066,",0.67,ml,,ci,24.0,"7km NE of Aguanga, CA",0.25,7,",ci,",automatic,1539404466580,"M 0.7 - 7km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539404692736,https://earthquake.usgs.gov/earthquakes/eventpage/ci37388066 +,2.7,37388042,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37388042&format=geojson,0.02675,1.0,29.0,",ci37388042,",1.72,ml,,ci,65.0,"6km NE of Anza, CA",0.2,46,",ci,",automatic,1539404273380,"M 1.7 - 6km NE of Anza, CA",0,earthquake,",dyfi,focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1539404990977,https://earthquake.usgs.gov/earthquakes/eventpage/ci37388042 +,,37388034,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37388034&format=geojson,0.0302,,27.0,",ci37388034,",1.36,ml,,ci,51.0,"6km NE of Anza, CA",0.17,28,",ci,",automatic,1539404247450,"M 1.4 - 6km NE of Anza, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1539404877130,https://earthquake.usgs.gov/earthquakes/eventpage/ci37388034 +,,20280056,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20280056&format=geojson,,,,",ak20280056,",1.9,ml,,ak,,"49km NW of Cape Yakataga, Alaska",0.69,56,",ak,",automatic,1539404023366,"M 1.9 - 49km NW of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539404296982,https://earthquake.usgs.gov/earthquakes/eventpage/ak20280056 +,,00660754,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660754&format=geojson,0.123,,98.33,",nn00660754,",1.0,ml,,nn,17.0,"12km S of Mogul, Nevada",0.1227,15,",nn,",reviewed,1539403666552,"M 1.0 - 12km S of Mogul, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539482663183,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660754 +,,70648607,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70648607&format=geojson,0.05015,,204.0,",hv70648607,",2.16,ml,,hv,37.0,"5km ESE of Leilani Estates, Hawaii",0.25,72,",hv,",automatic,1539401988460,"M 2.2 - 5km ESE of Leilani Estates, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539402331430,https://earthquake.usgs.gov/earthquakes/eventpage/hv70648607 +,,37387994,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37387994&format=geojson,0.1456,,96.0,",ci37387994,",1.16,ml,,ci,15.0,"20km NE of Olancha, CA",0.19,21,",ci,",automatic,1539401879590,"M 1.2 - 20km NE of Olancha, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539402091536,https://earthquake.usgs.gov/earthquakes/eventpage/ci37387994 +,,73096631,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096631&format=geojson,0.002547,,85.0,",nc73096631,",0.56,md,,nc,8.0,"8km WNW of The Geysers, CA",0.04,5,",nc,",automatic,1539401612140,"M 0.6 - 8km WNW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539403562547,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096631 +,,20280048,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20280048&format=geojson,,,,",ak20280048,",1.9,ml,,ak,,"88km NNW of Talkeetna, Alaska",0.24,56,",ak,",automatic,1539401497296,"M 1.9 - 88km NNW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539401767368,https://earthquake.usgs.gov/earthquakes/eventpage/ak20280048 +,,20280045,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20280045&format=geojson,,,,",ak20280045,",2.3,ml,,ak,,"93km NNW of Nikiski, Alaska",0.54,81,",ak,",automatic,1539401327987,"M 2.3 - 93km NNW of Nikiski, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539401546004,https://earthquake.usgs.gov/earthquakes/eventpage/ak20280045 +,,00660746,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660746&format=geojson,0.194,,201.95,",nn00660746,",0.7,ml,,nn,40.0,"61km NNE of Pahrump, Nevada",0.244,8,",nn,",reviewed,1539400987085,"M 0.7 - 61km NNE of Pahrump, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539482655522,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660746 +,,37387978,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37387978&format=geojson,0.01685,,83.0,",ci37387978,",0.4,ml,,ci,22.0,"5km S of Idyllwild, CA",0.23,2,",ci,",automatic,1539400315400,"M 0.4 - 5km S of Idyllwild, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539400534288,https://earthquake.usgs.gov/earthquakes/eventpage/ci37387978 +,,37387970,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37387970&format=geojson,0.102,,130.0,",ci37387970,",0.82,ml,,ci,15.0,"6km W of Anza, CA",0.3,10,",ci,",automatic,1539399290210,"M 0.8 - 6km W of Anza, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539399505428,https://earthquake.usgs.gov/earthquakes/eventpage/ci37387970 +,,20280030,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20280030&format=geojson,,,,",ak20280030,us1000hbhd,",3.0,ml,,ak,,"68km N of Nikiski, Alaska",0.95,138,",ak,us,",automatic,1539399006520,"M 3.0 - 68km N of Nikiski, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539399729040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20280030 +,,20280028,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20280028&format=geojson,,,,",ak20280028,",1.9,ml,,ak,,"107km SW of Kaktovik, Alaska",0.97,56,",ak,",automatic,1539398763306,"M 1.9 - 107km SW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539399018472,https://earthquake.usgs.gov/earthquakes/eventpage/ak20280028 +,,00660745,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660745&format=geojson,0.047,,65.16,",nn00660745,",-0.2,ml,,nn,20.0,"60km N of Pahrump, Nevada",0.1899,0,",nn,",reviewed,1539398340822,"M -0.2 - 60km N of Pahrump, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539482652322,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660745 +,,37387954,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37387954&format=geojson,0.04569,,105.0,",ci37387954,",1.01,ml,,ci,38.0,"4km E of Banning, CA",0.15,16,",ci,",automatic,1539398054610,"M 1.0 - 4km E of Banning, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539398264999,https://earthquake.usgs.gov/earthquakes/eventpage/ci37387954 +,,73096626,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096626&format=geojson,0.01014,,150.0,",nc73096626,",0.87,md,,nc,7.0,"6km NW of The Geysers, CA",0.02,12,",nc,",automatic,1539398044050,"M 0.9 - 6km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539401522356,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096626 +,,00660890,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660890&format=geojson,0.045,,91.86,",nn00660890,",-0.1,ml,,nn,15.0,"37km ENE of Beatty, Nevada",0.1728,0,",nn,",reviewed,1539397417213,"M -0.1 - 37km ENE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539482709665,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660890 +,,00660889,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660889&format=geojson,0.22,,98.2,",nn00660889,",0.9,ml,,nn,10.0,"18km NE of Yerington, Nevada",0.1493,12,",nn,",reviewed,1539397223427,"M 0.9 - 18km NE of Yerington, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539482707535,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660889 +,,61437266,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61437266&format=geojson,0.1158,,59.0,",uw61437266,",1.87,ml,,uw,20.0,"4km E of Indianola, Washington",0.22,54,",uw,",reviewed,1539397113930,"M 1.9 - 4km E of Indianola, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539410934680,https://earthquake.usgs.gov/earthquakes/eventpage/uw61437266 +,,00660742,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660742&format=geojson,0.068,,79.33,",nn00660742,",-0.1,ml,,nn,26.0,"47km ESE of Beatty, Nevada",0.1794,0,",nn,",reviewed,1539396473686,"M -0.1 - 47km ESE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539482651569,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660742 +,2.7,37387938,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37387938&format=geojson,0.04513,13.0,76.0,",ci37387938,",2.33,ml,,ci,50.0,"11km WNW of Malibu, CA",0.28,87,",ci,",automatic,1539396215180,"M 2.3 - 11km WNW of Malibu, CA",0,earthquake,",dyfi,focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1539471523073,https://earthquake.usgs.gov/earthquakes/eventpage/ci37387938 +,,20280025,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20280025&format=geojson,,,,",ak20280025,",2.4,ml,,ak,,"52km N of Arctic Village, Alaska",0.81,89,",ak,",automatic,1539396160130,"M 2.4 - 52km N of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539396501128,https://earthquake.usgs.gov/earthquakes/eventpage/ak20280025 +,,2018286001,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018286001&format=geojson,1.4618,,353.0,",pr2018286001,",3.29,md,,pr,3.0,"38km ENE of Christiansted, U.S. Virgin Islands",0.54,167,",pr,",reviewed,1539396061910,"M 3.3 - 38km ENE of Christiansted, U.S. Virgin Islands",0,earthquake,",geoserve,origin,phase-data,",-240.0,1539412310111,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018286001 +,,20280017,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20280017&format=geojson,,,,",ak20280017,",1.9,ml,,ak,,"64km SSW of Kaktovik, Alaska",1.51,56,",ak,",automatic,1539395049565,"M 1.9 - 64km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539395811863,https://earthquake.usgs.gov/earthquakes/eventpage/ak20280017 +,,20280015,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20280015&format=geojson,,,,",ak20280015,",1.9,ml,,ak,,"64km SSW of Kaktovik, Alaska",0.99,56,",ak,",automatic,1539394865025,"M 1.9 - 64km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539395201568,https://earthquake.usgs.gov/earthquakes/eventpage/ak20280015 +,,37387922,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37387922&format=geojson,0.02165,,185.0,",ci37387922,",0.52,ml,,ci,14.0,"21km SW of La Quinta, CA",0.17,4,",ci,",automatic,1539394524660,"M 0.5 - 21km SW of La Quinta, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539394743142,https://earthquake.usgs.gov/earthquakes/eventpage/ci37387922 +,,37387914,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37387914&format=geojson,0.187,,182.0,",ci37387914,",1.03,ml,,ci,12.0,"5km SSE of Mentone, CA",0.35,16,",ci,",automatic,1539394322360,"M 1.0 - 5km SSE of Mentone, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539394546575,https://earthquake.usgs.gov/earthquakes/eventpage/ci37387914 +,,00660887,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660887&format=geojson,0.261,,286.57,",nn00660887,",0.5,ml,,nn,13.0,"22km NNE of Pahrump, Nevada",0.1567,4,",nn,",reviewed,1539394082579,"M 0.5 - 22km NNE of Pahrump, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539482705345,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660887 +,,70648357,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70648357&format=geojson,0.05027,,217.0,",hv70648357,",2.24,ml,,hv,9.0,"15km WSW of Volcano, Hawaii",0.2,77,",hv,",automatic,1539393556510,"M 2.2 - 15km WSW of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539393899120,https://earthquake.usgs.gov/earthquakes/eventpage/hv70648357 +,,70648362,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70648362&format=geojson,0.03183,,40.0,",hv70648362,us1000hbgq,",2.83,ml,,hv,50.0,"22km ENE of Honaunau-Napoopoo, Hawaii",0.12,123,",hv,us,",reviewed,1539393546090,"M 2.8 - 22km ENE of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539397815410,https://earthquake.usgs.gov/earthquakes/eventpage/hv70648362 +,,20280012,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20280012&format=geojson,,,,",ak20280012,",1.8,ml,,ak,,"40km N of Valdez, Alaska",0.65,50,",ak,",automatic,1539393288038,"M 1.8 - 40km N of Valdez, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539393674251,https://earthquake.usgs.gov/earthquakes/eventpage/ak20280012 +,,20280008,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20280008&format=geojson,,,,",ak20280008,",1.6,ml,,ak,,"110km NNW of Arctic Village, Alaska",1.01,39,",ak,",automatic,1539392859841,"M 1.6 - 110km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539393386175,https://earthquake.usgs.gov/earthquakes/eventpage/ak20280008 +,,20280006,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20280006&format=geojson,,,,",ak20280006,",2.4,ml,,ak,,"159km SSE of Kotzebue, Alaska",1.14,89,",ak,",automatic,1539392854610,"M 2.4 - 159km SSE of Kotzebue, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539393141106,https://earthquake.usgs.gov/earthquakes/eventpage/ak20280006 +,,20280000,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20280000&format=geojson,,,,",ak20280000,",2.0,ml,,ak,,"27km NW of Arctic Village, Alaska",0.78,62,",ak,",automatic,1539391850355,"M 2.0 - 27km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539392185207,https://earthquake.usgs.gov/earthquakes/eventpage/ak20280000 +,,20279999,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20279999&format=geojson,,,,",ak20279999,",1.4,ml,,ak,,"92km SE of King Salmon, Alaska",0.76,30,",ak,",automatic,1539391665340,"M 1.4 - 92km SE of King Salmon, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539392184925,https://earthquake.usgs.gov/earthquakes/eventpage/ak20279999 +,,20279995,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20279995&format=geojson,,,,",ak20279995,",1.6,ml,,ak,,"58km WNW of Valdez, Alaska",0.5,39,",ak,",automatic,1539391374360,"M 1.6 - 58km WNW of Valdez, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539391830328,https://earthquake.usgs.gov/earthquakes/eventpage/ak20279995 +,,2018286000,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018286000&format=geojson,1.0219,,338.0,",pr2018286000,",3.07,md,,pr,4.0,"84km N of San Antonio, Puerto Rico",0.41,145,",pr,",reviewed,1539390931260,"M 3.1 - 84km N of San Antonio, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1539412222503,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018286000 +,,73096616,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096616&format=geojson,0.006568,,137.0,",nc73096616,",0.92,md,,nc,21.0,"13km WNW of Toms Place, CA",0.03,13,",nc,",reviewed,1539390844250,"M 0.9 - 13km WNW of Toms Place, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539393603653,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096616 +,,20279987,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20279987&format=geojson,,,,",ak20279987,",1.8,ml,,ak,,"72km NNW of Arctic Village, Alaska",1.65,50,",ak,",automatic,1539390640259,"M 1.8 - 72km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539390988445,https://earthquake.usgs.gov/earthquakes/eventpage/ak20279987 +,,20279988,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20279988&format=geojson,,,,",ak20279988,",2.5,ml,,ak,,"58km NNW of Arctic Village, Alaska",1.12,96,",ak,",automatic,1539390382970,"M 2.5 - 58km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539390988041,https://earthquake.usgs.gov/earthquakes/eventpage/ak20279988 +,,1000hbg2,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000hbg2&format=geojson,1.281,,56.0,",us1000hbg2,",4.4,mb,,us,,"155km N of Calama, Chile",0.97,298,",us,",reviewed,1539390030810,"M 4.4 - 155km N of Calama, Chile",0,earthquake,",geoserve,origin,phase-data,",-240.0,1539391759040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000hbg2 +green,,1000hbff,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000hbff&format=geojson,7.385,,27.0,",us1000hbff,",5.7,mww,3.48,us,,"42km WNW of Sola, Vanuatu",1.18,500,",us,",reviewed,1539389626220,"M 5.7 - 42km WNW of Sola, Vanuatu",0,earthquake,",geoserve,losspager,origin,phase-data,shakemap,",660.0,1539396937285,https://earthquake.usgs.gov/earthquakes/eventpage/us1000hbff +,3.1,1000hbfe,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000hbfe&format=geojson,1.822,9.0,90.0,",us1000hbfe,",5.2,mb,,us,,"15km WSW of Pisco, Peru",1.16,419,",us,",reviewed,1539389603790,"M 5.2 - 15km WSW of Pisco, Peru",0,earthquake,",dyfi,geoserve,origin,phase-data,",-300.0,1539403377538,https://earthquake.usgs.gov/earthquakes/eventpage/us1000hbfe +,,20279843,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20279843&format=geojson,,,,",ak20279843,",1.5,ml,,ak,,"136km SW of Old Crow, Canada",0.91,35,",ak,",automatic,1539389547508,"M 1.5 - 136km SW of Old Crow, Canada",0,earthquake,",geoserve,origin,",-540.0,1539389927064,https://earthquake.usgs.gov/earthquakes/eventpage/ak20279843 +,,1000hbfh,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000hbfh&format=geojson,10.755,,74.0,",us1000hbfh,",4.9,mb,,us,,"193km N of Qulansiyah, Yemen",0.68,369,",us,",reviewed,1539389546300,"M 4.9 - 193km N of Qulansiyah, Yemen",0,earthquake,",geoserve,origin,phase-data,",240.0,1539390842040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000hbfh +,,70648217,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70648217&format=geojson,0.03596,,183.0,",hv70648217,",1.92,ml,,hv,14.0,"11km WSW of Volcano, Hawaii",0.35,57,",hv,",automatic,1539389499530,"M 1.9 - 11km WSW of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539389839860,https://earthquake.usgs.gov/earthquakes/eventpage/hv70648217 +,,20279833,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20279833&format=geojson,,,,",ak20279833,",2.1,ml,,ak,,"57km NNW of Arctic Village, Alaska",1.19,68,",ak,",automatic,1539388868049,"M 2.1 - 57km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539389574477,https://earthquake.usgs.gov/earthquakes/eventpage/ak20279833 +,,20279829,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20279829&format=geojson,,,,",ak20279829,",1.6,ml,,ak,,"116km WNW of Arctic Village, Alaska",1.09,39,",ak,",automatic,1539387978358,"M 1.6 - 116km WNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539388314672,https://earthquake.usgs.gov/earthquakes/eventpage/ak20279829 +,,20279827,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20279827&format=geojson,,,,",ak20279827,",1.9,ml,,ak,,"61km NNW of Arctic Village, Alaska",1.0,56,",ak,",automatic,1539387646623,"M 1.9 - 61km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539388501611,https://earthquake.usgs.gov/earthquakes/eventpage/ak20279827 +,,20279823,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20279823&format=geojson,,,,",ak20279823,",2.4,ml,,ak,,"92km SSW of Kaktovik, Alaska",1.2,89,",ak,",automatic,1539387415883,"M 2.4 - 92km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539387849543,https://earthquake.usgs.gov/earthquakes/eventpage/ak20279823 +,,37387882,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37387882&format=geojson,0.01668,,45.0,",ci37387882,",1.14,ml,,ci,46.0,"9km NE of Aguanga, CA",0.18,20,",ci,",automatic,1539387294800,"M 1.1 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1539387952770,https://earthquake.usgs.gov/earthquakes/eventpage/ci37387882 +,,73096601,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096601&format=geojson,0.03845,,161.0,",nc73096601,",0.87,md,,nc,9.0,"9km NNW of Pinnacles, CA",0.13,12,",nc,",reviewed,1539387021330,"M 0.9 - 9km NNW of Pinnacles, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539387800255,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096601 +,,70648152,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70648152&format=geojson,0.03093,,70.0,",hv70648152,",1.81,ml,,hv,37.0,"21km ENE of Honaunau-Napoopoo, Hawaii",0.13,50,",hv,",reviewed,1539386809820,"M 1.8 - 21km ENE of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539390464040,https://earthquake.usgs.gov/earthquakes/eventpage/hv70648152 +,,73096596,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096596&format=geojson,0.1072,,233.0,",nc73096596,",0.67,md,,nc,12.0,"18km WSW of Toms Place, CA",0.03,7,",nc,",reviewed,1539386346180,"M 0.7 - 18km WSW of Toms Place, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539387710068,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096596 +,,73096591,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096591&format=geojson,0.105,,127.0,",nc73096591,",0.78,md,,nc,15.0,"18km WSW of Toms Place, CA",0.05,9,",nc,",reviewed,1539385475810,"M 0.8 - 18km WSW of Toms Place, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539387589716,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096591 +,,20279812,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20279812&format=geojson,,,,",ak20279812,us1000hbem,",3.1,ml,,ak,,"56km NNW of Arctic Village, Alaska",1.01,148,",ak,us,",automatic,1539385297931,"M 3.1 - 56km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539387117040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20279812 +,,73096581,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096581&format=geojson,0.0492,,121.0,",nc73096581,",1.54,md,,nc,21.0,"1km NE of Pinnacles, CA",0.06,36,",nc,",reviewed,1539384195630,"M 1.5 - 1km NE of Pinnacles, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539388397959,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096581 +,,37387858,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37387858&format=geojson,0.005229,,42.0,",ci37387858,",0.7,ml,,ci,27.0,"10km NE of Aguanga, CA",0.12,8,",ci,",reviewed,1539383873730,"M 0.7 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539387035853,https://earthquake.usgs.gov/earthquakes/eventpage/ci37387858 +,,70648052,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70648052&format=geojson,0.0122,,53.0,",hv70648052,",1.98,md,,hv,16.0,"5km WSW of Volcano, Hawaii",0.11,60,",hv,",automatic,1539383802200,"M 2.0 - 5km WSW of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539383987120,https://earthquake.usgs.gov/earthquakes/eventpage/hv70648052 +,,1000hbec,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000hbec&format=geojson,0.425,,63.0,",us1000hbec,",2.9,ml,,us,,"70km WNW of Valdez, Alaska",1.03,129,",us,",reviewed,1539383750260,"M 2.9 - 70km WNW of Valdez, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539386692040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000hbec +,,37387850,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37387850&format=geojson,0.01231,,34.0,",ci37387850,",0.99,ml,,ci,37.0,"9km NE of Aguanga, CA",0.14,15,",ci,",reviewed,1539383558720,"M 1.0 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1539386201880,https://earthquake.usgs.gov/earthquakes/eventpage/ci37387850 +,,20279800,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20279800&format=geojson,,,,",ak20279800,",2.3,ml,,ak,,"45km NNW of Arctic Village, Alaska",0.9,81,",ak,",automatic,1539383195384,"M 2.3 - 45km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539383456170,https://earthquake.usgs.gov/earthquakes/eventpage/ak20279800 +,,73096576,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096576&format=geojson,0.1425,,126.0,",nc73096576,",1.1,md,,nc,25.0,"12km SSW of Toms Place, CA",0.06,19,",nc,",reviewed,1539383125730,"M 1.1 - 12km SSW of Toms Place, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539387184846,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096576 +,,1000hbe6,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000hbe6&format=geojson,3.928,,135.0,",us1000hbe6,",4.9,mb,,us,,"151km S of Severo-Kuril'sk, Russia",0.81,369,",us,",reviewed,1539382925190,"M 4.9 - 151km S of Severo-Kuril'sk, Russia",0,earthquake,",geoserve,origin,phase-data,",600.0,1539383912040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000hbe6 +,,20279799,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20279799&format=geojson,,,,",ak20279799,",1.9,ml,,ak,,"34km N of Arctic Village, Alaska",1.65,56,",ak,",automatic,1539382897333,"M 1.9 - 34km N of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539383148230,https://earthquake.usgs.gov/earthquakes/eventpage/ak20279799 +,,20279798,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20279798&format=geojson,,,,",ak20279798,",2.0,ml,,ak,,"42km NNW of Arctic Village, Alaska",1.11,62,",ak,",automatic,1539382753593,"M 2.0 - 42km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539382938909,https://earthquake.usgs.gov/earthquakes/eventpage/ak20279798 +,,20279486,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20279486&format=geojson,,,,",ak20279486,",1.9,ml,,ak,,"45km N of Arctic Village, Alaska",1.02,56,",ak,",automatic,1539382104214,"M 1.9 - 45km N of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539382399697,https://earthquake.usgs.gov/earthquakes/eventpage/ak20279486 +,,20279484,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20279484&format=geojson,,,,",ak20279484,",1.4,ml,,ak,,"109km ESE of Holy Cross, Alaska",1.25,30,",ak,",automatic,1539382069734,"M 1.4 - 109km ESE of Holy Cross, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539382322319,https://earthquake.usgs.gov/earthquakes/eventpage/ak20279484 +,,20279483,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20279483&format=geojson,,,,",ak20279483,",1.6,ml,,ak,,"50km E of Cape Yakataga, Alaska",1.71,39,",ak,",automatic,1539382029999,"M 1.6 - 50km E of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539382399412,https://earthquake.usgs.gov/earthquakes/eventpage/ak20279483 +,2.0,73096571,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096571&format=geojson,0.05045,1.0,63.0,",nc73096571,",1.9,md,,nc,34.0,"1km NE of Pinnacles, CA",0.07,56,",nc,",reviewed,1539381488720,"M 1.9 - 1km NE of Pinnacles, CA",0,earthquake,",dyfi,focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539392583548,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096571 +,,73096561,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096561&format=geojson,0.04218,,101.0,",nc73096561,",1.24,md,,nc,21.0,"39km SSW of Qualeys Camp, NV",0.07,24,",nc,",reviewed,1539380787450,"M 1.2 - 39km SSW of Qualeys Camp, NV",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539384603601,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096561 +,,37387826,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37387826&format=geojson,0.05921,,123.0,",ci37387826,",0.7,ml,,ci,23.0,"18km ESE of Anza, CA",0.12,8,",ci,",reviewed,1539380703360,"M 0.7 - 18km ESE of Anza, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539385823332,https://earthquake.usgs.gov/earthquakes/eventpage/ci37387826 +,,20279453,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20279453&format=geojson,,,,",ak20279453,",1.6,ml,,ak,,"41km NNW of Arctic Village, Alaska",0.51,39,",ak,",automatic,1539380461576,"M 1.6 - 41km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539380666702,https://earthquake.usgs.gov/earthquakes/eventpage/ak20279453 +,,1000hbde,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000hbde&format=geojson,2.644,,46.0,",us1000hbde,",5.1,mb,,us,,"236km NNW of Kuril'sk, Russia",0.86,400,",us,",reviewed,1539380306940,"M 5.1 - 236km NNW of Kuril'sk, Russia",0,earthquake,",geoserve,origin,phase-data,",600.0,1539381450040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000hbde +,,20279448,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20279448&format=geojson,,,,",ak20279448,us1000hbd7,",2.8,ml,,ak,,"45km NNW of Arctic Village, Alaska",0.76,121,",ak,us,",reviewed,1539380055498,"M 2.8 - 45km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539383469040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20279448 +,,73096556,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096556&format=geojson,0.01203,,56.0,",nc73096556,",0.96,md,,nc,19.0,"6km NNW of The Geysers, CA",0.04,14,",nc,",automatic,1539379622010,"M 1.0 - 6km NNW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539380524159,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096556 +green,4.1,1000hbcu,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000hbcu&format=geojson,0.6,64.0,74.0,",us1000hbcu,",5.7,mww,3.79,us,,"13km E of Nueva Concepcion, Guatemala",0.83,526,",us,",reviewed,1539378589240,"M 5.7 - 13km E of Nueva Concepcion, Guatemala",0,earthquake,",dyfi,geoserve,losspager,moment-tensor,origin,phase-data,shakemap,",-360.0,1539487143690,https://earthquake.usgs.gov/earthquakes/eventpage/us1000hbcu +,,37387794,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37387794&format=geojson,0.07343,,116.0,",ci37387794,",0.87,ml,,ci,17.0,"2km ESE of Home Gardens, CA",0.22,12,",ci,",reviewed,1539378441320,"M 0.9 Quarry Blast - 2km ESE of Home Gardens, CA",0,quarry blast,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539380699788,https://earthquake.usgs.gov/earthquakes/eventpage/ci37387794 +,,20279434,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20279434&format=geojson,,,,",ak20279434,",1.7,ml,,ak,,"44km NNW of Arctic Village, Alaska",0.91,44,",ak,",automatic,1539378436455,"M 1.7 - 44km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539378683975,https://earthquake.usgs.gov/earthquakes/eventpage/ak20279434 +,,37387786,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37387786&format=geojson,0.004472,,42.0,",ci37387786,",0.5,ml,,ci,23.0,"10km NE of Aguanga, CA",0.1,4,",ci,",reviewed,1539378279010,"M 0.5 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539380517333,https://earthquake.usgs.gov/earthquakes/eventpage/ci37387786 +,,80313894,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80313894&format=geojson,0.105,,114.0,",mb80313894,",1.28,ml,,mb,9.0,"13km ESE of Lincoln, Montana",0.13,25,",mb,",reviewed,1539378166770,"M 1.3 - 13km ESE of Lincoln, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539380609580,https://earthquake.usgs.gov/earthquakes/eventpage/mb80313894 +,,00660925,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660925&format=geojson,0.1,,156.18,",nn00660925,",0.1,ml,,nn,4.0,"7km E of Cold Springs, Nevada",0.0688,0,",nn,",reviewed,1539378160866,"M 0.1 - 7km E of Cold Springs, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539477858894,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660925 +,,20279431,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20279431&format=geojson,,,,",ak20279431,",2.9,ml,,ak,,"54km NNW of Arctic Village, Alaska",1.0,129,",ak,",automatic,1539378047068,"M 2.9 - 54km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539378342693,https://earthquake.usgs.gov/earthquakes/eventpage/ak20279431 +,,73096546,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096546&format=geojson,0.1936,,261.0,",nc73096546,",2.03,md,,nc,15.0,"22km W of Petrolia, CA",0.11,63,",nc,",reviewed,1539377875890,"M 2.0 - 22km W of Petrolia, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539395343822,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096546 +,,73096541,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096541&format=geojson,0.006855,,139.0,",nc73096541,",0.91,md,,nc,15.0,"7km NW of Pinnacles, CA",0.08,13,",nc,",reviewed,1539377155070,"M 0.9 - 7km NW of Pinnacles, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539383920168,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096541 +,,20279426,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20279426&format=geojson,,,,",ak20279426,",1.9,ml,,ak,,"43km NNW of Arctic Village, Alaska",0.88,56,",ak,",automatic,1539376325766,"M 1.9 - 43km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539376554620,https://earthquake.usgs.gov/earthquakes/eventpage/ak20279426 +,,20279422,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20279422&format=geojson,,,,",ak20279422,",3.0,ml,,ak,,"110km NNW of Arctic Village, Alaska",0.72,138,",ak,",automatic,1539376018155,"M 3.0 - 110km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539376664940,https://earthquake.usgs.gov/earthquakes/eventpage/ak20279422 +,,20279420,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20279420&format=geojson,,,,",ak20279420,",1.8,ml,,ak,,"64km SSW of Kaktovik, Alaska",1.25,50,",ak,",automatic,1539375293772,"M 1.8 - 64km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539375750457,https://earthquake.usgs.gov/earthquakes/eventpage/ak20279420 +,,73096536,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096536&format=geojson,0.02284,,90.0,",nc73096536,",0.49,md,,nc,9.0,"2km N of The Geysers, CA",0.03,4,",nc,",automatic,1539375160450,"M 0.5 - 2km N of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539378483964,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096536 +,,00660678,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660678&format=geojson,0.745,,266.98,",nn00660678,",1.2,ml,,nn,11.0,"27km NNE of Nellis Air Force Base, Nevada",0.34,22,",nn,",automatic,1539375019060,"M 1.2 - 27km NNE of Nellis Air Force Base, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539375138069,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660678 +,,20279413,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20279413&format=geojson,,,,",ak20279413,",1.8,ml,,ak,,"54km NNW of Arctic Village, Alaska",0.87,50,",ak,",automatic,1539374391893,"M 1.8 - 54km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539374912788,https://earthquake.usgs.gov/earthquakes/eventpage/ak20279413 +,,20279411,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20279411&format=geojson,,,,",ak20279411,",1.6,ml,,ak,,"43km NNW of Arctic Village, Alaska",0.61,39,",ak,",automatic,1539374202151,"M 1.6 - 43km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539374769831,https://earthquake.usgs.gov/earthquakes/eventpage/ak20279411 +,,20279408,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20279408&format=geojson,,,,",ak20279408,",1.8,ml,,ak,,"69km WSW of Talkeetna, Alaska",0.39,50,",ak,",automatic,1539374110184,"M 1.8 - 69km WSW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539374287950,https://earthquake.usgs.gov/earthquakes/eventpage/ak20279408 +,,37387754,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37387754&format=geojson,0.00575,,35.0,",ci37387754,",0.69,ml,,ci,33.0,"10km NE of Aguanga, CA",0.12,7,",ci,",reviewed,1539374010490,"M 0.7 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539375932622,https://earthquake.usgs.gov/earthquakes/eventpage/ci37387754 +,,20279405,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20279405&format=geojson,,,,",ak20279405,",1.6,ml,,ak,,"48km NNW of Arctic Village, Alaska",1.05,39,",ak,",automatic,1539373619171,"M 1.6 - 48km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539373946551,https://earthquake.usgs.gov/earthquakes/eventpage/ak20279405 +,,37387738,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37387738&format=geojson,0.006973,,32.0,",ci37387738,",0.82,ml,,ci,43.0,"10km NE of Aguanga, CA",0.16,10,",ci,",reviewed,1539373596980,"M 0.8 - 10km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1539375578280,https://earthquake.usgs.gov/earthquakes/eventpage/ci37387738 +,,20279404,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20279404&format=geojson,,,,",ak20279404,",1.8,ml,,ak,,"45km NNW of Arctic Village, Alaska",0.4,50,",ak,",automatic,1539373419528,"M 1.8 - 45km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539373594277,https://earthquake.usgs.gov/earthquakes/eventpage/ak20279404 +,,70806759,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70806759&format=geojson,0.0288,,172.0,",av70806759,",0.44,ml,,av,7.0,"95km SE of King Salmon, Alaska",0.14,3,",av,",reviewed,1539373352210,"M 0.4 - 95km SE of King Salmon, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539383739980,https://earthquake.usgs.gov/earthquakes/eventpage/av70806759 +,,73096511,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096511&format=geojson,0.01193,,163.0,",nc73096511,",0.55,md,,nc,6.0,"2km SE of The Geysers, CA",0.01,5,",nc,",automatic,1539372937390,"M 0.6 - 2km SE of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539373032320,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096511 +,,73096516,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096516&format=geojson,0.01315,,158.0,",nc73096516,",0.68,md,,nc,9.0,"2km WSW of Mammoth Lakes, CA",0.04,7,",nc,",reviewed,1539372812150,"M 0.7 - 2km WSW of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539376566781,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096516 +,,73096506,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096506&format=geojson,0.006122,,81.0,",nc73096506,",0.91,md,,nc,12.0,"8km WNW of The Geysers, CA",0.04,13,",nc,",automatic,1539372568830,"M 0.9 - 8km WNW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539372667830,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096506 +,,70647762,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70647762&format=geojson,0.01079,,35.0,",hv70647762,",1.89,md,,hv,22.0,"5km WSW of Volcano, Hawaii",0.12,55,",hv,",automatic,1539372543280,"M 1.9 - 5km WSW of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539372721870,https://earthquake.usgs.gov/earthquakes/eventpage/hv70647762 +,,73096501,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096501&format=geojson,0.003864,,28.0,",nc73096501,",2.24,md,,nc,50.0,"7km WNW of The Geysers, CA",0.06,77,",nc,",reviewed,1539372488830,"M 2.2 - 7km WNW of The Geysers, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539394443735,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096501 +,,20279398,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20279398&format=geojson,,,,",ak20279398,",2.5,ml,,ak,,"55km NNW of Arctic Village, Alaska",0.94,96,",ak,",automatic,1539372394182,"M 2.5 - 55km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539372745392,https://earthquake.usgs.gov/earthquakes/eventpage/ak20279398 +,,73096496,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096496&format=geojson,0.005172,,86.0,",nc73096496,",0.54,md,,nc,9.0,"3km NW of The Geysers, CA",0.02,4,",nc,",automatic,1539372263580,"M 0.5 - 3km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539372362730,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096496 +,,73096486,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096486&format=geojson,0.1145,,261.0,",nc73096486,",2.05,md,,nc,16.0,"20km WSW of Ferndale, CA",0.05,65,",nc,",reviewed,1539371116190,"M 2.1 - 20km WSW of Ferndale, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539400069754,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096486 +,,20279392,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20279392&format=geojson,,,,",ak20279392,",2.3,ml,,ak,,"79km W of Anchor Point, Alaska",0.51,81,",ak,",automatic,1539370822808,"M 2.3 - 79km W of Anchor Point, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539371141082,https://earthquake.usgs.gov/earthquakes/eventpage/ak20279392 +,,00660681,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660681&format=geojson,0.059,,121.14,",nn00660681,",0.6,ml,,nn,10.0,"7km WNW of Tahoe Vista, California",0.1187,6,",nn,",reviewed,1539370712565,"M 0.6 - 7km WNW of Tahoe Vista, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539375548394,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660681 +,3.8,37387626,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37387626&format=geojson,0.05774,19.0,29.0,",ci37387626,",3.05,ml,4.57,ci,116.0,"9km WSW of Wrightwood, CA",0.23,150,",ci,",reviewed,1539369857000,"M 3.1 - 9km WSW of Wrightwood, CA",0,earthquake,",dyfi,focal-mechanism,geoserve,nearby-cities,origin,phase-data,shakemap,",-480.0,1539503503931,https://earthquake.usgs.gov/earthquakes/eventpage/ci37387626 +,,37387618,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37387618&format=geojson,0.04222,,38.0,",ci37387618,",2.39,ml,,ci,44.0,"34km NE of Lucerne Valley, CA",0.15,88,",ci,",reviewed,1539369733390,"M 2.4 - 34km NE of Lucerne Valley, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1539374309640,https://earthquake.usgs.gov/earthquakes/eventpage/ci37387618 +,,73096471,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096471&format=geojson,0.01454,,71.0,",nc73096471,",1.17,md,,nc,14.0,"1km N of The Geysers, CA",0.03,21,",nc,",automatic,1539369015390,"M 1.2 - 1km N of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539370834014,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096471 +,,37387578,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37387578&format=geojson,0.1216,,46.0,",ci37387578,",2.0,ml,,ci,36.0,"18km SE of Ridgecrest, CA",0.15,62,",ci,",reviewed,1539367469380,"M 2.0 - 18km SE of Ridgecrest, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1539369837245,https://earthquake.usgs.gov/earthquakes/eventpage/ci37387578 +,,20279386,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20279386&format=geojson,,,,",ak20279386,",1.6,ml,,ak,,"122km W of Cantwell, Alaska",0.9,39,",ak,",automatic,1539367240677,"M 1.6 - 122km W of Cantwell, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539368071475,https://earthquake.usgs.gov/earthquakes/eventpage/ak20279386 +,,20279381,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20279381&format=geojson,,,,",ak20279381,",2.1,ml,,ak,,"65km NE of Sutton-Alpine, Alaska",0.5,68,",ak,",automatic,1539366624752,"M 2.1 - 65km NE of Sutton-Alpine, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539367895662,https://earthquake.usgs.gov/earthquakes/eventpage/ak20279381 +,,37387570,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37387570&format=geojson,0.1289,,75.0,",ci37387570,",1.52,ml,,ci,12.0,"44km NNW of Los Algodones, B.C., MX",0.34,36,",ci,",reviewed,1539366299060,"M 1.5 Quarry Blast - 44km NNW of Los Algodones, B.C., MX",0,quarry blast,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539376206168,https://earthquake.usgs.gov/earthquakes/eventpage/ci37387570 +,,2018285015,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018285015&format=geojson,0.3954,,275.0,",pr2018285015,",2.36,md,,pr,10.0,"26km N of San Juan, Puerto Rico",0.43,86,",pr,",reviewed,1539366000450,"M 2.4 - 26km N of San Juan, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1539384581774,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018285015 +,,73096456,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096456&format=geojson,0.01531,,85.0,",nc73096456,",1.85,md,,nc,42.0,"4km S of Loyola, CA",0.08,53,",nc,",reviewed,1539365502360,"M 1.9 Quarry Blast - 4km S of Loyola, CA",0,quarry blast,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539387379621,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096456 +,,20279363,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20279363&format=geojson,,,,",ak20279363,",1.5,ml,,ak,,"63km SSW of Kaktovik, Alaska",1.4,35,",ak,",automatic,1539364977350,"M 1.5 - 63km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539367689440,https://earthquake.usgs.gov/earthquakes/eventpage/ak20279363 +,3.1,73096451,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096451&format=geojson,0.305,3.0,74.0,",nc73096451,",2.44,md,,nc,41.0,"11km NNW of Yosemite Lakes, CA",0.24,93,",nc,",reviewed,1539364646430,"M 2.4 - 11km NNW of Yosemite Lakes, CA",0,earthquake,",dyfi,focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539393558647,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096451 +,,1000hb7b,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000hb7b&format=geojson,0.692,,121.0,",ak20279334,us1000hb7b,",4.7,mb,,us,,"71km NNE of Akutan, Alaska",1.33,340,",ak,us,",reviewed,1539364598110,"M 4.7 - 71km NNE of Akutan, Alaska",0,earthquake,",geoserve,origin,phase-data,",-660.0,1539367037458,https://earthquake.usgs.gov/earthquakes/eventpage/us1000hb7b +,3.8,20279331,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20279331&format=geojson,,7.0,,",ak20279331,",2.9,ml,1.96,ak,,"12km SE of Knik-Fairview, Alaska",0.58,132,",ak,",reviewed,1539364574729,"M 2.9 - 12km SE of Knik-Fairview, Alaska",0,earthquake,",dyfi,geoserve,origin,phase-data,shakemap,",-540.0,1539376121076,https://earthquake.usgs.gov/earthquakes/eventpage/ak20279331 +,,70252123,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ismpkansas70252123&format=geojson,0.06382,,271.0,",ismpkansas70252123,",1.62,ml,,ismpkansas,12.0,"6km NNW of Harper, Kansas",0.03,40,",ismpkansas,",reviewed,1539364544240,"M 1.6 - 6km NNW of Harper, Kansas",0,earthquake,",geoserve,origin,phase-data,",-360.0,1539390987110,https://earthquake.usgs.gov/earthquakes/eventpage/ismpkansas70252123 +,,20279328,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20279328&format=geojson,,,,",ak20279328,",1.9,ml,,ak,,"74km W of Big Lake, Alaska",0.34,56,",ak,",automatic,1539364021120,"M 1.9 - 74km W of Big Lake, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539364297903,https://earthquake.usgs.gov/earthquakes/eventpage/ak20279328 +,,73096446,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096446&format=geojson,0.01722,,167.0,",nc73096446,",0.55,md,,nc,6.0,"3km NNW of The Geysers, CA",0.05,5,",nc,",automatic,1539363948050,"M 0.6 - 3km NNW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539364867455,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096446 +,,61796411,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61796411&format=geojson,0.117,,208.0,",av61796411,",1.07,ml,,av,10.0,"94km SW of Anchor Point, Alaska",0.31,18,",av,",reviewed,1539363797150,"M 1.1 - 94km SW of Anchor Point, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539381558410,https://earthquake.usgs.gov/earthquakes/eventpage/av61796411 +,,70806769,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70806769&format=geojson,,,286.0,",av70806769,",0.36,ml,,av,7.0,"14km ENE of Redoubt Volcano, Alaska",0.06,2,",av,",reviewed,1539363550280,"M 0.4 - 14km ENE of Redoubt Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539384722640,https://earthquake.usgs.gov/earthquakes/eventpage/av70806769 +,,20279322,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20279322&format=geojson,,,,",ak20279322,",1.2,ml,,ak,,"36km WSW of Big Lake, Alaska",0.37,22,",ak,",automatic,1539363017013,"M 1.2 - 36km WSW of Big Lake, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539363285657,https://earthquake.usgs.gov/earthquakes/eventpage/ak20279322 +,,2018285013,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018285013&format=geojson,0.5772,,226.0,",pr2018285013,",1.98,md,,pr,4.0,"56km N of Punta Cana, Dominican Republic",0.07,60,",pr,",reviewed,1539362714210,"M 2.0 - 56km N of Punta Cana, Dominican Republic",0,earthquake,",geoserve,origin,phase-data,",-300.0,1539384496846,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018285013 +,,37387506,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37387506&format=geojson,0.005681,,72.0,",ci37387506,",0.51,ml,,ci,20.0,"10km NE of Aguanga, CA",0.12,4,",ci,",reviewed,1539362382950,"M 0.5 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539365123234,https://earthquake.usgs.gov/earthquakes/eventpage/ci37387506 +,,70806744,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70806744&format=geojson,0.07199,,171.0,",av70806744,",0.08,ml,,av,4.0,"24km W of Dutch Harbor, Alaska",0.04,0,",av,",reviewed,1539362252650,"M 0.1 - 24km W of Dutch Harbor, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539380947230,https://earthquake.usgs.gov/earthquakes/eventpage/av70806744 +,,2018285012,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018285012&format=geojson,0.6604,,323.0,",pr2018285012,",2.81,md,,pr,5.0,"74km N of Tierras Nuevas Poniente, Puerto Rico",0.32,121,",pr,",reviewed,1539362162050,"M 2.8 - 74km N of Tierras Nuevas Poniente, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1539384439214,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018285012 +,2.0,73096441,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096441&format=geojson,0.02764,1.0,55.0,",nc73096441,",2.06,md,,nc,45.0,"8km SSE of San Juan Bautista, CA",0.09,65,",nc,",reviewed,1539362017960,"M 2.1 - 8km SSE of San Juan Bautista, CA",0,earthquake,",dyfi,focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539388398411,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096441 +,3.1,1000hb52,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000hb52&format=geojson,1.459,6.0,151.0,",us1000hb52,",4.6,mb,,us,,"63km ESE of Manjimup, Australia",1.35,327,",us,",reviewed,1539361890000,"M 4.6 - 63km ESE of Manjimup, Australia",0,earthquake,",dyfi,geoserve,origin,phase-data,",480.0,1539409662175,https://earthquake.usgs.gov/earthquakes/eventpage/us1000hb52 +,,20279319,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20279319&format=geojson,,,,",ak20279319,",1.5,ml,,ak,,"81km SSW of Arctic Village, Alaska",0.17,35,",ak,",automatic,1539360698172,"M 1.5 - 81km SSW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539360878017,https://earthquake.usgs.gov/earthquakes/eventpage/ak20279319 +,2.0,73096431,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096431&format=geojson,0.9911,2.0,257.0,",nc73096431,us1000hb4m,",3.3,ml,,nc,49.0,"116km W of Ferndale, CA",0.22,168,",nc,us,",reviewed,1539360453550,"M 3.3 - 116km W of Ferndale, CA",0,earthquake,",dyfi,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539390784343,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096431 +,,73096421,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096421&format=geojson,0.006867,,56.0,",nc73096421,",0.63,md,,nc,17.0,"5km NNW of The Geysers, CA",0.02,6,",nc,",reviewed,1539360058290,"M 0.6 - 5km NNW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539362609347,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096421 +,,70806749,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70806749&format=geojson,0.1636,,266.0,",av70806749,",0.76,ml,,av,5.0,"118km SSE of King Salmon, Alaska",0.19,9,",av,",reviewed,1539359409400,"M 0.8 - 118km SSE of King Salmon, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539381234620,https://earthquake.usgs.gov/earthquakes/eventpage/av70806749 +,,70806734,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70806734&format=geojson,0.119,,335.0,",av70806734,",1.24,ml,,av,8.0,"96km SW of Anchor Point, Alaska",0.07,24,",av,",reviewed,1539359358210,"M 1.2 - 96km SW of Anchor Point, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539379870390,https://earthquake.usgs.gov/earthquakes/eventpage/av70806734 +,,00660676,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660676&format=geojson,0.111,,141.0,",nn00660676,",0.8,ml,,nn,6.0,"17km ENE of Spanish Springs, Nevada",0.057,10,",nn,",reviewed,1539359347215,"M 0.8 - 17km ENE of Spanish Springs, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539370942596,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660676 +,,00660675,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660675&format=geojson,0.057,,159.91,",nn00660675,",0.8,ml,,nn,8.0,"39km ESE of Bridgeport, California",0.1904,10,",nn,",reviewed,1539359244250,"M 0.8 - 39km ESE of Bridgeport, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539370751061,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660675 +,,00660656,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660656&format=geojson,0.036,,89.49,",nn00660656,",0.3,ml,,nn,6.0,"3km WSW of Tahoe Vista, California",0.0598,1,",nn,",reviewed,1539358734986,"M 0.3 - 3km WSW of Tahoe Vista, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539363749417,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660656 +,,80313794,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80313794&format=geojson,0.12,,102.0,",mb80313794,",1.58,ml,,mb,10.0,"14km SE of Lincoln, Montana",0.15,38,",mb,",reviewed,1539358439920,"M 1.6 - 14km SE of Lincoln, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539381347120,https://earthquake.usgs.gov/earthquakes/eventpage/mb80313794 +,,2018285014,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018285014&format=geojson,1.7707,,345.0,",pr2018285014,",3.34,md,,pr,4.0,"37km NE of Road Town, British Virgin Islands",0.24,172,",pr,",reviewed,1539358074810,"M 3.3 - 37km NE of Road Town, British Virgin Islands",0,earthquake,",geoserve,origin,phase-data,",-240.0,1539384536350,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018285014 +,,73096416,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096416&format=geojson,0.06563,,53.0,",nc73096416,",1.64,md,,nc,28.0,"7km NE of Rohnert Park, CA",0.05,41,",nc,",reviewed,1539357355320,"M 1.6 - 7km NE of Rohnert Park, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539388205939,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096416 +,,73096411,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096411&format=geojson,0.06686,,95.0,",nc73096411,",1.72,md,,nc,26.0,"7km NE of Rohnert Park, CA",0.1,46,",nc,",reviewed,1539357220420,"M 1.7 - 7km NE of Rohnert Park, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539375843008,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096411 +,,37387418,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37387418&format=geojson,0.02301,,106.0,",ci37387418,",0.29,ml,,ci,24.0,"9km NE of Aguanga, CA",0.22,1,",ci,",reviewed,1539356717930,"M 0.3 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539364049530,https://earthquake.usgs.gov/earthquakes/eventpage/ci37387418 +,,00660644,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660644&format=geojson,0.235,,161.18,",nn00660644,",0.7,ml,,nn,8.0,"57km SE of Warm Springs, Nevada",0.2412,8,",nn,",reviewed,1539356459301,"M 0.7 - 57km SE of Warm Springs, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539364119908,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660644 +,,20279304,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20279304&format=geojson,,,,",ak20279304,",1.1,ml,,ak,,"9km N of North Nenana, Alaska",0.32,19,",ak,",automatic,1539356296215,"M 1.1 - 9km N of North Nenana, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539356676145,https://earthquake.usgs.gov/earthquakes/eventpage/ak20279304 +,,73096406,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096406&format=geojson,0.02271,,134.0,",nc73096406,",1.54,md,,nc,22.0,"11km NE of Pinnacles, CA",0.09,36,",nc,",reviewed,1539356291970,"M 1.5 - 11km NE of Pinnacles, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539385623704,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096406 +,,20279301,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20279301&format=geojson,,,,",ak20279301,",1.7,ml,,ak,,"103km NNW of Arctic Village, Alaska",1.55,44,",ak,",automatic,1539356258344,"M 1.7 - 103km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539356676434,https://earthquake.usgs.gov/earthquakes/eventpage/ak20279301 +,,20279297,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20279297&format=geojson,,,,",ak20279297,",1.8,ml,,ak,,"32km WNW of Nikiski, Alaska",0.52,50,",ak,",automatic,1539356042770,"M 1.8 - 32km WNW of Nikiski, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539356568776,https://earthquake.usgs.gov/earthquakes/eventpage/ak20279297 +,,20279293,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20279293&format=geojson,,,,",ak20279293,",3.2,ml,,ak,,"74km SW of Kaktovik, Alaska",1.01,158,",ak,",automatic,1539355697969,"M 3.2 - 74km SW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539356012767,https://earthquake.usgs.gov/earthquakes/eventpage/ak20279293 +,,2018285011,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018285011&format=geojson,0.5823,,240.0,",pr2018285011,",2.45,md,,pr,15.0,"57km N of Hatillo, Puerto Rico",0.74,92,",pr,",reviewed,1539355298390,"M 2.5 - 57km N of Hatillo, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1539356446894,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018285011 +,,37387386,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37387386&format=geojson,0.02987,,39.0,",ci37387386,",0.81,ml,,ci,32.0,"8km ENE of Aguanga, CA",0.2,10,",ci,",reviewed,1539354953670,"M 0.8 - 8km ENE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539355543487,https://earthquake.usgs.gov/earthquakes/eventpage/ci37387386 +,,80313779,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80313779&format=geojson,0.215,,198.0,",mb80313779,",2.05,ml,,mb,11.0,"26km NE of Jackson, Wyoming",0.2,65,",mb,",reviewed,1539354651830,"M 2.1 - 26km NE of Jackson, Wyoming",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539381037910,https://earthquake.usgs.gov/earthquakes/eventpage/mb80313779 +,,61796356,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61796356&format=geojson,0.0225,,126.0,",av61796356,",-0.12,ml,,av,5.0,"42km ENE of Adak, Alaska",0.06,0,",av,",reviewed,1539353995220,"M -0.1 - 42km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539378848570,https://earthquake.usgs.gov/earthquakes/eventpage/av61796356 +,,20279285,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20279285&format=geojson,,,,",ak20279285,",3.3,ml,,ak,,"262km SE of Kodiak, Alaska",0.76,168,",ak,",reviewed,1539353945664,"M 3.3 - 262km SE of Kodiak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539373054194,https://earthquake.usgs.gov/earthquakes/eventpage/ak20279285 +,,20279282,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20279282&format=geojson,,,,",ak20279282,",2.2,ml,,ak,,"47km SW of Cantwell, Alaska",0.64,74,",ak,",automatic,1539353858808,"M 2.2 - 47km SW of Cantwell, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539354289436,https://earthquake.usgs.gov/earthquakes/eventpage/ak20279282 +,,73096396,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096396&format=geojson,0.008581,,97.0,",nc73096396,",1.12,md,,nc,8.0,"2km WNW of The Geysers, CA",0.03,19,",nc,",reviewed,1539353580110,"M 1.1 - 2km WNW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539355506568,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096396 +,,37387322,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37387322&format=geojson,0.06332,,58.0,",ci37387322,",0.5,ml,,ci,20.0,"12km SSW of Anza, CA",0.2,4,",ci,",reviewed,1539353228440,"M 0.5 - 12km SSW of Anza, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539355558572,https://earthquake.usgs.gov/earthquakes/eventpage/ci37387322 +,,00660655,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660655&format=geojson,0.099,,295.26,",nn00660655,",0.5,ml,,nn,3.0,"7km E of Cold Springs, Nevada",0.0542,4,",nn,",reviewed,1539352824828,"M 0.5 - 7km E of Cold Springs, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539363563207,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660655 +,,20279280,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20279280&format=geojson,,,,",ak20279280,",2.2,ml,,ak,,"108km NW of Arctic Village, Alaska",0.91,74,",ak,",automatic,1539352527847,"M 2.2 - 108km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539352822439,https://earthquake.usgs.gov/earthquakes/eventpage/ak20279280 +,,00660654,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660654&format=geojson,0.205,,355.91,",nn00660654,",1.7,ml,,nn,3.0,"54km NW of Carlin, Nevada",0.0369,44,",nn,",reviewed,1539351491894,"M 1.7 - 54km NW of Carlin, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539363377742,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660654 +,,20279275,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20279275&format=geojson,,,,",ak20279275,",1.6,ml,,ak,,"42km NNW of Valdez, Alaska",0.79,39,",ak,",automatic,1539350664125,"M 1.6 - 42km NNW of Valdez, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539350966886,https://earthquake.usgs.gov/earthquakes/eventpage/ak20279275 +,,70647167,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70647167&format=geojson,0.006566,,62.0,",hv70647167,",1.3,md,,hv,28.0,"3km SW of Volcano, Hawaii",0.08,26,",hv,",reviewed,1539350569790,"M 1.3 - 3km SW of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539378506910,https://earthquake.usgs.gov/earthquakes/eventpage/hv70647167 +,,37387266,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37387266&format=geojson,0.006018,,36.0,",ci37387266,",0.7,ml,,ci,29.0,"9km NE of Aguanga, CA",0.14,8,",ci,",reviewed,1539350524290,"M 0.7 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539350806544,https://earthquake.usgs.gov/earthquakes/eventpage/ci37387266 +,,20279273,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20279273&format=geojson,,,,",ak20279273,",1.6,ml,,ak,,"123km NNW of Arctic Village, Alaska",0.94,39,",ak,",automatic,1539350315047,"M 1.6 - 123km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539350591782,https://earthquake.usgs.gov/earthquakes/eventpage/ak20279273 +,,20279270,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20279270&format=geojson,,,,",ak20279270,",1.8,ml,,ak,,"16km NNE of Valdez, Alaska",0.75,50,",ak,",automatic,1539350293061,"M 1.8 - 16km NNE of Valdez, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539350592054,https://earthquake.usgs.gov/earthquakes/eventpage/ak20279270 +,,70647157,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70647157&format=geojson,0.2782,,276.0,",hv70647157,",1.84,md,,hv,29.0,"32km SE of Leilani Estates, Hawaii",0.26,52,",hv,",automatic,1539350159040,"M 1.8 - 32km SE of Leilani Estates, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539350363670,https://earthquake.usgs.gov/earthquakes/eventpage/hv70647157 +,,00660653,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660653&format=geojson,0.269,,251.62,",nn00660653,",0.5,ml,,nn,4.0,"15km E of Fernley, Nevada",0.0771,4,",nn,",reviewed,1539349706995,"M 0.5 - 15km E of Fernley, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539363376302,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660653 +,,37198308,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37198308&format=geojson,0.05668,,54.0,",ci37198308,",1.22,ml,,ci,45.0,"7km S of Palomar Observatory, CA",0.21,23,",ci,",reviewed,1539349603350,"M 1.2 - 7km S of Palomar Observatory, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539359811232,https://earthquake.usgs.gov/earthquakes/eventpage/ci37198308 +,,37387250,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37387250&format=geojson,0.01661,,22.0,",ci37387250,",1.28,ml,,ci,64.0,"9km NE of Aguanga, CA",0.19,25,",ci,",reviewed,1539349594180,"M 1.3 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1539358823330,https://earthquake.usgs.gov/earthquakes/eventpage/ci37387250 +,,61796316,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61796316&format=geojson,0.02573,,173.0,",av61796316,",0.62,ml,,av,5.0,"53km SSW of Redoubt Volcano, Alaska",0.07,6,",av,",reviewed,1539349087820,"M 0.6 - 53km SSW of Redoubt Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539375717390,https://earthquake.usgs.gov/earthquakes/eventpage/av61796316 +,,1000hb22,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000hb22&format=geojson,5.435,,143.0,",us1000hb22,",4.6,mb,,us,,East of the Kuril Islands,0.79,326,",us,",reviewed,1539349037610,M 4.6 - East of the Kuril Islands,0,earthquake,",geoserve,origin,phase-data,",600.0,1539351861040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000hb22 +,1.0,1000hb1u,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000hb1u&format=geojson,0.194,1.0,43.0,",us1000hb1u,",2.5,mb_lg,,us,,"5km E of Hennessey, Oklahoma",0.34,96,",us,",reviewed,1539348739010,"M 2.5 - 5km E of Hennessey, Oklahoma",0,earthquake,",dyfi,geoserve,origin,phase-data,",-360.0,1539359745992,https://earthquake.usgs.gov/earthquakes/eventpage/us1000hb1u +,,70806729,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70806729&format=geojson,0.02615,,96.0,",av70806729,",-0.14,ml,,av,9.0,"13km W of Akutan, Alaska",0.23,0,",av,",reviewed,1539348257610,"M -0.1 - 13km W of Akutan, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539377367960,https://earthquake.usgs.gov/earthquakes/eventpage/av70806729 +,,70806724,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70806724&format=geojson,0.02735,,96.0,",av70806724,",-0.3,ml,,av,8.0,"13km W of Akutan, Alaska",0.2,0,",av,",reviewed,1539348240180,"M -0.3 - 13km W of Akutan, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539377141560,https://earthquake.usgs.gov/earthquakes/eventpage/av70806724 +,,60242416,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nm60242416&format=geojson,0.03046,,65.0,",nm60242416,",1.5,md,,nm,12.0,"3km E of Ridgely, Tennessee",0.04,35,",nm,",reviewed,1539347181360,"M 1.5 - 3km E of Ridgely, Tennessee",0,earthquake,",geoserve,origin,phase-data,",-360.0,1539370771160,https://earthquake.usgs.gov/earthquakes/eventpage/nm60242416 +,,73096376,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096376&format=geojson,0.006262,,125.0,",nc73096376,",0.56,md,,nc,6.0,"8km NW of The Geysers, CA",0.06,5,",nc,",automatic,1539346965420,"M 0.6 - 8km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539351003135,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096376 +,,2018285010,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018285010&format=geojson,0.0901,,242.0,",pr2018285010,",1.45,md,,pr,3.0,"1km E of Juana Diaz, Puerto Rico",0.23,32,",pr,",reviewed,1539346802230,"M 1.5 - 1km E of Juana Diaz, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1539354979261,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018285010 +,,70647077,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70647077&format=geojson,0.03491,,44.0,",hv70647077,",1.44,md,,hv,38.0,"22km ENE of Honaunau-Napoopoo, Hawaii",0.12,32,",hv,",reviewed,1539346598240,"M 1.4 - 22km ENE of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539380007760,https://earthquake.usgs.gov/earthquakes/eventpage/hv70647077 +,,37387202,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37387202&format=geojson,0.01711,,33.0,",ci37387202,",0.92,ml,,ci,44.0,"9km NE of Aguanga, CA",0.18,13,",ci,",reviewed,1539346401210,"M 0.9 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1539351213410,https://earthquake.usgs.gov/earthquakes/eventpage/ci37387202 +,,1000hb1i,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000hb1i&format=geojson,1.977,,75.0,",us1000hb1i,",4.8,mb,,us,,"115km ESE of Kimbe, Papua New Guinea",0.73,354,",us,",reviewed,1539346006930,"M 4.8 - 115km ESE of Kimbe, Papua New Guinea",0,earthquake,",geoserve,origin,phase-data,",600.0,1539348059040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000hb1i +,,20279255,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20279255&format=geojson,,,,",ak20279255,",2.0,ml,,ak,,"67km E of Cape Yakataga, Alaska",0.82,62,",ak,",automatic,1539345879356,"M 2.0 - 67km E of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539346197853,https://earthquake.usgs.gov/earthquakes/eventpage/ak20279255 +,,1000hb1b,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000hb1b&format=geojson,3.677,,75.0,",us1000hb1b,",4.5,mb,,us,,"284km NNE of Ndoi Island, Fiji",1.02,312,",us,",reviewed,1539345749380,"M 4.5 - 284km NNE of Ndoi Island, Fiji",0,earthquake,",geoserve,origin,phase-data,",-720.0,1539347299040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000hb1b +,,20279253,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20279253&format=geojson,,,,",ak20279253,",1.5,ml,,ak,,"42km W of Talkeetna, Alaska",0.48,35,",ak,",automatic,1539345554905,"M 1.5 - 42km W of Talkeetna, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539345855140,https://earthquake.usgs.gov/earthquakes/eventpage/ak20279253 +,,73096371,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096371&format=geojson,0.003881,,160.0,",nc73096371,",0.54,md,,nc,5.0,"5km NW of The Geysers, CA",0.01,4,",nc,",automatic,1539345366840,"M 0.5 - 5km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539349323962,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096371 +,,70647032,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70647032&format=geojson,0.02795,,106.0,",hv70647032,",0.95,md,,hv,18.0,"23km ENE of Honaunau-Napoopoo, Hawaii",0.12,14,",hv,",reviewed,1539345209400,"M 1.0 - 23km ENE of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539383252290,https://earthquake.usgs.gov/earthquakes/eventpage/hv70647032 +,,20279248,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20279248&format=geojson,,,,",ak20279248,",1.6,ml,,ak,,"116km NNW of Arctic Village, Alaska",1.0,39,",ak,",automatic,1539344407080,"M 1.6 - 116km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539344643765,https://earthquake.usgs.gov/earthquakes/eventpage/ak20279248 +,,20279247,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20279247&format=geojson,,,,",ak20279247,",1.7,ml,,ak,,"122km NNW of Arctic Village, Alaska",0.58,44,",ak,",automatic,1539344099927,"M 1.7 - 122km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539344248430,https://earthquake.usgs.gov/earthquakes/eventpage/ak20279247 +,,70646977,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70646977&format=geojson,0.01313,,84.0,",hv70646977,",1.49,md,,hv,21.0,"27km E of Honaunau-Napoopoo, Hawaii",0.16,34,",hv,",reviewed,1539342795350,"M 1.5 - 27km E of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539381234600,https://earthquake.usgs.gov/earthquakes/eventpage/hv70646977 +,,70806709,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70806709&format=geojson,0.02882,,103.0,",av70806709,",-0.63,ml,,av,5.0,"13km W of Akutan, Alaska",0.17,0,",av,",reviewed,1539341710550,"M -0.6 - 13km W of Akutan, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539374512770,https://earthquake.usgs.gov/earthquakes/eventpage/av70806709 +,2.8,70646927,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70646927&format=geojson,0.04111,15.0,44.0,",hv70646927,",3.32,ml,,hv,60.0,"9km NNW of Volcano, Hawaii",0.1,174,",hv,",reviewed,1539341468620,"M 3.3 - 9km NNW of Volcano, Hawaii",0,earthquake,",dyfi,geoserve,origin,phase-data,",-600.0,1539420462085,https://earthquake.usgs.gov/earthquakes/eventpage/hv70646927 +,,73096361,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096361&format=geojson,0.005155,,84.0,",nc73096361,",0.99,md,,nc,11.0,"3km NW of The Geysers, CA",0.01,15,",nc,",automatic,1539340351270,"M 1.0 - 3km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539347649697,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096361 +,,70646882,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70646882&format=geojson,0.01592,,90.0,",hv70646882,",1.77,md,,hv,22.0,"27km E of Honaunau-Napoopoo, Hawaii",0.24,48,",hv,",automatic,1539339749410,"M 1.8 - 27km E of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539339940260,https://earthquake.usgs.gov/earthquakes/eventpage/hv70646882 +,,20278933,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20278933&format=geojson,,,,",ak20278933,",1.2,ml,,ak,,"11km SSW of Badger, Alaska",0.89,22,",ak,",automatic,1539339471034,"M 1.2 - 11km SSW of Badger, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539339784199,https://earthquake.usgs.gov/earthquakes/eventpage/ak20278933 +,,70646867,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70646867&format=geojson,0.03382,,45.0,",hv70646867,",2.41,ml,,hv,52.0,"21km ENE of Honaunau-Napoopoo, Hawaii",0.14,89,",hv,",reviewed,1539339277530,"M 2.4 - 21km ENE of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539377624530,https://earthquake.usgs.gov/earthquakes/eventpage/hv70646867 +,,20278927,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20278927&format=geojson,,,,",ak20278927,",3.2,ml,,ak,,"252km SE of Kodiak, Alaska",0.87,158,",ak,",reviewed,1539339232128,"M 3.2 - 252km SE of Kodiak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539372126104,https://earthquake.usgs.gov/earthquakes/eventpage/ak20278927 +,,20278921,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20278921&format=geojson,,,,",ak20278921,",2.5,ml,,ak,,"59km WSW of Anchor Point, Alaska",0.51,96,",ak,",automatic,1539339172612,"M 2.5 - 59km WSW of Anchor Point, Alaska",0,earthquake,",geoserve,origin,",-600.0,1539339996257,https://earthquake.usgs.gov/earthquakes/eventpage/ak20278921 +,,37387170,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37387170&format=geojson,0.01743,,32.0,",ci37387170,",0.33,ml,,ci,31.0,"9km NE of Aguanga, CA",0.14,2,",ci,",reviewed,1539339153060,"M 0.3 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539358297580,https://earthquake.usgs.gov/earthquakes/eventpage/ci37387170 +,,20278919,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20278919&format=geojson,,,,",ak20278919,",1.7,ml,,ak,,"107km NW of Talkeetna, Alaska",0.76,44,",ak,",automatic,1539338594713,"M 1.7 - 107km NW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539338900492,https://earthquake.usgs.gov/earthquakes/eventpage/ak20278919 +,,37387154,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37387154&format=geojson,0.016,,36.0,",ci37387154,",1.36,ml,,ci,49.0,"6km SW of Valle Vista, CA",0.19,28,",ci,",reviewed,1539338545290,"M 1.4 - 6km SW of Valle Vista, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1539350622900,https://earthquake.usgs.gov/earthquakes/eventpage/ci37387154 +,,2018285009,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018285009&format=geojson,0.4654,,347.0,",pr2018285009,",2.29,md,,pr,3.0,"25km NW of Rincon, Puerto Rico",0.08,81,",pr,",reviewed,1539338082050,"M 2.3 - 25km NW of Rincon, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1539347225552,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018285009 +,,00660652,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660652&format=geojson,0.116,,140.9,",nn00660652,",0.1,ml,,nn,4.0,"16km ENE of Spanish Springs, Nevada",0.055,0,",nn,",reviewed,1539337815552,"M 0.1 - 16km ENE of Spanish Springs, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539362638731,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660652 +,,73096356,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096356&format=geojson,0.01526,,119.0,",nc73096356,",0.53,md,,nc,16.0,"8km ESE of Mammoth Lakes, CA",0.03,4,",nc,",reviewed,1539337381630,"M 0.5 - 8km ESE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539361324129,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096356 +,,73096351,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096351&format=geojson,0.0123,,56.0,",nc73096351,",0.98,md,,nc,16.0,"8km WNW of Cobb, CA",0.03,15,",nc,",automatic,1539337352800,"M 1.0 - 8km WNW of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539344410357,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096351 +,,1000hb0u,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000hb0u&format=geojson,29.331,,121.0,",us1000hb0u,",5.1,mb,,us,,Pacific-Antarctic Ridge,1.14,400,",us,",reviewed,1539337221080,M 5.1 - Pacific-Antarctic Ridge,0,earthquake,",geoserve,origin,phase-data,",-480.0,1539338408040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000hb0u +,,37387146,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37387146&format=geojson,0.05222,,97.0,",ci37387146,",0.57,ml,,ci,14.0,"6km S of Palomar Observatory, CA",0.14,5,",ci,",reviewed,1539336829150,"M 0.6 - 6km S of Palomar Observatory, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539350580370,https://earthquake.usgs.gov/earthquakes/eventpage/ci37387146 +,,00660651,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660651&format=geojson,0.035,,92.3,",nn00660651,",0.4,ml,,nn,7.0,"3km WSW of Tahoe Vista, California",0.0617,2,",nn,",reviewed,1539336755394,"M 0.4 - 3km WSW of Tahoe Vista, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539362453413,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660651 +,,00660650,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660650&format=geojson,0.12,,137.97,",nn00660650,",0.4,ml,,nn,10.0,"16km ENE of Spanish Springs, Nevada",0.1781,2,",nn,",reviewed,1539336640013,"M 0.4 - 16km ENE of Spanish Springs, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539362266677,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660650 +,,73096346,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096346&format=geojson,0.01977,,144.0,",nc73096346,",0.87,md,,nc,21.0,"13km WNW of Toms Place, CA",0.02,12,",nc,",reviewed,1539336264280,"M 0.9 - 13km WNW of Toms Place, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539372226579,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096346 +,,20278915,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20278915&format=geojson,,,,",ak20278915,",1.0,ml,,ak,,"54km ENE of Sutton-Alpine, Alaska",0.5,15,",ak,",reviewed,1539336231141,"M 1.0 - 54km ENE of Sutton-Alpine, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539371716519,https://earthquake.usgs.gov/earthquakes/eventpage/ak20278915 +,,73096341,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096341&format=geojson,0.01983,,85.0,",nc73096341,",0.69,md,,nc,16.0,"13km WNW of Toms Place, CA",0.03,7,",nc,",reviewed,1539336081070,"M 0.7 - 13km WNW of Toms Place, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539372664655,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096341 +,,37387138,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37387138&format=geojson,0.08693,,86.0,",ci37387138,",0.81,ml,,ci,33.0,"12km ENE of Ocotillo Wells, CA",0.19,10,",ci,",reviewed,1539335790450,"M 0.8 - 12km ENE of Ocotillo Wells, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539358084481,https://earthquake.usgs.gov/earthquakes/eventpage/ci37387138 +,,20278914,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20278914&format=geojson,,,,",ak20278914,",1.9,ml,,ak,,"160km SSE of Kotzebue, Alaska",1.06,56,",ak,",automatic,1539335670867,"M 1.9 - 160km SSE of Kotzebue, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539335866443,https://earthquake.usgs.gov/earthquakes/eventpage/ak20278914 +,,80313754,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80313754&format=geojson,0.106,,126.0,",mb80313754,",0.9,ml,,mb,10.0,"13km ESE of Lincoln, Montana",0.08,12,",mb,",reviewed,1539335629910,"M 0.9 - 13km ESE of Lincoln, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539354353670,https://earthquake.usgs.gov/earthquakes/eventpage/mb80313754 +,,37387130,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37387130&format=geojson,0.03197,,53.0,",ci37387130,",0.88,ml,,ci,16.0,"16km N of Inyokern, CA",0.12,12,",ci,",reviewed,1539335300960,"M 0.9 - 16km N of Inyokern, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539350582321,https://earthquake.usgs.gov/earthquakes/eventpage/ci37387130 +,,2018285008,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018285008&format=geojson,0.315,,324.0,",pr2018285008,",2.56,md,,pr,5.0,"33km NW of San Antonio, Puerto Rico",0.52,101,",pr,",reviewed,1539335191050,"M 2.6 - 33km NW of San Antonio, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1539347200936,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018285008 +,,73096336,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096336&format=geojson,0.03547,,80.0,",nc73096336,",1.88,md,,nc,45.0,"23km NW of Parkfield, CA",0.09,54,",nc,",reviewed,1539335043620,"M 1.9 - 23km NW of Parkfield, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539373924792,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096336 +,,20278910,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20278910&format=geojson,,,,",ak20278910,",1.8,ml,,ak,,"28km W of Cohoe, Alaska",0.68,50,",ak,",automatic,1539334888587,"M 1.8 - 28km W of Cohoe, Alaska",0,earthquake,",geoserve,origin,",-600.0,1539335150324,https://earthquake.usgs.gov/earthquakes/eventpage/ak20278910 +,,20278907,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20278907&format=geojson,,,,",ak20278907,",1.8,ml,,ak,,"65km SE of Cantwell, Alaska",0.42,50,",ak,",automatic,1539334761895,"M 1.8 - 65km SE of Cantwell, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539334936719,https://earthquake.usgs.gov/earthquakes/eventpage/ak20278907 +,,20278908,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20278908&format=geojson,,,,",ak20278908,",1.0,ml,,ak,,"33km W of Ester, Alaska",0.62,15,",ak,",automatic,1539334381673,"M 1.0 - 33km W of Ester, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539335043753,https://earthquake.usgs.gov/earthquakes/eventpage/ak20278908 +,,20278905,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20278905&format=geojson,,,,",ak20278905,",1.7,ml,,ak,,"82km E of Bear Creek, Alaska",1.3,44,",ak,",automatic,1539334274993,"M 1.7 - 82km E of Bear Creek, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539334573152,https://earthquake.usgs.gov/earthquakes/eventpage/ak20278905 +,,20278904,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20278904&format=geojson,,,,",ak20278904,",0.8,ml,,ak,,"63km E of Lazy Mountain, Alaska",1.03,10,",ak,",automatic,1539334145002,"M 0.8 - 63km E of Lazy Mountain, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539334326755,https://earthquake.usgs.gov/earthquakes/eventpage/ak20278904 +,,20278898,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20278898&format=geojson,,,,",ak20278898,",1.7,ml,,ak,,"130km NW of Arctic Village, Alaska",1.1,44,",ak,",automatic,1539333816220,"M 1.7 - 130km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539334326430,https://earthquake.usgs.gov/earthquakes/eventpage/ak20278898 +,,20278895,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20278895&format=geojson,,,,",ak20278895,",1.6,ml,,ak,,"84km E of Bear Creek, Alaska",0.65,39,",ak,",automatic,1539333645638,"M 1.6 - 84km E of Bear Creek, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539334015761,https://earthquake.usgs.gov/earthquakes/eventpage/ak20278895 +,,20278894,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20278894&format=geojson,,,,",ak20278894,",1.4,ml,,ak,,"87km E of Bear Creek, Alaska",0.43,30,",ak,",automatic,1539333559629,"M 1.4 - 87km E of Bear Creek, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539333801589,https://earthquake.usgs.gov/earthquakes/eventpage/ak20278894 +,,37387114,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37387114&format=geojson,0.02655,,78.0,",ci37387114,",0.38,ml,,ci,11.0,"12km NE of Little Lake, CA",0.09,2,",ci,",reviewed,1539333367420,"M 0.4 - 12km NE of Little Lake, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539362510764,https://earthquake.usgs.gov/earthquakes/eventpage/ci37387114 +,,20278891,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20278891&format=geojson,,,,",ak20278891,",1.3,ml,,ak,,"114km NNW of Talkeetna, Alaska",0.68,26,",ak,",automatic,1539333309279,"M 1.3 - 114km NNW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539333694444,https://earthquake.usgs.gov/earthquakes/eventpage/ak20278891 +,,73096321,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096321&format=geojson,0.01619,,186.0,",nc73096321,",0.88,md,,nc,20.0,"4km SE of Mammoth Lakes, CA",0.02,12,",nc,",reviewed,1539333253960,"M 0.9 - 4km SE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539372003119,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096321 +,,37387106,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37387106&format=geojson,0.1115,,61.0,",ci37387106,",0.99,ml,,ci,38.0,"13km N of Borrego Springs, CA",0.24,15,",ci,",reviewed,1539333034650,"M 1.0 - 13km N of Borrego Springs, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1539350628350,https://earthquake.usgs.gov/earthquakes/eventpage/ci37387106 +,,73096531,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096531&format=geojson,0.01418,,165.0,",nc73096531,",0.06,md,,nc,5.0,"14km NNE of Mineral, CA",0.07,0,",nc,",reviewed,1539331559270,"M 0.1 - 14km NNE of Mineral, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539375444465,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096531 +,,37387098,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37387098&format=geojson,0.02238,,41.0,",ci37387098,",0.79,ml,,ci,30.0,"5km NE of Anza, CA",0.16,10,",ci,",reviewed,1539331538900,"M 0.8 - 5km NE of Anza, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1539350691460,https://earthquake.usgs.gov/earthquakes/eventpage/ci37387098 +,,20278888,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20278888&format=geojson,,,,",ak20278888,",1.0,ml,,ak,,"61km S of Cantwell, Alaska",0.2,15,",ak,",automatic,1539331499379,"M 1.0 - 61km S of Cantwell, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539331669694,https://earthquake.usgs.gov/earthquakes/eventpage/ak20278888 +,,37387090,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37387090&format=geojson,0.1614,,72.0,",ci37387090,",0.76,ml,,ci,25.0,"2km NNW of Cabazon, CA",0.18,9,",ci,",reviewed,1539331457000,"M 0.8 - 2km NNW of Cabazon, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539350840588,https://earthquake.usgs.gov/earthquakes/eventpage/ci37387090 +,,20278887,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20278887&format=geojson,,,,",ak20278887,",1.3,ml,,ak,,"51km NE of Yakutat, Alaska",0.3,26,",ak,",automatic,1539331256465,"M 1.3 - 51km NE of Yakutat, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539331466604,https://earthquake.usgs.gov/earthquakes/eventpage/ak20278887 +,,1000hayw,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000hayw&format=geojson,2.812,,80.0,",us1000hayw,",4.7,mb,,us,,"38km SSW of Nggongi Satu, Indonesia",1.07,340,",us,",reviewed,1539331098920,"M 4.7 - 38km SSW of Nggongi Satu, Indonesia",0,earthquake,",geoserve,origin,phase-data,",480.0,1539332252040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000hayw +,,37387082,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37387082&format=geojson,0.02085,,58.0,",ci37387082,",0.42,ml,,ci,21.0,"8km NE of Aguanga, CA",0.15,3,",ci,",reviewed,1539330744240,"M 0.4 - 8km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539350616322,https://earthquake.usgs.gov/earthquakes/eventpage/ci37387082 +,,73096311,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096311&format=geojson,0.04516,,158.0,",nc73096311,",1.35,md,,nc,11.0,"16km ESE of Pinnacles, CA",0.05,28,",nc,",reviewed,1539330734710,"M 1.4 - 16km ESE of Pinnacles, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539381426239,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096311 +,,73096316,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096316&format=geojson,0.02322,,145.0,",nc73096316,",0.32,md,,nc,13.0,"10km ENE of Mammoth Lakes, CA",0.04,2,",nc,",reviewed,1539330712880,"M 0.3 - 10km ENE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539383402484,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096316 +,,20278886,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20278886&format=geojson,,,,",ak20278886,",1.8,ml,,ak,,"72km SW of Kaktovik, Alaska",1.04,50,",ak,",automatic,1539330504514,"M 1.8 - 72km SW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539330780474,https://earthquake.usgs.gov/earthquakes/eventpage/ak20278886 +,,20278883,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20278883&format=geojson,,,,",ak20278883,us1000hayv,",2.6,ml,,ak,,"83km WNW of Arctic Village, Alaska",0.82,104,",ak,us,",automatic,1539329849291,"M 2.6 - 83km WNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539508322040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20278883 +,,61437071,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61437071&format=geojson,0.01787,,157.0,",uw61437071,",0.45,ml,,uw,3.0,"29km NNW of Packwood, Washington",0.06,3,",uw,",reviewed,1539329152590,"M 0.5 - 29km NNW of Packwood, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539363749230,https://earthquake.usgs.gov/earthquakes/eventpage/uw61437071 +,,37387058,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37387058&format=geojson,0.1846,,130.0,",ci37387058,",1.32,ml,,ci,13.0,"9km W of Progreso, B.C., MX",0.17,27,",ci,",reviewed,1539328691140,"M 1.3 - 9km W of Progreso, B.C., MX",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539357599496,https://earthquake.usgs.gov/earthquakes/eventpage/ci37387058 +,,73096306,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096306&format=geojson,0.02524,,82.0,",nc73096306,",1.3,md,,nc,26.0,"16km E of Seven Trees, CA",0.04,26,",nc,",reviewed,1539328448940,"M 1.3 - 16km E of Seven Trees, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539379743085,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096306 +,,20278587,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20278587&format=geojson,,,,",ak20278587,",1.6,ml,,ak,,"86km NW of Arctic Village, Alaska",0.82,39,",ak,",automatic,1539328253936,"M 1.6 - 86km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539328438083,https://earthquake.usgs.gov/earthquakes/eventpage/ak20278587 +,,2018285007,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018285007&format=geojson,0.0942,,309.0,",pr2018285007,",2.03,md,,pr,3.0,"3km WNW of Mayaguez, Puerto Rico",0.19,63,",pr,",reviewed,1539328084820,"M 2.0 - 3km WNW of Mayaguez, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1539343430358,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018285007 +,,60242411,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nm60242411&format=geojson,0.02768,,77.0,",nm60242411,",1.22,md,,nm,9.0,"1km NNW of Ridgely, Tennessee",0.34,23,",nm,",reviewed,1539327071230,"M 1.2 - 1km NNW of Ridgely, Tennessee",0,earthquake,",geoserve,origin,phase-data,",-360.0,1539344741500,https://earthquake.usgs.gov/earthquakes/eventpage/nm60242411 +,,20278580,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20278580&format=geojson,,,,",ak20278580,",1.6,ml,,ak,,"69km ESE of Cantwell, Alaska",1.11,39,",ak,",automatic,1539326914030,"M 1.6 - 69km ESE of Cantwell, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539327208980,https://earthquake.usgs.gov/earthquakes/eventpage/ak20278580 +,,60300502,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60300502&format=geojson,0.1225,,77.0,",uu60300502,",1.21,ml,,uu,10.0,"15km ESE of North Logan, Utah",0.06,23,",uu,",reviewed,1539326622530,"M 1.2 - 15km ESE of North Logan, Utah",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539369162420,https://earthquake.usgs.gov/earthquakes/eventpage/uu60300502 +,2.0,73096301,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096301&format=geojson,0.005227,1.0,101.0,",nc73096301,",0.0,md,,nc,11.0,"4km WNW of Mammoth Lakes, CA",0.05,0,",nc,",reviewed,1539325977430,"M 0.0 - 4km WNW of Mammoth Lakes, CA",0,earthquake,",dyfi,geoserve,nearby-cities,origin,phase-data,",-480.0,1539372956790,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096301 +,,73096296,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096296&format=geojson,0.01159,,33.0,",nc73096296,",1.26,md,,nc,34.0,"6km W of Cobb, CA",0.03,24,",nc,",reviewed,1539325789710,"M 1.3 - 6km W of Cobb, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539369305869,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096296 +,,60242406,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nm60242406&format=geojson,0.02955,,58.0,",nm60242406,",1.79,md,,nm,15.0,"3km ENE of Ridgely, Tennessee",0.05,49,",nm,",reviewed,1539325673860,"M 1.8 - 3km ENE of Ridgely, Tennessee",0,earthquake,",geoserve,origin,phase-data,",-360.0,1539345195860,https://earthquake.usgs.gov/earthquakes/eventpage/nm60242406 +,,2018285005,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018285005&format=geojson,1.0745,,201.0,",pr2018285005,us1000haz5,",2.84,md,,pr,10.0,"46km ESE of Boca de Yuma, Dominican Republic",0.52,124,",pr,us,",reviewed,1539325645170,"M 2.8 - 46km ESE of Boca de Yuma, Dominican Republic",0,earthquake,",geoserve,origin,phase-data,",-300.0,1539508173040,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018285005 +,,1000hayg,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000hayg&format=geojson,0.159,,92.0,",us1000hayg,",2.3,mb_lg,,us,,"22km WSW of Medford, Oklahoma",0.13,81,",us,",reviewed,1539325475280,"M 2.3 - 22km WSW of Medford, Oklahoma",0,earthquake,",geoserve,origin,phase-data,",-360.0,1539325789040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000hayg +,,37386954,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37386954&format=geojson,0.02234,,129.0,",ci37386954,",0.16,ml,,ci,11.0,"7km NNE of Little Lake, CA",0.06,0,",ci,",reviewed,1539325445640,"M 0.2 - 7km NNE of Little Lake, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539361433179,https://earthquake.usgs.gov/earthquakes/eventpage/ci37386954 +,,20278574,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20278574&format=geojson,,,,",ak20278574,",1.9,ml,,ak,,"67km NNE of Redoubt Volcano, Alaska",0.65,56,",ak,",automatic,1539325247213,"M 1.9 - 67km NNE of Redoubt Volcano, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539325549941,https://earthquake.usgs.gov/earthquakes/eventpage/ak20278574 +,,2018285006,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018285006&format=geojson,0.6507,,280.0,",pr2018285006,us1000hazi,",3.0,md,,pr,14.0,"71km NNE of Punta Cana, Dominican Republic",0.36,138,",pr,us,",reviewed,1539325040990,"M 3.0 - 71km NNE of Punta Cana, Dominican Republic",0,earthquake,",geoserve,origin,phase-data,",-300.0,1539508096040,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018285006 +,,70806704,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70806704&format=geojson,0.06106,,142.0,",av70806704,",-0.42,ml,,av,4.0,"21km W of Dutch Harbor, Alaska",0.03,0,",av,",reviewed,1539324945890,"M -0.4 - 21km W of Dutch Harbor, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539373655990,https://earthquake.usgs.gov/earthquakes/eventpage/av70806704 +,,37386946,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37386946&format=geojson,0.02152,,70.0,",ci37386946,",0.21,ml,,ci,26.0,"8km NE of Aguanga, CA",0.1,1,",ci,",reviewed,1539324233640,"M 0.2 - 8km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539357295827,https://earthquake.usgs.gov/earthquakes/eventpage/ci37386946 +,,70806699,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70806699&format=geojson,0.0593,,158.0,",av70806699,",-0.12,ml,,av,3.0,"21km W of Dutch Harbor, Alaska",0.03,0,",av,",reviewed,1539324054450,"M -0.1 - 21km W of Dutch Harbor, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539373692660,https://earthquake.usgs.gov/earthquakes/eventpage/av70806699 +,,73096286,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096286&format=geojson,0.00704,,68.0,",nc73096286,",0.11,md,,nc,11.0,"6km W of Mammoth Lakes, CA",0.01,0,",nc,",reviewed,1539323831900,"M 0.1 - 6km W of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539368285770,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096286 +,,2018285004,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018285004&format=geojson,1.8301,,348.0,",pr2018285004,us1000haz4,",2.88,md,,pr,7.0,"74km NE of Road Town, British Virgin Islands",0.5,128,",pr,us,",reviewed,1539323477010,"M 2.9 - 74km NE of Road Town, British Virgin Islands",0,earthquake,",geoserve,origin,phase-data,",-240.0,1539508018040,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018285004 +,,1000hayd,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000hayd&format=geojson,3.728,,74.0,",us1000hayd,",4.5,mb,,us,,"288km NNE of Ndoi Island, Fiji",0.66,312,",us,",reviewed,1539323205720,"M 4.5 - 288km NNE of Ndoi Island, Fiji",0,earthquake,",geoserve,origin,phase-data,",-720.0,1539324170040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000hayd +,,20278565,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20278565&format=geojson,,,,",ak20278565,",1.5,ml,,ak,,"29km ESE of Y, Alaska",0.34,35,",ak,",automatic,1539323049678,"M 1.5 - 29km ESE of Y, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539323314439,https://earthquake.usgs.gov/earthquakes/eventpage/ak20278565 +,,20278562,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20278562&format=geojson,,,,",ak20278562,",2.2,ml,,ak,,"42km S of Kaktovik, Alaska",0.82,74,",ak,",automatic,1539322851526,"M 2.2 - 42km S of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539323314159,https://earthquake.usgs.gov/earthquakes/eventpage/ak20278562 +,,2018285003,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018285003&format=geojson,0.6156,,279.0,",pr2018285003,us1000haz3,",2.83,md,,pr,14.0,"54km NNE of Isabela, Puerto Rico",0.39,123,",pr,us,",reviewed,1539322704550,"M 2.8 - 54km NNE of Isabela, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1539507781040,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018285003 +,,37386922,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37386922&format=geojson,0.09233,,45.0,",ci37386922,",1.08,ml,,ci,33.0,"10km S of Tehachapi, CA",0.12,18,",ci,",reviewed,1539322472300,"M 1.1 - 10km S of Tehachapi, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539356841176,https://earthquake.usgs.gov/earthquakes/eventpage/ci37386922 +,,20278559,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20278559&format=geojson,,,,",ak20278559,",1.1,ml,,ak,,"152km WNW of Haines Junction, Canada",0.55,19,",ak,",automatic,1539322424868,"M 1.1 - 152km WNW of Haines Junction, Canada",0,earthquake,",geoserve,origin,",-480.0,1539322660561,https://earthquake.usgs.gov/earthquakes/eventpage/ak20278559 +,,20278271,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20278271&format=geojson,,,,",ak20278271,us1000hay5,",3.0,ml,,ak,,"49km NNE of Yakutat, Alaska",0.7,138,",ak,us,",automatic,1539322097923,"M 3.0 - 49km NNE of Yakutat, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539324392040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20278271 +,,61796121,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61796121&format=geojson,0.001963,,182.0,",av61796121,",0.46,ml,,av,5.0,"43km WSW of Tanaga Volcano, Alaska",0.23,3,",av,",reviewed,1539321910100,"M 0.5 - 43km WSW of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539373116700,https://earthquake.usgs.gov/earthquakes/eventpage/av61796121 +,,73096276,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096276&format=geojson,0.02214,,128.0,",nc73096276,",0.52,md,,nc,9.0,"4km NNW of Pinnacles, CA",0.03,4,",nc,",reviewed,1539321609140,"M 0.5 - 4km NNW of Pinnacles, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539385233663,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096276 +,3.1,73096271,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096271&format=geojson,0.04978,1.0,117.0,",nc73096271,",1.47,md,,nc,13.0,"11km SSE of Portola Valley, CA",0.12,34,",nc,",reviewed,1539320954760,"M 1.5 - 11km SSE of Portola Valley, CA",0,earthquake,",dyfi,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539386522777,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096271 +,,37386906,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37386906&format=geojson,0.001573,,50.0,",ci37386906,",1.73,ml,,ci,30.0,"16km NE of Little Lake, CA",0.15,46,",ci,",reviewed,1539320772110,"M 1.7 - 16km NE of Little Lake, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539356492800,https://earthquake.usgs.gov/earthquakes/eventpage/ci37386906 +,,37386898,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37386898&format=geojson,0.004649,,64.0,",ci37386898,",1.43,ml,,ci,24.0,"16km NE of Little Lake, CA",0.21,31,",ci,",reviewed,1539320726140,"M 1.4 - 16km NE of Little Lake, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539355872029,https://earthquake.usgs.gov/earthquakes/eventpage/ci37386898 +,,70646487,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70646487&format=geojson,0.007759,,39.0,",hv70646487,",1.74,ml,,hv,22.0,"5km SW of Volcano, Hawaii",0.14,47,",hv,",automatic,1539320594280,"M 1.7 - 5km SW of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539321042460,https://earthquake.usgs.gov/earthquakes/eventpage/hv70646487 +,,20278266,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20278266&format=geojson,,,,",ak20278266,",1.9,ml,,ak,,"57km S of Kaktovik, Alaska",1.07,56,",ak,",automatic,1539320561178,"M 1.9 - 57km S of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539320799608,https://earthquake.usgs.gov/earthquakes/eventpage/ak20278266 +,,70646477,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70646477&format=geojson,0.02639,,154.0,",hv70646477,us1000haxw,",2.43,ml,,hv,59.0,"6km E of Pahala, Hawaii",0.12,91,",hv,us,",reviewed,1539320214020,"M 2.4 - 6km E of Pahala, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539375729990,https://earthquake.usgs.gov/earthquakes/eventpage/hv70646477 +,,1000haxx,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000haxx&format=geojson,3.206,,70.0,",us1000haxx,",4.5,mb,,us,,"4km NNW of Aratoca, Colombia",1.08,312,",us,",reviewed,1539320211390,"M 4.5 - 4km NNW of Aratoca, Colombia",0,earthquake,",geoserve,origin,phase-data,",-300.0,1539321414040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000haxx +,,37386778,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37386778&format=geojson,0.1755,,47.0,",ci37386778,",1.43,ml,,ci,30.0,"18km NW of Grapevine, CA",0.21,31,",ci,",reviewed,1539320151590,"M 1.4 - 18km NW of Grapevine, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539355464435,https://earthquake.usgs.gov/earthquakes/eventpage/ci37386778 +,,60242401,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nm60242401&format=geojson,0.03191,,66.0,",nm60242401,",1.38,md,,nm,11.0,"3km E of Ridgely, Tennessee",0.04,29,",nm,",reviewed,1539319489670,"M 1.4 - 3km E of Ridgely, Tennessee",0,earthquake,",geoserve,origin,phase-data,",-360.0,1539345790600,https://earthquake.usgs.gov/earthquakes/eventpage/nm60242401 +,,73096261,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096261&format=geojson,0.006144,,69.0,",nc73096261,",0.0,md,,nc,11.0,"5km W of Mammoth Lakes, CA",0.04,0,",nc,",reviewed,1539319473630,"M 0.0 - 5km W of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539365766537,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096261 +,,73096256,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096256&format=geojson,0.002819,,139.0,",nc73096256,",0.54,md,,nc,6.0,"5km NW of The Geysers, CA",0.01,4,",nc,",automatic,1539319443070,"M 0.5 - 5km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539322083178,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096256 +,,73096266,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096266&format=geojson,0.01875,,83.0,",nc73096266,",0.02,md,,nc,10.0,"7km W of Mammoth Lakes, CA",0.06,0,",nc,",reviewed,1539319420950,"M 0.0 - 7km W of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539361016490,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096266 +,,37386770,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37386770&format=geojson,0.00637,,183.0,",ci37386770,",0.18,ml,,ci,12.0,"9km NE of Aguanga, CA",0.08,0,",ci,",reviewed,1539319100600,"M 0.2 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539350663444,https://earthquake.usgs.gov/earthquakes/eventpage/ci37386770 +,,37386762,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37386762&format=geojson,0.1096,,127.0,",ci37386762,nn00660923,",0.91,ml,,ci,13.0,"6km WNW of Coso Junction, CA",0.11,13,",ci,nn,",reviewed,1539318674610,"M 0.9 - 6km WNW of Coso Junction, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539477487964,https://earthquake.usgs.gov/earthquakes/eventpage/ci37386762 +,,37386754,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37386754&format=geojson,0.009411,,43.0,",ci37386754,",0.5,ml,,ci,32.0,"9km NE of Aguanga, CA",0.1,4,",ci,",reviewed,1539318657110,"M 0.5 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539355036103,https://earthquake.usgs.gov/earthquakes/eventpage/ci37386754 +,,00660620,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660620&format=geojson,1.414,,138.87,",nn00660620,",1.6,ml,,nn,13.0,"67km ENE of Fallon, Nevada",0.18,39,",nn,",automatic,1539318417400,"M 1.6 - 67km ENE of Fallon, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539318575239,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660620 +,,80313739,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80313739&format=geojson,0.298,,113.0,",mb80313739,",1.35,ml,,mb,8.0,"2km NW of Manhattan, Montana",0.12,28,",mb,",reviewed,1539318301740,"M 1.4 - 2km NW of Manhattan, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539354537350,https://earthquake.usgs.gov/earthquakes/eventpage/mb80313739 +,,37198300,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37198300&format=geojson,0.02516,,37.0,",ci37198300,",0.55,ml,,ci,28.0,"9km NE of Aguanga, CA",0.14,5,",ci,",reviewed,1539318180430,"M 0.6 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539354701922,https://earthquake.usgs.gov/earthquakes/eventpage/ci37198300 +,,37386746,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37386746&format=geojson,0.02488,,35.0,",ci37386746,",0.44,ml,,ci,34.0,"9km NE of Aguanga, CA",0.14,3,",ci,",reviewed,1539318179270,"M 0.4 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539354351488,https://earthquake.usgs.gov/earthquakes/eventpage/ci37386746 +,4.1,1000haxq,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000haxq&format=geojson,2.168,59.0,97.0,",us1000haxq,",5.2,mww,,us,,"7km ESE of Asahi, Japan",1.6,440,",us,",reviewed,1539317747370,"M 5.2 - 7km ESE of Asahi, Japan",0,earthquake,",dyfi,geoserve,moment-tensor,origin,phase-data,",540.0,1539428158785,https://earthquake.usgs.gov/earthquakes/eventpage/us1000haxq +,,2018285002,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018285002&format=geojson,0.6876,,310.0,",pr2018285002,",2.37,md,,pr,8.0,"60km N of Hatillo, Puerto Rico",0.32,86,",pr,",reviewed,1539317738570,"M 2.4 - 60km N of Hatillo, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1539333790304,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018285002 +,2.2,37386738,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37386738&format=geojson,0.06407,1.0,69.0,",ci37386738,",1.11,ml,,ci,19.0,"13km NW of Ludlow, CA",0.15,19,",ci,",reviewed,1539317427650,"M 1.1 - 13km NW of Ludlow, CA",0,earthquake,",dyfi,geoserve,nearby-cities,origin,phase-data,",-480.0,1539353654515,https://earthquake.usgs.gov/earthquakes/eventpage/ci37386738 +,,00660922,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660922&format=geojson,0.264,,96.29,",nn00660922,",1.0,ml,,nn,7.0,"25km SSE of Yerington, Nevada",0.1699,15,",nn,",reviewed,1539317282797,"M 1.0 - 25km SSE of Yerington, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539477486732,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660922 +,,1000haxl,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000haxl&format=geojson,1.591,,55.0,",us1000haxl,",4.5,mb,,us,,"65km WNW of San Antonio de los Cobres, Argentina",1.15,312,",us,",reviewed,1539316696390,"M 4.5 - 65km WNW of San Antonio de los Cobres, Argentina",0,earthquake,",geoserve,origin,phase-data,",-180.0,1539317642040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000haxl +,,37386730,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37386730&format=geojson,0.04572,,78.0,",ci37386730,",0.77,ml,,ci,22.0,"8km S of Idyllwild, CA",0.18,9,",ci,",reviewed,1539316515290,"M 0.8 - 8km S of Idyllwild, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539350697342,https://earthquake.usgs.gov/earthquakes/eventpage/ci37386730 +,,61436976,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61436976&format=geojson,0.09391,,93.0,",uw61436976,",1.71,ml,,uw,14.0,"15km S of Estacada, Oregon",0.2,45,",uw,",reviewed,1539316127250,"M 1.7 - 15km S of Estacada, Oregon",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539317133990,https://earthquake.usgs.gov/earthquakes/eventpage/uw61436976 +,,73096251,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096251&format=geojson,0.3284,,347.0,",nn00660613,nc73096251,",1.56,md,,nc,9.0,"17km ENE of Lee Vining, CA",0.05,37,",nn,nc,",reviewed,1539316077600,"M 1.6 - 17km ENE of Lee Vining, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539370924024,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096251 +,,73096246,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096246&format=geojson,0.01023,,105.0,",nc73096246,",0.6,md,,nc,13.0,"10km ESE of Mammoth Lakes, CA",0.14,6,",nc,",reviewed,1539315734420,"M 0.6 - 10km ESE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539358642069,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096246 +,,73096241,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096241&format=geojson,0.008667,,115.0,",nc73096241,",0.36,md,,nc,9.0,"10km E of Mammoth Lakes, CA",0.08,2,",nc,",reviewed,1539315429270,"M 0.4 - 10km E of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539358370694,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096241 +,,37386714,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37386714&format=geojson,0.07907,,77.0,",ci37386714,",0.25,ml,,ci,17.0,"10km NE of Aguanga, CA",0.25,1,",ci,",reviewed,1539315284200,"M 0.3 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539350714018,https://earthquake.usgs.gov/earthquakes/eventpage/ci37386714 +,,73096236,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096236&format=geojson,0.01448,,80.0,",nc73096236,",0.5,md,,nc,10.0,"1km SE of The Geysers, CA",0.03,4,",nc,",automatic,1539314959970,"M 0.5 - 1km SE of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539315903573,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096236 +,,80313724,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80313724&format=geojson,0.309,,114.0,",mb80313724,",0.63,ml,,mb,6.0,"3km WNW of Manhattan, Montana",0.17,6,",mb,",reviewed,1539314943280,"M 0.6 - 3km WNW of Manhattan, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539355182390,https://earthquake.usgs.gov/earthquakes/eventpage/mb80313724 +,,37386706,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37386706&format=geojson,0.05947,,83.0,",ci37386706,",0.64,ml,,ci,23.0,"18km ESE of Anza, CA",0.14,6,",ci,",reviewed,1539314893800,"M 0.6 - 18km ESE of Anza, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539350716159,https://earthquake.usgs.gov/earthquakes/eventpage/ci37386706 +,,20278241,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20278241&format=geojson,,,,",ak20278241,",1.9,ml,,ak,,"54km NNE of Yakutat, Alaska",0.54,56,",ak,",automatic,1539314807963,"M 1.9 - 54km NNE of Yakutat, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539315195401,https://earthquake.usgs.gov/earthquakes/eventpage/ak20278241 +,,20278240,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20278240&format=geojson,,,,",ak20278240,",1.4,ml,,ak,,"43km SW of Anchorage, Alaska",0.97,30,",ak,",automatic,1539314757064,"M 1.4 - 43km SW of Anchorage, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539315397596,https://earthquake.usgs.gov/earthquakes/eventpage/ak20278240 +,,37386698,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37386698&format=geojson,0.006336,,32.0,",ci37386698,",0.83,ml,,ci,38.0,"10km NE of Aguanga, CA",0.15,11,",ci,",reviewed,1539314749890,"M 0.8 - 10km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1539350774460,https://earthquake.usgs.gov/earthquakes/eventpage/ci37386698 +,,20278238,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20278238&format=geojson,,,,",ak20278238,",1.7,ml,,ak,,"142km ESE of McGrath, Alaska",0.69,44,",ak,",automatic,1539314691725,"M 1.7 - 142km ESE of McGrath, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539315195691,https://earthquake.usgs.gov/earthquakes/eventpage/ak20278238 +,,20278236,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20278236&format=geojson,,,,",ak20278236,",2.0,ml,,ak,,"51km NNE of Yakutat, Alaska",0.61,62,",ak,",automatic,1539314572867,"M 2.0 - 51km NNE of Yakutat, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539314875675,https://earthquake.usgs.gov/earthquakes/eventpage/ak20278236 +,,73096231,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096231&format=geojson,0.01429,,97.0,",nc73096231,",-0.19,md,,nc,8.0,"10km E of Mammoth Lakes, CA",0.04,0,",nc,",reviewed,1539314254540,"M -0.2 - 10km E of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539358166399,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096231 +,,20278234,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20278234&format=geojson,,,,",ak20278234,",2.3,ml,,ak,,"108km NNW of Arctic Village, Alaska",1.06,81,",ak,",automatic,1539314195560,"M 2.3 - 108km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539314534400,https://earthquake.usgs.gov/earthquakes/eventpage/ak20278234 +,,37386682,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37386682&format=geojson,0.06155,,46.0,",ci37386682,",0.85,ml,,ci,40.0,"9km SSW of Idyllwild, CA",0.2,11,",ci,",reviewed,1539314028010,"M 0.9 - 9km SSW of Idyllwild, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539350735199,https://earthquake.usgs.gov/earthquakes/eventpage/ci37386682 +,,61436971,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61436971&format=geojson,0.04412,,110.0,",uw61436971,",1.5,ml,,uw,19.0,"22km SSE of Buckley, Washington",0.12,35,",uw,",reviewed,1539313895570,"M 1.5 - 22km SSE of Buckley, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539315008900,https://earthquake.usgs.gov/earthquakes/eventpage/uw61436971 +,,70806694,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70806694&format=geojson,0.02513,,94.0,",av70806694,",0.54,ml,,av,12.0,"9km W of Akutan, Alaska",0.24,4,",av,",reviewed,1539313146370,"M 0.5 - 9km W of Akutan, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539372859140,https://earthquake.usgs.gov/earthquakes/eventpage/av70806694 +,,37386674,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37386674&format=geojson,0.06116,,124.0,",ci37386674,",0.8,ml,,ci,24.0,"18km ESE of Anza, CA",0.17,10,",ci,",reviewed,1539312862040,"M 0.8 - 18km ESE of Anza, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539350753444,https://earthquake.usgs.gov/earthquakes/eventpage/ci37386674 +green,,1000hax9,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000hax9&format=geojson,2.356,,45.0,",us1000hax9,",5.6,mww,4.69,us,,"128km SE of Kimbe, Papua New Guinea",1.58,482,",us,",reviewed,1539312723620,"M 5.6 - 128km SE of Kimbe, Papua New Guinea",1,earthquake,",geoserve,losspager,moment-tensor,origin,phase-data,shakemap,",600.0,1539359431040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000hax9 +,,37386658,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37386658&format=geojson,0.02743,,37.0,",ci37386658,",1.32,ml,,ci,51.0,"8km NE of Aguanga, CA",0.18,27,",ci,",reviewed,1539312721100,"M 1.3 - 8km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1539350839430,https://earthquake.usgs.gov/earthquakes/eventpage/ci37386658 +,,37386650,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37386650&format=geojson,0.1014,,51.0,",ci37386650,",1.11,ml,,ci,29.0,"1km ENE of Colton, CA",0.25,19,",ci,",reviewed,1539312173030,"M 1.1 - 1km ENE of Colton, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539350769825,https://earthquake.usgs.gov/earthquakes/eventpage/ci37386650 +,,20277950,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20277950&format=geojson,,,,",ak20277950,",1.6,ml,,ak,,"84km ENE of Sutton-Alpine, Alaska",0.78,39,",ak,",automatic,1539311628163,"M 1.6 - 84km ENE of Sutton-Alpine, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539311893328,https://earthquake.usgs.gov/earthquakes/eventpage/ak20277950 +,,2018285001,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018285001&format=geojson,0.511,,263.0,",pr2018285001,",2.28,md,,pr,3.0,"9km NNE of Carrizales, Puerto Rico",0.11,80,",pr,",reviewed,1539311579450,"M 2.3 - 9km NNE of Carrizales, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1539327875370,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018285001 +,,20277947,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20277947&format=geojson,,,,",ak20277947,",1.7,ml,,ak,,"71km SW of Cantwell, Alaska",0.53,44,",ak,",automatic,1539310492624,"M 1.7 - 71km SW of Cantwell, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539310684018,https://earthquake.usgs.gov/earthquakes/eventpage/ak20277947 +,,61796021,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61796021&format=geojson,0.04315,,203.0,",av61796021,",1.31,ml,,av,14.0,"103km ESE of King Salmon, Alaska",0.1,26,",av,",reviewed,1539309826810,"M 1.3 - 103km ESE of King Salmon, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539372416080,https://earthquake.usgs.gov/earthquakes/eventpage/av61796021 +,,20277941,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20277941&format=geojson,,,,",ak20277941,",1.1,ml,,ak,,"90km WSW of Cantwell, Alaska",0.62,19,",ak,",automatic,1539309649682,"M 1.1 - 90km WSW of Cantwell, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539309839295,https://earthquake.usgs.gov/earthquakes/eventpage/ak20277941 +,3.3,1000hax0,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000hax0&format=geojson,0.291,5.0,70.0,",us1000hax0,",4.4,mwr,,us,,"44km WSW of Santa Cruz, Chile",0.65,299,",us,",reviewed,1539309532070,"M 4.4 - 44km WSW of Santa Cruz, Chile",0,earthquake,",dyfi,geoserve,moment-tensor,origin,phase-data,",-240.0,1539340973125,https://earthquake.usgs.gov/earthquakes/eventpage/us1000hax0 +,,20277937,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20277937&format=geojson,,,,",ak20277937,",1.8,ml,,ak,,"100km N of Arctic Village, Alaska",1.18,50,",ak,",automatic,1539308570929,"M 1.8 - 100km N of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539308803209,https://earthquake.usgs.gov/earthquakes/eventpage/ak20277937 +,,37386634,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37386634&format=geojson,0.04268,,48.0,",ci37386634,",1.59,ml,,ci,45.0,"12km SSE of Corona, CA",0.19,39,",ci,",reviewed,1539308558130,"M 1.6 - 12km SSE of Corona, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539350771951,https://earthquake.usgs.gov/earthquakes/eventpage/ci37386634 +,,70646257,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70646257&format=geojson,0.02167,,292.0,",hv70646257,",1.88,ml,,hv,7.0,"6km WNW of Volcano, Hawaii",0.32,54,",hv,",automatic,1539308516140,"M 1.9 - 6km WNW of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539308859990,https://earthquake.usgs.gov/earthquakes/eventpage/hv70646257 +,,70646252,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70646252&format=geojson,0.01897,,109.0,",hv70646252,",0.56,md,,hv,8.0,"27km E of Honaunau-Napoopoo, Hawaii",0.13,5,",hv,",reviewed,1539308486230,"M 0.6 - 27km E of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539395263620,https://earthquake.usgs.gov/earthquakes/eventpage/hv70646252 +,2.0,20277935,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20277935&format=geojson,,1.0,,",ak20277935,",2.7,ml,,ak,,"99km NNW of Arctic Village, Alaska",0.41,112,",ak,",reviewed,1539308190504,"M 2.7 - 99km NNW of Arctic Village, Alaska",0,earthquake,",dyfi,geoserve,origin,phase-data,",-540.0,1539367608648,https://earthquake.usgs.gov/earthquakes/eventpage/ak20277935 +,,00660600,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660600&format=geojson,0.274,,211.57,",nn00660600,",0.1,ml,,nn,9.0,"47km SE of Goldfield, Nevada",0.22,0,",nn,",automatic,1539308144830,"M 0.1 - 47km SE of Goldfield, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539308213979,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660600 +,,00660597,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660597&format=geojson,0.253,,283.83,",nn00660597,",1.0,ml,,nn,7.0,"30km SE of Alamo, Nevada",0.18,15,",nn,",automatic,1539307760870,"M 1.0 - 30km SE of Alamo, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539307954159,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660597 +,,37386626,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37386626&format=geojson,0.007408,,43.0,",ci37386626,",0.24,ml,,ci,26.0,"10km NE of Aguanga, CA",0.14,1,",ci,",reviewed,1539307721270,"M 0.2 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539360856172,https://earthquake.usgs.gov/earthquakes/eventpage/ci37386626 +,,20277815,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20277815&format=geojson,,,,",ak20277815,",1.7,ml,,ak,,"93km NNW of Arctic Village, Alaska",0.75,44,",ak,",automatic,1539307379560,"M 1.7 - 93km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539307824205,https://earthquake.usgs.gov/earthquakes/eventpage/ak20277815 +,,70806689,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70806689&format=geojson,0.03705,,178.0,",av70806689,",0.1,ml,,av,6.0,"101km ESE of King Salmon, Alaska",0.2,0,",av,",reviewed,1539307272070,"M 0.1 - 101km ESE of King Salmon, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539371717320,https://earthquake.usgs.gov/earthquakes/eventpage/av70806689 +,,37386618,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37386618&format=geojson,0.07929,,95.0,",ci37386618,",0.27,ml,,ci,15.0,"10km NE of Aguanga, CA",0.21,1,",ci,",reviewed,1539307236770,"M 0.3 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539350775374,https://earthquake.usgs.gov/earthquakes/eventpage/ci37386618 +,,70646232,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70646232&format=geojson,0.01011,,41.0,",hv70646232,",1.79,ml,,hv,24.0,"4km WSW of Volcano, Hawaii",0.15,49,",hv,",automatic,1539307181330,"M 1.8 - 4km WSW of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539307524260,https://earthquake.usgs.gov/earthquakes/eventpage/hv70646232 +,,20277814,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20277814&format=geojson,,,,",ak20277814,",1.9,ml,,ak,,"110km N of Larsen Bay, Alaska",0.69,56,",ak,",automatic,1539306450977,"M 1.9 - 110km N of Larsen Bay, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539306661925,https://earthquake.usgs.gov/earthquakes/eventpage/ak20277814 +,,37386602,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37386602&format=geojson,0.00506,,41.0,",ci37386602,",0.19,ml,,ci,25.0,"10km NE of Aguanga, CA",0.14,1,",ci,",reviewed,1539306076540,"M 0.2 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539360400994,https://earthquake.usgs.gov/earthquakes/eventpage/ci37386602 +,,73096226,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096226&format=geojson,0.003992,,114.0,",nc73096226,",0.9,md,,nc,12.0,"6km ENE of Alum Rock, CA",0.08,12,",nc,",reviewed,1539305452210,"M 0.9 - 6km ENE of Alum Rock, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539311166093,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096226 +,,00660610,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660610&format=geojson,0.336,,213.28,",nn00660610,",1.1,ml,,nn,5.0,"36km NE of Fernley, Nevada",0.1135,19,",nn,",reviewed,1539305309765,"M 1.1 - 36km NE of Fernley, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539314778464,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660610 +,,61436951,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61436951&format=geojson,0.1429,,125.0,",uw61436951,",1.57,ml,,uw,29.0,"20km E of Morton, Washington",0.18,38,",uw,",reviewed,1539305153700,"M 1.6 - 20km E of Morton, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539307146890,https://earthquake.usgs.gov/earthquakes/eventpage/uw61436951 +,,20277535,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20277535&format=geojson,,,,",ak20277535,av61795981,",2.0,ml,,ak,,"102km ESE of King Salmon, Alaska",1.13,62,",ak,av,",automatic,1539305033160,"M 2.0 - 102km ESE of King Salmon, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539371498540,https://earthquake.usgs.gov/earthquakes/eventpage/ak20277535 +,,37386586,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37386586&format=geojson,0.0141,,118.0,",ci37386586,",0.41,ml,,ci,11.0,"15km NE of Little Lake, CA",0.1,3,",ci,",reviewed,1539304937230,"M 0.4 - 15km NE of Little Lake, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539361280511,https://earthquake.usgs.gov/earthquakes/eventpage/ci37386586 +,,73096221,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096221&format=geojson,0.005037,,82.0,",nc73096221,",0.26,md,,nc,11.0,"5km WNW of Cobb, CA",0.03,1,",nc,",reviewed,1539304883410,"M 0.3 - 5km WNW of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539308943854,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096221 +,,1000haw8,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000haw8&format=geojson,3.059,,63.0,",us1000haw8,",4.4,mb,,us,,"40km W of Pylos, Greece",1.01,298,",us,",reviewed,1539304652160,"M 4.4 - 40km W of Pylos, Greece",0,earthquake,",geoserve,origin,phase-data,",60.0,1539305529040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000haw8 +,,20277533,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20277533&format=geojson,,,,",ak20277533,",0.4,ml,,ak,,"87km WSW of Healy, Alaska",0.43,2,",ak,",reviewed,1539304449272,"M 0.4 - 87km WSW of Healy, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539306362348,https://earthquake.usgs.gov/earthquakes/eventpage/ak20277533 +,,00660920,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660920&format=geojson,0.122,,277.73,",nn00660920,",-0.5,ml,,nn,7.0,"70km W of Alamo, Nevada",0.0772,0,",nn,",reviewed,1539304267935,"M -0.5 - 70km W of Alamo, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539477115860,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660920 +,,1000haw7,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000haw7&format=geojson,1.605,,132.0,",us1000haw7,",2.9,ml,,us,,"66km S of Kaktovik, Alaska",1.05,129,",us,",reviewed,1539304067600,"M 2.9 - 66km S of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539306291040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000haw7 +,,37386578,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37386578&format=geojson,0.1121,,78.0,",ci37386578,",0.84,ml,,ci,25.0,"1km WNW of Lake Henshaw, CA",0.21,11,",ci,",reviewed,1539303769340,"M 0.8 - 1km WNW of Lake Henshaw, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539350790104,https://earthquake.usgs.gov/earthquakes/eventpage/ci37386578 +,,2018285000,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018285000&format=geojson,0.0251,,220.0,",pr2018285000,",1.46,md,,pr,3.0,"2km W of Coto Laurel, Puerto Rico",0.07,33,",pr,",reviewed,1539303580580,"M 1.5 - 2km W of Coto Laurel, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1539325094995,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018285000 +,2.7,1000haw5,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000haw5&format=geojson,1.186,2.0,64.0,",us1000haw5,",4.5,mwr,,us,,"14km E of Tomakomai, Japan",0.81,312,",us,",reviewed,1539303265990,"M 4.5 - 14km E of Tomakomai, Japan",0,earthquake,",dyfi,geoserve,moment-tensor,origin,phase-data,",540.0,1539311606738,https://earthquake.usgs.gov/earthquakes/eventpage/us1000haw5 +,,20277526,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20277526&format=geojson,,,,",ak20277526,",1.6,ml,,ak,,"43km WNW of Willow, Alaska",0.73,39,",ak,",automatic,1539302612151,"M 1.6 - 43km WNW of Willow, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539302846312,https://earthquake.usgs.gov/earthquakes/eventpage/ak20277526 +,,20277522,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20277522&format=geojson,,,,",ak20277522,",1.3,ml,,ak,,"8km ESE of Willow, Alaska",0.81,26,",ak,",automatic,1539301366479,"M 1.3 - 8km ESE of Willow, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539301577061,https://earthquake.usgs.gov/earthquakes/eventpage/ak20277522 +,,73096216,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096216&format=geojson,0.01963,,64.0,",nc73096216,",1.24,md,,nc,27.0,"10km ENE of Milpitas, CA",0.06,24,",nc,",reviewed,1539301044800,"M 1.2 - 10km ENE of Milpitas, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539314163398,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096216 +,,37386442,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37386442&format=geojson,0.02661,,98.0,",ci37386442,",0.49,ml,,ci,20.0,"8km NE of Aguanga, CA",0.15,4,",ci,",reviewed,1539300975190,"M 0.5 - 8km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539301466388,https://earthquake.usgs.gov/earthquakes/eventpage/ci37386442 +,,37386426,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37386426&format=geojson,0.02595,,213.0,",ci37386426,",0.19,ml,,ci,14.0,"9km NE of Aguanga, CA",0.06,1,",ci,",reviewed,1539300388650,"M 0.2 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539301374225,https://earthquake.usgs.gov/earthquakes/eventpage/ci37386426 +,,37386418,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37386418&format=geojson,0.02336,,33.0,",ci37386418,",0.92,ml,,ci,34.0,"8km NE of Aguanga, CA",0.16,13,",ci,",reviewed,1539300328790,"M 0.9 - 8km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1539300986350,https://earthquake.usgs.gov/earthquakes/eventpage/ci37386418 +,,73096211,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096211&format=geojson,0.02494,,69.0,",nc73096211,",0.59,md,,nc,15.0,"4km E of Mammoth Lakes, CA",0.05,5,",nc,",reviewed,1539300027680,"M 0.6 - 4km E of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539306904653,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096211 +,,37386258,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37386258&format=geojson,0.1125,,67.0,",ci37386258,",1.01,ml,,ci,19.0,"10km ESE of Tehachapi, CA",0.17,16,",ci,",reviewed,1539300017380,"M 1.0 - 10km ESE of Tehachapi, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539301603714,https://earthquake.usgs.gov/earthquakes/eventpage/ci37386258 +,,37386106,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37386106&format=geojson,0.09874,,61.0,",ci37386106,",1.04,ml,,ci,31.0,"3km N of Colton, CA",0.14,17,",ci,",reviewed,1539298920350,"M 1.0 - 3km N of Colton, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539300629961,https://earthquake.usgs.gov/earthquakes/eventpage/ci37386106 +,2.2,73096206,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096206&format=geojson,0.0109,1.0,50.0,",nc73096206,",2.0,md,,nc,49.0,"3km SW of Anderson Springs, CA",0.07,62,",nc,",reviewed,1539298859970,"M 2.0 - 3km SW of Anderson Springs, CA",0,earthquake,",dyfi,focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539310203989,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096206 +,,73096201,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096201&format=geojson,0.02391,,208.0,",nc73096201,",0.49,md,,nc,20.0,"10km W of The Geysers, CA",0.03,4,",nc,",reviewed,1539298630060,"M 0.5 - 10km W of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539301335753,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096201 +,,20277513,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20277513&format=geojson,,,,",ak20277513,",1.3,ml,,ak,,"41km ENE of Healy, Alaska",0.79,26,",ak,",automatic,1539297376076,"M 1.3 - 41km ENE of Healy, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539297756962,https://earthquake.usgs.gov/earthquakes/eventpage/ak20277513 +,,80313604,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80313604&format=geojson,0.102,,135.0,",mb80313604,",1.15,ml,,mb,11.0,"13km E of Lincoln, Montana",0.21,20,",mb,",reviewed,1539297192630,"M 1.2 - 13km E of Lincoln, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539354814010,https://earthquake.usgs.gov/earthquakes/eventpage/mb80313604 +,,20277510,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20277510&format=geojson,,,,",ak20277510,",1.6,ml,,ak,,"22km NNE of Anchor Point, Alaska",0.56,39,",ak,",automatic,1539296795325,"M 1.6 - 22km NNE of Anchor Point, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539297032668,https://earthquake.usgs.gov/earthquakes/eventpage/ak20277510 +,,20277509,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20277509&format=geojson,,,,",ak20277509,",0.7,ml,,ak,,"24km E of Y, Alaska",0.54,8,",ak,",reviewed,1539296725000,"M 0.7 - 24km E of Y, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539302611416,https://earthquake.usgs.gov/earthquakes/eventpage/ak20277509 +,,37385946,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37385946&format=geojson,0.1222,,134.0,",ci37385946,",1.24,ml,,ci,21.0,"24km NNW of Tehachapi, CA",0.12,24,",ci,",reviewed,1539296505850,"M 1.2 - 24km NNW of Tehachapi, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539300234436,https://earthquake.usgs.gov/earthquakes/eventpage/ci37385946 +,,20277508,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20277508&format=geojson,,,,",ak20277508,",2.2,ml,,ak,,"100km NNW of Arctic Village, Alaska",0.72,74,",ak,",automatic,1539296266188,"M 2.2 - 100km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539296510942,https://earthquake.usgs.gov/earthquakes/eventpage/ak20277508 +,,00660591,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660591&format=geojson,0.126,,62.84,",nn00660591,",1.6,ml,,nn,17.0,"28km SW of Hawthorne, Nevada",0.1931,39,",nn,",reviewed,1539296213088,"M 1.6 - 28km SW of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539313856968,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660591 +,,00660587,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660587&format=geojson,0.652,,160.83,",nn00660587,",1.5,ml,,nn,11.0,"73km NNE of Tonopah, Nevada",0.2847,35,",nn,",reviewed,1539296050591,"M 1.5 Explosion - 73km NNE of Tonopah, Nevada",0,explosion,",geoserve,origin,phase-data,",-480.0,1539314964364,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660587 +,,20277506,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20277506&format=geojson,,,,",ak20277506,",1.1,ml,,ak,,"103km W of Cantwell, Alaska",0.31,19,",ak,",automatic,1539295799238,"M 1.1 - 103km W of Cantwell, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539296051739,https://earthquake.usgs.gov/earthquakes/eventpage/ak20277506 +,,60242391,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nm60242391&format=geojson,0.04466,,46.0,",nm60242391,",1.35,md,,nm,19.0,"4km S of Lilbourn, Missouri",0.06,28,",nm,",reviewed,1539295503630,"M 1.4 - 4km S of Lilbourn, Missouri",0,earthquake,",geoserve,origin,phase-data,",-360.0,1539346225910,https://earthquake.usgs.gov/earthquakes/eventpage/nm60242391 +,,70645922,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70645922&format=geojson,0.01745,,101.0,",hv70645922,",1.4,md,,hv,14.0,"26km E of Honaunau-Napoopoo, Hawaii",0.11,30,",hv,",reviewed,1539295260780,"M 1.4 - 26km E of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539400719000,https://earthquake.usgs.gov/earthquakes/eventpage/hv70645922 +,,70645917,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70645917&format=geojson,0.03431,,56.0,",hv70645917,",2.2,ml,,hv,28.0,"22km ENE of Honaunau-Napoopoo, Hawaii",0.12,74,",hv,",reviewed,1539295135230,"M 2.2 - 22km ENE of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539300357050,https://earthquake.usgs.gov/earthquakes/eventpage/hv70645917 +,,37385826,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37385826&format=geojson,0.06425,,106.0,",ci37385826,",0.87,ml,,ci,23.0,"18km ESE of Anza, CA",0.12,12,",ci,",reviewed,1539295077110,"M 0.9 - 18km ESE of Anza, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539296418426,https://earthquake.usgs.gov/earthquakes/eventpage/ci37385826 +,,37198156,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37198156&format=geojson,0.02287,,110.0,",ci37198156,",0.34,ml,,ci,9.0,"7km NE of Aguanga, CA",0.22,2,",ci,",reviewed,1539295077020,"M 0.3 - 7km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539296340308,https://earthquake.usgs.gov/earthquakes/eventpage/ci37198156 +,,20277505,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20277505&format=geojson,,,,",ak20277505,",1.1,ml,,ak,,"101km NW of Talkeetna, Alaska",0.74,19,",ak,",automatic,1539294725336,"M 1.1 - 101km NW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539294919372,https://earthquake.usgs.gov/earthquakes/eventpage/ak20277505 +,,60300477,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60300477&format=geojson,0.02267,,198.0,",uu60300477,",1.8,md,,uu,9.0,"18km SSE of East Carbon City, Utah",0.06,50,",uu,",reviewed,1539294636290,"M 1.8 - 18km SSE of East Carbon City, Utah",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539366014630,https://earthquake.usgs.gov/earthquakes/eventpage/uu60300477 +,3.8,61436896,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61436896&format=geojson,0.2854,1.0,177.0,",uw61436896,",1.94,ml,,uw,12.0,"3km SE of Umatilla, Oregon",0.15,58,",uw,",reviewed,1539294509300,"M 1.9 - 3km SE of Umatilla, Oregon",0,earthquake,",dyfi,geoserve,origin,phase-data,",-480.0,1539371211337,https://earthquake.usgs.gov/earthquakes/eventpage/uw61436896 +,,70806669,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70806669&format=geojson,0.03409,,285.0,",av70806669,",-0.08,ml,,av,5.0,"48km ENE of Adak, Alaska",0.13,0,",av,",reviewed,1539294388120,"M -0.1 - 48km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539299075680,https://earthquake.usgs.gov/earthquakes/eventpage/av70806669 +,,20277504,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20277504&format=geojson,,,,",ak20277504,",0.9,ml,,ak,,"102km W of Cantwell, Alaska",0.49,12,",ak,",automatic,1539294373382,"M 0.9 - 102km W of Cantwell, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539294556568,https://earthquake.usgs.gov/earthquakes/eventpage/ak20277504 +,,70645887,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70645887&format=geojson,0.01059,,46.0,",hv70645887,",1.71,ml,,hv,19.0,"4km WSW of Volcano, Hawaii",0.15,45,",hv,",automatic,1539294344430,"M 1.7 - 4km WSW of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539294684980,https://earthquake.usgs.gov/earthquakes/eventpage/hv70645887 +,,70645882,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70645882&format=geojson,0.01068,,45.0,",hv70645882,",1.67,ml,,hv,22.0,"4km WSW of Volcano, Hawaii",0.08,43,",hv,",reviewed,1539294344290,"M 1.7 - 4km WSW of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539296117800,https://earthquake.usgs.gov/earthquakes/eventpage/hv70645882 +,,37385794,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37385794&format=geojson,0.06631,,62.0,",ci37385794,",1.29,ml,,ci,40.0,"8km N of Banning, CA",0.21,26,",ci,",reviewed,1539293968740,"M 1.3 - 8km N of Banning, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1539295791230,https://earthquake.usgs.gov/earthquakes/eventpage/ci37385794 +,,73096186,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096186&format=geojson,0.07669,,299.0,",nc73096186,",0.66,md,,nc,10.0,"15km W of Toms Place, CA",0.03,7,",nc,",reviewed,1539291672940,"M 0.7 - 15km W of Toms Place, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539294604173,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096186 +,,37385538,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37385538&format=geojson,0.02273,,31.0,",ci37385538,",1.02,ml,,ci,43.0,"8km NE of Aguanga, CA",0.17,16,",ci,",reviewed,1539291027110,"M 1.0 - 8km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1539295730930,https://earthquake.usgs.gov/earthquakes/eventpage/ci37385538 +,,20277498,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20277498&format=geojson,,,,",ak20277498,",1.0,ml,,ak,,"17km NNW of North Nenana, Alaska",0.24,15,",ak,",automatic,1539290975297,"M 1.0 - 17km NNW of North Nenana, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539291281463,https://earthquake.usgs.gov/earthquakes/eventpage/ak20277498 +,,20277497,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20277497&format=geojson,,,,",ak20277497,",1.7,ml,,ak,,"24km NNE of Sterling, Alaska",0.42,44,",ak,",automatic,1539290075503,"M 1.7 - 24km NNE of Sterling, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539290268489,https://earthquake.usgs.gov/earthquakes/eventpage/ak20277497 +,,2018284008,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018284008&format=geojson,0.1311,,102.0,",pr2018284008,",2.28,md,,pr,7.0,"3km NNE of Espino, Puerto Rico",0.19,80,",pr,",reviewed,1539288891850,"M 2.3 - 3km NNE of Espino, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1539295734201,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018284008 +,2.0,73096181,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096181&format=geojson,0.05334,2.0,47.0,",nc73096181,",2.22,md,,nc,55.0,"2km ENE of Pinnacles, CA",0.06,76,",nc,",reviewed,1539288559040,"M 2.2 - 2km ENE of Pinnacles, CA",0,earthquake,",dyfi,focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539299583925,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096181 +,,70806659,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70806659&format=geojson,0.04421,,236.0,",av70806659,",-0.14,ml,,av,4.0,"93km SE of King Salmon, Alaska",0.04,0,",av,",reviewed,1539288280320,"M -0.1 - 93km SE of King Salmon, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539297321810,https://earthquake.usgs.gov/earthquakes/eventpage/av70806659 +,,73096176,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096176&format=geojson,0.01408,,184.0,",nc73096176,",0.97,md,,nc,8.0,"4km SSE of The Geysers, CA",0.01,14,",nc,",automatic,1539288027950,"M 1.0 - 4km SSE of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539288963634,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096176 +,,20277217,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20277217&format=geojson,,,,",ak20277217,",1.2,ml,,ak,,"60km NE of Healy, Alaska",0.57,22,",ak,",automatic,1539287602747,"M 1.2 - 60km NE of Healy, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539288079603,https://earthquake.usgs.gov/earthquakes/eventpage/ak20277217 +,,20277214,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20277214&format=geojson,,,,",ak20277214,",2.6,ml,,ak,,"111km NNW of Arctic Village, Alaska",1.06,104,",ak,",automatic,1539287386683,"M 2.6 - 111km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539287696440,https://earthquake.usgs.gov/earthquakes/eventpage/ak20277214 +,,37198148,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37198148&format=geojson,0.01821,,100.0,",ci37198148,",0.11,ml,,ci,21.0,"8km NE of Aguanga, CA",0.09,0,",ci,",reviewed,1539287194350,"M 0.1 - 8km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539290910093,https://earthquake.usgs.gov/earthquakes/eventpage/ci37198148 +,,37385346,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37385346&format=geojson,0.00195,,36.0,",ci37385346,",0.64,ml,,ci,37.0,"10km NE of Aguanga, CA",0.13,6,",ci,",reviewed,1539287159130,"M 0.6 - 10km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1539289649570,https://earthquake.usgs.gov/earthquakes/eventpage/ci37385346 +,,37385354,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37385354&format=geojson,0.1913,,88.0,",ci37385354,",1.71,ml,,ci,21.0,"16km NNE of Apple Valley, CA",0.16,45,",ci,",reviewed,1539286962270,"M 1.7 Quarry Blast - 16km NNE of Apple Valley, CA",0,quarry blast,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539289411656,https://earthquake.usgs.gov/earthquakes/eventpage/ci37385354 +,,20277207,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20277207&format=geojson,,,,",ak20277207,",1.8,ml,,ak,,"11km S of Talkeetna, Alaska",0.8,50,",ak,",automatic,1539286352287,"M 1.8 - 11km S of Talkeetna, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539287131634,https://earthquake.usgs.gov/earthquakes/eventpage/ak20277207 +,2.7,73096171,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096171&format=geojson,0.01023,1.0,67.0,",nc73096171,",1.37,md,,nc,40.0,"2km ESE of The Geysers, CA",0.08,29,",nc,",reviewed,1539286134040,"M 1.4 - 2km ESE of The Geysers, CA",0,earthquake,",dyfi,focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539315842567,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096171 +,,20277202,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20277202&format=geojson,,,,",ak20277202,",1.2,ml,,ak,,"22km SSW of Healy, Alaska",0.48,22,",ak,",automatic,1539285782104,"M 1.2 - 22km SSW of Healy, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539286170430,https://earthquake.usgs.gov/earthquakes/eventpage/ak20277202 +,,73096166,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096166&format=geojson,0.007997,,69.0,",nc73096166,",0.92,md,,nc,12.0,"9km NW of The Geysers, CA",0.06,13,",nc,",automatic,1539285259940,"M 0.9 - 9km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539286204375,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096166 +,,37385210,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37385210&format=geojson,0.1551,,116.0,",ci37385210,",2.02,ml,,ci,25.0,"20km SSE of Progreso, B.C., MX",0.29,63,",ci,",reviewed,1539284827940,"M 2.0 - 20km SSE of Progreso, B.C., MX",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539289001806,https://earthquake.usgs.gov/earthquakes/eventpage/ci37385210 +,,70806654,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70806654&format=geojson,0.02795,,111.0,",av70806654,",-0.35,ml,,av,5.0,"43km ENE of Adak, Alaska",0.11,0,",av,",reviewed,1539284671270,"M -0.4 - 43km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539295361310,https://earthquake.usgs.gov/earthquakes/eventpage/av70806654 +,,73096156,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096156&format=geojson,0.05332,,141.0,",nc73096156,",1.15,md,,nc,18.0,"6km ESE of Santa Venetia, CA",0.09,20,",nc,",reviewed,1539283842630,"M 1.2 Quarry Blast - 6km ESE of Santa Venetia, CA",0,quarry blast,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539296315516,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096156 +,,37385194,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37385194&format=geojson,0.01995,,76.0,",ci37385194,",1.4,ml,,ci,21.0,"12km N of Cabazon, CA",0.11,30,",ci,",reviewed,1539283130320,"M 1.4 - 12km N of Cabazon, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539289047470,https://earthquake.usgs.gov/earthquakes/eventpage/ci37385194 +,,70645592,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70645592&format=geojson,0.01447,,124.0,",hv70645592,",1.71,ml,,hv,9.0,"4km SSW of Volcano, Hawaii",0.22,45,",hv,",automatic,1539282940160,"M 1.7 - 4km SSW of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539283287750,https://earthquake.usgs.gov/earthquakes/eventpage/hv70645592 +,,70645587,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70645587&format=geojson,0.004263,,63.0,",hv70645587,",1.71,ml,,hv,16.0,"5km SW of Volcano, Hawaii",0.17,45,",hv,",automatic,1539282939340,"M 1.7 - 5km SW of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539283279720,https://earthquake.usgs.gov/earthquakes/eventpage/hv70645587 +,,20277195,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20277195&format=geojson,,,,",ak20277195,",1.8,ml,,ak,,"70km E of Cape Yakataga, Alaska",1.27,50,",ak,",automatic,1539282934309,"M 1.8 - 70km E of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539283202480,https://earthquake.usgs.gov/earthquakes/eventpage/ak20277195 +,,20277194,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20277194&format=geojson,,,,",ak20277194,",1.4,ml,,ak,,"70km W of Healy, Alaska",0.41,30,",ak,",automatic,1539282920070,"M 1.4 - 70km W of Healy, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539283202199,https://earthquake.usgs.gov/earthquakes/eventpage/ak20277194 +,,1000har5,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000har5&format=geojson,0.575,,74.0,",us1000har5,",4.5,mb,,us,,"57km NE of Muminobod, Tajikistan",0.82,312,",us,",reviewed,1539282423090,"M 4.5 - 57km NE of Muminobod, Tajikistan",0,earthquake,",geoserve,origin,phase-data,",300.0,1539292535040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000har5 +,,37385162,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37385162&format=geojson,0.03254,,36.0,",ci37385162,",0.53,ml,,ci,33.0,"8km ENE of Aguanga, CA",0.18,4,",ci,",reviewed,1539281758620,"M 0.5 - 8km ENE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539282920011,https://earthquake.usgs.gov/earthquakes/eventpage/ci37385162 +,,73096151,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096151&format=geojson,0.05163,,227.0,",nc73096151,",0.62,md,,nc,15.0,"14km W of Toms Place, CA",0.06,6,",nc,",reviewed,1539281457790,"M 0.6 - 14km W of Toms Place, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539300795108,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096151 +,,60242356,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nm60242356&format=geojson,0.0309,,80.0,",nm60242356,",1.33,md,,nm,11.0,"6km SSE of Ridgely, Tennessee",0.1,27,",nm,",reviewed,1539281363010,"M 1.3 - 6km SSE of Ridgely, Tennessee",0,earthquake,",geoserve,origin,phase-data,",-360.0,1539286020050,https://earthquake.usgs.gov/earthquakes/eventpage/nm60242356 +,,20277190,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20277190&format=geojson,,,,",ak20277190,",1.8,ml,,ak,,"97km WNW of Arctic Village, Alaska",0.77,50,",ak,",automatic,1539281337521,"M 1.8 - 97km WNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539281613165,https://earthquake.usgs.gov/earthquakes/eventpage/ak20277190 +,,60300442,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60300442&format=geojson,0.03801,,136.0,",uu60300442,",0.59,md,,uu,9.0,"16km NE of West Yellowstone, Montana",0.14,5,",uu,",reviewed,1539281225410,"M 0.6 - 16km NE of West Yellowstone, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539289758100,https://earthquake.usgs.gov/earthquakes/eventpage/uu60300442 +,,70645552,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70645552&format=geojson,0.007285,,54.0,",hv70645552,",1.8,md,,hv,17.0,"3km SW of Volcano, Hawaii",0.16,50,",hv,",automatic,1539281156280,"M 1.8 - 3km SW of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539281342960,https://earthquake.usgs.gov/earthquakes/eventpage/hv70645552 +,,80313554,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80313554&format=geojson,0.306,,136.0,",mb80313554,",1.76,ml,,mb,7.0,"7km WSW of Townsend, Montana",0.2,48,",mb,",reviewed,1539279624350,"M 1.8 Quarry Blast - 7km WSW of Townsend, Montana",0,quarry blast,",geoserve,origin,phase-data,",-420.0,1539280758630,https://earthquake.usgs.gov/earthquakes/eventpage/mb80313554 +,,20276918,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276918&format=geojson,,,,",ak20276918,",1.1,ml,,ak,,"13km NE of Ruby, Alaska",0.57,19,",ak,",automatic,1539279562147,"M 1.1 - 13km NE of Ruby, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539279733901,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276918 +,,70645492,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70645492&format=geojson,0.009565,,43.0,",hv70645492,",2.19,ml,,hv,22.0,"4km WSW of Volcano, Hawaii",0.08,74,",hv,",reviewed,1539279208620,"M 2.2 - 4km WSW of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539286775310,https://earthquake.usgs.gov/earthquakes/eventpage/hv70645492 +,,70645487,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70645487&format=geojson,0.03205,,67.0,",hv70645487,",1.18,md,,hv,13.0,"22km ENE of Honaunau-Napoopoo, Hawaii",0.12,21,",hv,",reviewed,1539279159540,"M 1.2 - 22km ENE of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539286282600,https://earthquake.usgs.gov/earthquakes/eventpage/hv70645487 +,,20276914,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276914&format=geojson,,,,",ak20276914,",2.1,ml,,ak,,"75km NW of Yakutat, Alaska",0.82,68,",ak,",automatic,1539279121727,"M 2.1 - 75km NW of Yakutat, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539279403174,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276914 +,,60300437,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60300437&format=geojson,0.03882,,178.0,",uu60300437,",0.85,ml,,uu,7.0,"17km NE of West Yellowstone, Montana",0.17,11,",uu,",reviewed,1539279041850,"M 0.9 - 17km NE of West Yellowstone, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539289602580,https://earthquake.usgs.gov/earthquakes/eventpage/uu60300437 +,,70645477,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70645477&format=geojson,0.03876,,63.0,",hv70645477,",1.4,md,,hv,33.0,"22km ENE of Honaunau-Napoopoo, Hawaii",0.15,30,",hv,",reviewed,1539278671160,"M 1.4 - 22km ENE of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539395588330,https://earthquake.usgs.gov/earthquakes/eventpage/hv70645477 +,,73096146,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096146&format=geojson,0.03977,,150.0,",nc73096146,",1.0,md,,nc,16.0,"11km NW of Pinnacles, CA",0.07,15,",nc,",reviewed,1539278628440,"M 1.0 - 11km NW of Pinnacles, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539302463245,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096146 +,,20276909,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276909&format=geojson,,,,",ak20276909,",1.0,ml,,ak,,"66km S of Cantwell, Alaska",0.76,15,",ak,",reviewed,1539277933723,"M 1.0 - 66km S of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539286501190,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276909 +,,73096141,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096141&format=geojson,0.009185,,55.0,",nc73096141,",1.5,md,,nc,37.0,"2km W of Anderson Springs, CA",0.08,35,",nc,",reviewed,1539277451350,"M 1.5 - 2km W of Anderson Springs, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539306543619,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096141 +,,73096136,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096136&format=geojson,0.01071,,26.0,",nc73096136,",1.49,md,,nc,40.0,"6km W of Cobb, CA",0.04,34,",nc,",reviewed,1539275963260,"M 1.5 - 6km W of Cobb, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539307203681,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096136 +,,20276892,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276892&format=geojson,,,,",ak20276892,us1000hapl,",2.6,ml,,ak,,"38km W of Anchorage, Alaska",0.51,104,",ak,us,",automatic,1539274856485,"M 2.6 - 38km W of Anchorage, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539284505040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276892 +,,20276883,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276883&format=geojson,,,,",ak20276883,",2.2,ml,,ak,,"62km E of Sutton-Alpine, Alaska",0.77,74,",ak,",automatic,1539274374508,"M 2.2 - 62km E of Sutton-Alpine, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539274770922,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276883 +,,1000hapi,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000hapi&format=geojson,1.312,,135.0,",us1000hapi,",4.9,mb,,us,,"146km ESE of Petropavlovsk-Kamchatskiy, Russia",1.08,369,",us,",reviewed,1539274243970,"M 4.9 - 146km ESE of Petropavlovsk-Kamchatskiy, Russia",0,earthquake,",geoserve,origin,phase-data,",660.0,1539276233040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000hapi +,,2018284007,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018284007&format=geojson,0.2081,,262.0,",pr2018284007,",2.14,md,,pr,8.0,"19km S of Tallaboa, Puerto Rico",0.1,70,",pr,",reviewed,1539274043690,"M 2.1 - 19km S of Tallaboa, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1539287320920,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018284007 +,,20276880,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276880&format=geojson,,,,",ak20276880,us1000hap7,",2.6,ml,,ak,,"109km NNW of Arctic Village, Alaska",1.12,104,",ak,us,",automatic,1539273914278,"M 2.6 - 109km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539283294040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276880 +,,00660579,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660579&format=geojson,0.085,,247.48,",nn00660579,",0.2,ml,,nn,16.0,"51km NNE of Beatty, Nevada",0.1693,1,",nn,",reviewed,1539273790332,"M 0.2 - 51km NNE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539309985476,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660579 +,,20276876,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276876&format=geojson,,,,",ak20276876,",1.3,ml,,ak,,"33km NW of Willow, Alaska",0.26,26,",ak,",automatic,1539272873250,"M 1.3 - 33km NW of Willow, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539273695309,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276876 +,,61795741,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61795741&format=geojson,0.02193,,168.0,",av61795741,",-1.09,ml,,av,4.0,"42km ENE of Adak, Alaska",0.18,0,",av,",reviewed,1539272427670,"M -1.1 - 42km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539296121290,https://earthquake.usgs.gov/earthquakes/eventpage/av61795741 +,,61795731,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61795731&format=geojson,0.212,,250.0,",av61795731,",1.83,ml,,av,6.0,"46km SW of Nikolski, Alaska",0.13,52,",av,",reviewed,1539272031180,"M 1.8 - 46km SW of Nikolski, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539294855260,https://earthquake.usgs.gov/earthquakes/eventpage/av61795731 +,,20276865,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276865&format=geojson,,,,",ak20276865,us1000hamf,",2.5,ml,,ak,,"112km NNW of Arctic Village, Alaska",1.01,96,",ak,us,",automatic,1539270946163,"M 2.5 - 112km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539282647040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276865 +,,1000hamb,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000hamb&format=geojson,4.019,,33.0,",us1000hamb,",5.1,mb,,us,,"162km S of Severo-Kuril'sk, Russia",0.72,400,",us,",reviewed,1539270492120,"M 5.1 - 162km S of Severo-Kuril'sk, Russia",0,earthquake,",geoserve,origin,phase-data,",600.0,1539273789040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000hamb +,,70806634,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70806634&format=geojson,0.02001,,91.0,",av70806634,",0.5,ml,,av,10.0,"13km W of Akutan, Alaska",0.25,4,",av,",reviewed,1539269762370,"M 0.5 - 13km W of Akutan, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539291838950,https://earthquake.usgs.gov/earthquakes/eventpage/av70806634 +,,20276859,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276859&format=geojson,,,,",ak20276859,",1.5,ml,,ak,,"7km NNW of Houston, Alaska",0.85,35,",ak,",automatic,1539269618924,"M 1.5 - 7km NNW of Houston, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539269789429,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276859 +,,20276856,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276856&format=geojson,,,,",ak20276856,us1000ham0,",2.6,ml,,ak,,"57km SSW of Kaktovik, Alaska",0.99,104,",ak,us,",automatic,1539268395791,"M 2.6 - 57km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539271751040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276856 +,,61795701,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61795701&format=geojson,0.05462,,172.0,",av61795701,",0.91,ml,,av,12.0,"95km SE of King Salmon, Alaska",0.11,13,",av,",reviewed,1539268243340,"M 0.9 - 95km SE of King Salmon, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539290922690,https://earthquake.usgs.gov/earthquakes/eventpage/av61795701 +,,70806644,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70806644&format=geojson,0.02131,,122.0,",av70806644,",-0.71,ml,,av,5.0,"42km ENE of Adak, Alaska",0.06,0,",av,",reviewed,1539267690860,"M -0.7 - 42km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539294151940,https://earthquake.usgs.gov/earthquakes/eventpage/av70806644 +,,70806639,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70806639&format=geojson,0.02304,,123.0,",av70806639,",-0.92,ml,,av,4.0,"42km ENE of Adak, Alaska",0.12,0,",av,",reviewed,1539267638990,"M -0.9 - 42km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539293736560,https://earthquake.usgs.gov/earthquakes/eventpage/av70806639 +,,73096126,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096126&format=geojson,0.0127,,111.0,",nc73096126,",0.55,md,,nc,6.0,"2km SW of Cobb, CA",0.01,5,",nc,",automatic,1539267488460,"M 0.6 - 2km SW of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539269410446,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096126 +,,60242341,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nm60242341&format=geojson,0.03146,,111.0,",nm60242341,",1.05,md,,nm,7.0,"3km E of Ridgely, Tennessee",0.07,17,",nm,",reviewed,1539266914100,"M 1.1 - 3km E of Ridgely, Tennessee",0,earthquake,",geoserve,origin,phase-data,",-360.0,1539279519870,https://earthquake.usgs.gov/earthquakes/eventpage/nm60242341 +,,20276851,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276851&format=geojson,,,,",ak20276851,us1000halv,",3.0,ml,,ak,,"69km SSW of Kaktovik, Alaska",0.94,138,",ak,us,",automatic,1539266910792,"M 3.0 - 69km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539269506040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276851 +,,38319624,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38319624&format=geojson,0.0442,,77.0,",ci38319624,",0.87,ml,,ci,36.0,"10km SW of Morongo Valley, CA",0.13,12,",ci,",reviewed,1539266287150,"M 0.9 - 10km SW of Morongo Valley, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539274465840,https://earthquake.usgs.gov/earthquakes/eventpage/ci38319624 +,,70645177,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70645177&format=geojson,0.07431,,103.0,",hv70645177,",1.21,md,,hv,9.0,"25km E of Honaunau-Napoopoo, Hawaii",0.15,23,",hv,",reviewed,1539265764840,"M 1.2 - 25km E of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539388290900,https://earthquake.usgs.gov/earthquakes/eventpage/hv70645177 +,,20276848,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276848&format=geojson,,,,",ak20276848,",1.9,ml,,ak,,"24km WSW of Cape Yakataga, Alaska",0.72,56,",ak,",automatic,1539265414227,"M 1.9 - 24km WSW of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539265621315,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276848 +,,20276844,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276844&format=geojson,,,,",ak20276844,",1.9,ml,,ak,,"115km NW of Arctic Village, Alaska",0.8,56,",ak,",automatic,1539265061339,"M 1.9 - 115km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539265485588,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276844 +,,80313559,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80313559&format=geojson,0.305,,112.0,",mb80313559,",1.04,ml,,mb,6.0,"2km WNW of Manhattan, Montana",0.12,17,",mb,",reviewed,1539264390010,"M 1.0 - 2km WNW of Manhattan, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539280481180,https://earthquake.usgs.gov/earthquakes/eventpage/mb80313559 +,,61795676,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61795676&format=geojson,0.06388,,149.0,",av61795676,",0.05,ml,,av,8.0,"100km NW of Larsen Bay, Alaska",0.25,0,",av,",reviewed,1539264076780,"M 0.1 - 100km NW of Larsen Bay, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539290477280,https://earthquake.usgs.gov/earthquakes/eventpage/av61795676 +,,20276837,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276837&format=geojson,,,,",ak20276837,us1000halm,",2.6,ml,,ak,,"63km NNW of Talkeetna, Alaska",0.48,104,",ak,us,",automatic,1539263925230,"M 2.6 - 63km NNW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539267884040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276837 +,,00660578,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660578&format=geojson,0.038,,90.01,",nn00660578,",0.3,ml,,nn,10.0,"43km E of Beatty, Nevada",0.0765,1,",nn,",reviewed,1539263718960,"M 0.3 - 43km E of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539309983957,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660578 +,,38319592,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38319592&format=geojson,0.03205,,87.0,",ci38319592,",0.33,ml,,ci,16.0,"10km NNW of Anza, CA",0.1,2,",ci,",reviewed,1539263296770,"M 0.3 - 10km NNW of Anza, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539272511567,https://earthquake.usgs.gov/earthquakes/eventpage/ci38319592 +,,00660577,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660577&format=geojson,0.144,,267.06,",nn00660577,",-0.1,ml,,nn,5.0,"43km SW of Beatty, Nevada",0.123,0,",nn,",reviewed,1539263116201,"M -0.1 - 43km SW of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539309982549,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660577 +,,73096121,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096121&format=geojson,0.005993,,56.0,",nc73096121,",1.02,md,,nc,24.0,"6km NW of The Geysers, CA",0.03,16,",nc,",automatic,1539262792460,"M 1.0 - 6km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539264723973,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096121 +,,20276833,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276833&format=geojson,,,,",ak20276833,",1.4,ml,,ak,,"50km N of Sutton-Alpine, Alaska",0.71,30,",ak,",automatic,1539262414928,"M 1.4 - 50km N of Sutton-Alpine, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539262574726,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276833 +,,00660576,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660576&format=geojson,0.041,,92.31,",nn00660576,",-0.4,ml,,nn,14.0,"43km E of Beatty, Nevada",0.2067,0,",nn,",reviewed,1539261943829,"M -0.4 - 43km E of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539309981181,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660576 +,1.0,60242321,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nm60242321&format=geojson,0.0609,1.0,32.0,",nm60242321,",2.43,md,,nm,47.0,"12km NW of Tiptonville, Tennessee",0.1,91,",nm,",reviewed,1539261584550,"M 2.4 - 12km NW of Tiptonville, Tennessee",0,earthquake,",dyfi,geoserve,origin,phase-data,",-360.0,1539263612200,https://earthquake.usgs.gov/earthquakes/eventpage/nm60242321 +,,80313504,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80313504&format=geojson,0.304,,88.0,",mb80313504,",1.54,ml,,mb,18.0,"1km WNW of Manhattan, Montana",0.21,36,",mb,",reviewed,1539261249420,"M 1.5 - 1km WNW of Manhattan, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539265891280,https://earthquake.usgs.gov/earthquakes/eventpage/mb80313504 +,,20276831,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276831&format=geojson,,,,",ak20276831,",1.6,ml,,ak,,"22km ENE of Healy, Alaska",0.32,39,",ak,",automatic,1539260898363,"M 1.6 - 22km ENE of Healy, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539261076013,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276831 +,,1000halh,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000halh&format=geojson,19.63,,79.0,",us1000halh,",4.7,mb,,us,,Northern Mid-Atlantic Ridge,0.29,340,",us,",reviewed,1539260830680,M 4.7 - Northern Mid-Atlantic Ridge,0,earthquake,",geoserve,origin,phase-data,",-180.0,1539263923040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000halh +,,00660555,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660555&format=geojson,0.101,,155.14,",nn00660555,",-0.1,ml,,nn,6.0,"7km E of Cold Springs, Nevada",0.0879,0,",nn,",reviewed,1539260709300,"M -0.1 - 7km E of Cold Springs, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539309967628,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660555 +,,70252058,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ismpkansas70252058&format=geojson,0.05133,,58.0,",ismpkansas70252058,",2.16,ml,,ismpkansas,14.0,"19km WNW of Caldwell, Kansas",0.04,72,",ismpkansas,",reviewed,1539260690050,"M 2.2 - 19km WNW of Caldwell, Kansas",0,earthquake,",geoserve,origin,phase-data,",-360.0,1539282782390,https://earthquake.usgs.gov/earthquakes/eventpage/ismpkansas70252058 +,,20276829,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276829&format=geojson,,,,",ak20276829,",2.4,ml,,ak,,"66km SE of Whittier, Alaska",0.7,89,",ak,",automatic,1539260409085,"M 2.4 - 66km SE of Whittier, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539260720200,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276829 +,,1000hal1,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000hal1&format=geojson,4.865,,61.0,",us1000hal1,",4.7,mb,,us,,Off the west coast of northern Sumatra,0.5,340,",us,",reviewed,1539260286740,M 4.7 - Off the west coast of northern Sumatra,0,earthquake,",geoserve,origin,phase-data,",360.0,1539262726040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000hal1 +,,61795636,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61795636&format=geojson,0.0427,,202.0,",av61795636,",0.31,ml,,av,10.0,"103km ESE of King Salmon, Alaska",0.16,1,",av,",reviewed,1539260226490,"M 0.3 - 103km ESE of King Salmon, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539289467860,https://earthquake.usgs.gov/earthquakes/eventpage/av61795636 +,,70645072,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70645072&format=geojson,0.01729,,178.0,",hv70645072,",1.94,ml,,hv,23.0,"2km WNW of Volcano, Hawaii",0.34,58,",hv,",automatic,1539260132650,"M 1.9 - 2km WNW of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539260474920,https://earthquake.usgs.gov/earthquakes/eventpage/hv70645072 +,,20276822,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276822&format=geojson,,,,",ak20276822,",2.2,ml,,ak,,"66km NNE of Yakutat, Alaska",0.69,74,",ak,",automatic,1539260068472,"M 2.2 - 66km NNE of Yakutat, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539260322338,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276822 +,,20276823,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276823&format=geojson,,,,",ak20276823,",1.3,ml,,ak,,"74km WSW of Tok, Alaska",0.92,26,",ak,",automatic,1539260038366,"M 1.3 - 74km WSW of Tok, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539260217508,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276823 +,,73096116,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096116&format=geojson,0.05031,,192.0,",nc73096116,",0.75,md,,nc,22.0,"13km W of Toms Place, CA",0.03,9,",nc,",reviewed,1539259381630,"M 0.8 - 13km W of Toms Place, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539283203783,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096116 +,,20276819,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276819&format=geojson,,,,",ak20276819,",1.1,ml,,ak,,"55km NE of Badger, Alaska",0.46,19,",ak,",automatic,1539259169150,"M 1.1 - 55km NE of Badger, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539259609550,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276819 +,,1000haks,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000haks&format=geojson,2.612,,90.0,",us1000haks,",4.4,mb,,us,,"51km WSW of Kasiguncu, Indonesia",0.68,298,",us,",reviewed,1539258833830,"M 4.4 - 51km WSW of Kasiguncu, Indonesia",0,earthquake,",geoserve,origin,phase-data,",480.0,1539260052040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000haks +,,20276816,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276816&format=geojson,,,,",ak20276816,",1.6,ml,,ak,,"54km NNE of North Pole, Alaska",0.71,39,",ak,",automatic,1539258451588,"M 1.6 - 54km NNE of North Pole, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539259022276,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276816 +,,20276813,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276813&format=geojson,,,,",ak20276813,",1.6,ml,,ak,,"17km SSW of Big Lake, Alaska",0.64,39,",ak,",automatic,1539258406579,"M 1.6 - 17km SSW of Big Lake, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539258624611,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276813 +,,20276812,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276812&format=geojson,,,,",ak20276812,",1.5,ml,,ak,,"55km NE of Badger, Alaska",0.44,35,",ak,",automatic,1539258307505,"M 1.5 - 55km NE of Badger, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539258624880,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276812 +,,80313549,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80313549&format=geojson,0.297,,113.0,",mb80313549,",1.07,ml,,mb,8.0,"2km NW of Manhattan, Montana",0.13,18,",mb,",reviewed,1539258164820,"M 1.1 - 2km NW of Manhattan, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539279971610,https://earthquake.usgs.gov/earthquakes/eventpage/mb80313549 +,,00660575,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660575&format=geojson,0.058,,90.86,",nn00660575,",0.4,ml,,nn,11.0,"11km NW of Kingsbury, Nevada",0.1756,2,",nn,",reviewed,1539257724841,"M 0.4 - 11km NW of Kingsbury, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539309979541,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660575 +,,38319552,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38319552&format=geojson,0.02419,,61.0,",ci38319552,",0.35,ml,,ci,22.0,"6km NW of Anza, CA",0.14,2,",ci,",reviewed,1539257706600,"M 0.4 - 6km NW of Anza, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539275269785,https://earthquake.usgs.gov/earthquakes/eventpage/ci38319552 +,,38319544,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38319544&format=geojson,0.04002,,38.0,",ci38319544,",0.78,ml,,ci,51.0,"9km E of Moreno Valley, CA",0.2,9,",ci,",reviewed,1539257278640,"M 0.8 - 9km E of Moreno Valley, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539274012040,https://earthquake.usgs.gov/earthquakes/eventpage/ci38319544 +,,00660539,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660539&format=geojson,0.124,,148.73,",nn00660539,",1.3,ml,,nn,17.0,"50km ENE of Big Pine, California",0.2253,26,",nn,",reviewed,1539256719527,"M 1.3 - 50km ENE of Big Pine, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539309957188,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660539 +,,1000haki,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000haki&format=geojson,2.196,,87.0,",us1000haki,",4.8,mb,,us,,"133km ESE of Kimbe, Papua New Guinea",1.01,354,",us,",reviewed,1539256218740,"M 4.8 - 133km ESE of Kimbe, Papua New Guinea",0,earthquake,",geoserve,origin,phase-data,",600.0,1539257938040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000haki +,,38319528,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38319528&format=geojson,0.04601,,42.0,",ci38319528,",0.91,ml,,ci,36.0,"2km N of Placentia, CA",0.24,13,",ci,",reviewed,1539255419620,"M 0.9 - 2km N of Placentia, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539273451224,https://earthquake.usgs.gov/earthquakes/eventpage/ci38319528 +,,38319520,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38319520&format=geojson,0.04948,,45.0,",ci38319520,",1.37,ml,,ci,54.0,"2km NNE of Placentia, CA",0.26,29,",ci,",reviewed,1539255326650,"M 1.4 - 2km NNE of Placentia, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539272921379,https://earthquake.usgs.gov/earthquakes/eventpage/ci38319520 +,,38319512,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38319512&format=geojson,0.04511,,71.0,",ci38319512,",1.11,ml,,ci,15.0,"22km N of Ridgecrest, CA",0.16,19,",ci,",reviewed,1539255141200,"M 1.1 - 22km N of Ridgecrest, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539263087653,https://earthquake.usgs.gov/earthquakes/eventpage/ci38319512 +,,00660556,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660556&format=geojson,0.04,,164.94,",nn00660556,",0.0,ml,,nn,3.0,"3km WSW of Tahoe Vista, California",0.0235,0,",nn,",reviewed,1539254652231,"M 0.0 - 3km WSW of Tahoe Vista, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539309969948,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660556 +,,00660573,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660573&format=geojson,0.06,,88.47,",nn00660573,",-0.2,ml,,nn,10.0,"49km E of Beatty, Nevada",0.2108,0,",nn,",reviewed,1539254138733,"M -0.2 - 49km E of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539309975967,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660573 +,,60300407,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60300407&format=geojson,0.08929,,53.0,",uu60300407,",1.69,ml,,uu,17.0,"28km SSW of Nephi, Utah",0.17,44,",uu,",reviewed,1539254105600,"M 1.7 - 28km SSW of Nephi, Utah",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539277070740,https://earthquake.usgs.gov/earthquakes/eventpage/uu60300407 +,,2018284004,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018284004&format=geojson,1.0346,,241.0,",pr2018284004,",3.19,md,,pr,10.0,"111km NNW of San Antonio, Puerto Rico",0.36,157,",pr,",reviewed,1539253949770,"M 3.2 - 111km NNW of San Antonio, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-300.0,1539256702426,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018284004 +,2.5,1000haix,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000haix&format=geojson,0.052,3.0,85.0,",us1000haix,ismpkansas70252048,",2.7,mb_lg,,us,,"19km ESE of Anthony, Kansas",0.77,113,",us,ismpkansas,",reviewed,1539253827370,"M 2.7 - 19km ESE of Anthony, Kansas",0,earthquake,",dyfi,geoserve,origin,phase-data,",-360.0,1539356329751,https://earthquake.usgs.gov/earthquakes/eventpage/us1000haix +,,2018284006,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018284006&format=geojson,0.4303,,270.0,",pr2018284006,",2.55,md,,pr,10.0,"44km N of Isabela, Puerto Rico",0.4,100,",pr,",reviewed,1539253515600,"M 2.6 - 44km N of Isabela, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1539260094236,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018284006 +,,2018284005,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018284005&format=geojson,0.9877,,269.0,",pr2018284005,",2.96,md,,pr,15.0,"102km NE of Punta Cana, Dominican Republic",0.55,135,",pr,",reviewed,1539252653720,"M 3.0 - 102km NE of Punta Cana, Dominican Republic",0,earthquake,",geoserve,origin,phase-data,",-300.0,1539260018692,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018284005 +,,2018284003,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018284003&format=geojson,0.2199,,212.0,",pr2018284003,",1.99,md,,pr,4.0,"5km ESE of Indios, Puerto Rico",0.26,61,",pr,",reviewed,1539252485680,"M 2.0 - 5km ESE of Indios, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1539259930440,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018284003 +,,20276802,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276802&format=geojson,,,,",ak20276802,",2.7,ml,,ak,,"97km SSE of Nikolski, Alaska",0.61,112,",ak,",reviewed,1539251781103,"M 2.7 - 97km SSE of Nikolski, Alaska",0,earthquake,",geoserve,origin,phase-data,",-660.0,1539285443646,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276802 +,,38319504,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38319504&format=geojson,0.04781,,53.0,",ci38319504,",0.93,ml,,ci,51.0,"9km NNE of Beaumont, CA",0.16,13,",ci,",reviewed,1539251399860,"M 0.9 - 9km NNE of Beaumont, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539271694978,https://earthquake.usgs.gov/earthquakes/eventpage/ci38319504 +,,20276800,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276800&format=geojson,,,,",ak20276800,",1.4,ml,,ak,,"43km SSW of Cantwell, Alaska",0.4,30,",ak,",automatic,1539251040967,"M 1.4 - 43km SSW of Cantwell, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539251252898,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276800 +,,73096111,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096111&format=geojson,0.01057,,147.0,",nc73096111,",0.75,md,,nc,6.0,"5km W of Cobb, CA",0.02,9,",nc,",automatic,1539250394820,"M 0.8 - 5km W of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539252362636,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096111 +,,70644847,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70644847&format=geojson,0.009707,,48.0,",hv70644847,",1.95,ml,,hv,38.0,"26km ESE of Honaunau-Napoopoo, Hawaii",0.2,58,",hv,",reviewed,1539249874470,"M 2.0 - 26km ESE of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539285449080,https://earthquake.usgs.gov/earthquakes/eventpage/hv70644847 +,,00660538,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660538&format=geojson,0.055,,179.27,",nn00660538,",-0.2,ml,,nn,18.0,"63km N of Pahrump, Nevada",0.2105,0,",nn,",reviewed,1539249629116,"M -0.2 - 63km N of Pahrump, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539309953969,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660538 +,,20276798,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276798&format=geojson,,,,",ak20276798,",1.9,ml,,ak,,"113km NNW of Arctic Village, Alaska",0.88,56,",ak,",automatic,1539249542968,"M 1.9 - 113km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539249733797,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276798 +,,73096106,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096106&format=geojson,0.0218,,172.0,",nc73096106,",-0.16,md,,nc,5.0,"13km ESE of Viola, CA",0.07,0,",nc,",reviewed,1539248185410,"M -0.2 - 13km ESE of Viola, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539276663512,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096106 +,,00660536,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660536&format=geojson,0.056,,157.34,",nn00660536,",-0.1,ml,,nn,26.0,"64km N of Pahrump, Nevada",0.1987,0,",nn,",reviewed,1539248171744,"M -0.1 - 64km N of Pahrump, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539309952093,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660536 +,,38319488,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38319488&format=geojson,0.02068,,69.0,",ci38319488,",0.51,ml,,ci,17.0,"2km NNE of Lake Henshaw, CA",0.19,4,",ci,",reviewed,1539247263150,"M 0.5 - 2km NNE of Lake Henshaw, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539263104832,https://earthquake.usgs.gov/earthquakes/eventpage/ci38319488 +,,00660570,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660570&format=geojson,0.076,,71.44,",nn00660570,",-0.2,ml,,nn,12.0,"53km E of Beatty, Nevada",0.1695,0,",nn,",reviewed,1539246224096,"M -0.2 - 53km E of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539309974473,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660570 +,,73096101,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096101&format=geojson,0.0136,,128.0,",nc73096101,",0.52,md,,nc,22.0,"7km SE of Mammoth Lakes, CA",0.05,4,",nc,",reviewed,1539245170250,"M 0.5 - 7km SE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539279366394,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096101 +,,20276794,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276794&format=geojson,,,,",ak20276794,",1.7,ml,,ak,,"56km WNW of Valdez, Alaska",0.46,44,",ak,",automatic,1539245152623,"M 1.7 - 56km WNW of Valdez, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539245952753,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276794 +,,38319480,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38319480&format=geojson,0.01812,,106.0,",ci38319480,",0.34,ml,,ci,19.0,"9km NE of Aguanga, CA",0.1,2,",ci,",reviewed,1539245135320,"M 0.3 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539263106932,https://earthquake.usgs.gov/earthquakes/eventpage/ci38319480 +,,80313544,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80313544&format=geojson,0.307,,110.0,",mb80313544,",1.09,ml,,mb,8.0,"1km W of Manhattan, Montana",0.14,18,",mb,",reviewed,1539245022740,"M 1.1 - 1km W of Manhattan, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539279715590,https://earthquake.usgs.gov/earthquakes/eventpage/mb80313544 +,,00660569,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660569&format=geojson,0.014,,50.54,",nn00660569,",-0.1,ml,,nn,23.0,"58km E of Beatty, Nevada",0.1641,0,",nn,",reviewed,1539244245490,"M -0.1 - 58km E of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539309972994,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660569 +,,61436671,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61436671&format=geojson,0.1074,,177.0,",uw61436671,",0.64,ml,,uw,5.0,"22km E of Eatonville, Washington",0.07,6,",uw,",reviewed,1539244216670,"M 0.6 - 22km E of Eatonville, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539280568860,https://earthquake.usgs.gov/earthquakes/eventpage/uw61436671 +,,61795491,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61795491&format=geojson,0.01637,,263.0,",av61795491,",0.76,ml,,av,5.0,"51km W of Tanaga Volcano, Alaska",0.03,9,",av,",reviewed,1539243944890,"M 0.8 - 51km W of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539297832900,https://earthquake.usgs.gov/earthquakes/eventpage/av61795491 +,,38319472,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38319472&format=geojson,0.006576,,35.0,",ci38319472,",0.48,ml,,ci,34.0,"10km NE of Aguanga, CA",0.13,4,",ci,",reviewed,1539243831390,"M 0.5 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539271194860,https://earthquake.usgs.gov/earthquakes/eventpage/ci38319472 +,,38319464,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38319464&format=geojson,0.09085,,92.0,",ci38319464,",2.06,ml,,ci,63.0,"8km W of Newport Beach, CA",0.24,65,",ci,",reviewed,1539243458380,"M 2.1 - 8km W of Newport Beach, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1539270836740,https://earthquake.usgs.gov/earthquakes/eventpage/ci38319464 +,,70644667,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70644667&format=geojson,0.03936,,75.0,",hv70644667,",2.08,ml,,hv,28.0,"11km SSE of Volcano, Hawaii",0.09,67,",hv,",reviewed,1539242984400,"M 2.1 - 11km SSE of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539296620400,https://earthquake.usgs.gov/earthquakes/eventpage/hv70644667 +,,00660568,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660568&format=geojson,0.11,,187.52,",nn00660568,",0.9,ml,,nn,5.0,"3km WSW of Greenville, California",0.1738,12,",nn,",reviewed,1539242362020,"M 0.9 - 3km WSW of Greenville, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539309971366,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660568 +,,61795481,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61795481&format=geojson,0.02318,,288.0,",av61795481,",0.15,ml,,av,5.0,"31km WNW of Adak, Alaska",0.09,0,",av,",reviewed,1539242342990,"M 0.2 - 31km WNW of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539287890470,https://earthquake.usgs.gov/earthquakes/eventpage/av61795481 +,,38319456,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38319456&format=geojson,0.03492,,65.0,",ci38319456,",1.24,ml,,ci,41.0,"9km N of Cabazon, CA",0.17,24,",ci,",reviewed,1539241511030,"M 1.2 - 9km N of Cabazon, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1539263187930,https://earthquake.usgs.gov/earthquakes/eventpage/ci38319456 +,3.4,1000haht,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000haht&format=geojson,0.148,1.0,56.0,",us1000haht,",2.3,mb_lg,,us,,"5km S of Newcastle, Oklahoma",0.43,82,",us,",reviewed,1539241258850,"M 2.3 - 5km S of Newcastle, Oklahoma",0,earthquake,",dyfi,geoserve,origin,phase-data,",-360.0,1539312781850,https://earthquake.usgs.gov/earthquakes/eventpage/us1000haht +,,61795461,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61795461&format=geojson,0.0598,,272.0,",av61795461,",-0.23,ml,,av,9.0,"104km NNW of Larsen Bay, Alaska",0.07,0,",av,",reviewed,1539241122380,"M -0.2 - 104km NNW of Larsen Bay, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539285373890,https://earthquake.usgs.gov/earthquakes/eventpage/av61795461 +,,73096091,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096091&format=geojson,0.01594,,66.0,",nc73096091,",1.44,md,,nc,35.0,"3km NNW of The Geysers, CA",0.05,32,",nc,",reviewed,1539240792270,"M 1.4 - 3km NNW of The Geysers, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539288911629,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096091 +,,38319448,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38319448&format=geojson,0.04451,,72.0,",ci38319448,",1.15,ml,,ci,23.0,"23km N of Ridgecrest, CA",0.13,20,",ci,",reviewed,1539239852090,"M 1.2 - 23km N of Ridgecrest, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539269952798,https://earthquake.usgs.gov/earthquakes/eventpage/ci38319448 +,,61436666,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61436666&format=geojson,0.181,,84.0,",uw61436666,",1.4,ml,,uw,11.0,"5km WSW of Darrington, Washington",0.26,30,",uw,",reviewed,1539239750750,"M 1.4 - 5km WSW of Darrington, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539280395660,https://earthquake.usgs.gov/earthquakes/eventpage/uw61436666 +,,20276765,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276765&format=geojson,,,,",ak20276765,",2.0,ml,,ak,,"121km NW of Arctic Village, Alaska",1.13,62,",ak,",automatic,1539239526660,"M 2.0 - 121km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539239903298,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276765 +,,1000hahd,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000hahd&format=geojson,2.319,,136.0,",ak20276763,us1000hahd,",4.8,mb,,us,,"66km SSE of Nikolski, Alaska",0.74,354,",ak,us,",reviewed,1539239446490,"M 4.8 - 66km SSE of Nikolski, Alaska",0,earthquake,",geoserve,origin,phase-data,",-660.0,1539283468389,https://earthquake.usgs.gov/earthquakes/eventpage/us1000hahd +,,1000hakm,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000hakm&format=geojson,4.898,,128.0,",us1000hakm,",4.4,mb,,us,,"225km SW of Ndoi Island, Fiji",0.32,298,",us,",reviewed,1539239061980,"M 4.4 - 225km SW of Ndoi Island, Fiji",0,earthquake,",geoserve,origin,phase-data,",-720.0,1539259121040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000hakm +,,1000hah8,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000hah8&format=geojson,1.141,,82.0,",us1000hah8,",4.7,mb,,us,,"139km WSW of Naze, Japan",0.65,340,",us,",reviewed,1539238726290,"M 4.7 - 139km WSW of Naze, Japan",0,earthquake,",geoserve,origin,phase-data,",540.0,1539240344040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000hah8 +,,73096086,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096086&format=geojson,0.006152,,193.0,",nc73096086,",0.26,md,,nc,12.0,"6km ESE of Mammoth Lakes, CA",0.03,1,",nc,",reviewed,1539238490400,"M 0.3 - 6km ESE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539275430743,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096086 +,,2018284002,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018284002&format=geojson,1.6504,,348.0,",pr2018284002,us1000hai3,",2.57,md,,pr,4.0,"163km N of Charlotte Amalie, U.S. Virgin Islands",0.14,102,",pr,us,",reviewed,1539238489670,"M 2.6 - 163km N of Charlotte Amalie, U.S. Virgin Islands",0,earthquake,",geoserve,origin,phase-data,",-240.0,1539247720040,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018284002 +,,73096076,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096076&format=geojson,0.02447,,143.0,",nc73096076,",0.15,md,,nc,13.0,"1km ENE of Mammoth Lakes, CA",0.03,0,",nc,",reviewed,1539237968410,"M 0.2 - 1km ENE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539278104274,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096076 +,,70806624,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70806624&format=geojson,0.02609,,291.0,",av70806624,",0.1,ml,,av,4.0,"31km WNW of Adak, Alaska",0.09,0,",av,",reviewed,1539237631740,"M 0.1 - 31km WNW of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539286849390,https://earthquake.usgs.gov/earthquakes/eventpage/av70806624 +,,70644537,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70644537&format=geojson,0.0448,,174.0,",hv70644537,",1.62,md,,hv,24.0,"13km SW of Leilani Estates, Hawaii",0.1,40,",hv,",reviewed,1539237365730,"M 1.6 - 13km SW of Leilani Estates, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539299493210,https://earthquake.usgs.gov/earthquakes/eventpage/hv70644537 +,,1000hah2,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000hah2&format=geojson,4.021,,54.0,",us1000hah2,",5.2,mb,,us,,"163km S of Severo-Kuril'sk, Russia",0.98,416,",us,",reviewed,1539236855840,"M 5.2 - 163km S of Severo-Kuril'sk, Russia",0,earthquake,",geoserve,origin,phase-data,",600.0,1539238174040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000hah2 +,,38319440,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38319440&format=geojson,0.04715,,69.0,",ci38319440,",1.44,ml,,ci,21.0,"23km N of Ridgecrest, CA",0.13,32,",ci,",reviewed,1539236671160,"M 1.4 - 23km N of Ridgecrest, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1539263193440,https://earthquake.usgs.gov/earthquakes/eventpage/ci38319440 +,2.7,61436661,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61436661&format=geojson,0.2581,4.0,45.0,",uw61436661,",2.28,ml,,uw,25.0,"6km SSE of Sudden Valley, Washington",0.34,81,",uw,",reviewed,1539236649640,"M 2.3 - 6km SSE of Sudden Valley, Washington",0,earthquake,",dyfi,geoserve,origin,phase-data,",-480.0,1539311495284,https://earthquake.usgs.gov/earthquakes/eventpage/uw61436661 +,,70806609,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70806609&format=geojson,0.02227,,110.0,",av70806609,",-0.67,ml,,av,5.0,"42km ENE of Adak, Alaska",0.22,0,",av,",reviewed,1539236517640,"M -0.7 - 42km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539285724050,https://earthquake.usgs.gov/earthquakes/eventpage/av70806609 +,,73096071,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096071&format=geojson,0.01718,,122.0,",nc73096071,",0.61,md,,nc,23.0,"5km SE of Mammoth Lakes, CA",0.06,6,",nc,",reviewed,1539235887800,"M 0.6 - 5km SE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539281282589,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096071 +,,20276748,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276748&format=geojson,,,,",ak20276748,",0.7,ml,,ak,,"83km NNW of Nikiski, Alaska",0.21,8,",ak,",reviewed,1539235526741,"M 0.7 - 83km NNW of Nikiski, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539284823912,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276748 +,,00660526,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660526&format=geojson,0.245,,98.59,",nn00660526,",0.4,ml,,nn,15.0,"22km N of Summerlin South, Nevada",0.2341,2,",nn,",reviewed,1539235447657,"M 0.4 - 22km N of Summerlin South, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539309949906,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660526 +,,20276746,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276746&format=geojson,,,,",ak20276746,",1.8,ml,,ak,,"107km NW of Talkeetna, Alaska",0.78,50,",ak,",automatic,1539234698089,"M 1.8 - 107km NW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539234943100,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276746 +,,38319432,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38319432&format=geojson,0.02218,,67.0,",ci38319432,",0.49,ml,,ci,21.0,"9km NE of Aguanga, CA",0.15,4,",ci,",reviewed,1539234555360,"M 0.5 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539263159391,https://earthquake.usgs.gov/earthquakes/eventpage/ci38319432 +,,20276740,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276740&format=geojson,,,,",ak20276740,us1000hagw,",2.8,ml,,ak,,"108km NW of Talkeetna, Alaska",0.8,121,",ak,us,",automatic,1539234361210,"M 2.8 - 108km NW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539248390040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276740 +,,60300392,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60300392&format=geojson,0.1452,,180.0,",uu60300392,",0.47,md,,uu,7.0,"28km N of Beaver, Utah",0.05,3,",uu,",reviewed,1539234239180,"M 0.5 - 28km N of Beaver, Utah",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539290776300,https://earthquake.usgs.gov/earthquakes/eventpage/uu60300392 +,,60300387,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60300387&format=geojson,0.141,,43.0,",uu60300387,",1.86,ml,,uu,26.0,"30km N of Beaver, Utah",0.15,53,",uu,",reviewed,1539233473330,"M 1.9 - 30km N of Beaver, Utah",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539275682630,https://earthquake.usgs.gov/earthquakes/eventpage/uu60300387 +,2.7,38319424,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38319424&format=geojson,0.01832,8.0,33.0,",ci38319424,",2.83,ml,,ci,57.0,"17km W of Imperial, CA",0.3,125,",ci,",reviewed,1539233452370,"M 2.8 - 17km W of Imperial, CA",0,earthquake,",dyfi,focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1539302797370,https://earthquake.usgs.gov/earthquakes/eventpage/ci38319424 +,,73096066,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096066&format=geojson,0.02728,,133.0,",nc73096066,",0.19,md,,nc,12.0,"0km WNW of Mammoth Lakes, CA",0.05,1,",nc,",reviewed,1539233425150,"M 0.2 - 0km WNW of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539280563525,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096066 +,,38319416,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38319416&format=geojson,0.05794,,84.0,",ci38319416,",0.73,ml,,ci,27.0,"10km S of Idyllwild, CA",0.12,8,",ci,",reviewed,1539233412140,"M 0.7 - 10km S of Idyllwild, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1539263260840,https://earthquake.usgs.gov/earthquakes/eventpage/ci38319416 +,,60300382,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60300382&format=geojson,0.1768,,76.0,",uu60300382,",1.72,ml,,uu,15.0,"1km SW of Enoch, Utah",0.19,46,",uu,",reviewed,1539233132530,"M 1.7 - 1km SW of Enoch, Utah",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539289414430,https://earthquake.usgs.gov/earthquakes/eventpage/uu60300382 +,,00660521,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660521&format=geojson,0.134,,183.66,",nn00660521,",0.1,ml,,nn,16.0,"42km SW of Beatty, Nevada",0.1445,0,",nn,",reviewed,1539232927098,"M 0.1 - 42km SW of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539309941448,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660521 +,,73096061,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096061&format=geojson,0.007065,,167.0,",nc73096061,",0.02,md,,nc,12.0,"4km SE of Mammoth Lakes, CA",0.03,0,",nc,",reviewed,1539232880630,"M 0.0 - 4km SE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539277384214,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096061 +,,38319408,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38319408&format=geojson,0.006074,,60.0,",ci38319408,",0.48,ml,,ci,21.0,"10km NE of Aguanga, CA",0.13,4,",ci,",reviewed,1539232487660,"M 0.5 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539263177083,https://earthquake.usgs.gov/earthquakes/eventpage/ci38319408 +,,70806599,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70806599&format=geojson,0.02024,,218.0,",av70806599,",-0.57,ml,,av,4.0,"47km ENE of Adak, Alaska",0.16,0,",av,",reviewed,1539232369190,"M -0.6 - 47km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539284448090,https://earthquake.usgs.gov/earthquakes/eventpage/av70806599 +,,38319400,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38319400&format=geojson,0.181,,100.0,",nn00660513,ci38319400,",1.51,ml,,ci,17.0,"34km NW of Stovepipe Wells, CA",0.15,35,",nn,ci,",reviewed,1539231993960,"M 1.5 - 34km NW of Stovepipe Wells, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539309941102,https://earthquake.usgs.gov/earthquakes/eventpage/ci38319400 +,,20276738,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276738&format=geojson,,,,",ak20276738,",1.6,ml,,ak,,"89km WNW of Arctic Village, Alaska",0.83,39,",ak,",automatic,1539231801843,"M 1.6 - 89km WNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539232147918,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276738 +,,20276736,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276736&format=geojson,,,,",ak20276736,",1.8,ml,,ak,,"106km NW of Talkeetna, Alaska",0.69,50,",ak,",automatic,1539231627413,"M 1.8 - 106km NW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539231906746,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276736 +,,70806604,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70806604&format=geojson,0.006806,,74.0,",av70806604,",-0.26,ml,,av,9.0,"11km W of Akutan, Alaska",0.25,0,",av,",reviewed,1539231097650,"M -0.3 - 11km W of Akutan, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539284765490,https://earthquake.usgs.gov/earthquakes/eventpage/av70806604 +,,61436586,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61436586&format=geojson,0.03483,,137.0,",uw61436586,",0.88,ml,,uw,17.0,"10km SSE of Desert Aire, Washington",0.07,12,",uw,",reviewed,1539231016920,"M 0.9 - 10km SSE of Desert Aire, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539293072360,https://earthquake.usgs.gov/earthquakes/eventpage/uw61436586 +,,20276735,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276735&format=geojson,,,,",ak20276735,",1.5,ml,,ak,,"107km NW of Talkeetna, Alaska",0.46,35,",ak,",automatic,1539230900727,"M 1.5 - 107km NW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539231100541,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276735 +,,60300377,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60300377&format=geojson,0.1723,,82.0,",uu60300377,",1.83,ml,,uu,11.0,"2km WSW of Enoch, Utah",0.13,52,",uu,",reviewed,1539230779980,"M 1.8 - 2km WSW of Enoch, Utah",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539288304200,https://earthquake.usgs.gov/earthquakes/eventpage/uu60300377 +,,80313494,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80313494&format=geojson,0.071,,163.0,",mb80313494,",-0.24,ml,,mb,4.0,"24km NW of West Yellowstone, Montana",0.05,0,",mb,",reviewed,1539230709340,"M -0.2 - 24km NW of West Yellowstone, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539266317520,https://earthquake.usgs.gov/earthquakes/eventpage/mb80313494 +,,20276731,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276731&format=geojson,,,,",ak20276731,",2.5,ml,,ak,,"81km NNW of Arctic Village, Alaska",1.17,96,",ak,",automatic,1539230266946,"M 2.5 - 81km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539230587903,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276731 +,,20276730,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276730&format=geojson,,,,",ak20276730,",1.7,ml,,ak,,"57km NW of Healy, Alaska",0.99,44,",ak,",automatic,1539230187369,"M 1.7 - 57km NW of Healy, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539230378413,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276730 +,,38319392,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38319392&format=geojson,0.006399,,43.0,",ci38319392,",0.25,ml,,ci,27.0,"10km NE of Aguanga, CA",0.12,1,",ci,",reviewed,1539229883350,"M 0.3 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539268347354,https://earthquake.usgs.gov/earthquakes/eventpage/ci38319392 +,,37198140,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37198140&format=geojson,0.02001,,76.0,",ci37198140,",-0.25,ml,,ci,13.0,"11km NE of Aguanga, CA",0.27,0,",ci,",reviewed,1539229875470,"M -0.3 - 11km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539268742167,https://earthquake.usgs.gov/earthquakes/eventpage/ci37198140 +,,1000hagg,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000hagg&format=geojson,3.918,,106.0,",us1000hagg,",4.8,mb,,us,,"149km S of Severo-Kuril'sk, Russia",0.88,354,",us,",reviewed,1539229123210,"M 4.8 - 149km S of Severo-Kuril'sk, Russia",0,earthquake,",geoserve,origin,phase-data,",600.0,1539230253040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000hagg +,,61436581,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61436581&format=geojson,0.0187,,116.0,",uw61436581,",0.93,ml,,uw,11.0,"22km E of Eatonville, Washington",0.09,13,",uw,",reviewed,1539228974780,"M 0.9 - 22km E of Eatonville, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539292175630,https://earthquake.usgs.gov/earthquakes/eventpage/uw61436581 +,,20276727,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276727&format=geojson,,,,",ak20276727,",1.8,ml,,ak,,"121km NNW of Arctic Village, Alaska",1.13,50,",ak,",automatic,1539228741443,"M 1.8 - 121km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539229079117,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276727 +,,20276724,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276724&format=geojson,,,,",ak20276724,",2.6,ml,,ak,,"88km WNW of Arctic Village, Alaska",0.66,104,",ak,",automatic,1539228416990,"M 2.6 - 88km WNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539228713059,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276724 +,,1000hagc,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000hagc&format=geojson,1.727,,87.0,",us1000hagc,",4.7,mb,,us,,"150km E of Kimbe, Papua New Guinea",1.03,340,",us,",reviewed,1539227736660,"M 4.7 - 150km E of Kimbe, Papua New Guinea",0,earthquake,",geoserve,origin,phase-data,",600.0,1539230668040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000hagc +,,60242301,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nm60242301&format=geojson,0.0255,,56.0,",nm60242301,",1.25,md,,nm,13.0,"3km ENE of Ridgely, Tennessee",0.03,24,",nm,",reviewed,1539227570220,"M 1.3 - 3km ENE of Ridgely, Tennessee",0,earthquake,",geoserve,origin,phase-data,",-360.0,1539261738280,https://earthquake.usgs.gov/earthquakes/eventpage/nm60242301 +green,,1000hafx,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000hafx&format=geojson,5.283,,58.0,",us1000hafx,",5.6,mww,3.73,us,,"139km S of Leksula, Indonesia",0.93,482,",us,",reviewed,1539226545100,"M 5.6 - 139km S of Leksula, Indonesia",0,earthquake,",geoserve,losspager,moment-tensor,origin,phase-data,shakemap,",480.0,1539269568040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000hafx +,,38319384,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38319384&format=geojson,0.06554,,110.0,",ci38319384,",0.82,ml,,ci,18.0,"10km N of Ridgecrest, CA",0.14,10,",ci,",reviewed,1539226322190,"M 0.8 - 10km N of Ridgecrest, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539268044497,https://earthquake.usgs.gov/earthquakes/eventpage/ci38319384 +,,20276709,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276709&format=geojson,,,,",ak20276709,",2.3,ml,,ak,,"109km NW of Arctic Village, Alaska",0.81,81,",ak,",automatic,1539226217260,"M 2.3 - 109km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539226809541,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276709 +,,20276706,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276706&format=geojson,,,,",ak20276706,",1.4,ml,,ak,,"19km WSW of North Nenana, Alaska",0.3,30,",ak,",automatic,1539225728372,"M 1.4 - 19km WSW of North Nenana, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539225951252,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276706 +,,20276704,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276704&format=geojson,,,,",ak20276704,",1.9,ml,,ak,,"120km SE of Prudhoe Bay, Alaska",0.79,56,",ak,",automatic,1539225618379,"M 1.9 - 120km SE of Prudhoe Bay, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539225815208,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276704 +,,60242286,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nm60242286&format=geojson,0.02985,,67.0,",nm60242286,",1.59,md,,nm,12.0,"3km ENE of Ridgely, Tennessee",0.05,39,",nm,",reviewed,1539225202530,"M 1.6 - 3km ENE of Ridgely, Tennessee",0,earthquake,",geoserve,origin,phase-data,",-360.0,1539261805610,https://earthquake.usgs.gov/earthquakes/eventpage/nm60242286 +,,73096051,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096051&format=geojson,0.0238,,127.0,",nc73096051,",0.57,md,,nc,21.0,"5km SE of Mammoth Lakes, CA",0.03,5,",nc,",reviewed,1539224899450,"M 0.6 - 5km SE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539282122679,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096051 +,,1000haff,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000haff&format=geojson,3.913,,149.0,",us1000haff,",5.1,mb,,us,,"148km S of Severo-Kuril'sk, Russia",1.07,400,",us,",reviewed,1539224181970,"M 5.1 - 148km S of Severo-Kuril'sk, Russia",0,earthquake,",geoserve,origin,phase-data,",600.0,1539224816040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000haff +,,20276689,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276689&format=geojson,,,,",ak20276689,",2.0,ml,,ak,,"110km NNW of Arctic Village, Alaska",0.74,62,",ak,",automatic,1539223480024,"M 2.0 - 110km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539223859401,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276689 +,,20276687,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276687&format=geojson,,,,",ak20276687,",2.4,ml,,ak,,"84km NW of Talkeetna, Alaska",0.45,89,",ak,",automatic,1539223471634,"M 2.4 - 84km NW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539223754966,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276687 +,,73096046,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096046&format=geojson,0.03199,,247.0,",nc73096046,",1.08,md,,nc,8.0,"16km NW of Chester, CA",0.13,18,",nc,",reviewed,1539223348290,"M 1.1 - 16km NW of Chester, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539275823058,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096046 +,,00660504,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660504&format=geojson,0.019,,113.53,",nn00660504,",1.4,ml,,nn,6.0,"38km NW of Carlin, Nevada",0.1396,30,",nn,",reviewed,1539223280600,"M 1.4 Explosion - 38km NW of Carlin, Nevada",0,explosion,",geoserve,origin,phase-data,",-480.0,1539272693457,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660504 +,,2018284001,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018284001&format=geojson,0.2293,,183.0,",pr2018284001,",2.76,md,,pr,17.0,"22km ENE of Punta Cana, Dominican Republic",0.26,117,",pr,",reviewed,1539223141040,"M 2.8 - 22km ENE of Punta Cana, Dominican Republic",0,earthquake,",geoserve,origin,phase-data,",-240.0,1539236930700,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018284001 +,,70644177,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70644177&format=geojson,0.05746,,136.0,",hv70644177,",1.76,md,,hv,34.0,"3km WSW of Pahala, Hawaii",0.09,48,",hv,",reviewed,1539222807670,"M 1.8 - 3km WSW of Pahala, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539395864250,https://earthquake.usgs.gov/earthquakes/eventpage/hv70644177 +,,20276683,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276683&format=geojson,,,,",ak20276683,",2.7,ml,,ak,,"75km SSW of Kaktovik, Alaska",1.04,112,",ak,",automatic,1539222353264,"M 2.7 - 75km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539222792348,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276683 +,,1000haf0,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000haf0&format=geojson,3.822,,138.0,",us1000haf0,",4.9,mb,,us,,"136km S of Severo-Kuril'sk, Russia",0.76,369,",us,",reviewed,1539221426570,"M 4.9 - 136km S of Severo-Kuril'sk, Russia",0,earthquake,",geoserve,origin,phase-data,",600.0,1539222946040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000haf0 +,,20276454,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276454&format=geojson,,,,",ak20276454,",1.4,ml,,ak,,"32km SSW of Fairbanks, Alaska",0.83,30,",ak,",automatic,1539221173138,"M 1.4 - 32km SSW of Fairbanks, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539221350089,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276454 +,,73096041,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096041&format=geojson,0.02132,,53.0,",nc73096041,",1.2,md,,nc,20.0,"6km SW of Gilroy, CA",0.08,22,",nc,",reviewed,1539221145950,"M 1.2 - 6km SW of Gilroy, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539234782951,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096041 +,,70644102,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70644102&format=geojson,0.006369,,146.0,",hv70644102,",1.88,ml,,hv,17.0,"13km S of Fern Acres, Hawaii",0.12,54,",hv,",reviewed,1539220587820,"M 1.9 - 13km S of Fern Acres, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539225524360,https://earthquake.usgs.gov/earthquakes/eventpage/hv70644102 +,,61436566,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61436566&format=geojson,0.01097,,145.0,",uw61436566,",0.05,ml,,uw,10.0,"38km NNE of Amboy, Washington",0.1,0,",uw,",reviewed,1539220243540,"M 0.1 - 38km NNE of Amboy, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539281323900,https://earthquake.usgs.gov/earthquakes/eventpage/uw61436566 +,,2018284000,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018284000&format=geojson,0.1424,,259.0,",pr2018284000,",1.92,md,,pr,4.0,"13km SSW of Guanica, Puerto Rico",0.03,57,",pr,",reviewed,1539219926460,"M 1.9 - 13km SSW of Guanica, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1539232780756,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018284000 +,,73096036,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096036&format=geojson,0.009129,,47.0,",nc73096036,",1.07,md,,nc,23.0,"6km NW of The Geysers, CA",0.05,18,",nc,",automatic,1539219393330,"M 1.1 - 6km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539222722816,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096036 +,,61436556,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61436556&format=geojson,0.121,,200.0,",uw61436556,",0.4,ml,,uw,8.0,"22km N of Amboy, Washington",0.11,2,",uw,",reviewed,1539219353040,"M 0.4 - 22km N of Amboy, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539282434930,https://earthquake.usgs.gov/earthquakes/eventpage/uw61436556 +,,70644067,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70644067&format=geojson,0.02836,,110.0,",hv70644067,",1.33,md,,hv,33.0,"25km E of Honaunau-Napoopoo, Hawaii",0.29,27,",hv,",reviewed,1539218647900,"M 1.3 - 25km E of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539394461450,https://earthquake.usgs.gov/earthquakes/eventpage/hv70644067 +,,20276194,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276194&format=geojson,,,,",ak20276194,",2.2,ml,,ak,,"72km WNW of Willow, Alaska",0.62,74,",ak,",automatic,1539218531036,"M 2.2 - 72km WNW of Willow, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539218748409,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276194 +,,73096031,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096031&format=geojson,0.9176,,293.0,",nc73096031,",3.18,ml,,nc,19.0,"107km W of Petrolia, CA",0.28,156,",nc,",reviewed,1539218366150,"M 3.2 - 107km W of Petrolia, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539236598109,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096031 +,,70644057,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70644057&format=geojson,0.02305,,85.0,",hv70644057,",1.8,md,,hv,50.0,"3km SSE of Pahala, Hawaii",0.1,50,",hv,",reviewed,1539218239300,"M 1.8 - 3km SSE of Pahala, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539220064210,https://earthquake.usgs.gov/earthquakes/eventpage/hv70644057 +,,73096026,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096026&format=geojson,0.01207,,131.0,",nc73096026,",0.26,md,,nc,13.0,"12km E of Mammoth Lakes, CA",0.03,1,",nc,",reviewed,1539218174610,"M 0.3 - 12km E of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539222062758,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096026 +,,70644032,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70644032&format=geojson,0.006332,,244.0,",hv70644032,",1.7,md,,hv,13.0,"7km WSW of Volcano, Hawaii",0.32,44,",hv,",automatic,1539217754040,"M 1.7 - 7km WSW of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539217933260,https://earthquake.usgs.gov/earthquakes/eventpage/hv70644032 +,,73096021,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096021&format=geojson,0.1663,,251.0,",nc73096021,",2.52,md,,nc,23.0,"19km WSW of Petrolia, CA",0.15,98,",nc,",reviewed,1539216900910,"M 2.5 - 19km WSW of Petrolia, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539228035318,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096021 +,,1000hadv,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000hadv&format=geojson,3.958,,104.0,",us1000hadv,",5.2,mb,,us,,"155km S of Severo-Kuril'sk, Russia",0.89,416,",us,",reviewed,1539216884230,"M 5.2 - 155km S of Severo-Kuril'sk, Russia",0,earthquake,",geoserve,origin,phase-data,",600.0,1539217956040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000hadv +,,1000hae0,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000hae0&format=geojson,3.85,,172.0,",us1000hae0,",4.7,mb,,us,,"141km S of Severo-Kuril'sk, Russia",0.71,340,",us,",reviewed,1539216861980,"M 4.7 - 141km S of Severo-Kuril'sk, Russia",0,earthquake,",geoserve,origin,phase-data,",600.0,1539220733040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000hae0 +,,38319376,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38319376&format=geojson,0.06189,,98.0,",ci38319376,",0.84,ml,,ci,14.0,"10km S of Idyllwild, CA",0.06,11,",ci,",reviewed,1539216111920,"M 0.8 - 10km S of Idyllwild, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539217006377,https://earthquake.usgs.gov/earthquakes/eventpage/ci38319376 +,,38319360,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38319360&format=geojson,0.03226,,66.0,",ci38319360,",0.51,ml,,ci,13.0,"10km NNW of Anza, CA",0.04,4,",ci,",reviewed,1539215587350,"M 0.5 - 10km NNW of Anza, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539216837721,https://earthquake.usgs.gov/earthquakes/eventpage/ci38319360 +,,38319352,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38319352&format=geojson,0.06681,,125.0,",ci38319352,",0.56,ml,,ci,11.0,"10km NNW of Anza, CA",0.06,5,",ci,",reviewed,1539215471530,"M 0.6 - 10km NNW of Anza, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539216699995,https://earthquake.usgs.gov/earthquakes/eventpage/ci38319352 +,,20276181,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276181&format=geojson,,,,",ak20276181,",2.1,ml,,ak,,"48km NNE of Yakutat, Alaska",0.75,68,",ak,",automatic,1539214631295,"M 2.1 - 48km NNE of Yakutat, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539214833443,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276181 +,,1000hacz,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000hacz&format=geojson,0.145,,37.0,",us1000hacz,",2.6,mb_lg,,us,,"7km NE of Medford, Oklahoma",0.27,104,",us,",reviewed,1539213740830,"M 2.6 - 7km NE of Medford, Oklahoma",0,earthquake,",geoserve,origin,phase-data,",-360.0,1539215169040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000hacz +,,38319320,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38319320&format=geojson,0.05965,,44.0,",ci38319320,",1.37,ml,,ci,36.0,"9km NNE of Cabazon, CA",0.15,29,",ci,",reviewed,1539213655570,"M 1.4 - 9km NNE of Cabazon, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539217034634,https://earthquake.usgs.gov/earthquakes/eventpage/ci38319320 +,,61436536,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61436536&format=geojson,0.5778,,229.0,",uw61436536,",2.0,ml,,uw,9.0,"9km SSW of Princeton, Canada",0.35,62,",uw,",reviewed,1539213648320,"M 2.0 Explosion - 9km SSW of Princeton, Canada",0,explosion,",geoserve,origin,phase-data,",-480.0,1539216828510,https://earthquake.usgs.gov/earthquakes/eventpage/uw61436536 +,,61795136,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61795136&format=geojson,0.02415,,145.0,",av61795136,",0.02,ml,,av,5.0,"11km N of Atka, Alaska",0.17,0,",av,",reviewed,1539213522500,"M 0.0 - 11km N of Atka, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539216792000,https://earthquake.usgs.gov/earthquakes/eventpage/av61795136 +,,70643882,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70643882&format=geojson,0.04192,,180.0,",hv70643882,",1.83,ml,,hv,11.0,"11km SSE of Volcano, Hawaii",0.1,52,",hv,",automatic,1539213453270,"M 1.8 - 11km SSE of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539213795580,https://earthquake.usgs.gov/earthquakes/eventpage/hv70643882 +,,1000had3,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000had3&format=geojson,4.568,,81.0,",us1000had3,",5.1,mb,,us,,South of the Fiji Islands,1.32,400,",us,",reviewed,1539213412320,M 5.1 - South of the Fiji Islands,0,earthquake,",geoserve,origin,phase-data,",-720.0,1539215025040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000had3 +green,,1000hacw,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000hacw&format=geojson,3.879,,18.0,",pt18283004,at00pgeomo,us1000hacw,",6.5,mww,4.26,us,,"148km S of Severo-Kuril'sk, Russia",0.91,650,",pt,at,us,",reviewed,1539213362130,"M 6.5 - 148km S of Severo-Kuril'sk, Russia",1,earthquake,",geoserve,ground-failure,impact-link,losspager,moment-tensor,origin,phase-data,shakemap,",600.0,1539224915040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000hacw +,,61795126,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61795126&format=geojson,0.02146,,114.0,",av61795126,",1.03,ml,,av,5.0,"77km NNE of Chignik Lake, Alaska",0.04,16,",av,",reviewed,1539213082980,"M 1.0 - 77km NNE of Chignik Lake, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539216537060,https://earthquake.usgs.gov/earthquakes/eventpage/av61795126 +,,61436531,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61436531&format=geojson,0.1059,,290.0,",uw61436531,",0.75,ml,,uw,8.0,"6km ESE of Yacolt, Washington",0.08,9,",uw,",reviewed,1539213069540,"M 0.8 Explosion - 6km ESE of Yacolt, Washington",0,explosion,",geoserve,origin,phase-data,",-480.0,1539217017480,https://earthquake.usgs.gov/earthquakes/eventpage/uw61436531 +,,20276144,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276144&format=geojson,,,,",ak20276144,av70806544,",1.9,ml,,ak,,"74km NW of Nikiski, Alaska",0.37,56,",ak,av,",automatic,1539211825675,"M 1.9 - 74km NW of Nikiski, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539213676010,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276144 +,,61436526,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61436526&format=geojson,0.03311,,211.0,",uw61436526,",0.59,md,,uw,5.0,"13km N of Richland, Washington",0.13,5,",uw,",reviewed,1539211675350,"M 0.6 - 13km N of Richland, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539217144040,https://earthquake.usgs.gov/earthquakes/eventpage/uw61436526 +,,38319304,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38319304&format=geojson,0.05559,,96.0,",ci38319304,",0.89,ml,,ci,27.0,"9km S of Idyllwild, CA",0.16,12,",ci,",reviewed,1539211637790,"M 0.9 - 9km S of Idyllwild, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539217036846,https://earthquake.usgs.gov/earthquakes/eventpage/ci38319304 +,,20276137,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276137&format=geojson,,,,",ak20276137,",2.5,ml,,ak,,"55km N of Petersburg, Alaska",1.11,96,",ak,",automatic,1539211273053,"M 2.5 - 55km N of Petersburg, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539211821647,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276137 +,,2018283008,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018283008&format=geojson,0.5463,,222.0,",pr2018283008,",2.76,md,,pr,13.0,"51km SSE of Boca de Yuma, Dominican Republic",0.49,117,",pr,",reviewed,1539210778880,"M 2.8 - 51km SSE of Boca de Yuma, Dominican Republic",0,earthquake,",geoserve,origin,phase-data,",-300.0,1539220048220,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018283008 +,,38319296,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38319296&format=geojson,0.02733,,106.0,",ci38319296,",0.55,ml,,ci,16.0,"9km NE of Aguanga, CA",0.13,5,",ci,",reviewed,1539210726840,"M 0.6 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539217053551,https://earthquake.usgs.gov/earthquakes/eventpage/ci38319296 +,,70643797,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70643797&format=geojson,0.06272,,42.0,",hv70643797,",1.88,ml,,hv,43.0,"17km W of Volcano, Hawaii",0.18,54,",hv,",automatic,1539210445110,"M 1.9 - 17km W of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539210792920,https://earthquake.usgs.gov/earthquakes/eventpage/hv70643797 +,,20276123,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276123&format=geojson,,,,",ak20276123,",1.7,ml,,ak,,"81km WSW of Cantwell, Alaska",0.52,44,",ak,",automatic,1539209883270,"M 1.7 - 81km WSW of Cantwell, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539210355816,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276123 +,,73096011,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096011&format=geojson,0.009947,,86.0,",nc73096011,",0.24,md,,nc,13.0,"8km WNW of The Geysers, CA",0.02,1,",nc,",reviewed,1539209794560,"M 0.2 - 8km WNW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539216200425,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096011 +,,61795091,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61795091&format=geojson,,,109.0,",av61795091,",1.16,ml,,av,5.0,"46km WSW of Tanaga Volcano, Alaska",0.19,21,",av,",reviewed,1539209708320,"M 1.2 - 46km WSW of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539212519510,https://earthquake.usgs.gov/earthquakes/eventpage/av61795091 +,,73096001,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73096001&format=geojson,0.08411,,101.0,",nc73096001,",1.43,md,,nc,24.0,"17km ESE of Livermore, CA",0.07,31,",nc,",reviewed,1539209601920,"M 1.4 - 17km ESE of Livermore, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539217503034,https://earthquake.usgs.gov/earthquakes/eventpage/nc73096001 +,,38319264,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38319264&format=geojson,0.06174,,105.0,",ci38319264,",0.92,ml,,ci,27.0,"18km ESE of Anza, CA",0.22,13,",ci,",reviewed,1539209200670,"M 0.9 - 18km ESE of Anza, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539289704919,https://earthquake.usgs.gov/earthquakes/eventpage/ci38319264 +,,38319272,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38319272&format=geojson,0.06554,,234.0,",ci38319272,",0.54,ml,,ci,12.0,"18km ESE of Anza, CA",0.09,4,",ci,",reviewed,1539209135060,"M 0.5 - 18km ESE of Anza, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539216531888,https://earthquake.usgs.gov/earthquakes/eventpage/ci38319272 +,,73095996,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095996&format=geojson,0.2633,,79.0,",nc73095996,",1.73,md,,nc,23.0,"15km NE of Nice, CA",0.18,46,",nc,",reviewed,1539208891180,"M 1.7 - 15km NE of Nice, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539220263511,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095996 +green,,1000habl,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000habl&format=geojson,0.907,,12.0,",us1000habl,",6.2,mww,4.59,us,,"94km SW of Kokopo, Papua New Guinea",1.14,591,",us,",reviewed,1539208835130,"M 6.2 - 94km SW of Kokopo, Papua New Guinea",1,earthquake,",geoserve,ground-failure,losspager,moment-tensor,origin,phase-data,shakemap,",600.0,1539219109963,https://earthquake.usgs.gov/earthquakes/eventpage/us1000habl +,,73095991,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095991&format=geojson,0.01027,,124.0,",nc73095991,",0.36,md,,nc,9.0,"3km WNW of Mammoth Lakes, CA",0.09,2,",nc,",reviewed,1539208280510,"M 0.4 - 3km WNW of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539209344123,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095991 +,,73095986,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095986&format=geojson,0.009669,,55.0,",nc73095986,",0.54,md,,nc,29.0,"6km WNW of The Geysers, CA",0.05,4,",nc,",reviewed,1539208209440,"M 0.5 - 6km WNW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539216381209,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095986 +,,73095981,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095981&format=geojson,0.04429,,105.0,",nc73095981,",1.01,md,,nc,13.0,"10km E of Alum Rock, CA",0.03,16,",nc,",reviewed,1539207541150,"M 1.0 - 10km E of Alum Rock, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539215869503,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095981 +,,00660431,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660431&format=geojson,0.062,,188.57,",nn00660431,",1.1,ml,,nn,7.0,"12km SW of Truckee, California",0.27,19,",nn,",automatic,1539207510610,"M 1.1 - 12km SW of Truckee, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539207618980,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660431 +,,73095976,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095976&format=geojson,0.04284,,191.0,",nc73095976,",0.89,md,,nc,19.0,"23km ENE of San Ardo, CA",0.04,12,",nc,",reviewed,1539207508720,"M 0.9 - 23km ENE of San Ardo, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539219364575,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095976 +,,73095971,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095971&format=geojson,0.01307,,64.0,",nc73095971,",0.6,md,,nc,30.0,"6km WNW of The Geysers, CA",0.04,6,",nc,",reviewed,1539206956420,"M 0.6 - 6km WNW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539216591934,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095971 +,,2018283007,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018283007&format=geojson,0.572,,207.0,",pr2018283007,",3.24,md,,pr,6.0,"59km SE of Boca de Yuma, Dominican Republic",0.37,162,",pr,",reviewed,1539206779730,"M 3.2 - 59km SE of Boca de Yuma, Dominican Republic",0,earthquake,",geoserve,origin,phase-data,",-300.0,1539219838493,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018283007 +,,73095956,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095956&format=geojson,0.04811,,152.0,",nc73095956,",1.19,md,,nc,17.0,"15km SSW of Gonzales, CA",0.08,22,",nc,",reviewed,1539206007250,"M 1.2 - 15km SSW of Gonzales, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539219363418,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095956 +,,61795051,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61795051&format=geojson,0.02297,,288.0,",av61795051,",0.32,ml,,av,6.0,"31km WNW of Adak, Alaska",0.09,2,",av,",reviewed,1539205997360,"M 0.3 - 31km WNW of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539212199610,https://earthquake.usgs.gov/earthquakes/eventpage/av61795051 +green,,1000haaj,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000haaj&format=geojson,2.014,,30.0,",us1000haaj,",5.9,mww,5.15,us,,"117km ESE of Kimbe, Papua New Guinea",1.27,536,",us,",reviewed,1539205996680,"M 5.9 - 117km ESE of Kimbe, Papua New Guinea",1,earthquake,",geoserve,losspager,moment-tensor,origin,phase-data,shakemap,",600.0,1539213315411,https://earthquake.usgs.gov/earthquakes/eventpage/us1000haaj +,,71109679,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc71109679&format=geojson,0.01938,,123.0,",nc71109679,",0.17,md,,nc,10.0,"3km WSW of Anderson Springs, CA",0.04,0,",nc,",reviewed,1539205389400,"M 0.2 - 3km WSW of Anderson Springs, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539208981338,https://earthquake.usgs.gov/earthquakes/eventpage/nc71109679 +,,20276068,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276068&format=geojson,,,,",ak20276068,",1.2,ml,,ak,,"70km ENE of Cape Yakataga, Alaska",0.36,22,",ak,",reviewed,1539205196815,"M 1.2 - 70km ENE of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539218581388,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276068 +green,,1000haab,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000haab&format=geojson,2.01,,30.0,",us1000haab,",5.9,mww,4.69,us,,"113km ESE of Kimbe, Papua New Guinea",1.16,536,",us,",reviewed,1539205141060,"M 5.9 - 113km ESE of Kimbe, Papua New Guinea",1,earthquake,",geoserve,losspager,moment-tensor,origin,phase-data,shakemap,",600.0,1539214834040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000haab +,,73095946,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095946&format=geojson,0.008596,,57.0,",nc73095946,",0.5,md,,nc,17.0,"6km W of Cobb, CA",0.01,4,",nc,",reviewed,1539205094310,"M 0.5 - 6km W of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539218125100,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095946 +,,73095941,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095941&format=geojson,0.3972,,298.0,",nc73095941,",2.88,md,,nc,46.0,"47km W of Ferndale, CA",0.23,128,",nc,",reviewed,1539205093630,"M 2.9 - 47km W of Ferndale, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539226206148,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095941 +,,60300332,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60300332&format=geojson,0.005707,,82.0,",uu60300332,",1.7,ml,,uu,15.0,"20km S of Old Faithful Geyser, Wyoming",0.3,44,",uu,",reviewed,1539204724410,"M 1.7 - 20km S of Old Faithful Geyser, Wyoming",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539272695770,https://earthquake.usgs.gov/earthquakes/eventpage/uu60300332 +,,00660468,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660468&format=geojson,0.079,,120.6,",nn00660468,",0.9,ml,,nn,4.0,"30km SSW of Smith Valley, Nevada",0.2606,12,",nn,",reviewed,1539204614422,"M 0.9 - 30km SSW of Smith Valley, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539223546364,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660468 +,,70806534,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70806534&format=geojson,0.02845,,227.0,",av70806534,",0.6,ml,,av,9.0,"73km NW of Nikiski, Alaska",0.17,6,",av,",reviewed,1539204613350,"M 0.6 - 73km NW of Nikiski, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539213129990,https://earthquake.usgs.gov/earthquakes/eventpage/av70806534 +,,38319216,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38319216&format=geojson,0.06469,,209.0,",ci38319216,",1.42,ml,,ci,18.0,"5km SE of Chula Vista, CA",0.26,31,",ci,",reviewed,1539204595740,"M 1.4 Quarry Blast - 5km SE of Chula Vista, CA",0,quarry blast,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539216334013,https://earthquake.usgs.gov/earthquakes/eventpage/ci38319216 +,,20276058,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276058&format=geojson,,,,",ak20276058,av70806539,",3.0,ml,,ak,,"74km NW of Nikiski, Alaska",0.63,138,",ak,av,",automatic,1539204523103,"M 3.0 - 74km NW of Nikiski, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539215143590,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276058 +green,4.1,1000haa3,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000haa3&format=geojson,1.763,3.0,14.0,",us1000haa3,pt18283003,at00pgehsk,",7.0,mww,7.46,us,,"117km E of Kimbe, Papua New Guinea",1.22,755,",us,pt,at,",reviewed,1539204500290,"M 7.0 - 117km E of Kimbe, Papua New Guinea",1,earthquake,",dyfi,finite-fault,general-text,geoserve,ground-failure,impact-link,losspager,moment-tensor,origin,phase-data,poster,shakemap,",600.0,1539378744253,https://earthquake.usgs.gov/earthquakes/eventpage/us1000haa3 +green,,1000ha9t,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000ha9t&format=geojson,1.757,,18.0,",us1000ha9t,",6.1,mb,4.79,us,,"132km E of Kimbe, Papua New Guinea",0.95,572,",us,",reviewed,1539204326420,"M 6.1 - 132km E of Kimbe, Papua New Guinea",1,earthquake,",geoserve,ground-failure,losspager,origin,phase-data,shakemap,",600.0,1539217505598,https://earthquake.usgs.gov/earthquakes/eventpage/us1000ha9t +,,20276056,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276056&format=geojson,,,,",ak20276056,",1.9,ml,,ak,,"59km SW of Kaktovik, Alaska",1.04,56,",ak,",automatic,1539204172400,"M 1.9 - 59km SW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539204499282,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276056 +,2.0,00660359,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660359&format=geojson,0.042,1.0,69.82,",nn00660359,",0.0,ml,,nn,22.0,"47km E of Beatty, Nevada",0.0937,0,",nn,",reviewed,1539204114809,"M 0.0 - 47km E of Beatty, Nevada",0,earthquake,",dyfi,geoserve,origin,phase-data,",-480.0,1539223544930,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660359 +,,38319200,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38319200&format=geojson,0.02989,,44.0,",ci38319200,",0.81,ml,,ci,34.0,"4km SW of Idyllwild, CA",0.13,10,",ci,",reviewed,1539204051430,"M 0.8 - 4km SW of Idyllwild, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539205171453,https://earthquake.usgs.gov/earthquakes/eventpage/ci38319200 +,,61795011,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61795011&format=geojson,0.02778,,141.0,",av61795011,",-0.02,ml,,av,5.0,"41km ENE of Adak, Alaska",0.06,0,",av,",reviewed,1539203933460,"M -0.0 - 41km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539211782490,https://earthquake.usgs.gov/earthquakes/eventpage/av61795011 +,,70806569,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70806569&format=geojson,0.02617,,117.0,",av70806569,",-0.59,ml,,av,4.0,"42km ENE of Adak, Alaska",0.11,0,",av,",reviewed,1539203904280,"M -0.6 - 42km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539215805220,https://earthquake.usgs.gov/earthquakes/eventpage/av70806569 +,,70806549,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70806549&format=geojson,0.01602,,148.0,",av70806549,",-0.77,ml,,av,4.0,"41km ENE of Adak, Alaska",0.16,0,",av,",reviewed,1539203842650,"M -0.8 - 41km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539214817530,https://earthquake.usgs.gov/earthquakes/eventpage/av70806549 +,,73095936,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095936&format=geojson,0.01071,,41.0,",nc73095936,",0.37,md,,nc,18.0,"6km NW of The Geysers, CA",0.03,2,",nc,",reviewed,1539203758610,"M 0.4 - 6km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539218275320,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095936 +,,1000ha9c,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000ha9c&format=geojson,5.319,,80.0,",us1000ha9c,",4.3,mb,,us,,"129km S of Leksula, Indonesia",0.84,284,",us,",reviewed,1539203219460,"M 4.3 - 129km S of Leksula, Indonesia",0,earthquake,",geoserve,origin,phase-data,",480.0,1539210801040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000ha9c +,,61795006,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61795006&format=geojson,0.01376,,275.0,",av61795006,",0.38,ml,,av,5.0,"32km WNW of Adak, Alaska",0.11,2,",av,",reviewed,1539202961220,"M 0.4 - 32km WNW of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539211718310,https://earthquake.usgs.gov/earthquakes/eventpage/av61795006 +,,38319192,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38319192&format=geojson,0.01398,,75.0,",ci38319192,",0.46,ml,,ci,20.0,"3km ENE of Anza, CA",0.09,3,",ci,",reviewed,1539202897890,"M 0.5 - 3km ENE of Anza, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539204466541,https://earthquake.usgs.gov/earthquakes/eventpage/ci38319192 +,,73095931,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095931&format=geojson,0.01161,,92.0,",nc73095931,",0.89,md,,nc,11.0,"6km W of Cobb, CA",0.01,12,",nc,",automatic,1539202853070,"M 0.9 - 6km W of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539203823615,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095931 +,,38319176,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38319176&format=geojson,0.02468,,31.0,",ci38319176,",1.6,ml,,ci,71.0,"5km WSW of Borrego Springs, CA",0.18,39,",ci,",reviewed,1539202487290,"M 1.6 - 5km WSW of Borrego Springs, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1539203851880,https://earthquake.usgs.gov/earthquakes/eventpage/ci38319176 +,,73095926,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095926&format=geojson,0.01067,,25.0,",nc73095926,",1.7,md,,nc,48.0,"6km NW of The Geysers, CA",0.05,44,",nc,",reviewed,1539202249300,"M 1.7 - 6km NW of The Geysers, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539229742478,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095926 +,,20276044,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276044&format=geojson,,,,",ak20276044,",2.8,ml,,ak,,"100km NNW of Arctic Village, Alaska",0.76,121,",ak,",automatic,1539201875909,"M 2.8 - 100km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539204394864,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276044 +,,20276039,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276039&format=geojson,,,,",ak20276039,",2.0,ml,,ak,,"41km W of Kenai, Alaska",0.49,62,",ak,",automatic,1539201581874,"M 2.0 - 41km W of Kenai, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539202043035,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276039 +,,73095916,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095916&format=geojson,0.01565,,81.0,",nc73095916,",0.88,md,,nc,13.0,"9km NE of Pinnacles, CA",0.07,12,",nc,",reviewed,1539201405490,"M 0.9 - 9km NE of Pinnacles, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539209434501,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095916 +,,20276033,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276033&format=geojson,,,,",ak20276033,",1.9,ml,,ak,,"86km SW of Kaktovik, Alaska",0.98,56,",ak,",automatic,1539200580047,"M 1.9 - 86km SW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539201074839,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276033 +,,61794971,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61794971&format=geojson,0.02576,,215.0,",av61794971,",0.64,ml,,av,6.0,"93km SE of King Salmon, Alaska",0.1,6,",av,",reviewed,1539200457990,"M 0.6 - 93km SE of King Salmon, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539211426910,https://earthquake.usgs.gov/earthquakes/eventpage/av61794971 +,,2018283006,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018283006&format=geojson,1.5564,,322.0,",pr2018283006,",3.44,md,,pr,14.0,"82km N of Road Town, British Virgin Islands",0.42,182,",pr,",reviewed,1539199597490,"M 3.4 - 82km N of Road Town, British Virgin Islands",0,earthquake,",geoserve,origin,phase-data,",-240.0,1539219728238,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018283006 +,,73095911,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095911&format=geojson,0.28,,328.0,",nn00660354,nc73095911,",1.32,md,,nc,4.0,"6km SE of Deep Springs, CA",0.05,27,",nn,nc,",reviewed,1539199559380,"M 1.3 - 6km SE of Deep Springs, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539223542743,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095911 +,,38319128,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38319128&format=geojson,0.1185,,99.0,",ci38319128,",1.23,ml,,ci,9.0,"7km S of Mojave, CA",0.14,23,",ci,",reviewed,1539198274300,"M 1.2 Quarry Blast - 7km S of Mojave, CA",0,quarry blast,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539199593164,https://earthquake.usgs.gov/earthquakes/eventpage/ci38319128 +,,20276013,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276013&format=geojson,,,,",ak20276013,",2.5,ml,,ak,,"168km SSE of Yakutat, Alaska",0.8,96,",ak,",reviewed,1539197591606,"M 2.5 - 168km SSE of Yakutat, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539217291205,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276013 +,,38319104,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38319104&format=geojson,0.02146,,60.0,",ci38319104,",0.54,ml,,ci,23.0,"9km NE of Aguanga, CA",0.09,4,",ci,",reviewed,1539197371810,"M 0.5 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539198368095,https://earthquake.usgs.gov/earthquakes/eventpage/ci38319104 +green,4.3,1000ha6q,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000ha6q&format=geojson,1.051,170.0,27.0,",us1000ha6q,",6.0,mww,5.17,us,,"39km NNE of Sumberanyar, Indonesia",1.09,627,",us,",reviewed,1539197095310,"M 6.0 - 39km NNE of Sumberanyar, Indonesia",0,earthquake,",dyfi,geoserve,ground-failure,losspager,moment-tensor,origin,phase-data,shakemap,",480.0,1539515759040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000ha6q +,,20276011,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276011&format=geojson,,,,",ak20276011,",1.7,ml,,ak,,"120km NNW of Arctic Village, Alaska",1.53,44,",ak,",automatic,1539196991393,"M 1.7 - 120km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539197276900,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276011 +,,38319096,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38319096&format=geojson,0.03058,,50.0,",ci38319096,",0.7,ml,,ci,24.0,"9km ENE of Aguanga, CA",0.13,8,",ci,",reviewed,1539196973760,"M 0.7 - 9km ENE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539197624224,https://earthquake.usgs.gov/earthquakes/eventpage/ci38319096 +,,38319088,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38319088&format=geojson,0.004828,,59.0,",ci38319088,",0.44,ml,,ci,19.0,"10km NE of Aguanga, CA",0.1,3,",ci,",reviewed,1539196294000,"M 0.4 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539197379723,https://earthquake.usgs.gov/earthquakes/eventpage/ci38319088 +,,1000ha6x,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000ha6x&format=geojson,1.474,,201.0,",us1000ha6x,",4.1,mb,,us,,"75km WNW of San Antonio de los Cobres, Argentina",0.7,259,",us,",reviewed,1539195386910,"M 4.1 - 75km WNW of San Antonio de los Cobres, Argentina",0,earthquake,",geoserve,origin,phase-data,",-180.0,1539209698040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000ha6x +,,20276006,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276006&format=geojson,,,,",ak20276006,",1.7,ml,,ak,,"73km SSW of Kobuk, Alaska",0.97,44,",ak,",automatic,1539195289787,"M 1.7 - 73km SSW of Kobuk, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539195818991,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276006 +,,38319080,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38319080&format=geojson,0.1537,,121.0,",ci38319080,",0.81,ml,,ci,24.0,"16km SSW of Oasis, CA",0.21,10,",ci,",reviewed,1539195179850,"M 0.8 - 16km SSW of Oasis, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539197913186,https://earthquake.usgs.gov/earthquakes/eventpage/ci38319080 +,,38319056,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38319056&format=geojson,0.06264,,79.0,",ci38319056,",0.94,ml,,ci,34.0,"8km SW of Idyllwild, CA",0.12,14,",ci,",reviewed,1539193846560,"M 0.9 - 8km SW of Idyllwild, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539195910427,https://earthquake.usgs.gov/earthquakes/eventpage/ci38319056 +,,1000ha59,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000ha59&format=geojson,0.658,,136.0,",us1000ha59,",4.6,mb,,us,,"56km SW of Canete, Chile",1.0,326,",us,",reviewed,1539193734980,"M 4.6 - 56km SW of Canete, Chile",0,earthquake,",geoserve,origin,phase-data,",-300.0,1539214140040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000ha59 +,3.1,38319040,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38319040&format=geojson,0.09119,10.0,88.0,",ci38319040,",2.4,ml,,ci,66.0,"7km W of Newport Beach, CA",0.25,92,",ci,",reviewed,1539193641460,"M 2.4 - 7km W of Newport Beach, CA",0,earthquake,",dyfi,focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1539240610050,https://earthquake.usgs.gov/earthquakes/eventpage/ci38319040 +,,20276001,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276001&format=geojson,,,,",ak20276001,",1.8,ml,,ak,,"110km NNW of Arctic Village, Alaska",0.49,50,",ak,",automatic,1539193324424,"M 1.8 - 110km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539193819722,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276001 +,,1000ha51,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000ha51&format=geojson,0.74,,104.0,",us1000ha51,",4.1,mb,,us,,"88km S of Putre, Chile",0.57,259,",us,",reviewed,1539193299050,"M 4.1 - 88km S of Putre, Chile",0,earthquake,",geoserve,origin,phase-data,",-240.0,1539213433040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000ha51 +,,70643217,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70643217&format=geojson,0.006614,,79.0,",hv70643217,",1.32,md,,hv,25.0,"27km E of Honaunau-Napoopoo, Hawaii",0.16,27,",hv,",reviewed,1539193205360,"M 1.3 - 27km E of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539389482270,https://earthquake.usgs.gov/earthquakes/eventpage/hv70643217 +,,38319032,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38319032&format=geojson,0.0141,,31.0,",ci38319032,",0.79,ml,,ci,38.0,"9km NE of Aguanga, CA",0.15,10,",ci,",reviewed,1539192985010,"M 0.8 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539194453907,https://earthquake.usgs.gov/earthquakes/eventpage/ci38319032 +,,20275998,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20275998&format=geojson,,,,",ak20275998,",1.5,ml,,ak,,"57km NW of Healy, Alaska",0.72,35,",ak,",automatic,1539192916472,"M 1.5 - 57km NW of Healy, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539193351746,https://earthquake.usgs.gov/earthquakes/eventpage/ak20275998 +,,1000ha4u,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000ha4u&format=geojson,0.781,,58.0,",us1000ha4u,",4.9,mb,,us,,"15km ENE of Kali, Indonesia",0.81,369,",us,",reviewed,1539192863630,"M 4.9 - 15km ENE of Kali, Indonesia",0,earthquake,",geoserve,origin,phase-data,",480.0,1539221810498,https://earthquake.usgs.gov/earthquakes/eventpage/us1000ha4u +,,60300287,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60300287&format=geojson,0.1687,,116.0,",uu60300287,",1.58,ml,,uu,9.0,"2km SSE of Enoch, Utah",0.17,38,",uu,",reviewed,1539192409290,"M 1.6 - 2km SSE of Enoch, Utah",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539201092470,https://earthquake.usgs.gov/earthquakes/eventpage/uu60300287 +,,73095896,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095896&format=geojson,0.04338,,118.0,",nc73095896,",0.64,md,,nc,14.0,"20km NW of Parkfield, CA",0.04,6,",nc,",reviewed,1539192288470,"M 0.6 - 20km NW of Parkfield, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539209763267,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095896 +,,38319016,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38319016&format=geojson,0.1058,,92.0,",ci38319016,",0.73,ml,,ci,43.0,"18km NNW of Borrego Springs, CA",0.16,8,",ci,",reviewed,1539191734950,"M 0.7 - 18km NNW of Borrego Springs, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539193770155,https://earthquake.usgs.gov/earthquakes/eventpage/ci38319016 +,,20275791,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20275791&format=geojson,,,,",ak20275791,",2.1,ml,,ak,,"127km NW of Arctic Village, Alaska",0.77,68,",ak,",automatic,1539191259932,"M 2.1 - 127km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539191562335,https://earthquake.usgs.gov/earthquakes/eventpage/ak20275791 +,,73095886,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095886&format=geojson,0.01009,,63.0,",nc73095886,",1.23,md,,nc,31.0,"3km SSW of Anderson Springs, CA",0.06,23,",nc,",reviewed,1539190748640,"M 1.2 - 3km SSW of Anderson Springs, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539209104198,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095886 +,,73095881,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095881&format=geojson,0.01071,,45.0,",nc73095881,",2.18,md,,nc,51.0,"3km SSW of Anderson Springs, CA",0.08,73,",nc,",reviewed,1539190684950,"M 2.2 - 3km SSW of Anderson Springs, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539220386073,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095881 +,3.1,73095876,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095876&format=geojson,0.009604,1.0,50.0,",nc73095876,",2.63,md,,nc,36.0,"3km SSW of Anderson Springs, CA",0.07,107,",nc,",reviewed,1539190678910,"M 2.6 - 3km SSW of Anderson Springs, CA",0,earthquake,",dyfi,focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539216662958,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095876 +,,60300277,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60300277&format=geojson,0.0576,,104.0,",uu60300277,",1.45,md,,uu,6.0,"68km ENE of Old Faithful Geyser, Wyoming",0.14,32,",uu,",reviewed,1539190568320,"M 1.5 - 68km ENE of Old Faithful Geyser, Wyoming",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539193845570,https://earthquake.usgs.gov/earthquakes/eventpage/uu60300277 +,,00660313,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660313&format=geojson,0.427,,197.84,",nn00660313,",1.0,ml,,nn,5.0,"39km SW of Gerlach-Empire, Nevada",0.1928,15,",nn,",reviewed,1539190387079,"M 1.0 - 39km SW of Gerlach-Empire, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539223531387,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660313 +,,00660311,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660311&format=geojson,0.13,,139.52,",nn00660311,",0.2,ml,,nn,12.0,"31km NNW of Beatty, Nevada",0.1216,1,",nn,",reviewed,1539189343722,"M 0.2 - 31km NNW of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539223529811,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660311 +,,38318992,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38318992&format=geojson,0.0657,,34.0,",ci38318992,",1.19,ml,,ci,53.0,"10km NNW of Big Bear Lake, CA",0.21,22,",ci,",reviewed,1539188958760,"M 1.2 Quarry Blast - 10km NNW of Big Bear Lake, CA",0,quarry blast,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539190458951,https://earthquake.usgs.gov/earthquakes/eventpage/ci38318992 +,,1000ha2w,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000ha2w&format=geojson,2.816,,63.0,",us1000ha2w,",5.1,mb,,us,,"72km SE of Kirakira, Solomon Islands",0.83,400,",us,",reviewed,1539188307120,"M 5.1 - 72km SE of Kirakira, Solomon Islands",0,earthquake,",geoserve,origin,phase-data,",660.0,1539189458040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000ha2w +,,20275779,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20275779&format=geojson,,,,",ak20275779,",1.5,ml,,ak,,"107km ENE of Circle, Alaska",0.43,35,",ak,",automatic,1539188188850,"M 1.5 - 107km ENE of Circle, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539188357831,https://earthquake.usgs.gov/earthquakes/eventpage/ak20275779 +,,70643082,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70643082&format=geojson,0.03087,,72.0,",hv70643082,",1.99,ml,,hv,24.0,"22km ENE of Honaunau-Napoopoo, Hawaii",0.13,61,",hv,",reviewed,1539187727500,"M 2.0 - 22km ENE of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539201060410,https://earthquake.usgs.gov/earthquakes/eventpage/hv70643082 +,,73095871,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095871&format=geojson,0.0175,,63.0,",nc73095871,",1.91,md,,nc,42.0,"10km ENE of Milpitas, CA",0.08,56,",nc,",reviewed,1539187723890,"M 1.9 - 10km ENE of Milpitas, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539212343533,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095871 +,,70643077,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70643077&format=geojson,0.01197,,104.0,",hv70643077,",0.98,md,,hv,9.0,"4km WSW of Volcano, Hawaii",0.11,15,",hv,",reviewed,1539187693370,"M 1.0 - 4km WSW of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539208659140,https://earthquake.usgs.gov/earthquakes/eventpage/hv70643077 +,,38318984,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38318984&format=geojson,0.05269,,88.0,",ci38318984,",1.49,ml,,ci,31.0,"4km SE of Home Gardens, CA",0.21,34,",ci,",reviewed,1539187090320,"M 1.5 Quarry Blast - 4km SE of Home Gardens, CA",0,quarry blast,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539190185039,https://earthquake.usgs.gov/earthquakes/eventpage/ci38318984 +,,80313464,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80313464&format=geojson,0.099,,106.0,",mb80313464,",-0.62,md,,mb,7.0,"17km NNW of Polson, Montana",0.08,0,",mb,",reviewed,1539187032560,"M -0.6 - 17km NNW of Polson, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539210735400,https://earthquake.usgs.gov/earthquakes/eventpage/mb80313464 +,,73095861,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095861&format=geojson,0.004193,,79.0,",nc73095861,",0.54,md,,nc,9.0,"6km WNW of Cobb, CA",0.02,4,",nc,",reviewed,1539186862590,"M 0.5 - 6km WNW of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539218696342,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095861 +,,61436426,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61436426&format=geojson,0.1496,,186.0,",uw61436426,",1.19,ml,,uw,7.0,"15km WNW of Belfair, Washington",0.07,22,",uw,",reviewed,1539186591250,"M 1.2 - 15km WNW of Belfair, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539217837340,https://earthquake.usgs.gov/earthquakes/eventpage/uw61436426 +,,20275770,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20275770&format=geojson,,,,",ak20275770,",2.2,ml,,ak,,"119km NNW of Arctic Village, Alaska",1.05,74,",ak,",automatic,1539186284535,"M 2.2 - 119km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539187286282,https://earthquake.usgs.gov/earthquakes/eventpage/ak20275770 +,,80313269,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80313269&format=geojson,0.304,,97.0,",mb80313269,",1.35,ml,,mb,9.0,"3km WNW of Manhattan, Montana",0.16,28,",mb,",reviewed,1539185954960,"M 1.4 - 3km WNW of Manhattan, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539200332140,https://earthquake.usgs.gov/earthquakes/eventpage/mb80313269 +,,38318968,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38318968&format=geojson,0.09043,,105.0,",ci38318968,",0.56,ml,,ci,23.0,"7km ESE of Valle Vista, CA",0.11,5,",ci,",reviewed,1539185227740,"M 0.6 - 7km ESE of Valle Vista, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539187221976,https://earthquake.usgs.gov/earthquakes/eventpage/ci38318968 +,,20275762,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20275762&format=geojson,,,,",ak20275762,",2.0,ml,,ak,,"112km NNW of Arctic Village, Alaska",1.0,62,",ak,",automatic,1539183464250,"M 2.0 - 112km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539183857530,https://earthquake.usgs.gov/earthquakes/eventpage/ak20275762 +,,73095851,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095851&format=geojson,0.006421,,101.0,",nc73095851,",0.7,md,,nc,9.0,"5km NW of The Geysers, CA",0.03,8,",nc,",automatic,1539183434260,"M 0.7 - 5km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539184323252,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095851 +,,70642967,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70642967&format=geojson,0.03066,,100.0,",hv70642967,",2.2,ml,,hv,42.0,"22km ENE of Honaunau-Napoopoo, Hawaii",0.12,74,",hv,",reviewed,1539183382300,"M 2.2 - 22km ENE of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539204454710,https://earthquake.usgs.gov/earthquakes/eventpage/hv70642967 +,,38318952,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38318952&format=geojson,0.02491,,69.0,",ci38318952,",0.53,ml,,ci,21.0,"9km NE of Aguanga, CA",0.12,4,",ci,",reviewed,1539183103210,"M 0.5 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1539184014860,https://earthquake.usgs.gov/earthquakes/eventpage/ci38318952 +,,2018283005,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018283005&format=geojson,0.1399,,304.0,",pr2018283005,",2.1,md,,pr,4.0,"10km S of Pole Ojea, Puerto Rico",0.16,68,",pr,",reviewed,1539182506360,"M 2.1 - 10km S of Pole Ojea, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1539219877414,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018283005 +,,73095846,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095846&format=geojson,0.108,,44.0,",nc73095846,",2.08,md,,nc,30.0,"8km NW of Montgomery Creek, CA",0.06,67,",nc,",reviewed,1539182482590,"M 2.1 - 8km NW of Montgomery Creek, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539218763789,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095846 +,,38318944,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38318944&format=geojson,0.1023,,76.0,",ci38318944,",0.77,ml,,ci,35.0,"7km NW of Garnet, CA",0.12,9,",ci,",reviewed,1539182290450,"M 0.8 - 7km NW of Garnet, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539186601551,https://earthquake.usgs.gov/earthquakes/eventpage/ci38318944 +,,73095841,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095841&format=geojson,0.00436,,170.0,",nc73095841,",0.76,md,,nc,7.0,"6km WNW of Cobb, CA",0.01,9,",nc,",automatic,1539182162830,"M 0.8 - 6km WNW of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539183302874,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095841 +,,20275760,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20275760&format=geojson,,,,",ak20275760,",1.8,ml,,ak,,"72km SSW of Kaktovik, Alaska",1.09,50,",ak,",automatic,1539181911955,"M 1.8 - 72km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539182137603,https://earthquake.usgs.gov/earthquakes/eventpage/ak20275760 +,,1000ha8p,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000ha8p&format=geojson,2.499,,212.0,",ak20275757,us1000ha8p,",3.5,ml,,us,,"269km ESE of Kodiak, Alaska",0.58,188,",ak,us,",reviewed,1539181649660,"M 3.5 - 269km ESE of Kodiak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539252368040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000ha8p +,,20275755,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20275755&format=geojson,,,,",ak20275755,",1.6,ml,,ak,,"119km NNW of Arctic Village, Alaska",0.81,39,",ak,",automatic,1539181197873,"M 1.6 - 119km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539181491749,https://earthquake.usgs.gov/earthquakes/eventpage/ak20275755 +,,38318928,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38318928&format=geojson,0.2899,,106.0,",ci38318928,",2.1,ml,,ci,27.0,"34km ENE of Ensenada, B.C., MX",0.23,68,",ci,",reviewed,1539181149420,"M 2.1 - 34km ENE of Ensenada, B.C., MX",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539185241085,https://earthquake.usgs.gov/earthquakes/eventpage/ci38318928 +,,73095836,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095836&format=geojson,0.007175,,94.0,",nc73095836,",0.56,md,,nc,11.0,"7km WNW of Cobb, CA",0.03,5,",nc,",automatic,1539180918410,"M 0.6 - 7km WNW of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539182704815,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095836 +,,20275751,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20275751&format=geojson,,,,",ak20275751,",2.0,ml,,ak,,"121km NNW of Arctic Village, Alaska",1.0,62,",ak,",automatic,1539180865026,"M 2.0 - 121km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539181133390,https://earthquake.usgs.gov/earthquakes/eventpage/ak20275751 +,,20275750,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20275750&format=geojson,,,,",ak20275750,",1.6,ml,,ak,,"120km NNW of Arctic Village, Alaska",1.06,39,",ak,",automatic,1539180713828,"M 1.6 - 120km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539181030897,https://earthquake.usgs.gov/earthquakes/eventpage/ak20275750 +,,73095831,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095831&format=geojson,0.009509,,86.0,",nc73095831,",0.45,md,,nc,14.0,"9km WNW of Cobb, CA",0.02,3,",nc,",reviewed,1539180500990,"M 0.5 - 9km WNW of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539196024150,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095831 +,,38318912,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38318912&format=geojson,0.003625,,80.0,",ci38318912,",0.44,ml,,ci,25.0,"10km NE of Aguanga, CA",0.15,3,",ci,",reviewed,1539180120080,"M 0.4 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539187753615,https://earthquake.usgs.gov/earthquakes/eventpage/ci38318912 +,,73095826,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095826&format=geojson,0.04692,,45.0,",nc73095826,",1.19,md,,nc,19.0,"20km SSE of Livermore, CA",0.07,22,",nc,",reviewed,1539180021930,"M 1.2 - 20km SSE of Livermore, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539216842978,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095826 +,,73095821,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095821&format=geojson,0.003994,,66.0,",nc73095821,",0.67,md,,nc,14.0,"7km WNW of The Geysers, CA",0.03,7,",nc,",automatic,1539179925240,"M 0.7 - 7km WNW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539180903632,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095821 +,,73095816,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095816&format=geojson,0.006558,,135.0,",nc73095816,",0.56,md,,nc,7.0,"8km WNW of The Geysers, CA",0.02,5,",nc,",automatic,1539179439110,"M 0.6 - 8km WNW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539180302581,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095816 +,,37197988,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37197988&format=geojson,0.01114,,55.0,",ci37197988,",0.5,ml,,ci,19.0,"10km NE of Aguanga, CA",0.11,4,",ci,",reviewed,1539179216230,"M 0.5 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539184951015,https://earthquake.usgs.gov/earthquakes/eventpage/ci37197988 +,,38318904,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38318904&format=geojson,0.01305,,31.0,",ci38318904,",1.11,ml,,ci,51.0,"9km NE of Aguanga, CA",0.16,19,",ci,",reviewed,1539179202480,"M 1.1 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1539184556930,https://earthquake.usgs.gov/earthquakes/eventpage/ci38318904 +,,70642892,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70642892&format=geojson,0.008106,,48.0,",hv70642892,",1.8,ml,,hv,17.0,"5km WSW of Volcano, Hawaii",0.18,50,",hv,",automatic,1539178948540,"M 1.8 - 5km WSW of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539179289140,https://earthquake.usgs.gov/earthquakes/eventpage/hv70642892 +,,38318888,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38318888&format=geojson,0.01768,,34.0,",ci38318888,",1.84,ml,,ci,67.0,"8km NE of Aguanga, CA",0.23,52,",ci,",reviewed,1539178765800,"M 1.8 - 8km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1539180291150,https://earthquake.usgs.gov/earthquakes/eventpage/ci38318888 +,,70642837,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70642837&format=geojson,0.03192,,73.0,",hv70642837,",1.99,ml,,hv,21.0,"22km ENE of Honaunau-Napoopoo, Hawaii",0.12,61,",hv,",reviewed,1539177793470,"M 2.0 - 22km ENE of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539200076460,https://earthquake.usgs.gov/earthquakes/eventpage/hv70642837 +,,38318880,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38318880&format=geojson,0.006132,,60.0,",ci38318880,",1.39,ml,,ci,46.0,"9km NE of Aguanga, CA",0.16,30,",ci,",reviewed,1539177586640,"M 1.4 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1539180296530,https://earthquake.usgs.gov/earthquakes/eventpage/ci38318880 +,,38318872,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38318872&format=geojson,0.006063,,31.0,",ci38318872,",1.34,ml,,ci,50.0,"9km NE of Aguanga, CA",0.17,28,",ci,",reviewed,1539177532010,"M 1.3 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1539180294050,https://earthquake.usgs.gov/earthquakes/eventpage/ci38318872 +,,20275743,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20275743&format=geojson,,,,",ak20275743,",2.3,ml,,ak,,"47km WNW of Nikiski, Alaska",0.84,81,",ak,",automatic,1539177024439,"M 2.3 - 47km WNW of Nikiski, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539177293938,https://earthquake.usgs.gov/earthquakes/eventpage/ak20275743 +,,38318856,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38318856&format=geojson,0.004754,,31.0,",ci38318856,",1.26,ml,,ci,53.0,"10km NE of Aguanga, CA",0.16,24,",ci,",reviewed,1539176838150,"M 1.3 - 10km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1539177518620,https://earthquake.usgs.gov/earthquakes/eventpage/ci38318856 +,,80313419,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80313419&format=geojson,0.288,,211.0,",mb80313419,",0.85,ml,,mb,5.0,"3km ENE of Manhattan, Montana",0.15,11,",mb,",reviewed,1539176760740,"M 0.9 - 3km ENE of Manhattan, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539207952920,https://earthquake.usgs.gov/earthquakes/eventpage/mb80313419 +,,80313459,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80313459&format=geojson,0.066,,99.0,",mb80313459,",0.95,ml,,mb,12.0,"23km WNW of Lincoln, Montana",0.2,14,",mb,",reviewed,1539176465430,"M 1.0 - 23km WNW of Lincoln, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539210485680,https://earthquake.usgs.gov/earthquakes/eventpage/mb80313459 +,,73095801,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095801&format=geojson,0.004951,,78.0,",nc73095801,",0.59,md,,nc,10.0,"6km WNW of Cobb, CA",0.01,5,",nc,",automatic,1539176350130,"M 0.6 - 6km WNW of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539184322982,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095801 +,,38318840,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38318840&format=geojson,0.07508,,48.0,",ci38318840,",1.03,ml,,ci,35.0,"9km N of Anza, CA",0.15,16,",ci,",reviewed,1539176069470,"M 1.0 - 9km N of Anza, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539177194659,https://earthquake.usgs.gov/earthquakes/eventpage/ci38318840 +,,38318832,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38318832&format=geojson,0.09992,,94.0,",ci38318832,",1.31,ml,,ci,28.0,"4km N of La Verne, CA",0.22,26,",ci,",reviewed,1539175966750,"M 1.3 - 4km N of La Verne, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539177215025,https://earthquake.usgs.gov/earthquakes/eventpage/ci38318832 +,,38318824,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38318824&format=geojson,0.08186,,116.0,",ci38318824,",0.31,ml,,ci,14.0,"10km NE of Aguanga, CA",0.19,1,",ci,",reviewed,1539175848930,"M 0.3 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539177211214,https://earthquake.usgs.gov/earthquakes/eventpage/ci38318824 +,,38318808,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38318808&format=geojson,0.06217,,98.0,",ci38318808,",0.53,ml,,ci,27.0,"19km ESE of Anza, CA",0.11,4,",ci,",reviewed,1539175787780,"M 0.5 - 19km ESE of Anza, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539189423265,https://earthquake.usgs.gov/earthquakes/eventpage/ci38318808 +,,38318800,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38318800&format=geojson,0.0813,,76.0,",ci38318800,",1.39,ml,,ci,47.0,"19km ESE of Anza, CA",0.17,30,",ci,",reviewed,1539175392170,"M 1.4 - 19km ESE of Anza, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1539177588390,https://earthquake.usgs.gov/earthquakes/eventpage/ci38318800 +,,73095796,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095796&format=geojson,0.0193,,72.0,",nc73095796,",0.84,md,,nc,19.0,"10km ENE of Milpitas, CA",0.04,11,",nc,",reviewed,1539175155620,"M 0.8 - 10km ENE of Milpitas, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539195363090,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095796 +,,38318792,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38318792&format=geojson,0.04304,,81.0,",ci38318792,",0.38,ml,,ci,14.0,"5km SW of Anza, CA",0.09,2,",ci,",reviewed,1539174953420,"M 0.4 - 5km SW of Anza, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539177236442,https://earthquake.usgs.gov/earthquakes/eventpage/ci38318792 +,2.7,80313259,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80313259&format=geojson,0.309,1.0,73.0,",mb80313259,",1.91,ml,,mb,23.0,"2km W of Manhattan, Montana",0.22,56,",mb,",reviewed,1539174678840,"M 1.9 - 2km W of Manhattan, Montana",0,earthquake,",dyfi,geoserve,origin,phase-data,",-420.0,1539182914355,https://earthquake.usgs.gov/earthquakes/eventpage/mb80313259 +,,20275729,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20275729&format=geojson,,,,",ak20275729,",1.3,ml,,ak,,"48km ENE of Cape Yakataga, Alaska",0.61,26,",ak,",automatic,1539173731384,"M 1.3 - 48km ENE of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539174089902,https://earthquake.usgs.gov/earthquakes/eventpage/ak20275729 +,,20275728,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20275728&format=geojson,,,,",ak20275728,",1.6,ml,,ak,,"5km S of Houston, Alaska",0.59,39,",ak,",automatic,1539173725355,"M 1.6 - 5km S of Houston, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539174089611,https://earthquake.usgs.gov/earthquakes/eventpage/ak20275728 +,,73095791,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095791&format=geojson,0.00748,,125.0,",nc73095791,",0.88,md,,nc,7.0,"7km NW of The Geysers, CA",0.01,12,",nc,",automatic,1539173719400,"M 0.9 - 7km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539181022645,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095791 +,,61436411,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61436411&format=geojson,0.04696,,104.0,",uw61436411,",1.27,ml,,uw,8.0,"10km NNE of Waterville, Washington",0.07,25,",uw,",reviewed,1539173492240,"M 1.3 - 10km NNE of Waterville, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539215529810,https://earthquake.usgs.gov/earthquakes/eventpage/uw61436411 +,,20275724,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20275724&format=geojson,,,,",ak20275724,",2.6,ml,,ak,,"59km SSW of Kaktovik, Alaska",0.98,104,",ak,",automatic,1539173115739,"M 2.6 - 59km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539173443954,https://earthquake.usgs.gov/earthquakes/eventpage/ak20275724 +,,80313404,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80313404&format=geojson,0.3,,111.0,",mb80313404,",1.13,ml,,mb,8.0,"1km NW of Manhattan, Montana",0.14,20,",mb,",reviewed,1539172950140,"M 1.1 - 1km NW of Manhattan, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539206671310,https://earthquake.usgs.gov/earthquakes/eventpage/mb80313404 +,,70642692,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70642692&format=geojson,0.0559,,99.0,",hv70642692,",1.88,ml,,hv,45.0,"13km SSE of Volcano, Hawaii",0.21,54,",hv,",automatic,1539172857850,"M 1.9 - 13km SSE of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539173197620,https://earthquake.usgs.gov/earthquakes/eventpage/hv70642692 +,,00660329,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660329&format=geojson,0.128,,121.83,",nn00660329,",0.4,ml,,nn,5.0,"5km WSW of Dayton, Nevada",0.1206,2,",nn,",reviewed,1539172770875,"M 0.4 - 5km WSW of Dayton, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539223537721,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660329 +,,00660349,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660349&format=geojson,0.373,,328.44,",nn00660349,",0.6,ml,,nn,3.0,"24km WSW of Hawthorne, Nevada",0.0005,6,",nn,",reviewed,1539172754664,"M 0.6 - 24km WSW of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539223539705,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660349 +,,70806524,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70806524&format=geojson,0.02514,,83.0,",av70806524,",-0.52,ml,,av,8.0,"14km W of Akutan, Alaska",0.25,0,",av,",reviewed,1539172712730,"M -0.5 - 14km W of Akutan, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539208386440,https://earthquake.usgs.gov/earthquakes/eventpage/av70806524 +,,00660302,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660302&format=geojson,0.138,,63.7,",nn00660302,",1.2,ml,,nn,22.0,"29km WSW of Hawthorne, Nevada",0.1509,22,",nn,",reviewed,1539172630046,"M 1.2 - 29km WSW of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539223527334,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660302 +,2.6,1000h9xe,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h9xe&format=geojson,0.342,10.0,90.0,",mb80313254,us1000h9xe,",2.8,ml,,us,,"2km NNW of Manhattan, Montana",0.48,123,",mb,us,",reviewed,1539172430760,"M 2.8 - 2km NNW of Manhattan, Montana",0,earthquake,",dyfi,geoserve,origin,phase-data,",-420.0,1539363818675,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h9xe +,3.1,2018283004,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018283004&format=geojson,0.0678,1.0,213.0,",pr2018283004,",2.39,md,,pr,14.0,"1km SSW of Boqueron, Puerto Rico",0.16,88,",pr,",reviewed,1539172379820,"M 2.4 - 1km SSW of Boqueron, Puerto Rico",0,earthquake,",dyfi,geoserve,origin,phase-data,",-240.0,1539179970720,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018283004 +,2.7,38318768,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38318768&format=geojson,0.08733,2.0,34.0,",ci38318768,",1.13,ml,,ci,56.0,"10km NNE of Julian, CA",0.19,20,",ci,",reviewed,1539171931880,"M 1.1 - 10km NNE of Julian, CA",0,earthquake,",dyfi,geoserve,nearby-cities,origin,phase-data,",-480.0,1539189895373,https://earthquake.usgs.gov/earthquakes/eventpage/ci38318768 +,,73095786,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095786&format=geojson,0.01166,,81.0,",nc73095786,",0.31,md,,nc,13.0,"9km WNW of Cobb, CA",0.01,1,",nc,",reviewed,1539171761040,"M 0.3 - 9km WNW of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539220682552,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095786 +,,73095776,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095776&format=geojson,0.1065,,240.0,",nc73095776,",1.01,md,,nc,23.0,"17km WSW of Toms Place, CA",0.03,16,",nc,",reviewed,1539171431480,"M 1.0 - 17km WSW of Toms Place, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539192570696,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095776 +,,73095771,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095771&format=geojson,0.0115,,93.0,",nc73095771,",0.51,md,,nc,12.0,"9km WNW of Cobb, CA",0.03,4,",nc,",reviewed,1539171421950,"M 0.5 - 9km WNW of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539221342624,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095771 +,,71109684,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc71109684&format=geojson,0.01269,,76.0,",nc71109684,",0.43,md,,nc,15.0,"9km WNW of Cobb, CA",0.04,3,",nc,",reviewed,1539171409990,"M 0.4 - 9km WNW of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539219118608,https://earthquake.usgs.gov/earthquakes/eventpage/nc71109684 +,,73095761,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095761&format=geojson,0.004121,,111.0,",nc73095761,",0.52,md,,nc,11.0,"8km E of Mammoth Lakes, CA",0.06,4,",nc,",reviewed,1539171093300,"M 0.5 - 8km E of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539191639036,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095761 +,,20275712,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20275712&format=geojson,,,,",ak20275712,",1.5,ml,,ak,,"115km NW of Arctic Village, Alaska",0.76,35,",ak,",automatic,1539170561343,"M 1.5 - 115km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539170997494,https://earthquake.usgs.gov/earthquakes/eventpage/ak20275712 +,,73095756,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095756&format=geojson,0.006415,,61.0,",nc73095756,",1.09,md,,nc,35.0,"9km NW of The Geysers, CA",0.04,18,",nc,",reviewed,1539170122630,"M 1.1 - 9km NW of The Geysers, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539219896386,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095756 +,,20275707,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20275707&format=geojson,,,,",ak20275707,",1.9,ml,,ak,,"119km NNW of Arctic Village, Alaska",0.99,56,",ak,",automatic,1539169953116,"M 1.9 - 119km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539170240356,https://earthquake.usgs.gov/earthquakes/eventpage/ak20275707 +,,1000h9x5,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h9x5&format=geojson,5.023,,47.0,",us1000h9x5,",4.6,mb,,us,,"162km SSW of Ndoi Island, Fiji",0.91,326,",us,",reviewed,1539169863170,"M 4.6 - 162km SSW of Ndoi Island, Fiji",0,earthquake,",geoserve,origin,phase-data,",-720.0,1539171125040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h9x5 +,,20275705,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20275705&format=geojson,,,,",ak20275705,",1.5,ml,,ak,,"105km NNW of Arctic Village, Alaska",0.73,35,",ak,",automatic,1539169486014,"M 1.5 - 105km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539169973823,https://earthquake.usgs.gov/earthquakes/eventpage/ak20275705 +,,73095751,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095751&format=geojson,0.007491,,87.0,",nc73095751,",0.57,md,,nc,7.0,"9km NW of The Geysers, CA",0.01,5,",nc,",automatic,1539168367520,"M 0.6 - 9km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539169263479,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095751 +,,80313394,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80313394&format=geojson,0.135,,107.0,",mb80313394,",0.91,ml,,mb,7.0,"21km SE of Lincoln, Montana",0.07,13,",mb,",reviewed,1539167637590,"M 0.9 - 21km SE of Lincoln, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539206395450,https://earthquake.usgs.gov/earthquakes/eventpage/mb80313394 +,,00660299,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660299&format=geojson,0.094,,87.73,",nn00660299,",0.7,ml,,nn,10.0,"6km NW of Lemmon Valley, Nevada",0.051,8,",nn,",reviewed,1539167606780,"M 0.7 - 6km NW of Lemmon Valley, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539223523168,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660299 +,,38318760,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38318760&format=geojson,0.1236,,149.0,",ci38318760,",0.28,ml,,ci,18.0,"23km NNW of Borrego Springs, CA",0.12,1,",ci,",reviewed,1539167606710,"M 0.3 - 23km NNW of Borrego Springs, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539189180299,https://earthquake.usgs.gov/earthquakes/eventpage/ci38318760 +,,1000h9ws,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h9ws&format=geojson,2.217,,63.0,",us1000h9ws,",5.1,mb,,us,,"44km ENE of Prome, Burma",1.02,400,",us,",reviewed,1539167284630,"M 5.1 - 44km ENE of Prome, Burma",0,earthquake,",geoserve,origin,phase-data,",390.0,1539168487040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h9ws +,3.6,1000h9wp,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h9wp&format=geojson,0.156,10.0,16.0,",us1000h9wp,",3.1,mb_lg,,us,,"7km NE of Luther, Oklahoma",0.89,151,",us,",reviewed,1539167093190,"M 3.1 - 7km NE of Luther, Oklahoma",0,earthquake,",dyfi,geoserve,origin,phase-data,",-360.0,1539243333397,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h9wp +,,20275489,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20275489&format=geojson,,,,",ak20275489,",3.6,ml,,ak,,"259km SE of Kodiak, Alaska",0.66,199,",ak,",reviewed,1539166854039,"M 3.6 - 259km SE of Kodiak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539200970433,https://earthquake.usgs.gov/earthquakes/eventpage/ak20275489 +,,00660294,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660294&format=geojson,0.207,,161.46,",nn00660294,",1.3,ml,,nn,14.0,"27km SE of Lone Pine, California",0.1913,26,",nn,",reviewed,1539166019399,"M 1.3 - 27km SE of Lone Pine, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539223519545,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660294 +,,61436396,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61436396&format=geojson,0.1159,,66.0,",uw61436396,",0.99,ml,,uw,10.0,"23km NW of Friday Harbor, Washington",0.37,15,",uw,",reviewed,1539165937160,"M 1.0 - 23km NW of Friday Harbor, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539218337160,https://earthquake.usgs.gov/earthquakes/eventpage/uw61436396 +,,60300247,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60300247&format=geojson,0.09187,,59.0,",uu60300247,",1.72,ml,,uu,17.0,"25km SSW of Nephi, Utah",0.21,46,",uu,",reviewed,1539165907760,"M 1.7 - 25km SSW of Nephi, Utah",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539191901820,https://earthquake.usgs.gov/earthquakes/eventpage/uu60300247 +,,73095746,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095746&format=geojson,0.01299,,76.0,",nc73095746,",1.17,md,,nc,31.0,"4km ESE of Oakland, CA",0.07,21,",nc,",reviewed,1539165764280,"M 1.2 - 4km ESE of Oakland, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539223622904,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095746 +,,38318752,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38318752&format=geojson,0.08608,,38.0,",ci38318752,",0.54,ml,,ci,25.0,"9km ENE of Aguanga, CA",0.12,4,",ci,",reviewed,1539165733420,"M 0.5 - 9km ENE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539177253423,https://earthquake.usgs.gov/earthquakes/eventpage/ci38318752 +,,1000h9wb,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h9wb&format=geojson,0.542,,55.0,",us1000h9wb,",4.5,mwr,,us,,"33km ENE of Yilan, Taiwan",0.66,312,",us,",reviewed,1539164592480,"M 4.5 - 33km ENE of Yilan, Taiwan",0,earthquake,",geoserve,moment-tensor,origin,phase-data,",480.0,1539165932040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h9wb +,,73095741,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095741&format=geojson,0.006112,,74.0,",nc73095741,",0.94,md,,nc,11.0,"9km NW of The Geysers, CA",0.03,14,",nc,",automatic,1539164421120,"M 0.9 - 9km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539166204179,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095741 +,,70642542,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70642542&format=geojson,0.01484,,111.0,",hv70642542,",2.21,ml,,hv,44.0,"26km E of Honaunau-Napoopoo, Hawaii",0.13,75,",hv,",reviewed,1539163420060,"M 2.2 - 26km E of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539207155770,https://earthquake.usgs.gov/earthquakes/eventpage/hv70642542 +,,73095736,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095736&format=geojson,0.007548,,57.0,",nc73095736,",1.81,md,,nc,43.0,"9km NW of The Geysers, CA",0.04,50,",nc,",reviewed,1539163048870,"M 1.8 - 9km NW of The Geysers, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539224718007,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095736 +,,20275282,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20275282&format=geojson,,,,",ak20275282,",1.6,ml,,ak,,"54km NE of Y, Alaska",0.98,39,",ak,",automatic,1539162081881,"M 1.6 - 54km NE of Y, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539162359231,https://earthquake.usgs.gov/earthquakes/eventpage/ak20275282 +,,73095726,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095726&format=geojson,0.008874,,86.0,",nc73095726,",0.43,md,,nc,11.0,"9km WNW of Cobb, CA",0.05,3,",nc,",automatic,1539162004340,"M 0.4 - 9km WNW of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539162101280,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095726 +,,73095716,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095716&format=geojson,0.006879,,79.0,",nc73095716,",0.57,md,,nc,12.0,"9km NW of The Geysers, CA",0.03,5,",nc,",automatic,1539161890870,"M 0.6 - 9km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539161985270,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095716 +,,73095721,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095721&format=geojson,0.2062,,142.0,",nc73095721,",1.56,md,,nc,12.0,"6km ESE of Bella Vista, CA",0.11,37,",nc,",reviewed,1539161837240,"M 1.6 - 6km ESE of Bella Vista, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539198363404,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095721 +,,73095706,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095706&format=geojson,0.01441,,96.0,",nc73095706,",1.14,md,,nc,8.0,"9km WNW of Cobb, CA",0.01,20,",nc,",automatic,1539161537880,"M 1.1 - 9km WNW of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539174424014,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095706 +,,73095701,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095701&format=geojson,0.008412,,85.0,",nc73095701,",1.05,md,,nc,6.0,"9km NW of The Geysers, CA",0.01,17,",nc,",automatic,1539161522580,"M 1.1 - 9km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539161615337,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095701 +,,73095696,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095696&format=geojson,0.003173,,132.0,",nc73095696,",0.36,md,,nc,8.0,"10km NW of The Geysers, CA",0.03,2,",nc,",automatic,1539161506700,"M 0.4 - 10km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539161600179,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095696 +,,73095691,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095691&format=geojson,0.008854,,52.0,",nc73095691,",1.08,md,,nc,33.0,"9km NW of The Geysers, CA",0.04,18,",nc,",reviewed,1539161484100,"M 1.1 - 9km NW of The Geysers, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539220774494,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095691 +,,73095686,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095686&format=geojson,0.005732,,71.0,",nc73095686,",1.43,md,,nc,28.0,"9km NW of The Geysers, CA",0.06,31,",nc,",reviewed,1539161410930,"M 1.4 - 9km NW of The Geysers, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539233163798,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095686 +,2.0,73095681,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095681&format=geojson,0.009336,1.0,61.0,",nc73095681,",1.63,md,,nc,24.0,"9km NW of The Geysers, CA",0.03,41,",nc,",reviewed,1539161401680,"M 1.6 - 9km NW of The Geysers, CA",0,earthquake,",dyfi,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539226684192,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095681 +,,73095676,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095676&format=geojson,0.003478,,77.0,",nc73095676,",1.35,md,,nc,31.0,"9km NW of The Geysers, CA",0.04,28,",nc,",reviewed,1539161387280,"M 1.4 - 9km NW of The Geysers, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539227348445,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095676 +,,73095661,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095661&format=geojson,0.009522,,51.0,",nc73095661,",2.22,md,,nc,51.0,"9km WNW of Cobb, CA",0.05,76,",nc,",reviewed,1539161368560,"M 2.2 - 9km WNW of Cobb, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539235714033,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095661 +,,73095671,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095671&format=geojson,0.007729,,66.0,",nc73095671,",1.67,md,,nc,30.0,"9km NW of The Geysers, CA",0.03,43,",nc,",reviewed,1539161348680,"M 1.7 - 9km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539228034657,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095671 +,,73095666,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095666&format=geojson,0.008514,,62.0,",nc73095666,",1.05,md,,nc,18.0,"9km NW of The Geysers, CA",0.03,17,",nc,",reviewed,1539161344090,"M 1.1 - 9km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539222426445,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095666 +,2.2,73095656,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095656&format=geojson,0.01146,3.0,39.0,",nc73095656,",3.35,mw,,nc,64.0,"9km WNW of Cobb, CA",0.05,173,",nc,",reviewed,1539161305600,"M 3.4 - 9km WNW of Cobb, CA",0,earthquake,",dyfi,focal-mechanism,geoserve,moment-tensor,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539493724650,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095656 +,,61436386,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61436386&format=geojson,0.2077,,190.0,",uw61436386,",1.35,ml,,uw,17.0,"30km SSW of Toppenish, Washington",0.15,28,",uw,",reviewed,1539160822540,"M 1.4 - 30km SSW of Toppenish, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539191334640,https://earthquake.usgs.gov/earthquakes/eventpage/uw61436386 +,,20275281,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20275281&format=geojson,,,,",ak20275281,",1.6,ml,,ak,,"19km WSW of Whittier, Alaska",0.8,39,",ak,",automatic,1539160535091,"M 1.6 - 19km WSW of Whittier, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539160710582,https://earthquake.usgs.gov/earthquakes/eventpage/ak20275281 +,,20275279,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20275279&format=geojson,,,,",ak20275279,",2.0,ml,,ak,,"76km N of Kobuk, Alaska",0.58,62,",ak,",automatic,1539160341680,"M 2.0 - 76km N of Kobuk, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539160546816,https://earthquake.usgs.gov/earthquakes/eventpage/ak20275279 +,,20275275,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20275275&format=geojson,,,,",ak20275275,",1.7,ml,,ak,,"125km NNW of Arctic Village, Alaska",1.01,44,",ak,",automatic,1539158752876,"M 1.7 - 125km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539159154931,https://earthquake.usgs.gov/earthquakes/eventpage/ak20275275 +,,73095651,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095651&format=geojson,0.008294,,56.0,",nc73095651,",0.38,md,,nc,17.0,"2km W of Mammoth Lakes, CA",0.05,2,",nc,",reviewed,1539158738820,"M 0.4 - 2km W of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539191463687,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095651 +,,1000h9v1,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h9v1&format=geojson,1.152,,158.0,",us1000h9v1,",4.7,mb,,us,,"81km SSW of Masachapa, Nicaragua",1.09,340,",us,",reviewed,1539158493650,"M 4.7 - 81km SSW of Masachapa, Nicaragua",0,earthquake,",geoserve,origin,phase-data,",-360.0,1539167209040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h9v1 +,,2018283003,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018283003&format=geojson,0.584,,331.0,",pr2018283003,",2.49,md,,pr,3.0,"31km NNW of San Antonio, Puerto Rico",0.33,95,",pr,",reviewed,1539157316750,"M 2.5 - 31km NNW of San Antonio, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1539173773402,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018283003 +,,20275273,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20275273&format=geojson,,,,",ak20275273,",1.7,ml,,ak,,"118km NNW of Arctic Village, Alaska",0.92,44,",ak,",automatic,1539157301249,"M 1.7 - 118km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539157588477,https://earthquake.usgs.gov/earthquakes/eventpage/ak20275273 +,,61436381,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61436381&format=geojson,0.006494,,98.0,",uw61436381,",1.06,ml,,uw,7.0,"22km E of Mount Hood Village, Oregon",0.05,17,",uw,",reviewed,1539156779890,"M 1.1 - 22km E of Mount Hood Village, Oregon",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539190891490,https://earthquake.usgs.gov/earthquakes/eventpage/uw61436381 +,,20275270,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20275270&format=geojson,,,,",ak20275270,",2.1,ml,,ak,,"125km NNW of Arctic Village, Alaska",0.99,68,",ak,",automatic,1539156366718,"M 2.1 - 125km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539156646225,https://earthquake.usgs.gov/earthquakes/eventpage/ak20275270 +,,38318744,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38318744&format=geojson,0.03876,,25.0,",ci38318744,",1.97,ml,,ci,96.0,"8km ENE of Aguanga, CA",0.21,60,",ci,",reviewed,1539155742760,"M 2.0 - 8km ENE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1539184009860,https://earthquake.usgs.gov/earthquakes/eventpage/ci38318744 +,,80313389,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80313389&format=geojson,0.078,,132.0,",mb80313389,",0.89,ml,,mb,8.0,"10km ESE of Lincoln, Montana",0.12,12,",mb,",reviewed,1539155614970,"M 0.9 - 10km ESE of Lincoln, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539205967470,https://earthquake.usgs.gov/earthquakes/eventpage/mb80313389 +,,20275266,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20275266&format=geojson,,,,",ak20275266,",1.7,ml,,ak,,"119km NNW of Arctic Village, Alaska",1.03,44,",ak,",automatic,1539155520285,"M 1.7 - 119km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539155735246,https://earthquake.usgs.gov/earthquakes/eventpage/ak20275266 +,,70642392,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70642392&format=geojson,0.003282,,53.0,",hv70642392,",1.35,md,,hv,33.0,"29km E of Honaunau-Napoopoo, Hawaii",0.16,28,",hv,",reviewed,1539155412550,"M 1.4 - 29km E of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539207776340,https://earthquake.usgs.gov/earthquakes/eventpage/hv70642392 +,,70642362,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70642362&format=geojson,0.008095,,93.0,",hv70642362,",1.07,md,,hv,12.0,"29km E of Honaunau-Napoopoo, Hawaii",0.08,18,",hv,",reviewed,1539154828730,"M 1.1 - 29km E of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539393883810,https://earthquake.usgs.gov/earthquakes/eventpage/hv70642362 +,,80313369,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80313369&format=geojson,0.092,,114.0,",mb80313369,",0.87,ml,,mb,7.0,"11km SE of Lincoln, Montana",0.07,12,",mb,",reviewed,1539154804090,"M 0.9 - 11km SE of Lincoln, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539205051620,https://earthquake.usgs.gov/earthquakes/eventpage/mb80313369 +,,38318736,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38318736&format=geojson,0.07784,,100.0,",ci38318736,",0.58,ml,,ci,34.0,"20km ESE of Anza, CA",0.17,5,",ci,",reviewed,1539154060440,"M 0.6 - 20km ESE of Anza, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539182466256,https://earthquake.usgs.gov/earthquakes/eventpage/ci38318736 +,,73095641,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095641&format=geojson,0.01526,,109.0,",nc73095641,",0.19,md,,nc,10.0,"3km WSW of Mammoth Lakes, CA",0.09,1,",nc,",reviewed,1539153681240,"M 0.2 - 3km WSW of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539190863622,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095641 +,,73095636,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095636&format=geojson,0.01078,,77.0,",nc73095636,",1.01,md,,nc,14.0,"2km W of Mammoth Lakes, CA",0.07,16,",nc,",reviewed,1539153158020,"M 1.0 - 2km W of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539196803220,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095636 +green,,20275238,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20275238&format=geojson,,,,",at00pgddyl,ak20275238,us1000h9ts,",5.0,ml,3.72,ak,,"61km SSW of Chignik Lake, Alaska",0.52,385,",at,ak,us,",reviewed,1539152878406,"M 5.0 - 61km SSW of Chignik Lake, Alaska",1,earthquake,",geoserve,ground-failure,impact-link,losspager,moment-tensor,origin,phase-data,shakemap,",-540.0,1539213755442,https://earthquake.usgs.gov/earthquakes/eventpage/ak20275238 +,,80313364,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80313364&format=geojson,0.116,,111.0,",mb80313364,",0.79,ml,,mb,8.0,"14km SE of Lincoln, Montana",0.06,10,",mb,",reviewed,1539151783500,"M 0.8 - 14km SE of Lincoln, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539204288360,https://earthquake.usgs.gov/earthquakes/eventpage/mb80313364 +,,2018283002,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018283002&format=geojson,1.6946,,336.0,",pr2018283002,",2.85,md,,pr,6.0,"127km NNE of Vieques, Puerto Rico",0.42,125,",pr,",reviewed,1539151140040,"M 2.9 - 127km NNE of Vieques, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1539159205105,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018283002 +,2.7,1000h9tn,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h9tn&format=geojson,3.214,1.0,35.0,",us1000h9tn,",5.3,mb,,us,,"65km NNW of Lae, Papua New Guinea",1.29,432,",us,",reviewed,1539150837980,"M 5.3 - 65km NNW of Lae, Papua New Guinea",1,earthquake,",dyfi,geoserve,moment-tensor,origin,phase-data,",600.0,1539193970040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h9tn +,,61436371,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61436371&format=geojson,0.02147,,93.0,",uw61436371,",0.04,ml,,uw,9.0,"32km NNE of Amboy, Washington",0.11,0,",uw,",reviewed,1539150755440,"M 0.0 - 32km NNE of Amboy, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539218784060,https://earthquake.usgs.gov/earthquakes/eventpage/uw61436371 +,,70642237,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70642237&format=geojson,0.485,,274.0,",hv70642237,",2.08,md,,hv,49.0,"58km SE of Pahala, Hawaii",0.22,67,",hv,",automatic,1539150493500,"M 2.1 - 58km SE of Pahala, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539150700000,https://earthquake.usgs.gov/earthquakes/eventpage/hv70642237 +,,00660327,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660327&format=geojson,0.251,,314.89,",nn00660327,",-0.5,ml,,nn,3.0,"51km NW of Beatty, Nevada",0.0443,0,",nn,",reviewed,1539150379358,"M -0.5 - 51km NW of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539223535816,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660327 +,,20275230,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20275230&format=geojson,,,,",ak20275230,",1.8,ml,,ak,,"52km SSW of Kaktovik, Alaska",1.05,50,",ak,",automatic,1539150086200,"M 1.8 - 52km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539150407208,https://earthquake.usgs.gov/earthquakes/eventpage/ak20275230 +,,20275227,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20275227&format=geojson,,,,",ak20275227,",1.5,ml,,ak,,"130km NNW of Arctic Village, Alaska",0.88,35,",ak,",automatic,1539149528164,"M 1.5 - 130km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539149802881,https://earthquake.usgs.gov/earthquakes/eventpage/ak20275227 +,,20275225,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20275225&format=geojson,,,,",ak20275225,",1.5,ml,,ak,,"99km NNW of Arctic Village, Alaska",0.89,35,",ak,",automatic,1539148992672,"M 1.5 - 99km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539149198978,https://earthquake.usgs.gov/earthquakes/eventpage/ak20275225 +,,73095631,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095631&format=geojson,0.01036,,128.0,",nc73095631,",0.65,md,,nc,12.0,"2km W of Mammoth Lakes, CA",0.07,6,",nc,",reviewed,1539148796430,"M 0.7 - 2km W of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539189663500,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095631 +,,38318720,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38318720&format=geojson,0.04351,,82.0,",ci38318720,",0.26,ml,,ci,14.0,"4km SW of Anza, CA",0.05,1,",ci,",reviewed,1539148777050,"M 0.3 - 4km SW of Anza, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539187862804,https://earthquake.usgs.gov/earthquakes/eventpage/ci38318720 +,,80313359,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80313359&format=geojson,0.113,,109.0,",mb80313359,",0.88,ml,,mb,8.0,"14km ESE of Lincoln, Montana",0.07,12,",mb,",reviewed,1539148152260,"M 0.9 - 14km ESE of Lincoln, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539204012260,https://earthquake.usgs.gov/earthquakes/eventpage/mb80313359 +,,00660326,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660326&format=geojson,0.026,,132.21,",nn00660326,",0.0,ml,,nn,6.0,"51km NE of Beatty, Nevada",0.0955,0,",nn,",reviewed,1539147414342,"M 0.0 - 51km NE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539223534463,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660326 +,,1000h9ta,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h9ta&format=geojson,5.498,,194.0,",us1000h9ta,",4.9,mb,,us,,"99km N of Visokoi Island, South Georgia and the South Sandwich Islands",0.74,369,",us,",reviewed,1539147315270,"M 4.9 - 99km N of Visokoi Island, South Georgia and the South Sandwich Islands",0,earthquake,",geoserve,origin,phase-data,",-120.0,1539148171040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h9ta +,,20275219,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20275219&format=geojson,,,,",ak20275219,",1.8,ml,,ak,,"115km NNW of Arctic Village, Alaska",1.15,50,",ak,",automatic,1539146941715,"M 1.8 - 115km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539147316685,https://earthquake.usgs.gov/earthquakes/eventpage/ak20275219 +,,20275217,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20275217&format=geojson,,,,",ak20275217,",1.9,ml,,ak,,"118km NNW of Arctic Village, Alaska",1.17,56,",ak,",automatic,1539146474786,"M 1.9 - 118km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539146692433,https://earthquake.usgs.gov/earthquakes/eventpage/ak20275217 +,,73095626,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095626&format=geojson,0.01805,,130.0,",nc73095626,",0.23,md,,nc,5.0,"2km SSW of Cobb, CA",0.02,1,",nc,",automatic,1539146437940,"M 0.2 - 2km SSW of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539147723091,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095626 +,,70642172,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70642172&format=geojson,0.0323,,60.0,",hv70642172,",2.17,ml,,hv,37.0,"22km ENE of Honaunau-Napoopoo, Hawaii",0.13,72,",hv,",reviewed,1539146196730,"M 2.2 - 22km ENE of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539214267750,https://earthquake.usgs.gov/earthquakes/eventpage/hv70642172 +,,73095621,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095621&format=geojson,0.01272,,75.0,",nc73095621,",0.88,md,,nc,12.0,"2km NW of The Geysers, CA",0.03,12,",nc,",automatic,1539146195260,"M 0.9 - 2km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539147123223,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095621 +,,70806519,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70806519&format=geojson,0.01078,,65.0,",av70806519,",0.46,ml,,av,14.0,"13km W of Akutan, Alaska",0.22,3,",av,",reviewed,1539146037780,"M 0.5 - 13km W of Akutan, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539205518810,https://earthquake.usgs.gov/earthquakes/eventpage/av70806519 +,,20275213,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20275213&format=geojson,,,,",ak20275213,",1.2,ml,,ak,,"73km ENE of Cape Yakataga, Alaska",0.54,22,",ak,",automatic,1539145547437,"M 1.2 - 73km ENE of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539145792348,https://earthquake.usgs.gov/earthquakes/eventpage/ak20275213 +,,20275212,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20275212&format=geojson,,,,",ak20275212,",1.2,ml,,ak,,"110km NW of Arctic Village, Alaska",0.72,22,",ak,",reviewed,1539145489986,"M 1.2 - 110km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539192945231,https://earthquake.usgs.gov/earthquakes/eventpage/ak20275212 +,,80313229,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80313229&format=geojson,0.108,,160.0,",mb80313229,",2.0,ml,,mb,10.0,"17km S of Victor, Idaho",0.16,62,",mb,",reviewed,1539144439640,"M 2.0 - 17km S of Victor, Idaho",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539183269400,https://earthquake.usgs.gov/earthquakes/eventpage/mb80313229 +,,2018283001,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018283001&format=geojson,0.7075,,310.0,",pr2018283001,",2.35,md,,pr,4.0,"43km N of San Antonio, Puerto Rico",0.42,85,",pr,",reviewed,1539144386160,"M 2.4 - 43km N of San Antonio, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1539159196737,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018283001 +,,61436306,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61436306&format=geojson,0.03072,,202.0,",uw61436306,",0.4,ml,,uw,4.0,"14km N of Richland, Washington",0.15,2,",uw,",reviewed,1539144130900,"M 0.4 - 14km N of Richland, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539219588690,https://earthquake.usgs.gov/earthquakes/eventpage/uw61436306 +,,20275204,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20275204&format=geojson,,,,",ak20275204,",2.8,ml,,ak,,"40km SSE of King Salmon, Alaska",0.62,121,",ak,",automatic,1539143795688,"M 2.8 - 40km SSE of King Salmon, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539144113528,https://earthquake.usgs.gov/earthquakes/eventpage/ak20275204 +,,20275199,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20275199&format=geojson,,,,",ak20275199,",2.4,ml,,ak,,"8km ESE of Willow, Alaska",0.86,89,",ak,",automatic,1539143520037,"M 2.4 - 8km ESE of Willow, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539143786182,https://earthquake.usgs.gov/earthquakes/eventpage/ak20275199 +,,1000h9sy,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h9sy&format=geojson,6.795,,159.0,",us1000h9sy,",4.5,mb,,us,,"50km WNW of Morrope, Peru",0.88,312,",us,",reviewed,1539143336030,"M 4.5 - 50km WNW of Morrope, Peru",0,earthquake,",geoserve,origin,phase-data,",-300.0,1539146158040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h9sy +,,73095616,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095616&format=geojson,0.009721,,150.0,",nc73095616,",0.55,md,,nc,4.0,"6km NW of The Geysers, CA",0.0,5,",nc,",automatic,1539143333950,"M 0.6 - 6km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539144242772,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095616 +,,20275195,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20275195&format=geojson,,,,",ak20275195,",1.7,ml,,ak,,"58km WSW of Talkeetna, Alaska",0.6,44,",ak,",automatic,1539141963222,"M 1.7 - 58km WSW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539142261540,https://earthquake.usgs.gov/earthquakes/eventpage/ak20275195 +,,73095611,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095611&format=geojson,0.1461,,125.0,",nc73095611,",1.44,md,,nc,7.0,"3km ENE of Bella Vista, CA",0.07,32,",nc,",reviewed,1539141522080,"M 1.4 - 3km ENE of Bella Vista, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539206104661,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095611 +,,73095601,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095601&format=geojson,0.008188,,115.0,",nc73095601,",0.67,md,,nc,13.0,"3km W of Mammoth Lakes, CA",0.05,7,",nc,",reviewed,1539140190440,"M 0.7 - 3km W of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539192003741,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095601 +,,20275192,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20275192&format=geojson,,,,",ak20275192,",1.6,ml,,ak,,"111km NNW of Arctic Village, Alaska",0.82,39,",ak,",automatic,1539140020311,"M 1.6 - 111km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539140675438,https://earthquake.usgs.gov/earthquakes/eventpage/ak20275192 +,,2018283000,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018283000&format=geojson,0.9556,,321.0,",pr2018283000,us1000h9t2,",3.14,md,,pr,16.0,"63km N of Culebra, Puerto Rico",0.24,152,",pr,us,",reviewed,1539139938000,"M 3.1 - 63km N of Culebra, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1539308140040,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018283000 +,,20275188,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20275188&format=geojson,,,,",ak20275188,us1000h9sn,",2.5,ml,,ak,,"85km NNW of Talkeetna, Alaska",0.58,96,",ak,us,",automatic,1539139444344,"M 2.5 - 85km NNW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539307902040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20275188 +,,38318696,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38318696&format=geojson,0.004386,,44.0,",ci38318696,",0.44,ml,,ci,26.0,"10km NE of Aguanga, CA",0.12,3,",ci,",reviewed,1539138771800,"M 0.4 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539208757968,https://earthquake.usgs.gov/earthquakes/eventpage/ci38318696 +,,1000h9sk,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h9sk&format=geojson,2.605,,68.0,",us1000h9sk,",4.6,mb,,us,,"20km NE of Belanting, Indonesia",1.0,326,",us,",reviewed,1539137761230,"M 4.6 - 20km NE of Belanting, Indonesia",0,earthquake,",geoserve,origin,phase-data,",480.0,1539138989040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h9sk +,,70806514,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70806514&format=geojson,0.01475,,68.0,",av70806514,",-0.18,ml,,av,8.0,"14km WSW of Akutan, Alaska",0.18,0,",av,",reviewed,1539137518270,"M -0.2 - 14km WSW of Akutan, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539197963700,https://earthquake.usgs.gov/earthquakes/eventpage/av70806514 +,,73095596,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095596&format=geojson,0.01697,,139.0,",nc73095596,",-0.37,md,,nc,4.0,"13km ESE of Mammoth Lakes, CA",0.0,0,",nc,",reviewed,1539137493180,"M -0.4 - 13km ESE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539138654777,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095596 +,,38318688,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38318688&format=geojson,0.03992,,76.0,",ci38318688,",1.52,ml,,ci,19.0,"7km SW of Holtville, CA",0.24,36,",ci,",reviewed,1539137212950,"M 1.5 - 7km SW of Holtville, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539182206742,https://earthquake.usgs.gov/earthquakes/eventpage/ci38318688 +,,1000h9sh,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h9sh&format=geojson,3.236,,38.0,",us1000h9sh,",5.4,mww,,us,,"62km NW of Finschhafen, Papua New Guinea",1.05,449,",us,",reviewed,1539136980090,"M 5.4 - 62km NW of Finschhafen, Papua New Guinea",1,earthquake,",geoserve,moment-tensor,origin,phase-data,",600.0,1539193904040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h9sh +,,38318680,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38318680&format=geojson,0.02123,,35.0,",ci38318680,",0.82,ml,,ci,34.0,"9km NE of Aguanga, CA",0.16,10,",ci,",reviewed,1539136716940,"M 0.8 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539177303137,https://earthquake.usgs.gov/earthquakes/eventpage/ci38318680 +,,38318664,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38318664&format=geojson,0.06031,,50.0,",ci38318664,",1.5,ml,,ci,39.0,"11km E of Santa Clarita, CA",0.15,35,",ci,",reviewed,1539136537600,"M 1.5 - 11km E of Santa Clarita, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539181857821,https://earthquake.usgs.gov/earthquakes/eventpage/ci38318664 +,,1000h9s9,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h9s9&format=geojson,1.773,,56.0,",us1000h9s9,",4.6,mb,,us,,"62km E of Sary-Tash, Kyrgyzstan",1.06,326,",us,",reviewed,1539136123840,"M 4.6 - 62km E of Sary-Tash, Kyrgyzstan",0,earthquake,",geoserve,origin,phase-data,",480.0,1539138669040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h9s9 +,,00660325,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660325&format=geojson,0.212,,211.92,",nn00660325,",1.0,ml,,nn,5.0,"1km E of Gardnerville Ranchos, Nevada",0.0706,15,",nn,",reviewed,1539135954651,"M 1.0 - 1km E of Gardnerville Ranchos, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539223533103,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660325 +,,20275186,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20275186&format=geojson,,,,",ak20275186,",1.6,ml,,ak,,"28km W of Cantwell, Alaska",0.81,39,",ak,",automatic,1539134556960,"M 1.6 - 28km W of Cantwell, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539134762739,https://earthquake.usgs.gov/earthquakes/eventpage/ak20275186 +,,60300227,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60300227&format=geojson,0.1666,,163.0,",uu60300227,",1.23,ml,,uu,7.0,"7km SSW of Colorado City, Arizona",0.12,23,",uu,",reviewed,1539133978610,"M 1.2 - 7km SSW of Colorado City, Arizona",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539196068710,https://earthquake.usgs.gov/earthquakes/eventpage/uu60300227 +,,73095591,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095591&format=geojson,0.07412,,70.0,",nc73095591,nn00660273,",1.96,md,,nc,34.0,"38km N of Toms Place, CA",0.07,59,",nc,nn,",reviewed,1539133805870,"M 2.0 - 38km N of Toms Place, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539223514898,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095591 +,,20275180,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20275180&format=geojson,,,,",ak20275180,",1.9,ml,,ak,,"60km SSW of Kaktovik, Alaska",0.73,56,",ak,",automatic,1539132781042,"M 1.9 - 60km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539133248598,https://earthquake.usgs.gov/earthquakes/eventpage/ak20275180 +,,80313224,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80313224&format=geojson,0.076,,118.0,",mb80313224,",1.29,ml,,mb,11.0,"10km ESE of Lincoln, Montana",0.15,26,",mb,",reviewed,1539132588980,"M 1.3 - 10km ESE of Lincoln, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539183629250,https://earthquake.usgs.gov/earthquakes/eventpage/mb80313224 +,,61436271,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61436271&format=geojson,0.3144,,298.0,",uw61436271,",1.99,ml,,uw,6.0,"5km W of Prineville, Oregon",0.07,61,",uw,",reviewed,1539132517940,"M 2.0 Explosion - 5km W of Prineville, Oregon",0,explosion,",geoserve,origin,phase-data,",-480.0,1539291415650,https://earthquake.usgs.gov/earthquakes/eventpage/uw61436271 +,,20275178,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20275178&format=geojson,,,,",ak20275178,",1.9,ml,,ak,,"119km NNW of Arctic Village, Alaska",1.33,56,",ak,",automatic,1539132433679,"M 1.9 - 119km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539132727034,https://earthquake.usgs.gov/earthquakes/eventpage/ak20275178 +,,70641872,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70641872&format=geojson,0.06367,,127.0,",hv70641872,",1.73,md,,hv,23.0,"8km W of Pahala, Hawaii",0.23,46,",hv,",automatic,1539132426880,"M 1.7 - 8km W of Pahala, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539132622250,https://earthquake.usgs.gov/earthquakes/eventpage/hv70641872 +,,60300222,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60300222&format=geojson,0.1448,,73.0,",uu60300222,",2.07,ml,,uu,16.0,"24km WNW of Manti, Utah",0.31,66,",uu,",reviewed,1539132273870,"M 2.1 - 24km WNW of Manti, Utah",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539194524720,https://earthquake.usgs.gov/earthquakes/eventpage/uu60300222 +,,80313354,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80313354&format=geojson,0.186,,117.0,",mb80313354,",0.77,ml,,mb,9.0,"55km E of Lima, Montana",0.14,9,",mb,",reviewed,1539132199490,"M 0.8 - 55km E of Lima, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539203581420,https://earthquake.usgs.gov/earthquakes/eventpage/mb80313354 +,,20275175,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20275175&format=geojson,,,,",ak20275175,",1.6,ml,,ak,,"120km NNW of Arctic Village, Alaska",1.02,39,",ak,",automatic,1539132049473,"M 1.6 - 120km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539132491320,https://earthquake.usgs.gov/earthquakes/eventpage/ak20275175 +,,20275172,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20275172&format=geojson,,,,",ak20275172,",1.8,ml,,ak,,"37km ESE of Sutton-Alpine, Alaska",0.92,50,",ak,",automatic,1539131294287,"M 1.8 - 37km ESE of Sutton-Alpine, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539131601121,https://earthquake.usgs.gov/earthquakes/eventpage/ak20275172 +,,20275170,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20275170&format=geojson,,,,",ak20275170,",1.5,ml,,ak,,"29km WNW of Valdez, Alaska",0.29,35,",ak,",automatic,1539130069045,"M 1.5 - 29km WNW of Valdez, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539130444686,https://earthquake.usgs.gov/earthquakes/eventpage/ak20275170 +,,73095581,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095581&format=geojson,0.01281,,120.0,",nc73095581,",0.55,md,,nc,12.0,"6km WNW of The Geysers, CA",0.04,5,",nc,",automatic,1539130023190,"M 0.6 - 6km WNW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539132482546,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095581 +,,00660267,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660267&format=geojson,0.306,,63.67,",nn00660267,",1.9,ml,,nn,23.0,"13km SSE of Gardnerville Ranchos, Nevada",0.2204,56,",nn,",reviewed,1539130020336,"M 1.9 - 13km SSE of Gardnerville Ranchos, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539223506989,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660267 +,,20275168,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20275168&format=geojson,,,,",ak20275168,us1000h9rc,",2.9,ml,,ak,,"159km SSE of Kotzebue, Alaska",0.88,129,",ak,us,",automatic,1539129682439,"M 2.9 - 159km SSE of Kotzebue, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539134040040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20275168 +,,38318648,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38318648&format=geojson,0.03271,,86.0,",ci38318648,",1.14,ml,,ci,36.0,"16km ESE of Julian, CA",0.16,20,",ci,",reviewed,1539129549500,"M 1.1 - 16km ESE of Julian, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539302005450,https://earthquake.usgs.gov/earthquakes/eventpage/ci38318648 +,,60300217,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60300217&format=geojson,0.05638,,118.0,",uu60300217,",0.24,md,,uu,10.0,"18km NE of West Yellowstone, Montana",0.24,1,",uu,",reviewed,1539128831120,"M 0.2 - 18km NE of West Yellowstone, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539195666910,https://earthquake.usgs.gov/earthquakes/eventpage/uu60300217 +,,20275161,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20275161&format=geojson,,,,",ak20275161,",2.1,ml,,ak,,"27km NE of Healy, Alaska",0.79,68,",ak,",automatic,1539128579784,"M 2.1 - 27km NE of Healy, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539128900362,https://earthquake.usgs.gov/earthquakes/eventpage/ak20275161 +,,61794706,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61794706&format=geojson,0.01712,,229.0,",av61794706,",0.04,ml,,av,6.0,"99km ESE of King Salmon, Alaska",0.06,0,",av,",reviewed,1539128485340,"M 0.0 - 99km ESE of King Salmon, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539131573350,https://earthquake.usgs.gov/earthquakes/eventpage/av61794706 +,,20275157,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20275157&format=geojson,,,,",ak20275157,",1.2,ml,,ak,,"77km NW of Yakutat, Alaska",0.4,22,",ak,",automatic,1539127968818,"M 1.2 - 77km NW of Yakutat, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539128173882,https://earthquake.usgs.gov/earthquakes/eventpage/ak20275157 +,,20275150,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20275150&format=geojson,,,,",ak20275150,",1.6,ml,,ak,,"11km WNW of Circle Hot Springs Station, Alaska",0.66,39,",ak,",automatic,1539127453012,"M 1.6 - 11km WNW of Circle Hot Springs Station, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539127734784,https://earthquake.usgs.gov/earthquakes/eventpage/ak20275150 +,,38318624,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38318624&format=geojson,0.0768,,171.0,",ci38318624,",0.56,ml,,ci,13.0,"9km WSW of Idyllwild, CA",0.07,5,",ci,",reviewed,1539127418910,"M 0.6 - 9km WSW of Idyllwild, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539128900926,https://earthquake.usgs.gov/earthquakes/eventpage/ci38318624 +,,38318616,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38318616&format=geojson,0.003115,,36.0,",ci38318616,",1.0,ml,,ci,36.0,"10km NE of Aguanga, CA",0.12,15,",ci,",reviewed,1539127300110,"M 1.0 - 10km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1539128803100,https://earthquake.usgs.gov/earthquakes/eventpage/ci38318616 +,,38318608,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38318608&format=geojson,0.003952,,29.0,",ci38318608,",1.35,ml,,ci,44.0,"10km NE of Aguanga, CA",0.14,28,",ci,",reviewed,1539127062750,"M 1.4 - 10km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1539128558130,https://earthquake.usgs.gov/earthquakes/eventpage/ci38318608 +,,70806494,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70806494&format=geojson,0.05227,,259.0,",av70806494,",-0.9,ml,,av,4.0,"28km W of Unalaska, Alaska",0.02,0,",av,",reviewed,1539126963670,"M -0.9 - 28km W of Unalaska, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539195898280,https://earthquake.usgs.gov/earthquakes/eventpage/av70806494 +,,1000h9qy,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h9qy&format=geojson,4.806,,35.0,",us1000h9qy,",5.1,mb,,us,,"161km W of Neiafu, Tonga",0.91,400,",us,",reviewed,1539126752910,"M 5.1 - 161km W of Neiafu, Tonga",0,earthquake,",geoserve,origin,phase-data,",-720.0,1539127888040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h9qy +,,20275146,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20275146&format=geojson,,,,",ak20275146,",1.4,ml,,ak,,"76km NNW of Yakutat, Alaska",0.78,30,",ak,",automatic,1539126365155,"M 1.4 - 76km NNW of Yakutat, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539126732546,https://earthquake.usgs.gov/earthquakes/eventpage/ak20275146 +,,20275142,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20275142&format=geojson,,,,",ak20275142,",1.1,ml,,ak,,"81km NW of Yakutat, Alaska",0.59,19,",ak,",automatic,1539126210687,"M 1.1 - 81km NW of Yakutat, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539126394556,https://earthquake.usgs.gov/earthquakes/eventpage/ak20275142 +,,38318584,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38318584&format=geojson,0.02612,,27.0,",ci38318584,",1.56,ml,,ci,63.0,"8km NE of Aguanga, CA",0.15,37,",ci,",reviewed,1539126129220,"M 1.6 - 8km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1539210583255,https://earthquake.usgs.gov/earthquakes/eventpage/ci38318584 +,,20275141,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20275141&format=geojson,,,,",ak20275141,",1.4,ml,,ak,,"17km NE of Badger, Alaska",1.31,30,",ak,",automatic,1539126117834,"M 1.4 - 17km NE of Badger, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539126394276,https://earthquake.usgs.gov/earthquakes/eventpage/ak20275141 +,,70641702,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70641702&format=geojson,0.03076,,107.0,",hv70641702,",1.85,md,,hv,45.0,"2km SE of Pahala, Hawaii",0.12,53,",hv,",reviewed,1539125901020,"M 1.9 - 2km SE of Pahala, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539139284190,https://earthquake.usgs.gov/earthquakes/eventpage/hv70641702 +,,20275139,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20275139&format=geojson,,,,",ak20275139,",1.4,ml,,ak,,"37km NNE of North Nenana, Alaska",1.55,30,",ak,",automatic,1539125892488,"M 1.4 - 37km NNE of North Nenana, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539126496896,https://earthquake.usgs.gov/earthquakes/eventpage/ak20275139 +,,20275138,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20275138&format=geojson,,,,",ak20275138,",0.8,ml,,ak,,"10km N of North Nenana, Alaska",0.51,10,",ak,",automatic,1539125844111,"M 0.8 - 10km N of North Nenana, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539126025765,https://earthquake.usgs.gov/earthquakes/eventpage/ak20275138 +,,2018282015,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018282015&format=geojson,1.1918,,206.0,",pr2018282015,",3.09,md,,pr,4.0,"47km ENE of Punta Cana, Dominican Republic",0.18,147,",pr,",reviewed,1539125418520,"M 3.1 - 47km ENE of Punta Cana, Dominican Republic",0,earthquake,",geoserve,origin,phase-data,",-300.0,1539132518842,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018282015 +,,20275136,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20275136&format=geojson,,,,",ak20275136,",2.1,ml,,ak,,"76km W of Anchor Point, Alaska",0.94,68,",ak,",automatic,1539125367947,"M 2.1 - 76km W of Anchor Point, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539125647382,https://earthquake.usgs.gov/earthquakes/eventpage/ak20275136 +,,38318544,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38318544&format=geojson,0.0877,,82.0,",ci38318544,",0.67,ml,,ci,20.0,"9km ENE of Aguanga, CA",0.1,7,",ci,",reviewed,1539125139720,"M 0.7 - 9km ENE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539126072371,https://earthquake.usgs.gov/earthquakes/eventpage/ci38318544 +,,20275132,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20275132&format=geojson,,,,",ak20275132,av70806439,",0.8,ml,,ak,,"4km NNE of Redoubt Volcano, Alaska",0.67,10,",ak,av,",automatic,1539125078824,"M 0.8 - 4km NNE of Redoubt Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539132049090,https://earthquake.usgs.gov/earthquakes/eventpage/ak20275132 +,,61794686,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61794686&format=geojson,0.1257,,174.0,",av61794686,",1.58,ml,,av,7.0,"18km WNW of Adak, Alaska",0.21,38,",av,",reviewed,1539124566620,"M 1.6 - 18km WNW of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539194610920,https://earthquake.usgs.gov/earthquakes/eventpage/av61794686 +,2.0,73095571,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095571&format=geojson,0.01732,1.0,86.0,",nc73095571,",2.22,md,,nc,48.0,"9km NE of Pinnacles, CA",0.09,76,",nc,",reviewed,1539124517070,"M 2.2 - 9km NE of Pinnacles, CA",0,earthquake,",dyfi,focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539222122763,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095571 +,1.0,61436236,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61436236&format=geojson,0.2072,1.0,62.0,",uw61436236,us1000h9qh,",2.89,ml,2.81,uw,29.0,"31km SSW of Toppenish, Washington",0.18,129,",uw,us,",reviewed,1539124440400,"M 2.9 - 31km SSW of Toppenish, Washington",0,earthquake,",dyfi,geoserve,origin,phase-data,shakemap,",-480.0,1539150167040,https://earthquake.usgs.gov/earthquakes/eventpage/uw61436236 +,2.0,1000h9qg,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h9qg&format=geojson,0.131,1.0,32.0,",us1000h9qg,",2.9,mb_lg,,us,,"5km NE of Medford, Oklahoma",0.24,130,",us,",reviewed,1539124356550,"M 2.9 - 5km NE of Medford, Oklahoma",0,earthquake,",dyfi,geoserve,origin,phase-data,",-360.0,1539136730727,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h9qg +,,73095566,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095566&format=geojson,0.00344,,81.0,",nc73095566,",0.82,md,,nc,7.0,"6km WNW of Cobb, CA",0.01,10,",nc,",automatic,1539124170180,"M 0.8 - 6km WNW of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539126544458,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095566 +,,70641627,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70641627&format=geojson,0.03584,,314.0,",hv70641627,",1.73,md,,hv,7.0,"8km WNW of Volcano, Hawaii",0.11,46,",hv,",automatic,1539123774770,"M 1.7 - 8km WNW of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539123953960,https://earthquake.usgs.gov/earthquakes/eventpage/hv70641627 +,,38318528,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38318528&format=geojson,0.00664,,83.0,",ci38318528,",0.42,ml,,ci,15.0,"10km NE of Aguanga, CA",0.08,3,",ci,",reviewed,1539123677280,"M 0.4 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539125858760,https://earthquake.usgs.gov/earthquakes/eventpage/ci38318528 +,,1000h9q5,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h9q5&format=geojson,5.761,,127.0,",us1000h9q5,",4.4,mb,,us,,Northern East Pacific Rise,0.62,298,",us,",reviewed,1539122934880,M 4.4 - Northern East Pacific Rise,0,earthquake,",geoserve,origin,phase-data,",-420.0,1539149151040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h9q5 +,,2018282014,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018282014&format=geojson,0.4041,,311.0,",pr2018282014,",2.82,md,,pr,7.0,"42km NNW of San Antonio, Puerto Rico",0.15,122,",pr,",reviewed,1539122805110,"M 2.8 - 42km NNW of San Antonio, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1539132228482,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018282014 +,,60300207,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60300207&format=geojson,0.09233,,159.0,",uu60300207,",1.17,md,,uu,5.0,"66km ENE of Old Faithful Geyser, Wyoming",0.15,21,",uu,",reviewed,1539122638020,"M 1.2 - 66km ENE of Old Faithful Geyser, Wyoming",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539127737210,https://earthquake.usgs.gov/earthquakes/eventpage/uu60300207 +,,00660250,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660250&format=geojson,0.196,,190.97,",nn00660250,",1.4,ml,,nn,12.0,"67km NNE of Tonopah, Nevada",0.5197,30,",nn,",reviewed,1539120724815,"M 1.4 Explosion - 67km NNE of Tonopah, Nevada",0,explosion,",geoserve,origin,phase-data,",-480.0,1539122107410,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660250 +,,00660243,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660243&format=geojson,0.013,,122.31,",nn00660243,",1.9,ml,,nn,11.0,"38km SSE of Sandy Valley, Nevada",0.3327,56,",nn,",reviewed,1539119720490,"M 1.9 Explosion - 38km SSE of Sandy Valley, Nevada",0,explosion,",geoserve,origin,phase-data,",-480.0,1539137100394,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660243 +,,38318448,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38318448&format=geojson,0.06793,,52.0,",ci38318448,",1.36,ml,,ci,29.0,"2km SE of Home Gardens, CA",0.27,28,",ci,",reviewed,1539118939720,"M 1.4 Quarry Blast - 2km SE of Home Gardens, CA",0,quarry blast,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539302030684,https://earthquake.usgs.gov/earthquakes/eventpage/ci38318448 +,,20275126,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20275126&format=geojson,,,,",ak20275126,",1.3,ml,,ak,,"8km ESE of Willow, Alaska",0.86,26,",ak,",automatic,1539118782096,"M 1.3 - 8km ESE of Willow, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539119200840,https://earthquake.usgs.gov/earthquakes/eventpage/ak20275126 +,,80313154,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80313154&format=geojson,0.658,,112.0,",mb80313154,",1.49,ml,,mb,8.0,"61km WSW of Challis, Idaho",0.16,34,",mb,",reviewed,1539118286680,"M 1.5 - 61km WSW of Challis, Idaho",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539185279430,https://earthquake.usgs.gov/earthquakes/eventpage/mb80313154 +,,73095561,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095561&format=geojson,0.02401,,81.0,",nc73095561,",0.24,md,,nc,13.0,"1km ENE of Mammoth Lakes, CA",0.03,1,",nc,",reviewed,1539118138910,"M 0.2 - 1km ENE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539127862583,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095561 +,,00660240,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660240&format=geojson,0.285,,201.4,",nn00660240,",1.0,ml,,nn,12.0,"55km N of Fort Irwin, California",0.1983,15,",nn,",reviewed,1539117920390,"M 1.0 - 55km N of Fort Irwin, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539137098245,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660240 +,,00660259,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660259&format=geojson,0.079,,66.88,",nn00660259,",1.2,ml,,nn,14.0,"7km S of Dayton, Nevada",0.1111,22,",nn,",reviewed,1539117501587,"M 1.2 - 7km S of Dayton, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539137109851,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660259 +,,1000h9lz,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h9lz&format=geojson,5.647,,40.0,",us1000h9lz,",4.9,mb,,us,,Vanuatu region,0.95,369,",us,",reviewed,1539116822020,M 4.9 - Vanuatu region,0,earthquake,",geoserve,origin,phase-data,",720.0,1539281579040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h9lz +,,38318424,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38318424&format=geojson,0.04394,,85.0,",ci38318424,",0.86,ml,,ci,25.0,"11km NW of Anza, CA",0.09,11,",ci,",reviewed,1539116645080,"M 0.9 - 11km NW of Anza, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539117512104,https://earthquake.usgs.gov/earthquakes/eventpage/ci38318424 +,,70641397,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70641397&format=geojson,0.002983,,130.0,",hv70641397,",1.71,ml,,hv,15.0,"5km W of Volcano, Hawaii",0.16,45,",hv,",automatic,1539116637500,"M 1.7 - 5km W of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539116978150,https://earthquake.usgs.gov/earthquakes/eventpage/hv70641397 +,,80313344,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80313344&format=geojson,0.261,,170.0,",mb80313344,",0.83,ml,,mb,6.0,"28km SSE of Virginia City, Montana",0.11,11,",mb,",reviewed,1539116373920,"M 0.8 Quarry Blast - 28km SSE of Virginia City, Montana",0,quarry blast,",geoserve,origin,phase-data,",-420.0,1539203121650,https://earthquake.usgs.gov/earthquakes/eventpage/mb80313344 +,4.8,1000h9pz,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h9pz&format=geojson,2.138,1.0,101.0,",us1000h9pz,",4.1,mb,,us,,"15km E of Orkney, South Africa",1.27,259,",us,",reviewed,1539116372780,"M 4.1 - 15km E of Orkney, South Africa",0,earthquake,",dyfi,geoserve,origin,phase-data,",120.0,1539278706710,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h9pz +,,20275107,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20275107&format=geojson,,,,",ak20275107,",1.8,ml,,ak,,"31km WNW of Valdez, Alaska",0.65,50,",ak,",automatic,1539116364081,"M 1.8 - 31km WNW of Valdez, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539116654740,https://earthquake.usgs.gov/earthquakes/eventpage/ak20275107 +,,00660228,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660228&format=geojson,0.542,,212.25,",nn00660228,",2.7,ml,,nn,12.0,"28km ENE of McGill, Nevada",0.13,112,",nn,",automatic,1539116240960,"M 2.7 - 28km ENE of McGill, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539116437955,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660228 +,,1000h9la,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h9la&format=geojson,1.737,,135.0,",us1000h9la,",4.6,mb,,us,,"53km ESE of Kamaishi, Japan",0.92,326,",us,",reviewed,1539115120470,"M 4.6 - 53km ESE of Kamaishi, Japan",0,earthquake,",geoserve,origin,phase-data,",540.0,1539119067040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h9la +,,38318408,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38318408&format=geojson,0.1197,,65.0,",ci38318408,",1.68,ml,,ci,31.0,"18km SE of Ridgecrest, CA",0.12,43,",ci,",reviewed,1539114785830,"M 1.7 - 18km SE of Ridgecrest, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1539116093220,https://earthquake.usgs.gov/earthquakes/eventpage/ci38318408 +,,38318384,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38318384&format=geojson,0.04153,,96.0,",ci38318384,",0.73,ml,,ci,25.0,"22km SSW of La Quinta, CA",0.14,8,",ci,",reviewed,1539113729850,"M 0.7 - 22km SSW of La Quinta, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539116158016,https://earthquake.usgs.gov/earthquakes/eventpage/ci38318384 +,,2018282013,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018282013&format=geojson,0.492,,191.0,",pr2018282013,",3.02,md,,pr,9.0,"67km SE of Punta Cana, Dominican Republic",0.39,140,",pr,",reviewed,1539113719340,"M 3.0 - 67km SE of Punta Cana, Dominican Republic",0,earthquake,",geoserve,origin,phase-data,",-300.0,1539130836841,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018282013 +,,37197980,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37197980&format=geojson,0.1162,,109.0,",ci37197980,",0.93,ml,,ci,15.0,"19km SE of Ridgecrest, CA",0.17,13,",ci,",reviewed,1539113566860,"M 0.9 - 19km SE of Ridgecrest, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539115686235,https://earthquake.usgs.gov/earthquakes/eventpage/ci37197980 +,,38318376,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38318376&format=geojson,0.1256,,89.0,",ci38318376,",0.7,ml,,ci,13.0,"18km SE of Ridgecrest, CA",0.21,8,",ci,",reviewed,1539113561570,"M 0.7 - 18km SE of Ridgecrest, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539115472070,https://earthquake.usgs.gov/earthquakes/eventpage/ci38318376 +,,61427957,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61427957&format=geojson,0.01763,,103.0,",uw61427957,",0.25,ml,,uw,9.0,"32km NNE of Amboy, Washington",0.13,1,",uw,",reviewed,1539113117840,"M 0.3 - 32km NNE of Amboy, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539126799300,https://earthquake.usgs.gov/earthquakes/eventpage/uw61427957 +,,60300187,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60300187&format=geojson,0.186,,132.0,",uu60300187,",1.84,ml,,uu,9.0,"25km SW of Afton, Wyoming",0.11,52,",uu,",reviewed,1539112855990,"M 1.8 - 25km SW of Afton, Wyoming",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539121858040,https://earthquake.usgs.gov/earthquakes/eventpage/uu60300187 +,,80313339,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80313339&format=geojson,0.034,,100.0,",mb80313339,",0.56,ml,,mb,5.0,"17km NNE of Dillon, Montana",0.09,5,",mb,",reviewed,1539112781540,"M 0.6 - 17km NNE of Dillon, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539202814790,https://earthquake.usgs.gov/earthquakes/eventpage/mb80313339 +,,20275097,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20275097&format=geojson,,,,",ak20275097,",1.9,ml,,ak,,"4km NNW of Fritz Creek, Alaska",0.47,56,",ak,",automatic,1539112651582,"M 1.9 - 4km NNW of Fritz Creek, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539112904435,https://earthquake.usgs.gov/earthquakes/eventpage/ak20275097 +,,1000h9kf,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h9kf&format=geojson,27.95,,61.0,",us1000h9kf,",5.4,mww,,us,,Southern Mid-Atlantic Ridge,0.74,449,",us,",reviewed,1539111942950,M 5.4 - Southern Mid-Atlantic Ridge,0,earthquake,",geoserve,moment-tensor,origin,phase-data,",-60.0,1539197915040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h9kf +,,80313134,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80313134&format=geojson,0.052,,139.0,",mb80313134,",1.38,ml,,mb,7.0,"3km ESE of Butte, Montana",0.11,29,",mb,",reviewed,1539111769380,"M 1.4 Quarry Blast - 3km ESE of Butte, Montana",0,quarry blast,",geoserve,origin,phase-data,",-420.0,1539114471860,https://earthquake.usgs.gov/earthquakes/eventpage/mb80313134 +,,70641287,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70641287&format=geojson,0.03794,,115.0,",hv70641287,",1.94,md,,hv,43.0,"14km SE of Volcano, Hawaii",0.17,58,",hv,",automatic,1539111755280,"M 1.9 - 14km SE of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539111948290,https://earthquake.usgs.gov/earthquakes/eventpage/hv70641287 +,,1000h9k8,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h9k8&format=geojson,0.499,,191.0,",us1000h9k8,",4.1,mb,,us,,"63km SE of Tanaga Volcano, Alaska",1.22,259,",us,",reviewed,1539111478020,"M 4.1 - 63km SE of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-720.0,1539116986040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h9k8 +,,00660205,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660205&format=geojson,0.028,,98.76,",nn00660205,",1.2,ml,,nn,12.0,"48km NE of Mammoth Lakes, California",0.1333,22,",nn,",reviewed,1539111038549,"M 1.2 - 48km NE of Mammoth Lakes, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539137077799,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660205 +,,70641262,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70641262&format=geojson,0.01215,,37.0,",hv70641262,",0.66,md,,hv,23.0,"5km WSW of Volcano, Hawaii",0.09,7,",hv,",reviewed,1539111017650,"M 0.7 - 5km WSW of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539125740690,https://earthquake.usgs.gov/earthquakes/eventpage/hv70641262 +,,1000h9jr,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h9jr&format=geojson,3.274,,63.0,",us1000h9jr,",4.9,mb,,us,,"113km S of Kandrian, Papua New Guinea",0.78,369,",us,",reviewed,1539108620740,"M 4.9 - 113km S of Kandrian, Papua New Guinea",0,earthquake,",geoserve,origin,phase-data,",600.0,1539271266040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h9jr +,,00660258,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660258&format=geojson,0.093,,190.14,",nn00660258,",0.4,ml,,nn,5.0,"8km NE of Incline Village, Nevada",0.1272,2,",nn,",reviewed,1539108187090,"M 0.4 - 8km NE of Incline Village, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539137106841,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660258 +,,20274887,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20274887&format=geojson,,,,",ak20274887,",1.6,ml,,ak,,"59km NNW of Yakutat, Alaska",0.47,39,",ak,",automatic,1539107417510,"M 1.6 - 59km NNW of Yakutat, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539107609231,https://earthquake.usgs.gov/earthquakes/eventpage/ak20274887 +,,73095486,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095486&format=geojson,0.008809,,42.0,",nc73095486,",1.13,md,,nc,24.0,"4km NNW of The Geysers, CA",0.04,20,",nc,",automatic,1539107325890,"M 1.1 - 4km NNW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539118324687,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095486 +,,1000h9i6,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h9i6&format=geojson,5.088,,119.0,",us1000h9i6,",4.7,mb,,us,,"28km S of Lakatoro, Vanuatu",0.96,340,",us,",reviewed,1539106745840,"M 4.7 - 28km S of Lakatoro, Vanuatu",0,earthquake,",geoserve,origin,phase-data,",660.0,1539269760040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h9i6 +,,38318320,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38318320&format=geojson,0.108,,68.0,",ci38318320,",1.59,ml,,ci,28.0,"5km WNW of Coso Junction, CA",0.12,39,",ci,",reviewed,1539106530710,"M 1.6 - 5km WNW of Coso Junction, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1539107996379,https://earthquake.usgs.gov/earthquakes/eventpage/ci38318320 +,,80313049,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80313049&format=geojson,0.089,,110.0,",mb80313049,",0.8,ml,,mb,9.0,"52km WNW of West Yellowstone, Montana",0.19,10,",mb,",reviewed,1539105581590,"M 0.8 - 52km WNW of West Yellowstone, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539108154780,https://earthquake.usgs.gov/earthquakes/eventpage/mb80313049 +,,20274886,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20274886&format=geojson,,,,",ak20274886,",1.5,ml,,ak,,"45km WNW of Valdez, Alaska",0.37,35,",ak,",automatic,1539104959223,"M 1.5 - 45km WNW of Valdez, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539105148141,https://earthquake.usgs.gov/earthquakes/eventpage/ak20274886 +,,73095481,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095481&format=geojson,0.009159,,94.0,",nc73095481,",0.72,md,,nc,7.0,"3km ENE of The Geysers, CA",0.02,8,",nc,",automatic,1539104876970,"M 0.7 - 3km ENE of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539107404640,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095481 +,,60300167,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60300167&format=geojson,0.04065,,64.0,",uu60300167,",1.57,ml,,uu,18.0,"20km SSW of Monroe, Utah",0.16,38,",uu,",reviewed,1539104792540,"M 1.6 - 20km SSW of Monroe, Utah",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539105760930,https://earthquake.usgs.gov/earthquakes/eventpage/uu60300167 +,,73095476,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095476&format=geojson,0.01517,,57.0,",nc73095476,",0.55,md,,nc,12.0,"2km SW of Cobb, CA",0.02,5,",nc,",automatic,1539104216070,"M 0.6 - 2km SW of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539111903074,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095476 +,,20274880,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20274880&format=geojson,,,,",ak20274880,",1.2,ml,,ak,,"131km WNW of Arctic Village, Alaska",1.12,22,",ak,",automatic,1539103873087,"M 1.2 - 131km WNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539104525099,https://earthquake.usgs.gov/earthquakes/eventpage/ak20274880 +,,20274878,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20274878&format=geojson,,,,",ak20274878,",2.4,ml,,ak,,"108km NNW of Arctic Village, Alaska",1.15,89,",ak,",automatic,1539103402714,"M 2.4 - 108km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539103728861,https://earthquake.usgs.gov/earthquakes/eventpage/ak20274878 +,,20274873,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20274873&format=geojson,,,,",ak20274873,",1.3,ml,,ak,,"65km NW of Cape Yakataga, Alaska",1.18,26,",ak,",automatic,1539101358388,"M 1.3 - 65km NW of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539101493040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20274873 +,,20274869,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20274869&format=geojson,,,,",ak20274869,",1.8,ml,,ak,,"79km NNE of Sutton-Alpine, Alaska",0.43,50,",ak,",automatic,1539100663467,"M 1.8 - 79km NNE of Sutton-Alpine, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539100901129,https://earthquake.usgs.gov/earthquakes/eventpage/ak20274869 +,,60300162,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60300162&format=geojson,0.1523,,126.0,",nn00660191,uu60300162,",1.39,ml,,uu,15.0,"16km SSE of Washington, Utah",0.17,30,",nn,uu,",reviewed,1539100389030,"M 1.4 - 16km SSE of Washington, Utah",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539137075186,https://earthquake.usgs.gov/earthquakes/eventpage/uu60300162 +,,20274865,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20274865&format=geojson,,,,",ak20274865,",1.9,ml,,ak,,"72km SW of Kaktovik, Alaska",0.94,56,",ak,",automatic,1539100318383,"M 1.9 - 72km SW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539100900857,https://earthquake.usgs.gov/earthquakes/eventpage/ak20274865 +,,00660257,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660257&format=geojson,0.216,,263.31,",nn00660257,",0.2,ml,,nn,4.0,"9km WSW of Hawthorne, Nevada",0.0553,1,",nn,",reviewed,1539100280707,"M 0.2 - 9km WSW of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539137103615,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660257 +,,20274857,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20274857&format=geojson,,,,",ak20274857,",2.8,ml,,ak,,"67km SSW of Kaktovik, Alaska",0.68,121,",ak,",automatic,1539099571169,"M 2.8 - 67km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539100899991,https://earthquake.usgs.gov/earthquakes/eventpage/ak20274857 +,,38318264,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38318264&format=geojson,0.03303,,32.0,",ci38318264,",0.87,ml,,ci,43.0,"10km ENE of Aguanga, CA",0.15,12,",ci,",reviewed,1539099542870,"M 0.9 - 10km ENE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539104359391,https://earthquake.usgs.gov/earthquakes/eventpage/ci38318264 +,,00660187,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660187&format=geojson,0.144,,79.59,",nn00660187,",1.3,ml,,nn,14.0,"8km SE of Bridgeport, California",0.113,26,",nn,",reviewed,1539099452861,"M 1.3 - 8km SE of Bridgeport, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539137071711,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660187 +,,38318256,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38318256&format=geojson,0.003339,,61.0,",ci38318256,",0.49,ml,,ci,29.0,"10km NE of Aguanga, CA",0.09,4,",ci,",reviewed,1539099327660,"M 0.5 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539104040556,https://earthquake.usgs.gov/earthquakes/eventpage/ci38318256 +,,1000h9da,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h9da&format=geojson,,,50.0,",us1000h9da,",2.7,ml,,us,,"13km SSE of Medford, Oklahoma",0.2,112,",us,",reviewed,1539099182300,"M 2.7 - 13km SSE of Medford, Oklahoma",0,earthquake,",geoserve,origin,phase-data,",-360.0,1539109843040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h9da +,,38318248,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38318248&format=geojson,0.007868,,30.0,",ci38318248,",1.04,ml,,ci,48.0,"9km NE of Aguanga, CA",0.16,17,",ci,",reviewed,1539098958790,"M 1.0 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1539103840561,https://earthquake.usgs.gov/earthquakes/eventpage/ci38318248 +,,73095466,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095466&format=geojson,0.02738,,204.0,",nc73095466,",0.85,md,,nc,8.0,"8km ENE of Pinnacles, CA",0.04,11,",nc,",reviewed,1539098590570,"M 0.9 - 8km ENE of Pinnacles, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539192063748,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095466 +,2.2,80312994,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80312994&format=geojson,0.11,1.0,160.0,",mb80312994,",1.71,ml,,mb,14.0,"20km N of Driggs, Idaho",0.2,45,",mb,",reviewed,1539098108370,"M 1.7 - 20km N of Driggs, Idaho",0,earthquake,",dyfi,geoserve,origin,phase-data,",-420.0,1539107569760,https://earthquake.usgs.gov/earthquakes/eventpage/mb80312994 +,,70641017,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70641017&format=geojson,0.03132,,51.0,",hv70641017,",2.3,ml,,hv,33.0,"22km ENE of Honaunau-Napoopoo, Hawaii",0.13,81,",hv,",reviewed,1539097929200,"M 2.3 - 22km ENE of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539114000670,https://earthquake.usgs.gov/earthquakes/eventpage/hv70641017 +,2.2,20274842,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20274842&format=geojson,,2.0,,",ak20274842,",2.9,ml,,ak,,"10km ESE of Willow, Alaska",0.51,130,",ak,",reviewed,1539097603184,"M 2.9 - 10km ESE of Willow, Alaska",0,earthquake,",dyfi,geoserve,origin,phase-data,",-540.0,1539191504473,https://earthquake.usgs.gov/earthquakes/eventpage/ak20274842 +,,20274839,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20274839&format=geojson,,,,",ak20274839,",2.4,ml,,ak,,"91km NNW of Talkeetna, Alaska",0.38,89,",ak,",automatic,1539097295532,"M 2.4 - 91km NNW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539097591331,https://earthquake.usgs.gov/earthquakes/eventpage/ak20274839 +,,38318216,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38318216&format=geojson,0.0888,,72.0,",ci38318216,",0.47,ml,,ci,21.0,"9km ENE of Aguanga, CA",0.15,3,",ci,",reviewed,1539097051010,"M 0.5 - 9km ENE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539099582061,https://earthquake.usgs.gov/earthquakes/eventpage/ci38318216 +,,80312979,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80312979&format=geojson,0.657,,112.0,",mb80312979,",1.48,ml,,mb,8.0,"61km WSW of Challis, Idaho",0.24,34,",mb,",reviewed,1539096986410,"M 1.5 - 61km WSW of Challis, Idaho",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539112150980,https://earthquake.usgs.gov/earthquakes/eventpage/mb80312979 +,,70640992,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70640992&format=geojson,0.0316,,46.0,",hv70640992,",2.53,ml,,hv,51.0,"21km ENE of Honaunau-Napoopoo, Hawaii",0.13,98,",hv,",reviewed,1539096962060,"M 2.5 - 21km ENE of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539121946280,https://earthquake.usgs.gov/earthquakes/eventpage/hv70640992 +,,20274836,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20274836&format=geojson,,,,",ak20274836,",1.7,ml,,ak,,"108km NNW of Arctic Village, Alaska",1.02,44,",ak,",automatic,1539096599750,"M 1.7 - 108km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539096993131,https://earthquake.usgs.gov/earthquakes/eventpage/ak20274836 +,,2018282012,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018282012&format=geojson,0.4244,,200.0,",pr2018282012,us1000h9hz,",2.95,md,,pr,5.0,"31km NE of Punta Cana, Dominican Republic",0.25,134,",pr,us,",reviewed,1539096154000,"M 3.0 - 31km NE of Punta Cana, Dominican Republic",0,earthquake,",geoserve,origin,phase-data,",-300.0,1539109350040,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018282012 +,,20274834,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20274834&format=geojson,,,,",ak20274834,",1.9,ml,,ak,,"75km SW of Kaktovik, Alaska",1.14,56,",ak,",automatic,1539095891681,"M 1.9 - 75km SW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539096202026,https://earthquake.usgs.gov/earthquakes/eventpage/ak20274834 +,,20274832,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20274832&format=geojson,,,,",ak20274832,",1.4,ml,,ak,,"52km NW of Nikiski, Alaska",0.57,30,",ak,",automatic,1539095704116,"M 1.4 - 52km NW of Nikiski, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539095907707,https://earthquake.usgs.gov/earthquakes/eventpage/ak20274832 +,,20274831,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20274831&format=geojson,,,,",ak20274831,",1.4,ml,,ak,,"118km SSE of Prudhoe Bay, Alaska",1.25,30,",ak,",automatic,1539095359794,"M 1.4 - 118km SSE of Prudhoe Bay, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539095562976,https://earthquake.usgs.gov/earthquakes/eventpage/ak20274831 +,,73095456,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095456&format=geojson,0.02739,,113.0,",nc73095456,",1.11,md,,nc,17.0,"8km ENE of Pinnacles, CA",0.06,19,",nc,",reviewed,1539095124030,"M 1.1 - 8km ENE of Pinnacles, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539140943467,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095456 +,,73095446,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095446&format=geojson,0.05655,,67.0,",nc73095446,",1.57,md,,nc,25.0,"15km NW of Pinnacles, CA",0.04,38,",nc,",reviewed,1539094925620,"M 1.6 - 15km NW of Pinnacles, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539215524874,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095446 +,,2018282011,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018282011&format=geojson,0.7169,,221.0,",pr2018282011,us1000h9hx,",2.98,md,,pr,4.0,"18km ENE of Miches, Dominican Republic",0.19,137,",pr,us,",reviewed,1539094796310,"M 3.0 - 18km ENE of Miches, Dominican Republic",0,earthquake,",geoserve,origin,phase-data,",-240.0,1539109161040,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018282011 +,,20274827,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20274827&format=geojson,,,,",ak20274827,",1.5,ml,,ak,,"6km WNW of Meadow Lakes, Alaska",0.79,35,",ak,",automatic,1539094559076,"M 1.5 - 6km WNW of Meadow Lakes, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539095005500,https://earthquake.usgs.gov/earthquakes/eventpage/ak20274827 +,,73095441,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095441&format=geojson,0.002012,,68.0,",nc73095441,",0.91,md,,nc,13.0,"9km NW of The Geysers, CA",0.06,13,",nc,",automatic,1539094462300,"M 0.9 - 9km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539101223067,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095441 +,,61427907,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61427907&format=geojson,0.2451,,114.0,",uw61427907,",1.64,ml,,uw,6.0,"17km ENE of Sedro-Woolley, Washington",0.13,41,",uw,",reviewed,1539094149120,"M 1.6 - 17km ENE of Sedro-Woolley, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539103677480,https://earthquake.usgs.gov/earthquakes/eventpage/uw61427907 +,,73095436,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095436&format=geojson,0.003814,,157.0,",nc73095436,",0.94,md,,nc,8.0,"7km WNW of The Geysers, CA",0.03,14,",nc,",automatic,1539091736990,"M 0.9 - 7km WNW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539092642499,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095436 +,,80312959,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80312959&format=geojson,0.829,,90.0,",mb80312959,",2.35,ml,,mb,8.0,"60km WSW of Challis, Idaho",0.13,85,",mb,",reviewed,1539091514160,"M 2.4 - 60km WSW of Challis, Idaho",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539112488140,https://earthquake.usgs.gov/earthquakes/eventpage/mb80312959 +,,80312954,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80312954&format=geojson,0.092,,166.0,",mb80312954,",0.71,ml,,mb,8.0,"6km E of Driggs, Idaho",0.11,8,",mb,",reviewed,1539090858370,"M 0.7 - 6km E of Driggs, Idaho",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539107174040,https://earthquake.usgs.gov/earthquakes/eventpage/mb80312954 +,,20274817,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20274817&format=geojson,,,,",ak20274817,",2.5,ml,,ak,,"36km E of Anchorage, Alaska",0.73,96,",ak,",automatic,1539090629973,"M 2.5 - 36km E of Anchorage, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539090901201,https://earthquake.usgs.gov/earthquakes/eventpage/ak20274817 +,,20274814,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20274814&format=geojson,,,,",ak20274814,",1.8,ml,,ak,,"39km WNW of Cantwell, Alaska",0.94,50,",ak,",automatic,1539090192318,"M 1.8 - 39km WNW of Cantwell, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539090455126,https://earthquake.usgs.gov/earthquakes/eventpage/ak20274814 +,,20274812,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20274812&format=geojson,,,,",ak20274812,",2.1,ml,,ak,,"72km SW of Kaktovik, Alaska",1.01,68,",ak,",automatic,1539089597483,"M 2.1 - 72km SW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539089897707,https://earthquake.usgs.gov/earthquakes/eventpage/ak20274812 +,,20274810,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20274810&format=geojson,,,,",ak20274810,",1.3,ml,,ak,,"48km WNW of Willow, Alaska",0.29,26,",ak,",automatic,1539089174613,"M 1.3 - 48km WNW of Willow, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539089431726,https://earthquake.usgs.gov/earthquakes/eventpage/ak20274810 +,,20274805,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20274805&format=geojson,,,,",ak20274805,",1.5,ml,,ak,,"94km WSW of Fort Yukon, Alaska",0.87,35,",ak,",automatic,1539088714252,"M 1.5 - 94km WSW of Fort Yukon, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539088985670,https://earthquake.usgs.gov/earthquakes/eventpage/ak20274805 +,,73095431,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095431&format=geojson,0.02402,,203.0,",nc73095431,",0.99,md,,nc,8.0,"4km SSW of Anderson Springs, CA",0.12,15,",nc,",automatic,1539088641660,"M 1.0 - 4km SSW of Anderson Springs, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539089583033,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095431 +,,80313334,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80313334&format=geojson,0.151,,102.0,",mb80313334,",0.59,ml,,mb,9.0,"30km SW of Lima, Montana",0.14,5,",mb,",reviewed,1539088070410,"M 0.6 - 30km SW of Lima, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539202534840,https://earthquake.usgs.gov/earthquakes/eventpage/mb80313334 +,,20274801,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20274801&format=geojson,,,,",ak20274801,",1.6,ml,,ak,,"30km NNE of Coldfoot, Alaska",0.73,39,",ak,",automatic,1539087765058,"M 1.6 - 30km NNE of Coldfoot, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539088053288,https://earthquake.usgs.gov/earthquakes/eventpage/ak20274801 +,,70640787,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70640787&format=geojson,0.02817,,68.0,",hv70640787,",1.04,md,,hv,20.0,"22km ENE of Honaunau-Napoopoo, Hawaii",0.1,17,",hv,",reviewed,1539087533400,"M 1.0 - 22km ENE of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539391527850,https://earthquake.usgs.gov/earthquakes/eventpage/hv70640787 +,,38318152,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38318152&format=geojson,0.06547,,234.0,",ci38318152,",0.52,ml,,ci,20.0,"18km ESE of Anza, CA",0.14,4,",ci,",reviewed,1539087423800,"M 0.5 - 18km ESE of Anza, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539107058244,https://earthquake.usgs.gov/earthquakes/eventpage/ci38318152 +,,61427837,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61427837&format=geojson,0.03664,,52.0,",uw61427837,",1.31,ml,,uw,16.0,"18km SW of Marietta, Washington",0.26,26,",uw,",reviewed,1539086653640,"M 1.3 - 18km SW of Marietta, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539104866640,https://earthquake.usgs.gov/earthquakes/eventpage/uw61427837 +,,38318144,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38318144&format=geojson,0.1105,,133.0,",ci38318144,",0.78,ml,,ci,18.0,"6km WNW of Coso Junction, CA",0.12,9,",ci,",reviewed,1539086087040,"M 0.8 - 6km WNW of Coso Junction, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539111203697,https://earthquake.usgs.gov/earthquakes/eventpage/ci38318144 +,,20274793,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20274793&format=geojson,,,,",ak20274793,",1.9,ml,,ak,,"112km NNW of Arctic Village, Alaska",0.81,56,",ak,",automatic,1539086034519,"M 1.9 - 112km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539086361041,https://earthquake.usgs.gov/earthquakes/eventpage/ak20274793 +,,38318136,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38318136&format=geojson,0.01559,,35.0,",ci38318136,",0.81,ml,,ci,33.0,"9km NE of Aguanga, CA",0.13,10,",ci,",reviewed,1539085877320,"M 0.8 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1539091330530,https://earthquake.usgs.gov/earthquakes/eventpage/ci38318136 +,,73095421,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095421&format=geojson,0.1122,,321.0,",nc73095421,",1.88,md,,nc,6.0,"16km SW of Petrolia, CA",0.19,54,",nc,",reviewed,1539085361980,"M 1.9 - 16km SW of Petrolia, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539124024220,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095421 +,,20274792,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20274792&format=geojson,,,,",ak20274792,",1.3,ml,,ak,,"74km SSW of Kaktovik, Alaska",0.66,26,",ak,",reviewed,1539085041548,"M 1.3 - 74km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539102330168,https://earthquake.usgs.gov/earthquakes/eventpage/ak20274792 +,,38318120,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38318120&format=geojson,0.03506,,39.0,",ci38318120,",1.56,ml,,ci,66.0,"8km ENE of Aguanga, CA",0.2,37,",ci,",reviewed,1539084763580,"M 1.6 - 8km ENE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1539113727864,https://earthquake.usgs.gov/earthquakes/eventpage/ci38318120 +,,38318112,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38318112&format=geojson,0.03378,,113.0,",ci38318112,",0.97,ml,,ci,25.0,"22km SSW of La Quinta, CA",0.23,14,",ci,",reviewed,1539084752350,"M 1.0 - 22km SSW of La Quinta, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539091303603,https://earthquake.usgs.gov/earthquakes/eventpage/ci38318112 +,,38318096,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38318096&format=geojson,0.01891,,31.0,",ci38318096,",1.29,ml,,ci,44.0,"8km S of Warner Springs, CA",0.19,26,",ci,",reviewed,1539084733160,"M 1.3 - 8km S of Warner Springs, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1539091342780,https://earthquake.usgs.gov/earthquakes/eventpage/ci38318096 +,,38318104,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38318104&format=geojson,0.03475,,150.0,",ci38318104,",0.42,ml,,ci,16.0,"22km ESE of Anza, CA",0.16,3,",ci,",reviewed,1539084731880,"M 0.4 - 22km ESE of Anza, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539104740706,https://earthquake.usgs.gov/earthquakes/eventpage/ci38318104 +,,73095411,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095411&format=geojson,0.01046,,39.0,",nc73095411,",1.86,md,,nc,49.0,"3km SW of Anderson Springs, CA",0.07,53,",nc,",reviewed,1539084717050,"M 1.9 - 3km SW of Anderson Springs, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539228663383,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095411 +,,73095401,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095401&format=geojson,0.03582,,131.0,",nc73095401,",1.25,md,,nc,18.0,"4km N of Pinnacles, CA",0.04,24,",nc,",reviewed,1539084492630,"M 1.3 - 4km N of Pinnacles, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539137763692,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095401 +,,73095406,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095406&format=geojson,0.01061,,203.0,",nc73095406,",0.56,md,,nc,16.0,"14km W of Toms Place, CA",0.03,5,",nc,",reviewed,1539084460830,"M 0.6 - 14km W of Toms Place, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539111784066,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095406 +,,80313329,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80313329&format=geojson,0.083,,147.0,",mb80313329,",0.48,ml,,mb,8.0,"11km ESE of Bozeman, Montana",0.26,4,",mb,",reviewed,1539084158140,"M 0.5 - 11km ESE of Bozeman, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539202172370,https://earthquake.usgs.gov/earthquakes/eventpage/mb80313329 +,,80312929,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80312929&format=geojson,0.664,,111.0,",mb80312929,",1.58,ml,,mb,7.0,"62km WSW of Challis, Idaho",0.15,38,",mb,",reviewed,1539083957020,"M 1.6 - 62km WSW of Challis, Idaho",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539112975910,https://earthquake.usgs.gov/earthquakes/eventpage/mb80312929 +,,61427832,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61427832&format=geojson,0.02979,,141.0,",uw61427832,",0.64,ml,,uw,9.0,"14km N of Richland, Washington",0.2,6,",uw,",reviewed,1539083954810,"M 0.6 - 14km N of Richland, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539105686810,https://earthquake.usgs.gov/earthquakes/eventpage/uw61427832 +,,73095396,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095396&format=geojson,0.005068,,105.0,",nc73095396,",0.89,md,,nc,7.0,"10km WNW of Cobb, CA",0.03,12,",nc,",automatic,1539083810490,"M 0.9 - 10km WNW of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539086162361,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095396 +,3.1,38318088,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38318088&format=geojson,0.04065,2.0,13.0,",ci38318088,",2.88,ml,,ci,126.0,"7km ENE of Aguanga, CA",0.22,128,",ci,",reviewed,1539083701620,"M 2.9 - 7km ENE of Aguanga, CA",0,earthquake,",dyfi,focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1539103530210,https://earthquake.usgs.gov/earthquakes/eventpage/ci38318088 +,,80313324,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80313324&format=geojson,0.658,,111.0,",mb80313324,",1.46,ml,,mb,7.0,"61km WSW of Challis, Idaho",0.17,33,",mb,",reviewed,1539083661900,"M 1.5 - 61km WSW of Challis, Idaho",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539201929050,https://earthquake.usgs.gov/earthquakes/eventpage/mb80313324 +,,80313319,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80313319&format=geojson,0.663,,123.0,",mb80313319,",1.42,ml,,mb,7.0,"62km WSW of Challis, Idaho",0.11,31,",mb,",reviewed,1539083625880,"M 1.4 - 62km WSW of Challis, Idaho",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539201618740,https://earthquake.usgs.gov/earthquakes/eventpage/mb80313319 +,,00660256,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660256&format=geojson,0.066,,95.09,",nn00660256,",1.3,ml,,nn,11.0,"24km WNW of Bridgeport, California",0.1538,26,",nn,",reviewed,1539083486713,"M 1.3 - 24km WNW of Bridgeport, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539137102277,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660256 +,,20274602,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20274602&format=geojson,,,,",ak20274602,",2.1,ml,,ak,,"52km SSW of Redoubt Volcano, Alaska",0.61,68,",ak,",automatic,1539083405786,"M 2.1 - 52km SSW of Redoubt Volcano, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539083939202,https://earthquake.usgs.gov/earthquakes/eventpage/ak20274602 +,,20274600,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20274600&format=geojson,,,,",ak20274600,",1.3,ml,,ak,,"42km N of Sutton-Alpine, Alaska",0.33,26,",ak,",automatic,1539083144070,"M 1.3 - 42km N of Sutton-Alpine, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539083361339,https://earthquake.usgs.gov/earthquakes/eventpage/ak20274600 +,,73095381,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095381&format=geojson,0.03134,,104.0,",nc73095381,",1.46,md,,nc,15.0,"7km ENE of Pinnacles, CA",0.09,33,",nc,",reviewed,1539082726060,"M 1.5 - 7km ENE of Pinnacles, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539214863777,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095381 +,,20274594,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20274594&format=geojson,,,,",ak20274594,",2.8,ml,,ak,,"47km S of Anchorage, Alaska",0.81,121,",ak,",automatic,1539082024337,"M 2.8 - 47km S of Anchorage, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539082409120,https://earthquake.usgs.gov/earthquakes/eventpage/ak20274594 +,,80313314,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80313314&format=geojson,0.392,,127.0,",mb80313314,",1.2,ml,,mb,8.0,"28km WSW of Challis, Idaho",0.11,22,",mb,",reviewed,1539081982700,"M 1.2 - 28km WSW of Challis, Idaho",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539201249860,https://earthquake.usgs.gov/earthquakes/eventpage/mb80313314 +,,73095376,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095376&format=geojson,0.01486,,63.0,",nc73095376,",1.01,md,,nc,9.0,"2km SW of Cobb, CA",0.02,16,",nc,",automatic,1539081089920,"M 1.0 - 2km SW of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539084243154,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095376 +,,70640657,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70640657&format=geojson,0.03088,,58.0,",hv70640657,",2.27,ml,,hv,36.0,"22km ENE of Honaunau-Napoopoo, Hawaii",0.12,79,",hv,",reviewed,1539081070010,"M 2.3 - 22km ENE of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539124408840,https://earthquake.usgs.gov/earthquakes/eventpage/hv70640657 +,,20274592,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20274592&format=geojson,,,,",ak20274592,",2.4,ml,,ak,,"56km SSE of Homer, Alaska",1.05,89,",ak,",automatic,1539081049014,"M 2.4 - 56km SSE of Homer, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539081405808,https://earthquake.usgs.gov/earthquakes/eventpage/ak20274592 +,,61427827,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61427827&format=geojson,0.06513,,112.0,",uw61427827,",1.28,ml,,uw,13.0,"18km NNW of Anacortes, Washington",0.27,25,",uw,",reviewed,1539080835660,"M 1.3 - 18km NNW of Anacortes, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539105188010,https://earthquake.usgs.gov/earthquakes/eventpage/uw61427827 +,,1000h99t,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h99t&format=geojson,2.577,,27.0,",us1000h99t,",4.6,mb,,us,,"113km NE of Kemeduran, Indonesia",1.18,326,",us,",reviewed,1539080009470,"M 4.6 - 113km NE of Kemeduran, Indonesia",0,earthquake,",geoserve,origin,phase-data,",480.0,1539082695040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h99t +,,73095371,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095371&format=geojson,0.002046,,89.0,",nc73095371,",0.98,md,,nc,15.0,"10km NW of The Geysers, CA",0.03,15,",nc,",automatic,1539079912210,"M 1.0 - 10km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539083043024,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095371 +,,73095366,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095366&format=geojson,0.002218,,115.0,",nc73095366,",1.17,md,,nc,19.0,"10km NW of The Geysers, CA",0.04,21,",nc,",automatic,1539079812140,"M 1.2 - 10km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539091083179,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095366 +,,20274588,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20274588&format=geojson,,,,",ak20274588,",1.9,ml,,ak,,"68km S of Kaktovik, Alaska",0.91,56,",ak,",automatic,1539079773888,"M 1.9 - 68km S of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539080290963,https://earthquake.usgs.gov/earthquakes/eventpage/ak20274588 +,,20274586,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20274586&format=geojson,,,,",ak20274586,",1.2,ml,,ak,,"62km NNW of Nikiski, Alaska",0.32,22,",ak,",automatic,1539079701917,"M 1.2 - 62km NNW of Nikiski, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539079976625,https://earthquake.usgs.gov/earthquakes/eventpage/ak20274586 +,,73095361,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095361&format=geojson,0.02447,,134.0,",nc73095361,",0.77,md,,nc,5.0,"3km SE of The Geysers, CA",0.02,9,",nc,",automatic,1539079476960,"M 0.8 - 3km SE of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539081185076,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095361 +,,80313309,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80313309&format=geojson,0.113,,171.0,",mb80313309,",0.55,ml,,mb,5.0,"14km SE of Bozeman, Montana",0.08,5,",mb,",reviewed,1539079345220,"M 0.6 - 14km SE of Bozeman, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539200852150,https://earthquake.usgs.gov/earthquakes/eventpage/mb80313309 +,,38318080,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38318080&format=geojson,0.08149,,51.0,",ci38318080,",0.97,ml,,ci,35.0,"8km WNW of Warner Springs, CA",0.18,14,",ci,",reviewed,1539079099730,"M 1.0 - 8km WNW of Warner Springs, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539091322605,https://earthquake.usgs.gov/earthquakes/eventpage/ci38318080 +,,20274583,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20274583&format=geojson,,,,",ak20274583,",1.5,ml,,ak,,"61km ENE of Cantwell, Alaska",1.52,35,",ak,",automatic,1539078625831,"M 1.5 - 61km ENE of Cantwell, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539078831291,https://earthquake.usgs.gov/earthquakes/eventpage/ak20274583 +,,73095356,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095356&format=geojson,0.01375,,79.0,",nc73095356,",0.45,md,,nc,10.0,"2km SW of Cobb, CA",0.02,3,",nc,",automatic,1539078521980,"M 0.5 - 2km SW of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539079862696,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095356 +,,38318072,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38318072&format=geojson,0.1043,,263.0,",ci38318072,",0.32,ml,,ci,12.0,"5km WNW of Coso Junction, CA",0.13,2,",ci,",reviewed,1539078409350,"M 0.3 - 5km WNW of Coso Junction, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539106405655,https://earthquake.usgs.gov/earthquakes/eventpage/ci38318072 +,,73095921,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095921&format=geojson,0.01598,,192.0,",nc73095921,",-0.16,md,,nc,5.0,"15km NNE of Mineral, CA",0.07,0,",nc,",reviewed,1539078196710,"M -0.2 - 15km NNE of Mineral, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539202698917,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095921 +,3.8,73095351,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095351&format=geojson,0.01683,1.0,35.0,",nc73095351,",2.43,md,,nc,60.0,"2km SSW of Cobb, CA",0.07,91,",nc,",reviewed,1539078088530,"M 2.4 - 2km SSW of Cobb, CA",0,earthquake,",dyfi,focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539238442280,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095351 +,,20274580,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20274580&format=geojson,,,,",ak20274580,",2.1,ml,,ak,,"80km SW of Kaktovik, Alaska",1.12,68,",ak,",automatic,1539078051889,"M 2.1 - 80km SW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539078334729,https://earthquake.usgs.gov/earthquakes/eventpage/ak20274580 +,,20274577,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20274577&format=geojson,,,,",ak20274577,",1.4,ml,,ak,,"52km S of Ester, Alaska",0.5,30,",ak,",automatic,1539077926749,"M 1.4 - 52km S of Ester, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539078202988,https://earthquake.usgs.gov/earthquakes/eventpage/ak20274577 +,,73095346,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095346&format=geojson,0.01544,,64.0,",nc73095346,",0.86,md,,nc,10.0,"2km NE of The Geysers, CA",0.03,11,",nc,",automatic,1539077768130,"M 0.9 - 2km NE of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539079204337,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095346 +,,70640552,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70640552&format=geojson,0.03702,,53.0,",hv70640552,",2.27,ml,,hv,40.0,"21km ENE of Honaunau-Napoopoo, Hawaii",0.12,79,",hv,",reviewed,1539077703640,"M 2.3 - 21km ENE of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539123468730,https://earthquake.usgs.gov/earthquakes/eventpage/hv70640552 +,,70640547,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70640547&format=geojson,0.03357,,64.0,",hv70640547,",2.13,ml,,hv,36.0,"21km ENE of Honaunau-Napoopoo, Hawaii",0.13,70,",hv,",reviewed,1539077474960,"M 2.1 - 21km ENE of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539122846830,https://earthquake.usgs.gov/earthquakes/eventpage/hv70640547 +,,73095336,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095336&format=geojson,0.03438,,217.0,",nc73095336,",0.18,md,,nc,13.0,"7km SSE of Mammoth Lakes, CA",0.05,0,",nc,",reviewed,1539076904790,"M 0.2 - 7km SSE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539108236676,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095336 +,,38318064,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38318064&format=geojson,0.03413,,63.0,",ci38318064,",0.46,ml,,ci,20.0,"8km ENE of Aguanga, CA",0.19,3,",ci,",reviewed,1539076309320,"M 0.5 - 8km ENE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539091339395,https://earthquake.usgs.gov/earthquakes/eventpage/ci38318064 +,,2018282010,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018282010&format=geojson,0.0698,,173.0,",pr2018282010,",1.7,md,,pr,4.0,"1km SW of Sabana Eneas, Puerto Rico",0.14,44,",pr,",reviewed,1539076306630,"M 1.7 - 1km SW of Sabana Eneas, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1539086153743,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018282010 +,,1000h98r,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h98r&format=geojson,0.051,,39.0,",hv70640497,us1000h98r,",3.3,ml,,us,,"23km ENE of Honaunau-Napoopoo, Hawaii",0.7,168,",hv,us,",reviewed,1539075925820,"M 3.3 - 23km ENE of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539124017010,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h98r +,2.0,70640502,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70640502&format=geojson,0.03124,1.0,44.0,",hv70640502,",3.31,ml,,hv,41.0,"22km ENE of Honaunau-Napoopoo, Hawaii",0.14,169,",hv,",reviewed,1539075925540,"M 3.3 - 22km ENE of Honaunau-Napoopoo, Hawaii",0,earthquake,",dyfi,geoserve,origin,phase-data,",-600.0,1539222070450,https://earthquake.usgs.gov/earthquakes/eventpage/hv70640502 +,,20274394,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20274394&format=geojson,,,,",ak20274394,",2.0,ml,,ak,,"133km NW of Arctic Village, Alaska",0.66,62,",ak,",automatic,1539075803698,"M 2.0 - 133km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539076115821,https://earthquake.usgs.gov/earthquakes/eventpage/ak20274394 +,,20274391,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20274391&format=geojson,,,,",ak20274391,",1.8,ml,,ak,,"79km NNW of Nikiski, Alaska",0.59,50,",ak,",automatic,1539075639306,"M 1.8 - 79km NNW of Nikiski, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539075912834,https://earthquake.usgs.gov/earthquakes/eventpage/ak20274391 +,,38318056,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38318056&format=geojson,0.05235,,108.0,",ci38318056,",0.97,ml,,ci,19.0,"19km ESE of Julian, CA",0.13,14,",ci,",reviewed,1539075572340,"M 1.0 - 19km ESE of Julian, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1539117147667,https://earthquake.usgs.gov/earthquakes/eventpage/ci38318056 +,2.7,70640477,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70640477&format=geojson,0.03048,5.0,42.0,",hv70640477,us1000h98i,",3.61,ml,4.39,hv,57.0,"24km ENE of Honaunau-Napoopoo, Hawaii",0.12,202,",hv,us,",reviewed,1539075290310,"M 3.6 - 24km ENE of Honaunau-Napoopoo, Hawaii",0,earthquake,",dyfi,geoserve,origin,phase-data,shakemap,",-600.0,1539082540504,https://earthquake.usgs.gov/earthquakes/eventpage/hv70640477 +,,20274386,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20274386&format=geojson,,,,",ak20274386,",2.2,ml,,ak,,"54km SW of Talkeetna, Alaska",0.85,74,",ak,",automatic,1539074890575,"M 2.2 - 54km SW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539075284544,https://earthquake.usgs.gov/earthquakes/eventpage/ak20274386 +,,73095321,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095321&format=geojson,0.01773,,50.0,",nc73095321,",1.2,md,,nc,37.0,"12km NW of Parkfield, CA",0.06,22,",nc,",reviewed,1539074156200,"M 1.2 - 12km NW of Parkfield, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539127983594,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095321 +,,00660175,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660175&format=geojson,0.37,,207.65,",nn00660175,",0.4,ml,,nn,6.0,"23km SW of Goldfield, Nevada",0.2382,2,",nn,",reviewed,1539074143015,"M 0.4 - 23km SW of Goldfield, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539137066972,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660175 +,,20274382,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20274382&format=geojson,,,,",ak20274382,",2.0,ml,,ak,,"108km NW of Arctic Village, Alaska",0.86,62,",ak,",automatic,1539073886024,"M 2.0 - 108km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539074148531,https://earthquake.usgs.gov/earthquakes/eventpage/ak20274382 +,,20274378,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20274378&format=geojson,,,,",ak20274378,",2.3,ml,,ak,,"65km SSW of Kaktovik, Alaska",0.66,81,",ak,",automatic,1539073243690,"M 2.3 - 65km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539073955954,https://earthquake.usgs.gov/earthquakes/eventpage/ak20274378 +,,70640417,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70640417&format=geojson,0.03498,,69.0,",hv70640417,",2.09,ml,,hv,29.0,"22km ENE of Honaunau-Napoopoo, Hawaii",0.13,67,",hv,",reviewed,1539072637140,"M 2.1 - 22km ENE of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539130640470,https://earthquake.usgs.gov/earthquakes/eventpage/hv70640417 +,,73095311,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095311&format=geojson,0.01263,,120.0,",nc73095311,",0.7,md,,nc,26.0,"4km SE of Mammoth Lakes, CA",0.08,8,",nc,",reviewed,1539072622980,"M 0.7 - 4km SE of Mammoth Lakes, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539113584224,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095311 +,,1000h984,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h984&format=geojson,3.749,,167.0,",us1000h984,",4.5,mb,,us,,"137km S of Severo-Kuril'sk, Russia",1.43,312,",us,",reviewed,1539072426840,"M 4.5 - 137km S of Severo-Kuril'sk, Russia",0,earthquake,",geoserve,origin,phase-data,",600.0,1539073778040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h984 +,2.2,20274354,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20274354&format=geojson,,1.0,,",ak20274354,",3.8,ml,,ak,,"46km SSW of Redoubt Volcano, Alaska",0.68,222,",ak,",reviewed,1539072165205,"M 3.8 - 46km SSW of Redoubt Volcano, Alaska",0,earthquake,",dyfi,geoserve,origin,phase-data,",-540.0,1539074308859,https://earthquake.usgs.gov/earthquakes/eventpage/ak20274354 +,,38318048,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38318048&format=geojson,0.03223,,40.0,",ci38318048,",0.5,ml,,ci,23.0,"8km ENE of Aguanga, CA",0.16,4,",ci,",reviewed,1539072022670,"M 0.5 - 8km ENE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539091362658,https://earthquake.usgs.gov/earthquakes/eventpage/ci38318048 +,,60300147,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60300147&format=geojson,0.03084,,202.0,",uu60300147,",1.26,md,,uu,6.0,"19km SSE of East Carbon City, Utah",0.06,24,",uu,",reviewed,1539071916600,"M 1.3 - 19km SSE of East Carbon City, Utah",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539102024420,https://earthquake.usgs.gov/earthquakes/eventpage/uu60300147 +,,38318032,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38318032&format=geojson,0.03569,,74.0,",ci38318032,",0.59,ml,,ci,20.0,"8km ENE of Aguanga, CA",0.14,5,",ci,",reviewed,1539071884810,"M 0.6 - 8km ENE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539091359468,https://earthquake.usgs.gov/earthquakes/eventpage/ci38318032 +,,73095306,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095306&format=geojson,0.003639,,87.0,",nc73095306,",1.05,md,,nc,17.0,"7km NW of The Geysers, CA",0.04,17,",nc,",automatic,1539071840030,"M 1.1 - 7km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539079622677,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095306 +,,2018282009,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018282009&format=geojson,0.2468,,172.0,",pr2018282009,",1.6,md,,pr,3.0,"7km WSW of Adjuntas, Puerto Rico",0.07,39,",pr,",reviewed,1539071429060,"M 1.6 - 7km WSW of Adjuntas, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1539086115735,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018282009 +green,,1000h97j,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h97j&format=geojson,3.806,,92.0,",us1000h97j,",6.0,mww,3.99,us,,"138km S of Severo-Kuril'sk, Russia",1.51,554,",us,",reviewed,1539071114670,"M 6.0 - 138km S of Severo-Kuril'sk, Russia",0,earthquake,",geoserve,ground-failure,losspager,moment-tensor,origin,phase-data,shakemap,",600.0,1539213313361,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h97j +,,00660226,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660226&format=geojson,0.182,,282.05,",nn00660226,",0.4,ml,,nn,5.0,"27km SSW of Hawthorne, Nevada",0.1025,2,",nn,",reviewed,1539070870680,"M 0.4 - 27km SSW of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539137096008,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660226 +,,20274335,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20274335&format=geojson,,,,",ak20274335,",1.2,ml,,ak,,"6km N of Meadow Lakes, Alaska",0.97,22,",ak,",automatic,1539070630934,"M 1.2 - 6km N of Meadow Lakes, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539070857058,https://earthquake.usgs.gov/earthquakes/eventpage/ak20274335 +,,38318024,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38318024&format=geojson,0.03797,,36.0,",ci38318024,",1.73,ml,,ci,36.0,"7km NE of Imperial, CA",0.25,46,",ci,",reviewed,1539070626420,"M 1.7 - 7km NE of Imperial, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539101949346,https://earthquake.usgs.gov/earthquakes/eventpage/ci38318024 +,,20274333,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20274333&format=geojson,,,,",ak20274333,",1.9,ml,,ak,,"62km SSW of Kaktovik, Alaska",0.72,56,",ak,",automatic,1539070540191,"M 1.9 - 62km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539070856764,https://earthquake.usgs.gov/earthquakes/eventpage/ak20274333 +,,70640352,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70640352&format=geojson,0.03307,,57.0,",hv70640352,",2.38,ml,,hv,46.0,"22km ENE of Honaunau-Napoopoo, Hawaii",0.12,87,",hv,",reviewed,1539069538770,"M 2.4 - 22km ENE of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539126200330,https://earthquake.usgs.gov/earthquakes/eventpage/hv70640352 +green,,20274320,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20274320&format=geojson,,,,",ak20274320,at00pgblaz,us1000h975,",4.0,ml,3.97,ak,,"71km SW of Kaktovik, Alaska",0.75,246,",ak,at,us,",reviewed,1539069081499,"M 4.0 - 71km SW of Kaktovik, Alaska",1,earthquake,",geoserve,impact-link,losspager,moment-tensor,origin,phase-data,shakemap,",-540.0,1539101147040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20274320 +,,38318016,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38318016&format=geojson,0.04382,,174.0,",ci38318016,",1.17,ml,,ci,10.0,"8km NE of Imperial, CA",0.23,21,",ci,",reviewed,1539069034740,"M 1.2 - 8km NE of Imperial, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539101267914,https://earthquake.usgs.gov/earthquakes/eventpage/ci38318016 +,,38318008,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38318008&format=geojson,0.04441,,58.0,",ci38318008,",1.75,ml,,ci,33.0,"7km NE of Imperial, CA",0.23,47,",ci,",reviewed,1539068852850,"M 1.8 - 7km NE of Imperial, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539101054818,https://earthquake.usgs.gov/earthquakes/eventpage/ci38318008 +,,00660224,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660224&format=geojson,0.065,,257.65,",nn00660224,",-0.1,ml,,nn,6.0,"45km ESE of Beatty, Nevada",0.0419,0,",nn,",reviewed,1539068691582,"M -0.1 - 45km ESE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539137094253,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660224 +,,20274143,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20274143&format=geojson,,,,",ak20274143,",2.1,ml,,ak,,"38km WNW of Haines Junction, Canada",0.76,68,",ak,",automatic,1539068477688,"M 2.1 - 38km WNW of Haines Junction, Canada",0,earthquake,",geoserve,origin,",-480.0,1539068709116,https://earthquake.usgs.gov/earthquakes/eventpage/ak20274143 +,,20274137,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20274137&format=geojson,,,,",ak20274137,",1.5,ml,,ak,,"106km NW of Arctic Village, Alaska",0.74,35,",ak,",automatic,1539068003171,"M 1.5 - 106km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539068546952,https://earthquake.usgs.gov/earthquakes/eventpage/ak20274137 +,,20274135,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20274135&format=geojson,,,,",ak20274135,",1.9,ml,,ak,,"100km NNW of Talkeetna, Alaska",0.38,56,",ak,",automatic,1539067718766,"M 1.9 - 100km NNW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539067999799,https://earthquake.usgs.gov/earthquakes/eventpage/ak20274135 +,,20274134,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20274134&format=geojson,,,,",ak20274134,",1.4,ml,,ak,,"77km WSW of Cantwell, Alaska",0.82,30,",ak,",automatic,1539067570510,"M 1.4 - 77km WSW of Cantwell, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539067746492,https://earthquake.usgs.gov/earthquakes/eventpage/ak20274134 +,,00660223,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660223&format=geojson,0.06,,276.83,",nn00660223,",-0.5,ml,,nn,6.0,"74km ENE of Beatty, Nevada",0.0834,0,",nn,",reviewed,1539067155439,"M -0.5 - 74km ENE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539137092779,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660223 +,,70640302,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70640302&format=geojson,0.02928,,191.0,",hv70640302,",1.84,md,,hv,41.0,"4km SE of Leilani Estates, Hawaii",0.27,52,",hv,",automatic,1539066943870,"M 1.8 - 4km SE of Leilani Estates, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539067150210,https://earthquake.usgs.gov/earthquakes/eventpage/hv70640302 +,,00660222,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660222&format=geojson,0.036,,262.33,",nn00660222,",-0.2,ml,,nn,5.0,"71km ENE of Beatty, Nevada",0.0823,0,",nn,",reviewed,1539066919475,"M -0.2 - 71km ENE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539137091493,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660222 +,,37197868,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37197868&format=geojson,0.06121,,216.0,",ci37197868,",1.2,ml,,ci,9.0,"9km SSE of Brawley, CA",0.15,22,",ci,",reviewed,1539066871290,"M 1.2 - 9km SSE of Brawley, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539099950976,https://earthquake.usgs.gov/earthquakes/eventpage/ci37197868 +,,38318000,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38318000&format=geojson,0.04077,,67.0,",ci38318000,",1.51,ml,,ci,28.0,"6km NE of Imperial, CA",0.23,35,",ci,",reviewed,1539066856120,"M 1.5 - 6km NE of Imperial, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539098767405,https://earthquake.usgs.gov/earthquakes/eventpage/ci38318000 +,,73095276,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095276&format=geojson,0.006718,,146.0,",nc73095276,",0.89,md,,nc,13.0,"20km ENE of San Ardo, CA",0.05,12,",nc,",reviewed,1539066753370,"M 0.9 - 20km ENE of San Ardo, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539138775754,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095276 +,,00660221,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660221&format=geojson,0.367,,289.96,",nn00660221,",0.0,ml,,nn,5.0,"37km SSE of Goldfield, Nevada",0.0395,0,",nn,",reviewed,1539066484156,"M 0.0 - 37km SSE of Goldfield, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539137090003,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660221 +,,73095261,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095261&format=geojson,0.1072,,126.0,",nc73095261,",1.09,md,,nc,27.0,"17km WSW of Toms Place, CA",0.04,18,",nc,",reviewed,1539065819120,"M 1.1 - 17km WSW of Toms Place, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539110409600,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095261 +,,73095256,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095256&format=geojson,0.01413,,123.0,",nc73095256,",0.94,md,,nc,9.0,"4km NW of Cobb, CA",0.03,14,",nc,",automatic,1539065569540,"M 0.9 - 4km NW of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539066485076,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095256 +,,38317992,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38317992&format=geojson,0.003411,,69.0,",ci38317992,",0.56,ml,,ci,19.0,"4km S of Idyllwild, CA",0.08,5,",ci,",reviewed,1539065544760,"M 0.6 - 4km S of Idyllwild, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539104406527,https://earthquake.usgs.gov/earthquakes/eventpage/ci38317992 +,,20273967,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273967&format=geojson,,,,",ak20273967,",2.5,ml,,ak,,"78km SW of Larsen Bay, Alaska",0.83,96,",ak,",automatic,1539065541506,"M 2.5 - 78km SW of Larsen Bay, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539066009750,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273967 +,,73095251,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095251&format=geojson,0.04838,,111.0,",nc73095251,",1.24,md,,nc,16.0,"1km NE of Pinnacles, CA",0.06,24,",nc,",reviewed,1539064585790,"M 1.2 - 1km NE of Pinnacles, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539131162916,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095251 +,,20273965,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273965&format=geojson,,,,",ak20273965,",2.0,ml,,ak,,"72km SW of Kaktovik, Alaska",0.53,62,",ak,",automatic,1539064517459,"M 2.0 - 72km SW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539064866196,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273965 +,,00660152,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660152&format=geojson,0.053,,71.17,",nn00660152,",-0.1,ml,,nn,25.0,"44km ESE of Beatty, Nevada",0.1375,0,",nn,",reviewed,1539063911683,"M -0.1 - 44km ESE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539137062378,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660152 +,,00660151,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660151&format=geojson,0.05,,70.72,",nn00660151,",-0.4,ml,,nn,19.0,"44km ESE of Beatty, Nevada",0.1405,0,",nn,",reviewed,1539063716512,"M -0.4 - 44km ESE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539137060382,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660151 +,,73095236,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095236&format=geojson,0.009884,,55.0,",nc73095236,",0.67,md,,nc,12.0,"6km NW of The Geysers, CA",0.04,7,",nc,",reviewed,1539063624800,"M 0.7 - 6km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539139137252,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095236 +,,2018282008,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018282008&format=geojson,0.9815,,242.0,",pr2018282008,",3.04,md,,pr,7.0,"105km NNW of San Antonio, Puerto Rico",0.39,142,",pr,",reviewed,1539063184600,"M 3.0 - 105km NNW of San Antonio, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1539070217941,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018282008 +,,38317984,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38317984&format=geojson,0.1074,,68.0,",ci38317984,",0.98,ml,,ci,23.0,"5km WNW of Coso Junction, CA",0.13,15,",ci,",reviewed,1539063044810,"M 1.0 - 5km WNW of Coso Junction, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539098372868,https://earthquake.usgs.gov/earthquakes/eventpage/ci38317984 +,,00660220,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660220&format=geojson,0.052,,164.34,",nn00660220,",-0.5,ml,,nn,7.0,"43km ESE of Beatty, Nevada",0.1027,0,",nn,",reviewed,1539062845320,"M -0.5 - 43km ESE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539137088222,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660220 +,,20273958,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273958&format=geojson,,,,",ak20273958,",2.3,ml,,ak,,"108km NNW of Arctic Village, Alaska",0.9,81,",ak,",automatic,1539062257056,"M 2.3 - 108km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539062661028,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273958 +,,20273955,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273955&format=geojson,,,,",ak20273955,",1.6,ml,,ak,,"36km W of Willow, Alaska",0.64,39,",ak,",automatic,1539061367855,"M 1.6 - 36km W of Willow, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539061598764,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273955 +,,20273954,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273954&format=geojson,,,,",ak20273954,",1.4,ml,,ak,,"108km W of Cantwell, Alaska",0.83,30,",ak,",automatic,1539061163669,"M 1.4 - 108km W of Cantwell, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539061345699,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273954 +,,61794376,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61794376&format=geojson,0.01753,,238.0,",av61794376,",0.59,ml,,av,7.0,"100km ESE of King Salmon, Alaska",0.07,5,",av,",reviewed,1539061006800,"M 0.6 - 100km ESE of King Salmon, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539128762030,https://earthquake.usgs.gov/earthquakes/eventpage/av61794376 +,,20273952,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273952&format=geojson,,,,",ak20273952,",1.0,ml,,ak,,"2km E of Willow, Alaska",0.57,15,",ak,",reviewed,1539060875511,"M 1.0 - 2km E of Willow, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539100900288,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273952 +,,70806404,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70806404&format=geojson,0.02282,,113.0,",av70806404,",-0.92,ml,,av,5.0,"42km ENE of Adak, Alaska",0.1,0,",av,",reviewed,1539060535610,"M -0.9 - 42km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539129203950,https://earthquake.usgs.gov/earthquakes/eventpage/av70806404 +,,2018282007,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018282007&format=geojson,0.0926,,282.0,",pr2018282007,",2.39,md,,pr,5.0,"23km NW of Rincon, Puerto Rico",0.06,88,",pr,",reviewed,1539060368100,"M 2.4 - 23km NW of Rincon, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1539070210690,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018282007 +,,2018282006,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018282006&format=geojson,0.1073,,278.0,",pr2018282006,",1.75,md,,pr,4.0,"6km W of Hormigueros, Puerto Rico",0.08,47,",pr,",reviewed,1539059923990,"M 1.8 - 6km W of Hormigueros, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1539070202173,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018282006 +,,20273945,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273945&format=geojson,,,,",ak20273945,",1.3,ml,,ak,,"27km SW of Anchor Point, Alaska",0.58,26,",ak,",automatic,1539059074447,"M 1.3 - 27km SW of Anchor Point, Alaska",0,earthquake,",geoserve,origin,",-600.0,1539059473522,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273945 +,,1000h952,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h952&format=geojson,0.897,,136.0,",us1000h952,",4.5,mb,,us,,"80km ENE of Misawa, Japan",0.72,312,",us,",reviewed,1539058606580,"M 4.5 - 80km ENE of Misawa, Japan",0,earthquake,",geoserve,origin,phase-data,",540.0,1539060436040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h952 +,,20273935,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273935&format=geojson,,,,",ak20273935,",1.9,ml,,ak,,"46km W of Anchorage, Alaska",0.56,56,",ak,",automatic,1539058377014,"M 1.9 - 46km W of Anchorage, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539058623443,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273935 +,,20273932,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273932&format=geojson,,,,",ak20273932,",1.6,ml,,ak,,"100km N of Manley Hot Springs, Alaska",0.92,39,",ak,",automatic,1539058262588,"M 1.6 - 100km N of Manley Hot Springs, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539058623159,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273932 +,,00660148,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660148&format=geojson,0.057,,79.72,",nn00660148,",0.1,ml,,nn,20.0,"45km ESE of Beatty, Nevada",0.1475,0,",nn,",reviewed,1539058100148,"M 0.1 - 45km ESE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539137058122,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660148 +,,70640122,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70640122&format=geojson,0.05935,,72.0,",hv70640122,",1.81,md,,hv,32.0,"18km NNE of Pahala, Hawaii",0.23,50,",hv,",automatic,1539058048090,"M 1.8 - 18km NNE of Pahala, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539058244830,https://earthquake.usgs.gov/earthquakes/eventpage/hv70640122 +,,38317976,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38317976&format=geojson,0.06789,,20.0,",ci38317976,",1.3,ml,,ci,72.0,"9km NNE of Green Acres, CA",0.2,26,",ci,",reviewed,1539058005760,"M 1.3 - 9km NNE of Green Acres, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539098099416,https://earthquake.usgs.gov/earthquakes/eventpage/ci38317976 +,,73095226,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095226&format=geojson,0.01003,,93.0,",nc73095226,",0.08,md,,nc,8.0,"11km E of Mammoth Lakes, CA",0.02,0,",nc,",reviewed,1539057937340,"M 0.1 - 11km E of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539107725434,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095226 +,,00660216,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660216&format=geojson,0.053,,137.0,",nn00660216,",-0.2,ml,,nn,5.0,"44km ESE of Beatty, Nevada",0.042,0,",nn,",reviewed,1539057104755,"M -0.2 - 44km ESE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539137086748,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660216 +,,20273928,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273928&format=geojson,,,,",ak20273928,",2.5,ml,,ak,,"17km SSW of Kodiak Station, Alaska",0.4,96,",ak,",automatic,1539056898815,"M 2.5 - 17km SSW of Kodiak Station, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539057256800,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273928 +,,38317968,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38317968&format=geojson,0.05464,,98.0,",ci38317968,",1.0,ml,,ci,21.0,"6km ENE of Coso Junction, CA",0.09,15,",ci,",reviewed,1539056877060,"M 1.0 - 6km ENE of Coso Junction, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539097233545,https://earthquake.usgs.gov/earthquakes/eventpage/ci38317968 +,,00660214,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660214&format=geojson,0.059,,141.12,",nn00660214,",0.0,ml,,nn,12.0,"44km ESE of Beatty, Nevada",0.103,0,",nn,",reviewed,1539056787507,"M 0.0 - 44km ESE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539137085329,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660214 +,,73095211,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095211&format=geojson,0.0047,,60.0,",nc73095211,",1.11,md,,nc,36.0,"6km WNW of Cobb, CA",0.05,19,",nc,",reviewed,1539056477320,"M 1.1 - 6km WNW of Cobb, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539231423638,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095211 +,,70640052,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70640052&format=geojson,0.04686,,107.0,",hv70640052,us1000h94m,",3.29,ml,,hv,47.0,"0km NE of Pahala, Hawaii",0.1,167,",hv,us,",reviewed,1539055798000,"M 3.3 - 0km NE of Pahala, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539112920150,https://earthquake.usgs.gov/earthquakes/eventpage/hv70640052 +,,70640027,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70640027&format=geojson,0.02825,,62.0,",hv70640027,",2.0,ml,,hv,25.0,"22km ENE of Honaunau-Napoopoo, Hawaii",0.14,62,",hv,",reviewed,1539055269110,"M 2.0 - 22km ENE of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539138873470,https://earthquake.usgs.gov/earthquakes/eventpage/hv70640027 +,,70639987,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70639987&format=geojson,0.04283,,187.0,",hv70639987,",1.7,md,,hv,39.0,"10km SSE of Pahala, Hawaii",0.09,44,",hv,",reviewed,1539054116490,"M 1.7 - 10km SSE of Pahala, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539124941290,https://earthquake.usgs.gov/earthquakes/eventpage/hv70639987 +,,1000h94d,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h94d&format=geojson,3.78,,123.0,",us1000h94d,",4.4,mb,,us,,"293km NNE of Ndoi Island, Fiji",0.94,298,",us,",reviewed,1539054088200,"M 4.4 - 293km NNE of Ndoi Island, Fiji",0,earthquake,",geoserve,origin,phase-data,",-720.0,1539055988040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h94d +,,2018282005,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018282005&format=geojson,0.1614,,200.0,",pr2018282005,",2.22,md,,pr,13.0,"11km SSE of Tallaboa, Puerto Rico",0.19,76,",pr,",reviewed,1539054067420,"M 2.2 - 11km SSE of Tallaboa, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1539070193965,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018282005 +,,00660144,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660144&format=geojson,0.199,,186.22,",nn00660144,",1.4,ml,,nn,8.0,"27km SSW of Hawthorne, Nevada",0.175,30,",nn,",reviewed,1539053695301,"M 1.4 - 27km SSW of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539137055270,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660144 +,,38317952,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38317952&format=geojson,0.02456,,43.0,",ci38317952,",1.1,ml,,ci,54.0,"2km WNW of Cabazon, CA",0.18,19,",ci,",reviewed,1539053505980,"M 1.1 - 2km WNW of Cabazon, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539096651260,https://earthquake.usgs.gov/earthquakes/eventpage/ci38317952 +,,37197852,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37197852&format=geojson,0.02311,,97.0,",ci37197852,",0.26,ml,,ci,17.0,"9km NE of Aguanga, CA",0.09,1,",ci,",reviewed,1539053503580,"M 0.3 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539096973977,https://earthquake.usgs.gov/earthquakes/eventpage/ci37197852 +,,2018282004,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018282004&format=geojson,0.0571,,222.0,",pr2018282004,",1.12,md,,pr,6.0,"1km NE of Lamboglia, Puerto Rico",0.25,19,",pr,",reviewed,1539053045040,"M 1.1 - 1km NE of Lamboglia, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1539063153320,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018282004 +,,70639957,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70639957&format=geojson,0.03972,,44.0,",hv70639957,",2.18,ml,,hv,24.0,"22km ENE of Honaunau-Napoopoo, Hawaii",0.12,73,",hv,",reviewed,1539053012300,"M 2.2 - 22km ENE of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539055129890,https://earthquake.usgs.gov/earthquakes/eventpage/hv70639957 +,,20273919,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273919&format=geojson,,,,",ak20273919,",1.6,ml,,ak,,"55km WNW of Talkeetna, Alaska",0.56,39,",ak,",automatic,1539052924873,"M 1.6 - 55km WNW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539053110003,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273919 +,,73095206,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095206&format=geojson,0.01168,,33.0,",nc73095206,",1.54,md,,nc,43.0,"4km W of Cobb, CA",0.07,36,",nc,",reviewed,1539052737220,"M 1.5 - 4km W of Cobb, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539225306063,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095206 +,,2018282003,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018282003&format=geojson,0.0586,,223.0,",pr2018282003,",1.43,md,,pr,6.0,"1km ENE of Lamboglia, Puerto Rico",0.07,31,",pr,",reviewed,1539052499560,"M 1.4 - 1km ENE of Lamboglia, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1539063339353,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018282003 +,,60300142,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60300142&format=geojson,0.1645,,93.0,",uu60300142,",0.96,ml,,uu,17.0,"10km WNW of Monroe, Utah",0.19,14,",uu,",reviewed,1539052119950,"M 1.0 - 10km WNW of Monroe, Utah",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539098846450,https://earthquake.usgs.gov/earthquakes/eventpage/uu60300142 +,,20273913,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273913&format=geojson,,,,",ak20273913,",2.1,ml,,ak,,"76km WSW of Cantwell, Alaska",0.26,68,",ak,",automatic,1539051906078,"M 2.1 - 76km WSW of Cantwell, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539052310901,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273913 +,,38317944,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38317944&format=geojson,0.02602,,37.0,",ci38317944,",0.64,ml,,ci,27.0,"9km NE of Aguanga, CA",0.18,6,",ci,",reviewed,1539051151150,"M 0.6 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539091425125,https://earthquake.usgs.gov/earthquakes/eventpage/ci38317944 +,,00660211,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660211&format=geojson,0.141,,265.72,",nn00660211,",0.2,ml,,nn,8.0,"43km SW of Beatty, Nevada",0.1397,1,",nn,",reviewed,1539050951607,"M 0.2 - 43km SW of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539137083431,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660211 +,,70639877,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70639877&format=geojson,0.03153,,70.0,",hv70639877,",2.32,ml,,hv,37.0,"22km ENE of Honaunau-Napoopoo, Hawaii",0.11,83,",hv,",reviewed,1539050926480,"M 2.3 - 22km ENE of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539054866190,https://earthquake.usgs.gov/earthquakes/eventpage/hv70639877 +,,20273906,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273906&format=geojson,,,,",ak20273906,",1.2,ml,,ak,,"17km WSW of Salcha, Alaska",0.7,22,",ak,",automatic,1539050381832,"M 1.2 - 17km WSW of Salcha, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539050672230,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273906 +,,73095201,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095201&format=geojson,0.01167,,76.0,",nc73095201,",0.88,md,,nc,16.0,"6km NNW of The Geysers, CA",0.02,12,",nc,",automatic,1539049809400,"M 0.9 - 6km NNW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539051722638,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095201 +,3.1,1000h93j,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h93j&format=geojson,0.699,5.0,136.0,",us1000h93j,",4.9,mb,,us,,"46km SSE of Quepos, Costa Rica",1.37,371,",us,",reviewed,1539049687370,"M 4.9 - 46km SSE of Quepos, Costa Rica",0,earthquake,",dyfi,geoserve,origin,phase-data,",-360.0,1539314794684,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h93j +,,00660131,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660131&format=geojson,0.06,,62.53,",nn00660131,",0.1,ml,,nn,14.0,"47km ESE of Beatty, Nevada",0.0969,0,",nn,",reviewed,1539049396617,"M 0.1 - 47km ESE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539137052994,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660131 +,,20273901,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273901&format=geojson,,,,",ak20273901,",2.9,ml,,ak,,"71km S of Kaktovik, Alaska",0.77,129,",ak,",automatic,1539049179714,"M 2.9 - 71km S of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539049559585,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273901 +,,20273899,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273899&format=geojson,,,,",ak20273899,",1.7,ml,,ak,,"49km N of Nikiski, Alaska",0.54,44,",ak,",automatic,1539049161951,"M 1.7 - 49km N of Nikiski, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539049458215,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273899 +,,38317928,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38317928&format=geojson,0.0629,,106.0,",ci38317928,nn00660209,",0.97,ml,,ci,17.0,"6km NNE of Coso Junction, CA",0.15,14,",ci,nn,",reviewed,1539048739690,"M 1.0 - 6km NNE of Coso Junction, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539137081404,https://earthquake.usgs.gov/earthquakes/eventpage/ci38317928 +,,70806394,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70806394&format=geojson,0.02424,,133.0,",av70806394,",-0.36,ml,,av,5.0,"42km ENE of Adak, Alaska",0.06,0,",av,",reviewed,1539048243040,"M -0.4 - 42km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539128248680,https://earthquake.usgs.gov/earthquakes/eventpage/av70806394 +,,61794316,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61794316&format=geojson,0.02074,,121.0,",av61794316,",-0.56,ml,,av,5.0,"41km ENE of Adak, Alaska",0.16,0,",av,",reviewed,1539048234160,"M -0.6 - 41km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539128149910,https://earthquake.usgs.gov/earthquakes/eventpage/av61794316 +,,00660130,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660130&format=geojson,0.179,,96.26,",nn00660130,",0.9,ml,,nn,10.0,"51km SSE of Hawthorne, Nevada",0.1903,12,",nn,",reviewed,1539048205877,"M 0.9 - 51km SSE of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539137048894,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660130 +,,38317912,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38317912&format=geojson,0.0899,,41.0,",ci38317912,",1.74,ml,,ci,63.0,"7km SSW of Redlands, CA",0.18,47,",ci,",reviewed,1539048092940,"M 1.7 - 7km SSW of Redlands, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539091422968,https://earthquake.usgs.gov/earthquakes/eventpage/ci38317912 +,,2018282002,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018282002&format=geojson,0.0423,,117.0,",pr2018282002,",1.06,md,,pr,6.0,"2km WSW of Cayey, Puerto Rico",0.2,17,",pr,",reviewed,1539047491980,"M 1.1 - 2km WSW of Cayey, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1539063090960,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018282002 +,,2018282001,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018282001&format=geojson,0.0819,,247.0,",pr2018282001,",0.63,md,,pr,3.0,"5km SE of Arroyo, Puerto Rico",0.12,6,",pr,",reviewed,1539047316660,"M 0.6 - 5km SE of Arroyo, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1539063045400,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018282001 +,,38317904,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38317904&format=geojson,0.01583,,208.0,",ci38317904,",0.28,ml,,ci,13.0,"9km NE of Aguanga, CA",0.08,1,",ci,",reviewed,1539047243090,"M 0.3 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539104008336,https://earthquake.usgs.gov/earthquakes/eventpage/ci38317904 +,,80312909,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80312909&format=geojson,0.124,,101.0,",mb80312909,",1.41,ml,,mb,11.0,"15km SE of Lincoln, Montana",0.14,31,",mb,",reviewed,1539047150440,"M 1.4 - 15km SE of Lincoln, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539113312790,https://earthquake.usgs.gov/earthquakes/eventpage/mb80312909 +,,80313444,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80313444&format=geojson,0.081,,126.0,",mb80313444,",0.97,ml,,mb,9.0,"10km ESE of Lincoln, Montana",0.1,14,",mb,",reviewed,1539046577930,"M 1.0 - 10km ESE of Lincoln, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539209816870,https://earthquake.usgs.gov/earthquakes/eventpage/mb80313444 +,,73095191,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095191&format=geojson,0.01956,,74.0,",nc73095191,",0.96,md,,nc,11.0,"1km NNW of The Geysers, CA",0.03,14,",nc,",automatic,1539046019090,"M 1.0 - 1km NNW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539048842377,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095191 +,,38317888,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38317888&format=geojson,0.01386,,30.0,",ci38317888,",0.74,ml,,ci,45.0,"2km SW of Lake Henshaw, CA",0.16,8,",ci,",reviewed,1539045645050,"M 0.7 - 2km SW of Lake Henshaw, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539095322612,https://earthquake.usgs.gov/earthquakes/eventpage/ci38317888 +,,2018282000,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018282000&format=geojson,0.6491,,232.0,",pr2018282000,",2.27,md,,pr,3.0,"64km N of Punta Cana, Dominican Republic",0.19,79,",pr,",reviewed,1539045581430,"M 2.3 - 64km N of Punta Cana, Dominican Republic",0,earthquake,",geoserve,origin,phase-data,",-300.0,1539063016296,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018282000 +,,73095186,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095186&format=geojson,0.005207,,87.0,",nc73095186,",1.14,md,,nc,20.0,"10km NW of The Geysers, CA",0.05,20,",nc,",automatic,1539045249450,"M 1.1 - 10km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539047163209,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095186 +,,20273884,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273884&format=geojson,,,,",ak20273884,",1.2,ml,,ak,,"33km SE of Healy, Alaska",1.21,22,",ak,",automatic,1539044520397,"M 1.2 - 33km SE of Healy, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539044724791,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273884 +,,00660208,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660208&format=geojson,0.146,,234.41,",nn00660208,",-0.5,ml,,nn,9.0,"37km NNW of Pahrump, Nevada",0.1497,0,",nn,",reviewed,1539044317867,"M -0.5 - 37km NNW of Pahrump, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539137079446,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660208 +,,20273878,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273878&format=geojson,,,,",ak20273878,",1.3,ml,,ak,,"37km W of Talkeetna, Alaska",0.72,26,",ak,",automatic,1539044120177,"M 1.3 - 37km W of Talkeetna, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539044917050,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273878 +,,20273876,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273876&format=geojson,,,,",ak20273876,",2.8,ml,,ak,,"251km SE of Kodiak, Alaska",0.84,121,",ak,",reviewed,1539044038216,"M 2.8 - 251km SE of Kodiak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539099537688,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273876 +,,20273875,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273875&format=geojson,,,,",ak20273875,",1.9,ml,,ak,,"54km ENE of Noatak, Alaska",1.0,56,",ak,",automatic,1539043995498,"M 1.9 - 54km ENE of Noatak, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539044461189,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273875 +,,38317872,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38317872&format=geojson,0.03502,,112.0,",ci38317872,",0.73,ml,,ci,20.0,"4km SW of Idyllwild, CA",0.09,8,",ci,",reviewed,1539043748690,"M 0.7 - 4km SW of Idyllwild, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539045087018,https://earthquake.usgs.gov/earthquakes/eventpage/ci38317872 +,,61794276,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61794276&format=geojson,,,219.0,",av61794276,",1.8,ml,,av,11.0,"35km SW of Tanaga Volcano, Alaska",0.3,50,",av,",reviewed,1539043454510,"M 1.8 - 35km SW of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539127676330,https://earthquake.usgs.gov/earthquakes/eventpage/av61794276 +,,38317864,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38317864&format=geojson,0.1003,,57.0,",ci38317864,",1.22,ml,,ci,18.0,"5km NW of Boron, CA",0.15,23,",ci,",reviewed,1539043180440,"M 1.2 Quarry Blast - 5km NW of Boron, CA",0,quarry blast,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539044799096,https://earthquake.usgs.gov/earthquakes/eventpage/ci38317864 +,,20273867,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273867&format=geojson,,,,",ak20273867,us1000h92f,",3.1,ml,,ak,,"114km NNW of Arctic Village, Alaska",0.77,148,",ak,us,",automatic,1539043069277,"M 3.1 - 114km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539045800040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273867 +,,60300132,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60300132&format=geojson,0.09241,,85.0,",uu60300132,",1.59,ml,,uu,15.0,"36km SE of Salina, Utah",0.21,39,",uu,",reviewed,1539042688930,"M 1.6 - 36km SE of Salina, Utah",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539094783470,https://earthquake.usgs.gov/earthquakes/eventpage/uu60300132 +,,20273843,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273843&format=geojson,,,,",ak20273843,",2.1,ml,,ak,,"39km SE of Redoubt Volcano, Alaska",0.42,68,",ak,",automatic,1539042016974,"M 2.1 - 39km SE of Redoubt Volcano, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539042588664,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273843 +,,38317848,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38317848&format=geojson,0.1061,,264.0,",ci38317848,",0.6,ml,,ci,12.0,"5km WNW of Coso Junction, CA",0.15,6,",ci,",reviewed,1539041970450,"M 0.6 - 5km WNW of Coso Junction, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539044691027,https://earthquake.usgs.gov/earthquakes/eventpage/ci38317848 +,,73095181,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095181&format=geojson,0.00538,,64.0,",nc73095181,",1.22,md,,nc,37.0,"9km NW of The Geysers, CA",0.05,23,",nc,",reviewed,1539041386020,"M 1.2 - 9km NW of The Geysers, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539214262719,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095181 +,,73095176,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095176&format=geojson,0.01428,,72.0,",nc73095176,",0.91,md,,nc,16.0,"9km NW of The Geysers, CA",0.02,13,",nc,",automatic,1539041374570,"M 0.9 - 9km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539043322825,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095176 +,,20273835,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273835&format=geojson,,,,",ak20273835,",2.3,ml,,ak,,"66km SSW of Homer, Alaska",0.56,81,",ak,",automatic,1539041293501,"M 2.3 - 66km SSW of Homer, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539041607002,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273835 +,,20273828,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273828&format=geojson,,,,",ak20273828,",1.9,ml,,ak,,"63km WNW of Anchor Point, Alaska",0.43,56,",ak,",automatic,1539040822770,"M 1.9 - 63km WNW of Anchor Point, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539041131731,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273828 +,,80313284,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80313284&format=geojson,0.108,,206.0,",mb80313284,",0.28,ml,,mb,4.0,"5km E of Whitehall, Montana",0.02,1,",mb,",reviewed,1539040599880,"M 0.3 Quarry Blast - 5km E of Whitehall, Montana",0,quarry blast,",geoserve,origin,phase-data,",-420.0,1539192473050,https://earthquake.usgs.gov/earthquakes/eventpage/mb80313284 +,,1000h92e,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h92e&format=geojson,5.854,,144.0,",us1000h92e,",4.7,mb,,us,,"213km ENE of Kuril'sk, Russia",0.68,340,",us,",reviewed,1539040479410,"M 4.7 - 213km ENE of Kuril'sk, Russia",0,earthquake,",geoserve,origin,phase-data,",600.0,1539063813040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h92e +,,20273806,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273806&format=geojson,,,,",ak20273806,",3.2,ml,,ak,,"66km SSW of Homer, Alaska",0.72,158,",ak,",reviewed,1539040005201,"M 3.2 - 66km SSW of Homer, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539041950837,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273806 +,,38317824,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38317824&format=geojson,0.01514,,33.0,",ci38317824,",0.97,ml,,ci,38.0,"9km NE of Aguanga, CA",0.15,14,",ci,",reviewed,1539039487670,"M 1.0 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1539041368560,https://earthquake.usgs.gov/earthquakes/eventpage/ci38317824 +,,20273800,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273800&format=geojson,,,,",ak20273800,",1.4,ml,,ak,,"21km NNE of Badger, Alaska",0.57,30,",ak,",automatic,1539039454583,"M 1.4 - 21km NNE of Badger, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539039944915,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273800 +,,1000h91r,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h91r&format=geojson,3.585,,85.0,",us1000h91r,",4.3,mb,,us,,"144km SE of Kuqa, China",0.74,284,",us,",reviewed,1539039313250,"M 4.3 - 144km SE of Kuqa, China",0,earthquake,",geoserve,origin,phase-data,",480.0,1539063456040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h91r +,,00660113,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660113&format=geojson,0.138,,118.44,",nn00660113,",1.6,ml,,nn,22.0,"72km N of Tonopah, Nevada",0.4906,39,",nn,",reviewed,1539039225480,"M 1.6 Explosion - 72km N of Tonopah, Nevada",0,explosion,",geoserve,origin,phase-data,",-480.0,1539050796791,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660113 +,,61427617,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61427617&format=geojson,0.02869,,293.0,",uw61427617,",0.92,ml,,uw,4.0,"9km N of Belfair, Washington",0.05,13,",uw,",reviewed,1539038995900,"M 0.9 - 9km N of Belfair, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539046402540,https://earthquake.usgs.gov/earthquakes/eventpage/uw61427617 +,,73095171,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095171&format=geojson,0.01158,,103.0,",nc73095171,",0.7,md,,nc,16.0,"11km E of Mammoth Lakes, CA",0.03,8,",nc,",reviewed,1539038721960,"M 0.7 - 11km E of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539114183283,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095171 +,,70639612,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70639612&format=geojson,0.07774,,36.0,",hv70639612,us1000h912,",2.6,ml,,hv,45.0,"17km N of Pahala, Hawaii",0.12,104,",hv,us,",reviewed,1539038706850,"M 2.6 - 17km N of Pahala, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539307459040,https://earthquake.usgs.gov/earthquakes/eventpage/hv70639612 +,,70639592,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70639592&format=geojson,0.0105,,31.0,",hv70639592,",2.04,ml,,hv,24.0,"5km SW of Volcano, Hawaii",0.06,64,",hv,",reviewed,1539038321710,"M 2.0 - 5km SW of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539219256760,https://earthquake.usgs.gov/earthquakes/eventpage/hv70639592 +,,73095166,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095166&format=geojson,0.002152,,63.0,",nc73095166,",1.41,md,,nc,10.0,"5km W of Mammoth Lakes, CA",0.08,31,",nc,",reviewed,1539038282450,"M 1.4 - 5km W of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539116583518,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095166 +,,70639577,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70639577&format=geojson,0.01064,,45.0,",hv70639577,",1.92,md,,hv,18.0,"4km SW of Volcano, Hawaii",0.08,57,",hv,",automatic,1539037794010,"M 1.9 - 4km SW of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539037963360,https://earthquake.usgs.gov/earthquakes/eventpage/hv70639577 +,,73095161,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095161&format=geojson,0.1435,,246.0,",nc73095161,",0.97,md,,nc,13.0,"20km SW of Toms Place, CA",0.13,14,",nc,",reviewed,1539037325790,"M 1.0 - 20km SW of Toms Place, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539109862877,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095161 +,2.2,20273658,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273658&format=geojson,,9.0,,",ak20273658,us1000h90x,",3.3,ml,2.33,ak,,"47km WSW of Big Lake, Alaska",0.74,170,",ak,us,",reviewed,1539037292385,"M 3.3 - 47km WSW of Big Lake, Alaska",0,earthquake,",dyfi,geoserve,origin,phase-data,shakemap,",-540.0,1539122198040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273658 +,,70639537,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70639537&format=geojson,0.04489,,150.0,",hv70639537,",0.8,md,,hv,15.0,"16km SE of Volcano, Hawaii",0.12,10,",hv,",reviewed,1539036439460,"M 0.8 - 16km SE of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539298468520,https://earthquake.usgs.gov/earthquakes/eventpage/hv70639537 +,,20273491,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273491&format=geojson,,,,",ak20273491,",1.4,ml,,ak,,"34km NNW of Valdez, Alaska",0.63,30,",ak,",automatic,1539036389022,"M 1.4 - 34km NNW of Valdez, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539036759720,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273491 +,,1000h90a,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h90a&format=geojson,2.272,,82.0,",us1000h90a,",4.6,mb,,us,,"14km WNW of Kasiguncu, Indonesia",0.84,326,",us,",reviewed,1539035994810,"M 4.6 - 14km WNW of Kasiguncu, Indonesia",0,earthquake,",geoserve,origin,phase-data,",480.0,1539063036040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h90a +,,38317784,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38317784&format=geojson,0.1087,,265.0,",ci38317784,",0.41,ml,,ci,10.0,"6km WNW of Coso Junction, CA",0.08,3,",ci,",reviewed,1539035748040,"M 0.4 - 6km WNW of Coso Junction, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539041069868,https://earthquake.usgs.gov/earthquakes/eventpage/ci38317784 +,,70639512,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70639512&format=geojson,0.007214,,109.0,",hv70639512,",1.95,ml,,hv,25.0,"3km W of Volcano, Hawaii",0.13,58,",hv,",reviewed,1539035532120,"M 2.0 - 3km W of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539139816170,https://earthquake.usgs.gov/earthquakes/eventpage/hv70639512 +,,20273487,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273487&format=geojson,,,,",ak20273487,",0.6,ml,,ak,,"37km NNE of North Nenana, Alaska",0.58,6,",ak,",automatic,1539035449177,"M 0.6 - 37km NNE of North Nenana, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539035673591,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273487 +,2.9,38317760,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38317760&format=geojson,0.05536,54.0,44.0,",ci38317760,us1000h8zz,",2.98,ml,3.15,ci,59.0,"6km S of Ojai, CA",0.32,152,",ci,us,",reviewed,1539035052640,"M 3.0 - 6km S of Ojai, CA",0,earthquake,",dyfi,focal-mechanism,geoserve,nearby-cities,origin,phase-data,shakemap,",-480.0,1539307255040,https://earthquake.usgs.gov/earthquakes/eventpage/ci38317760 +,,00660105,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660105&format=geojson,0.785,,218.66,",nn00660105,",1.8,ml,,nn,5.0,"49km NNE of Lovelock, Nevada",0.0735,50,",nn,",reviewed,1539034959839,"M 1.8 Explosion - 49km NNE of Lovelock, Nevada",0,explosion,",geoserve,origin,phase-data,",-480.0,1539035425508,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660105 +,,1000h8zx,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h8zx&format=geojson,0.555,,124.0,",us1000h8zx,",4.4,mb,,us,,"65km NNE of Hachijo-jima, Japan",0.69,298,",us,",reviewed,1539034912990,"M 4.4 - 65km NNE of Hachijo-jima, Japan",0,earthquake,",geoserve,origin,phase-data,",540.0,1539062940040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h8zx +,,38317752,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38317752&format=geojson,0.1107,,127.0,",ci38317752,",0.8,ml,,ci,21.0,"6km WNW of Coso Junction, CA",0.11,10,",ci,",reviewed,1539034836180,"M 0.8 - 6km WNW of Coso Junction, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539040914993,https://earthquake.usgs.gov/earthquakes/eventpage/ci38317752 +,,61794196,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61794196&format=geojson,0.02325,,192.0,",av61794196,",-0.44,ml,,av,4.0,"42km ENE of Adak, Alaska",0.2,0,",av,",reviewed,1539034663370,"M -0.4 - 42km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539124136630,https://earthquake.usgs.gov/earthquakes/eventpage/av61794196 +,,38317744,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38317744&format=geojson,0.09921,,261.0,",ci38317744,",0.79,ml,,ci,12.0,"4km WNW of Coso Junction, CA",0.16,10,",ci,",reviewed,1539034320290,"M 0.8 - 4km WNW of Coso Junction, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539040731936,https://earthquake.usgs.gov/earthquakes/eventpage/ci38317744 +,,38317728,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38317728&format=geojson,0.1082,,68.0,",ci38317728,",1.74,ml,,ci,25.0,"5km WNW of Coso Junction, CA",0.12,47,",ci,",reviewed,1539034008210,"M 1.7 - 5km WNW of Coso Junction, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539040564039,https://earthquake.usgs.gov/earthquakes/eventpage/ci38317728 +,3.4,38317720,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38317720&format=geojson,0.107,157.0,46.0,",ci38317720,us1000h8zn,",3.23,ml,,ci,48.0,"5km WNW of Coso Junction, CA",0.15,214,",ci,us,",reviewed,1539033902190,"M 3.2 - 5km WNW of Coso Junction, CA",0,earthquake,",dyfi,focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1539304688040,https://earthquake.usgs.gov/earthquakes/eventpage/ci38317720 +,,80312894,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80312894&format=geojson,0.206,,60.0,",mb80312894,",1.97,ml,,mb,17.0,"16km S of Whitehall, Montana",0.11,60,",mb,",reviewed,1539033681020,"M 2.0 - 16km S of Whitehall, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539105774410,https://earthquake.usgs.gov/earthquakes/eventpage/mb80312894 +,,38317704,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38317704&format=geojson,0.07552,,40.0,",ci38317704,",1.12,ml,,ci,34.0,"4km ENE of Calimesa, CA",0.12,19,",ci,",reviewed,1539033346830,"M 1.1 - 4km ENE of Calimesa, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539034770782,https://earthquake.usgs.gov/earthquakes/eventpage/ci38317704 +,,1000h8zg,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h8zg&format=geojson,2.132,,79.0,",us1000h8zg,",5.1,mb,,us,,"13km E of Palu, Indonesia",1.06,400,",us,",reviewed,1539033346530,"M 5.1 - 13km E of Palu, Indonesia",1,earthquake,",geoserve,origin,phase-data,",480.0,1539037997040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h8zg +,,73095141,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095141&format=geojson,0.007849,,83.0,",nc73095141,",1.2,md,,nc,20.0,"11km E of Mammoth Lakes, CA",0.05,22,",nc,",reviewed,1539032107930,"M 1.2 - 11km E of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539119882822,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095141 +,,1000h8z3,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h8z3&format=geojson,6.015,,115.0,",us1000h8z3,",4.6,mb,,us,,"204km ESE of Enarotali, Indonesia",0.46,326,",us,",reviewed,1539032001530,"M 4.6 - 204km ESE of Enarotali, Indonesia",0,earthquake,",geoserve,origin,phase-data,",540.0,1539033513040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h8z3 +,,20273478,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273478&format=geojson,,,,",ak20273478,",1.6,ml,,ak,,"38km WSW of Redoubt Volcano, Alaska",0.61,39,",ak,",automatic,1539031955530,"M 1.6 - 38km WSW of Redoubt Volcano, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539032233418,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273478 +,,20273479,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273479&format=geojson,,,,",ak20273479,",1.9,ml,,ak,,"113km NNW of Arctic Village, Alaska",0.81,56,",ak,",automatic,1539031938207,"M 1.9 - 113km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539032233696,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273479 +,,61427577,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61427577&format=geojson,0.05867,,167.0,",uw61427577,",0.95,ml,,uw,13.0,"17km SSE of Morton, Washington",0.2,14,",uw,",reviewed,1539031787670,"M 1.0 - 17km SSE of Morton, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539045695390,https://earthquake.usgs.gov/earthquakes/eventpage/uw61427577 +,,20273476,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273476&format=geojson,,,,",ak20273476,",2.1,ml,,ak,,"67km SSW of Kaktovik, Alaska",0.85,68,",ak,",automatic,1539031459694,"M 2.1 - 67km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539031758806,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273476 +,,20273474,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273474&format=geojson,,,,",ak20273474,",0.9,ml,,ak,,"5km NNW of North Pole, Alaska",1.03,12,",ak,",automatic,1539031176132,"M 0.9 - 5km NNW of North Pole, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539031355224,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273474 +,,37197844,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37197844&format=geojson,0.03915,,84.0,",ci37197844,",0.99,ml,,ci,22.0,"8km S of Idyllwild, CA",0.08,15,",ci,",reviewed,1539030986810,"M 1.0 - 8km S of Idyllwild, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539034268455,https://earthquake.usgs.gov/earthquakes/eventpage/ci37197844 +,,38317672,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38317672&format=geojson,0.03911,,100.0,",ci38317672,",0.93,ml,,ci,19.0,"7km S of Idyllwild, CA",0.07,13,",ci,",reviewed,1539030985020,"M 0.9 - 7km S of Idyllwild, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539034285612,https://earthquake.usgs.gov/earthquakes/eventpage/ci38317672 +,,20273472,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273472&format=geojson,,,,",ak20273472,",1.0,ml,,ak,,"64km WSW of North Nenana, Alaska",0.16,15,",ak,",automatic,1539030955722,"M 1.0 - 64km WSW of North Nenana, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539031254099,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273472 +,,73095126,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095126&format=geojson,0.09294,,129.0,",nc73095126,",1.12,md,,nc,29.0,"10km W of Atascadero, CA",0.05,19,",nc,",reviewed,1539030566000,"M 1.1 - 10km W of Atascadero, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539211683441,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095126 +,,70639377,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70639377&format=geojson,0.0144,,103.0,",hv70639377,",1.99,md,,hv,48.0,"18km SE of Volcano, Hawaii",0.12,61,",hv,",reviewed,1539030248660,"M 2.0 - 18km SE of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539136871530,https://earthquake.usgs.gov/earthquakes/eventpage/hv70639377 +,,00660069,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660069&format=geojson,0.273,,100.44,",nn00660069,",2.0,ml,,nn,11.0,"11km WNW of Ely, Nevada",0.6644,62,",nn,",reviewed,1539029756056,"M 2.0 Explosion - 11km WNW of Ely, Nevada",0,explosion,",geoserve,origin,phase-data,",-480.0,1539050779090,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660069 +,,38317656,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38317656&format=geojson,0.003195,,170.0,",ci38317656,",0.43,ml,,ci,18.0,"10km NE of Aguanga, CA",0.08,3,",ci,",reviewed,1539029380200,"M 0.4 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539032626394,https://earthquake.usgs.gov/earthquakes/eventpage/ci38317656 +,2.4,70639367,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70639367&format=geojson,0.05671,5.0,75.0,",hv70639367,us1000h8xw,",2.83,ml,,hv,60.0,"27km W of Pepeekeo, Hawaii",0.13,124,",hv,us,",reviewed,1539029379980,"M 2.8 - 27km W of Pepeekeo, Hawaii",0,earthquake,",dyfi,geoserve,origin,phase-data,",-600.0,1539036495040,https://earthquake.usgs.gov/earthquakes/eventpage/hv70639367 +,1.0,1000h8xg,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h8xg&format=geojson,0.686,1.0,129.0,",us1000h8xg,",4.7,mb,,us,,"41km E of Namie, Japan",0.62,340,",us,",reviewed,1539028322670,"M 4.7 - 41km E of Namie, Japan",0,earthquake,",dyfi,geoserve,origin,phase-data,",540.0,1539061047807,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h8xg +,,73095121,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095121&format=geojson,0.01593,,102.0,",nc73095121,",0.37,md,,nc,14.0,"5km ENE of Mammoth Lakes, CA",0.06,2,",nc,",reviewed,1539028131970,"M 0.4 - 5km ENE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539109203813,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095121 +,,70639327,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70639327&format=geojson,0.006079,,125.0,",hv70639327,",1.94,ml,,hv,20.0,"3km W of Volcano, Hawaii",0.07,58,",hv,",reviewed,1539027958720,"M 1.9 - 3km W of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539297714860,https://earthquake.usgs.gov/earthquakes/eventpage/hv70639327 +,,73095111,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095111&format=geojson,0.05572,,75.0,",nc73095111,",2.28,md,,nc,41.0,"13km SE of Mammoth Lakes, CA",0.05,80,",nc,",reviewed,1539027607090,"M 2.3 - 13km SE of Mammoth Lakes, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539221162606,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095111 +,,20273462,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273462&format=geojson,,,,",ak20273462,",1.6,ml,,ak,,"52km W of Willow, Alaska",0.58,39,",ak,",automatic,1539026615466,"M 1.6 - 52km W of Willow, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539026907044,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273462 +,,20273458,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273458&format=geojson,,,,",ak20273458,",1.1,ml,,ak,,"41km SE of Glennallen, Alaska",0.25,19,",ak,",automatic,1539025632711,"M 1.1 - 41km SE of Glennallen, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539025775968,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273458 +,,20273457,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273457&format=geojson,,,,",ak20273457,",1.7,ml,,ak,,"79km SW of Kaktovik, Alaska",1.01,44,",ak,",automatic,1539025533134,"M 1.7 - 79km SW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539025775690,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273457 +,,20273452,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273452&format=geojson,,,,",ak20273452,",0.1,ml,,ak,,"98km NNW of Nikiski, Alaska",0.14,0,",ak,",automatic,1539024273987,"M 0.1 - 98km NNW of Nikiski, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539024887877,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273452 +,,20273449,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273449&format=geojson,,,,",ak20273449,",1.4,ml,,ak,,"42km SW of North Nenana, Alaska",0.41,30,",ak,",automatic,1539023935588,"M 1.4 - 42km SW of North Nenana, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539024423780,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273449 +,,73095101,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095101&format=geojson,0.01193,,27.0,",nc73095101,",2.03,md,,nc,54.0,"3km W of Anderson Springs, CA",0.07,63,",nc,",reviewed,1539023375850,"M 2.0 - 3km W of Anderson Springs, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539210424332,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095101 +,,73095106,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095106&format=geojson,0.01488,,43.0,",nc73095106,",1.15,md,,nc,34.0,"3km W of Anderson Springs, CA",0.09,20,",nc,",reviewed,1539023343000,"M 1.2 - 3km W of Anderson Springs, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539161343471,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095106 +,,61427512,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61427512&format=geojson,0.1547,,177.0,",uw61427512,",0.93,md,,uw,4.0,"24km SSW of Toppenish, Washington",0.08,13,",uw,",reviewed,1539022642840,"M 0.9 - 24km SSW of Toppenish, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539029554820,https://earthquake.usgs.gov/earthquakes/eventpage/uw61427512 +,,00660031,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660031&format=geojson,0.259,,167.51,",nn00660031,",0.8,ml,,nn,9.0,"64km ESE of Warm Springs, Nevada",0.1922,10,",nn,",reviewed,1539022510205,"M 0.8 - 64km ESE of Warm Springs, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539050758086,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660031 +,,1000h8vs,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h8vs&format=geojson,1.152,,72.0,",us1000h8vs,",4.4,mb,,us,,"21km E of Tomakomai, Japan",0.77,298,",us,",reviewed,1539020712670,"M 4.4 - 21km E of Tomakomai, Japan",0,earthquake,",geoserve,origin,phase-data,",540.0,1539034924040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h8vs +,,61427502,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61427502&format=geojson,0.1351,,76.0,",uw61427502,",1.23,ml,,uw,9.0,"19km ENE of Springfield, Oregon",0.13,23,",uw,",reviewed,1539020581640,"M 1.2 - 19km ENE of Springfield, Oregon",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539027501410,https://earthquake.usgs.gov/earthquakes/eventpage/uw61427502 +,,20273446,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273446&format=geojson,,,,",ak20273446,",1.1,ml,,ak,,"121km NW of Arctic Village, Alaska",0.7,19,",ak,",reviewed,1539020334265,"M 1.1 - 121km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539037529224,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273446 +,,20273444,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273444&format=geojson,,,,",ak20273444,",2.1,ml,,ak,,"105km NE of Kodiak, Alaska",1.07,68,",ak,",automatic,1539020101320,"M 2.1 - 105km NE of Kodiak, Alaska",0,earthquake,",geoserve,origin,",-600.0,1539020520260,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273444 +,,00660020,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660020&format=geojson,0.021,,86.71,",nn00660020,",0.7,ml,,nn,32.0,"49km SE of Beatty, Nevada",0.1998,8,",nn,",reviewed,1539020063566,"M 0.7 - 49km SE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539050750014,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660020 +,,60300117,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60300117&format=geojson,0.02256,,142.0,",uu60300117,",0.29,md,,uu,5.0,"13km NNW of West Yellowstone, Montana",0.08,1,",uu,",reviewed,1539019771510,"M 0.3 - 13km NNW of West Yellowstone, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539101345510,https://earthquake.usgs.gov/earthquakes/eventpage/uu60300117 +,,1000h8va,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h8va&format=geojson,1.608,,54.0,",us1000h8va,",4.5,mb,,us,,"58km WNW of San Antonio de los Cobres, Argentina",0.94,312,",us,",reviewed,1539019465790,"M 4.5 - 58km WNW of San Antonio de los Cobres, Argentina",0,earthquake,",geoserve,origin,phase-data,",-180.0,1539035493040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h8va +,,20273440,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273440&format=geojson,,,,",ak20273440,",1.5,ml,,ak,,"61km WNW of Talkeetna, Alaska",0.4,35,",ak,",automatic,1539019309770,"M 1.5 - 61km WNW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539019531568,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273440 +,,73095091,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095091&format=geojson,0.01025,,104.0,",nc73095091,",0.11,md,,nc,8.0,"11km E of Mammoth Lakes, CA",0.03,0,",nc,",reviewed,1539018570800,"M 0.1 - 11km E of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539105981022,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095091 +,,20273434,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273434&format=geojson,,,,",ak20273434,",1.7,ml,,ak,,"60km SSW of Kaktovik, Alaska",0.99,44,",ak,",automatic,1539018479334,"M 1.7 - 60km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539018713927,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273434 +,,20273433,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273433&format=geojson,,,,",ak20273433,",2.9,ml,,ak,,"87km SSW of Shishmaref, Alaska",0.64,129,",ak,",reviewed,1539018468012,"M 2.9 - 87km SSW of Shishmaref, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036760013,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273433 +,,38317584,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38317584&format=geojson,0.02367,,37.0,",ci38317584,",1.89,ml,,ci,61.0,"4km N of La Verne, CA",0.18,55,",ci,",reviewed,1539018415460,"M 1.9 - 4km N of La Verne, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1539033711590,https://earthquake.usgs.gov/earthquakes/eventpage/ci38317584 +,,70639107,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70639107&format=geojson,0.0319,,67.0,",hv70639107,",2.01,ml,,hv,39.0,"22km ENE of Honaunau-Napoopoo, Hawaii",0.11,62,",hv,",reviewed,1539018148880,"M 2.0 - 22km ENE of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539024110720,https://earthquake.usgs.gov/earthquakes/eventpage/hv70639107 +,,20273429,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273429&format=geojson,,,,",ak20273429,",3.1,ml,,ak,,"59km SSW of Kaktovik, Alaska",0.82,148,",ak,",automatic,1539018073468,"M 3.1 - 59km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539018431426,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273429 +,,73095086,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095086&format=geojson,0.009361,,114.0,",nc73095086,",0.15,md,,nc,8.0,"11km E of Mammoth Lakes, CA",0.09,0,",nc,",reviewed,1539017416320,"M 0.2 - 11km E of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539108603756,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095086 +,,70639077,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70639077&format=geojson,0.03177,,138.0,",hv70639077,",2.4,ml,,hv,46.0,"21km ENE of Honaunau-Napoopoo, Hawaii",0.12,89,",hv,",reviewed,1539017344300,"M 2.4 - 21km ENE of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539022748210,https://earthquake.usgs.gov/earthquakes/eventpage/hv70639077 +,,70639072,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70639072&format=geojson,0.02719,,118.0,",hv70639072,",1.0,md,,hv,13.0,"23km ENE of Honaunau-Napoopoo, Hawaii",0.09,15,",hv,",reviewed,1539017325780,"M 1.0 - 23km ENE of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539037090220,https://earthquake.usgs.gov/earthquakes/eventpage/hv70639072 +,,70806384,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70806384&format=geojson,0.05494,,215.0,",av70806384,",-0.13,ml,,av,6.0,"12km WNW of Dutch Harbor, Alaska",0.31,0,",av,",reviewed,1539016858880,"M -0.1 - 12km WNW of Dutch Harbor, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539120751120,https://earthquake.usgs.gov/earthquakes/eventpage/av70806384 +,,70639022,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70639022&format=geojson,0.03183,,77.0,",hv70639022,",0.94,md,,hv,13.0,"22km ENE of Honaunau-Napoopoo, Hawaii",0.11,14,",hv,",reviewed,1539015542810,"M 0.9 - 22km ENE of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539113207990,https://earthquake.usgs.gov/earthquakes/eventpage/hv70639022 +,,38317576,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38317576&format=geojson,0.0304,,79.0,",ci38317576,",0.9,ml,,ci,11.0,"7km S of Pearblossum, CA",0.08,12,",ci,",reviewed,1539015080120,"M 0.9 - 7km S of Pearblossum, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539020989391,https://earthquake.usgs.gov/earthquakes/eventpage/ci38317576 +,,70639012,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70639012&format=geojson,0.03242,,72.0,",hv70639012,",2.16,ml,,hv,17.0,"22km ENE of Honaunau-Napoopoo, Hawaii",0.11,72,",hv,",reviewed,1539014996850,"M 2.2 - 22km ENE of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539112937030,https://earthquake.usgs.gov/earthquakes/eventpage/hv70639012 +,,70638997,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70638997&format=geojson,0.03227,,70.0,",hv70638997,",2.15,ml,,hv,38.0,"22km ENE of Honaunau-Napoopoo, Hawaii",0.14,71,",hv,",reviewed,1539014556720,"M 2.2 - 22km ENE of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539026974100,https://earthquake.usgs.gov/earthquakes/eventpage/hv70638997 +,,00660086,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660086&format=geojson,0.091,,207.42,",nn00660086,",0.2,ml,,nn,5.0,"32km NNW of Gabbs, Nevada",0.0403,1,",nn,",reviewed,1539014441056,"M 0.2 - 32km NNW of Gabbs, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539050793443,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660086 +,,20273415,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273415&format=geojson,,,,",ak20273415,",2.4,ml,,ak,,"108km NW of Arctic Village, Alaska",0.87,89,",ak,",automatic,1539014187827,"M 2.4 - 108km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539014679298,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273415 +,,20273405,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273405&format=geojson,,,,",ak20273405,",2.8,ml,,ak,,"79km NW of Yakutat, Alaska",0.74,121,",ak,",automatic,1539014045014,"M 2.8 - 79km NW of Yakutat, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539014840758,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273405 +,,20273403,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273403&format=geojson,,,,",ak20273403,",2.1,ml,,ak,,"106km W of Talkeetna, Alaska",0.47,68,",ak,",automatic,1539014015031,"M 2.1 - 106km W of Talkeetna, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539014476546,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273403 +,,20273402,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273402&format=geojson,,,,",ak20273402,",0.5,ml,,ak,,"32km SSW of Badger, Alaska",0.84,4,",ak,",reviewed,1539013984365,"M 0.5 - 32km SSW of Badger, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539035835189,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273402 +,,70638972,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70638972&format=geojson,0.005491,,65.0,",hv70638972,",2.39,ml,,hv,40.0,"27km E of Honaunau-Napoopoo, Hawaii",0.13,88,",hv,",reviewed,1539012934310,"M 2.4 - 27km E of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539036480930,https://earthquake.usgs.gov/earthquakes/eventpage/hv70638972 +,,20273398,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273398&format=geojson,,,,",ak20273398,",1.5,ml,,ak,,"54km NNE of Talkeetna, Alaska",0.93,35,",ak,",automatic,1539012850985,"M 1.5 - 54km NNE of Talkeetna, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539013167506,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273398 +,,20273396,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273396&format=geojson,,,,",ak20273396,",1.8,ml,,ak,,"108km NNW of Arctic Village, Alaska",1.02,50,",ak,",automatic,1539012231577,"M 1.8 - 108km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539012513343,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273396 +green,3.1,73095076,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095076&format=geojson,0.9929,2.0,263.0,",nc73095076,",3.83,mw,1.0,nc,24.0,"109km WNW of Trinidad, CA",0.15,226,",nc,",reviewed,1539011708090,"M 3.8 - 109km WNW of Trinidad, CA",0,earthquake,",dyfi,geoserve,losspager,moment-tensor,nearby-cities,origin,phase-data,scitech-link,shakemap,",-480.0,1539195068985,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095076 +,,20273394,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273394&format=geojson,,,,",ak20273394,",1.7,ml,,ak,,"76km SSW of Kaktovik, Alaska",0.85,44,",ak,",automatic,1539011283738,"M 1.7 - 76km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539011497137,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273394 +,,73095071,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095071&format=geojson,0.004067,,63.0,",nc73095071,",0.87,md,,nc,9.0,"5km NNW of The Geysers, CA",0.02,12,",nc,",automatic,1539011171380,"M 0.9 - 5km NNW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539013082965,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095071 +,,20273392,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273392&format=geojson,,,,",ak20273392,",2.3,ml,,ak,,"106km NW of Arctic Village, Alaska",1.48,81,",ak,",automatic,1539010791814,"M 2.3 - 106km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539011064382,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273392 +,,61427427,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61427427&format=geojson,0.2252,,99.0,",uw61427427,",1.31,ml,,uw,9.0,"33km W of Seabeck, Washington",0.09,26,",uw,",reviewed,1539010766070,"M 1.3 - 33km W of Seabeck, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539016941610,https://earthquake.usgs.gov/earthquakes/eventpage/uw61427427 +,,20273390,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273390&format=geojson,,,,",ak20273390,",1.7,ml,,ak,,"22km SSW of Anchor Point, Alaska",0.31,44,",ak,",automatic,1539010710551,"M 1.7 - 22km SSW of Anchor Point, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539010963606,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273390 +,,1000h8rz,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h8rz&format=geojson,1.21,,106.0,",us1000h8rz,",4.5,mb,,us,,"39km ESE of Lamitan, Philippines",0.57,312,",us,",reviewed,1539010454950,"M 4.5 - 39km ESE of Lamitan, Philippines",0,earthquake,",geoserve,origin,phase-data,",480.0,1539096499040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h8rz +,,00660081,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660081&format=geojson,0.061,,96.41,",nn00660081,",1.3,ml,,nn,14.0,"38km ESE of Bridgeport, California",0.1881,26,",nn,",reviewed,1539010435497,"M 1.3 - 38km ESE of Bridgeport, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539050786643,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660081 +,,1000h8rt,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h8rt&format=geojson,2.066,,93.0,",us1000h8rt,",4.6,mb,,us,,"67km W of Kashi, China",0.7,326,",us,",reviewed,1539010082700,"M 4.6 - 67km W of Kashi, China",0,earthquake,",geoserve,origin,phase-data,",480.0,1539095928040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h8rt +,,61427422,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61427422&format=geojson,0.1105,,101.0,",uw61427422,",1.51,ml,,uw,16.0,"7km ESE of Carnation, Washington",0.05,35,",uw,",reviewed,1539009111440,"M 1.5 - 7km ESE of Carnation, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539016655330,https://earthquake.usgs.gov/earthquakes/eventpage/uw61427422 +,,70638852,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70638852&format=geojson,0.03228,,56.0,",hv70638852,",2.06,ml,,hv,46.0,"22km ENE of Honaunau-Napoopoo, Hawaii",0.13,65,",hv,",reviewed,1539007905280,"M 2.1 - 22km ENE of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539028419660,https://earthquake.usgs.gov/earthquakes/eventpage/hv70638852 +,,70806379,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70806379&format=geojson,0.02406,,123.0,",av70806379,",0.07,ml,,av,5.0,"42km ENE of Adak, Alaska",0.09,0,",av,",reviewed,1539007711440,"M 0.1 - 42km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539120115420,https://earthquake.usgs.gov/earthquakes/eventpage/av70806379 +,,61794036,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61794036&format=geojson,0.0203,,140.0,",av61794036,",-0.67,ml,,av,4.0,"42km ENE of Adak, Alaska",0.13,0,",av,",reviewed,1539007707710,"M -0.7 - 42km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539120211070,https://earthquake.usgs.gov/earthquakes/eventpage/av61794036 +,,20273385,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273385&format=geojson,,,,",ak20273385,",0.9,ml,,ak,,"7km S of Salcha, Alaska",0.83,12,",ak,",automatic,1539007567372,"M 0.9 - 7km S of Salcha, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539007805295,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273385 +,,1000h8r2,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h8r2&format=geojson,1.566,,98.0,",us1000h8r2,",4.7,mb,,us,,"122km S of Taron, Papua New Guinea",0.78,340,",us,",reviewed,1539006915650,"M 4.7 - 122km S of Taron, Papua New Guinea",0,earthquake,",geoserve,origin,phase-data,",600.0,1539095239040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h8r2 +,,20273381,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273381&format=geojson,,,,",ak20273381,",2.6,ml,,ak,,"83km NW of Yakutat, Alaska",0.69,104,",ak,",automatic,1539006286917,"M 2.6 - 83km NW of Yakutat, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539006648355,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273381 +,,20273378,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273378&format=geojson,,,,",ak20273378,",2.7,ml,,ak,,"65km WNW of Yakutat, Alaska",0.86,112,",ak,",automatic,1539006284029,"M 2.7 - 65km WNW of Yakutat, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539006648081,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273378 +,,70638787,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70638787&format=geojson,0.03404,,58.0,",hv70638787,",2.12,ml,,hv,41.0,"22km ENE of Honaunau-Napoopoo, Hawaii",0.13,69,",hv,",reviewed,1539005803260,"M 2.1 - 22km ENE of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539140712710,https://earthquake.usgs.gov/earthquakes/eventpage/hv70638787 +,,20273373,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273373&format=geojson,,,,",ak20273373,",1.2,ml,,ak,,"36km N of North Nenana, Alaska",0.9,22,",ak,",automatic,1539005800898,"M 1.2 - 36km N of North Nenana, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539006043528,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273373 +,,20273372,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273372&format=geojson,,,,",ak20273372,",1.7,ml,,ak,,"108km NW of Arctic Village, Alaska",1.84,44,",ak,",automatic,1539005734624,"M 1.7 - 108km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539006043801,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273372 +,,70806369,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70806369&format=geojson,0.03718,,206.0,",av70806369,",-0.51,ml,,av,5.0,"92km SE of King Salmon, Alaska",0.07,0,",av,",reviewed,1539005323860,"M -0.5 - 92km SE of King Salmon, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539119657860,https://earthquake.usgs.gov/earthquakes/eventpage/av70806369 +,,38317552,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38317552&format=geojson,0.08574,,73.0,",ci38317552,",1.72,ml,,ci,27.0,"17km ENE of Ocotillo, CA",0.22,46,",ci,",reviewed,1539005220960,"M 1.7 - 17km ENE of Ocotillo, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1539032011770,https://earthquake.usgs.gov/earthquakes/eventpage/ci38317552 +,,70638777,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70638777&format=geojson,0.03239,,67.0,",hv70638777,",1.7,ml,,hv,26.0,"21km ENE of Honaunau-Napoopoo, Hawaii",0.26,44,",hv,",automatic,1539005196540,"M 1.7 - 21km ENE of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539005538820,https://earthquake.usgs.gov/earthquakes/eventpage/hv70638777 +,,70806364,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70806364&format=geojson,0.05361,,236.0,",av70806364,",-0.67,ml,,av,7.0,"94km SE of King Salmon, Alaska",0.16,0,",av,",reviewed,1539004992270,"M -0.7 - 94km SE of King Salmon, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539119496600,https://earthquake.usgs.gov/earthquakes/eventpage/av70806364 +,,70806374,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70806374&format=geojson,0.0201,,142.0,",av70806374,",-0.6,ml,,av,4.0,"42km ENE of Adak, Alaska",0.12,0,",av,",reviewed,1539004591670,"M -0.6 - 42km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539119788060,https://earthquake.usgs.gov/earthquakes/eventpage/av70806374 +,,38317536,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38317536&format=geojson,0.03725,,45.0,",ci38317536,",1.23,ml,,ci,22.0,"7km SW of Niland, CA",0.18,23,",ci,",reviewed,1539003910830,"M 1.2 - 7km SW of Niland, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539021702195,https://earthquake.usgs.gov/earthquakes/eventpage/ci38317536 +,,37411117,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37411117&format=geojson,0.05565,,92.0,",ci37411117,",1.02,ml,,ci,8.0,"5km SW of Niland, CA",0.13,16,",ci,",reviewed,1539003904070,"M 1.0 - 5km SW of Niland, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539022612709,https://earthquake.usgs.gov/earthquakes/eventpage/ci37411117 +,3.4,1000h8q7,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h8q7&format=geojson,1.059,4.0,74.0,",us1000h8q7,",4.6,mb,,us,,"29km E of Tomakomai, Japan",0.74,327,",us,",reviewed,1539003238480,"M 4.6 - 29km E of Tomakomai, Japan",0,earthquake,",dyfi,geoserve,origin,phase-data,",540.0,1539012243124,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h8q7 +,,73095061,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095061&format=geojson,0.008957,,76.0,",nc73095061,",0.34,md,,nc,16.0,"9km WNW of Cobb, CA",0.02,2,",nc,",reviewed,1539002883390,"M 0.3 - 9km WNW of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539151023431,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095061 +,,73095056,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095056&format=geojson,0.05921,,311.0,",nc73095056,",1.18,md,,nc,6.0,"15km E of Pinnacles, CA",0.02,21,",nc,",reviewed,1539002763250,"M 1.2 - 15km E of Pinnacles, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539063362773,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095056 +,,20273366,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273366&format=geojson,,,,",ak20273366,",1.8,ml,,ak,,"73km SSW of Kaktovik, Alaska",0.97,50,",ak,",automatic,1539002656166,"M 1.8 - 73km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539002854911,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273366 +,,38317528,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38317528&format=geojson,0.04424,,67.0,",ci38317528,",1.63,ml,,ci,49.0,"16km ESE of Julian, CA",0.15,41,",ci,",reviewed,1539001804400,"M 1.6 - 16km ESE of Julian, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1539117129420,https://earthquake.usgs.gov/earthquakes/eventpage/ci38317528 +,,00659996,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659996&format=geojson,0.44,,99.08,",nn00659996,",1.6,ml,,nn,12.0,"27km NNW of Hawthorne, Nevada",0.1342,39,",nn,",reviewed,1539000944897,"M 1.6 - 27km NNW of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539050745441,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659996 +,,20273362,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273362&format=geojson,,,,",ak20273362,",2.7,ml,,ak,,"109km NNW of Arctic Village, Alaska",0.73,112,",ak,",automatic,1539000824026,"M 2.7 - 109km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1539001486864,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273362 +,,00660079,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660079&format=geojson,0.053,,103.98,",nn00660079,",0.7,ml,,nn,10.0,"50km ESE of Beatty, Nevada",0.1147,8,",nn,",reviewed,1539000754878,"M 0.7 - 50km ESE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539050784503,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660079 +,,1000h8pv,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h8pv&format=geojson,0.909,,160.0,",us1000h8pv,",4.7,mb,,us,,"92km NE of San Jose del Cabo, Mexico",1.09,340,",us,",reviewed,1539000356490,"M 4.7 - 92km NE of San Jose del Cabo, Mexico",0,earthquake,",geoserve,moment-tensor,origin,phase-data,",-420.0,1539109968040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h8pv +,,38317512,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38317512&format=geojson,0.06359,,75.0,",ci38317512,",1.24,ml,,ci,28.0,"17km ESE of Anza, CA",0.12,24,",ci,",reviewed,1539000265030,"M 1.2 - 17km ESE of Anza, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1539031059779,https://earthquake.usgs.gov/earthquakes/eventpage/ci38317512 +,,38317504,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38317504&format=geojson,0.01946,,56.0,",ci38317504,",0.89,ml,,ci,23.0,"10km NE of Aguanga, CA",0.14,12,",ci,",reviewed,1539000264560,"M 0.9 - 10km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1539031214910,https://earthquake.usgs.gov/earthquakes/eventpage/ci38317504 +,,00660076,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660076&format=geojson,0.367,,223.67,",nn00660076,",0.7,ml,,nn,7.0,"40km NE of Lone Pine, California",0.0989,8,",nn,",reviewed,1539000030036,"M 0.7 - 40km NE of Lone Pine, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539050782788,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660076 +,,38317496,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38317496&format=geojson,0.05775,,42.0,",ci38317496,",0.78,ml,,ci,30.0,"6km N of Lake Henshaw, CA",0.13,9,",ci,",reviewed,1538999992590,"M 0.8 - 6km N of Lake Henshaw, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539004628929,https://earthquake.usgs.gov/earthquakes/eventpage/ci38317496 +,,00660072,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660072&format=geojson,0.213,,143.41,",nn00660072,",1.3,ml,,nn,11.0,"7km SSE of Fernley, Nevada",0.1084,26,",nn,",reviewed,1538999408042,"M 1.3 - 7km SSE of Fernley, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539050780857,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660072 +,,20273355,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273355&format=geojson,,,,",ak20273355,",1.8,ml,,ak,,"58km S of Kaktovik, Alaska",0.94,50,",ak,",automatic,1538999295541,"M 1.8 - 58km S of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538999676040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273355 +,,00659980,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659980&format=geojson,0.37,,107.79,",nn00659980,",1.2,ml,,nn,21.0,"41km SSW of Caliente, Nevada",0.1863,22,",nn,",reviewed,1538999030898,"M 1.2 - 41km SSW of Caliente, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539050743297,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659980 +,,20273350,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273350&format=geojson,,,,",ak20273350,",1.2,ml,,ak,,"39km NNW of Nikiski, Alaska",0.22,22,",ak,",automatic,1538998942865,"M 1.2 - 39km NNW of Nikiski, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538999263195,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273350 +,,60300092,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60300092&format=geojson,0.05569,,107.0,",uu60300092,",1.52,ml,,uu,13.0,"36km ENE of Old Faithful Geyser, Wyoming",0.15,36,",uu,",reviewed,1538998734310,"M 1.5 - 36km ENE of Old Faithful Geyser, Wyoming",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539010518620,https://earthquake.usgs.gov/earthquakes/eventpage/uu60300092 +,,00660068,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660068&format=geojson,0.335,,100.18,",nn00660068,",0.6,ml,,nn,6.0,"34km SSW of Caliente, Nevada",0.1289,6,",nn,",reviewed,1538998596960,"M 0.6 - 34km SSW of Caliente, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539050776681,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660068 +,,70638647,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70638647&format=geojson,0.003613,,63.0,",hv70638647,",0.64,md,,hv,15.0,"4km SW of Volcano, Hawaii",0.08,6,",hv,",reviewed,1538997919570,"M 0.6 - 4km SW of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539029402150,https://earthquake.usgs.gov/earthquakes/eventpage/hv70638647 +,,20273336,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273336&format=geojson,,,,",ak20273336,",2.0,ml,,ak,,"44km S of Redoubt Volcano, Alaska",0.47,62,",ak,",automatic,1538997558599,"M 2.0 - 44km S of Redoubt Volcano, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538998277024,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273336 +,,38317488,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38317488&format=geojson,0.1395,,81.0,",ci38317488,",0.99,ml,,ci,33.0,"26km SSW of Ocotillo Wells, CA",0.19,15,",ci,",reviewed,1538996834860,"M 1.0 - 26km SSW of Ocotillo Wells, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539110159801,https://earthquake.usgs.gov/earthquakes/eventpage/ci38317488 +,,00659977,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659977&format=geojson,0.021,,73.61,",nn00659977,",0.5,ml,,nn,36.0,"49km SE of Beatty, Nevada",0.1638,4,",nn,",reviewed,1538996814811,"M 0.5 - 49km SE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539050741216,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659977 +,,20273331,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273331&format=geojson,,,,",ak20273331,",1.7,ml,,ak,,"57km WNW of Valdez, Alaska",0.86,44,",ak,",automatic,1538996633772,"M 1.7 - 57km WNW of Valdez, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538997149769,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273331 +,,20273329,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273329&format=geojson,,,,",ak20273329,",2.1,ml,,ak,,"83km WSW of Larsen Bay, Alaska",0.41,68,",ak,",automatic,1538996527950,"M 2.1 - 83km WSW of Larsen Bay, Alaska",0,earthquake,",geoserve,origin,",-600.0,1538996867644,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273329 +,,73095051,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095051&format=geojson,0.005421,,108.0,",nc73095051,",0.56,md,,nc,6.0,"6km WNW of Cobb, CA",0.01,5,",nc,",automatic,1538996078580,"M 0.6 - 6km WNW of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538998024463,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095051 +,,61427357,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61427357&format=geojson,0.05931,,80.0,",uw61427357,",1.86,ml,,uw,31.0,"6km NNE of Tacoma, Washington",0.23,53,",uw,",reviewed,1538995635780,"M 1.9 - 6km NNE of Tacoma, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539048764550,https://earthquake.usgs.gov/earthquakes/eventpage/uw61427357 +,,00660066,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660066&format=geojson,0.333,,180.53,",nn00660066,",0.8,ml,,nn,7.0,"77km S of Currant, Nevada",0.1264,10,",nn,",reviewed,1538995157975,"M 0.8 - 77km S of Currant, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539050775240,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660066 +,,73095046,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095046&format=geojson,0.8726,,283.0,",nc73095046,",2.81,md,,nc,22.0,"102km W of Petrolia, CA",0.24,121,",nc,",reviewed,1538994911570,"M 2.8 - 102km W of Petrolia, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539151143444,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095046 +,,73095041,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095041&format=geojson,0.004054,,67.0,",nc73095041,",1.4,md,,nc,39.0,"10km WNW of The Geysers, CA",0.03,30,",nc,",reviewed,1538994040740,"M 1.4 - 10km WNW of The Geysers, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539140403414,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095041 +,,73095036,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095036&format=geojson,0.1489,,235.0,",nc73095036,",0.83,md,,nc,13.0,"22km SW of Toms Place, CA",0.13,11,",nc,",reviewed,1538993636820,"M 0.8 - 22km SW of Toms Place, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539108003693,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095036 +,,00660065,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660065&format=geojson,0.06,,124.87,",nn00660065,",-0.4,ml,,nn,7.0,"3km ENE of Sun Valley, Nevada",0.1015,0,",nn,",reviewed,1538992824764,"M -0.4 - 3km ENE of Sun Valley, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539050773855,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660065 +,,20273316,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273316&format=geojson,,,,",ak20273316,",2.3,ml,,ak,,"77km W of Anchor Point, Alaska",0.48,81,",ak,",automatic,1538992750507,"M 2.3 - 77km W of Anchor Point, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538993136058,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273316 +,,38317480,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38317480&format=geojson,0.003797,,34.0,",ci38317480,",1.02,ml,,ci,42.0,"10km NE of Aguanga, CA",0.18,16,",ci,",reviewed,1538992667730,"M 1.0 - 10km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1539005551050,https://earthquake.usgs.gov/earthquakes/eventpage/ci38317480 +,,73095031,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095031&format=geojson,0.06738,,153.0,",nc73095031,",1.21,md,,nc,26.0,"10km S of Mammoth Lakes, CA",0.07,23,",nc,",reviewed,1538992574180,"M 1.2 - 10km S of Mammoth Lakes, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539121441962,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095031 +,,38317472,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38317472&format=geojson,0.02441,,50.0,",ci38317472,",0.84,ml,,ci,36.0,"2km WNW of Cabazon, CA",0.15,11,",ci,",reviewed,1538992471280,"M 0.8 - 2km WNW of Cabazon, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539029633762,https://earthquake.usgs.gov/earthquakes/eventpage/ci38317472 +,,00660063,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660063&format=geojson,0.078,,108.58,",nn00660063,",0.4,ml,,nn,8.0,"8km S of Dayton, Nevada",0.0923,2,",nn,",reviewed,1538992394349,"M 0.4 - 8km S of Dayton, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539050772024,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660063 +,,73095026,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095026&format=geojson,0.006166,,86.0,",nc73095026,",0.26,md,,nc,14.0,"7km NW of The Geysers, CA",0.03,1,",nc,",reviewed,1538990895570,"M 0.3 - 7km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539150364356,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095026 +,,00660051,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660051&format=geojson,0.328,,121.13,",nn00660051,",1.3,ml,,nn,11.0,"77km S of Currant, Nevada",0.1126,26,",nn,",reviewed,1538990117227,"M 1.3 - 77km S of Currant, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539050767171,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660051 +,,20273309,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273309&format=geojson,,,,",ak20273309,",2.4,ml,,ak,,"91km SW of Old Crow, Canada",0.62,89,",ak,",automatic,1538990002403,"M 2.4 - 91km SW of Old Crow, Canada",0,earthquake,",geoserve,origin,",-540.0,1538990239357,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273309 +,,80312804,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80312804&format=geojson,0.089,,112.0,",mb80312804,",0.97,ml,,mb,15.0,"9km NE of Butte, Montana",0.14,14,",mb,",reviewed,1538989148110,"M 1.0 - 9km NE of Butte, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539008028010,https://earthquake.usgs.gov/earthquakes/eventpage/mb80312804 +,,00660050,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660050&format=geojson,0.11,,87.28,",nn00660050,",0.2,ml,,nn,8.0,"13km NNE of Incline Village, Nevada",0.0746,1,",nn,",reviewed,1538988259240,"M 0.2 - 13km NNE of Incline Village, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539050765756,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660050 +,,70638447,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70638447&format=geojson,0.03436,,94.0,",hv70638447,",2.21,ml,,hv,43.0,"22km ENE of Honaunau-Napoopoo, Hawaii",0.13,75,",hv,",reviewed,1538988199160,"M 2.2 - 22km ENE of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539031308130,https://earthquake.usgs.gov/earthquakes/eventpage/hv70638447 +,,20273307,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273307&format=geojson,,,,",ak20273307,",0.8,ml,,ak,,"49km SE of North Nenana, Alaska",0.5,10,",ak,",automatic,1538987821056,"M 0.8 - 49km SE of North Nenana, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538987996393,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273307 +,,38317464,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38317464&format=geojson,0.06469,,93.0,",ci38317464,",0.94,ml,,ci,30.0,"18km ESE of Anza, CA",0.1,14,",ci,",reviewed,1538987099690,"M 0.9 - 18km ESE of Anza, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1539028781150,https://earthquake.usgs.gov/earthquakes/eventpage/ci38317464 +,,60241986,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nm60241986&format=geojson,0.03266,,128.0,",nm60241986,",1.44,md,,nm,11.0,"4km NNE of Malden, Missouri",0.09,32,",nm,",reviewed,1538986960730,"M 1.4 - 4km NNE of Malden, Missouri",0,earthquake,",geoserve,origin,phase-data,",-360.0,1539003289340,https://earthquake.usgs.gov/earthquakes/eventpage/nm60241986 +,,20273296,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273296&format=geojson,,,,",ak20273296,",2.4,ml,,ak,,"67km WNW of Talkeetna, Alaska",0.58,89,",ak,",automatic,1538986914808,"M 2.4 - 67km WNW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538987593941,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273296 +,,20273294,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273294&format=geojson,,,,",ak20273294,",1.6,ml,,ak,,"91km W of Cantwell, Alaska",0.34,39,",ak,",automatic,1538986406760,"M 1.6 - 91km W of Cantwell, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538986838986,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273294 +,,70638417,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70638417&format=geojson,0.005422,,208.0,",hv70638417,",2.02,ml,,hv,8.0,"14km S of Fern Acres, Hawaii",0.27,63,",hv,",automatic,1538986315030,"M 2.0 - 14km S of Fern Acres, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538986657800,https://earthquake.usgs.gov/earthquakes/eventpage/hv70638417 +,,00660046,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660046&format=geojson,0.025,,108.46,",nn00660046,",0.0,ml,,nn,23.0,"58km ENE of Beatty, Nevada",0.1439,0,",nn,",reviewed,1538986164705,"M 0.0 - 58km ENE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539050764532,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660046 +,,80313279,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80313279&format=geojson,0.154,,138.0,",mb80313279,",1.03,ml,,mb,7.0,"16km SSW of Lincoln, Montana",0.06,16,",mb,",reviewed,1538986102340,"M 1.0 - 16km SSW of Lincoln, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539192137080,https://earthquake.usgs.gov/earthquakes/eventpage/mb80313279 +,,2018281004,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018281004&format=geojson,0.3071,,326.0,",pr2018281004,",2.52,md,,pr,5.0,"31km NNW of San Antonio, Puerto Rico",0.24,98,",pr,",reviewed,1538985372200,"M 2.5 - 31km NNW of San Antonio, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538996032929,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018281004 +,,61793916,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61793916&format=geojson,0.02895,,124.0,",av61793916,",0.21,ml,,av,5.0,"43km ENE of Adak, Alaska",0.07,1,",av,",reviewed,1538985079200,"M 0.2 - 43km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539116407560,https://earthquake.usgs.gov/earthquakes/eventpage/av61793916 +,,20273290,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273290&format=geojson,,,,",ak20273290,",1.9,ml,,ak,,"163km SSE of Kotzebue, Alaska",0.37,56,",ak,",automatic,1538984239916,"M 1.9 - 163km SSE of Kotzebue, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538984585723,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273290 +,,38317456,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38317456&format=geojson,0.05626,,53.0,",ci38317456,",1.22,ml,,ci,48.0,"19km ESE of Julian, CA",0.16,23,",ci,",reviewed,1538983780610,"M 1.2 - 19km ESE of Julian, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1539116884670,https://earthquake.usgs.gov/earthquakes/eventpage/ci38317456 +,,80312794,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80312794&format=geojson,0.119,,102.0,",mb80312794,",0.22,ml,,mb,5.0,"11km NNE of Moose Wilson Road, Wyoming",0.08,1,",mb,",reviewed,1538983561420,"M 0.2 - 11km NNE of Moose Wilson Road, Wyoming",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539008275100,https://earthquake.usgs.gov/earthquakes/eventpage/mb80312794 +,,20273288,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273288&format=geojson,,,,",ak20273288,",1.2,ml,,ak,,"115km ESE of Holy Cross, Alaska",0.4,22,",ak,",automatic,1538983394225,"M 1.2 - 115km ESE of Holy Cross, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538983660038,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273288 +,,00660038,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660038&format=geojson,0.354,,166.81,",nn00660038,",1.3,ml,,nn,7.0,"27km WSW of Hawthorne, Nevada",0.1194,26,",nn,",reviewed,1538980487812,"M 1.3 - 27km WSW of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539050762590,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660038 +,,00660036,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660036&format=geojson,0.348,,202.95,",nn00660036,",0.9,ml,,nn,6.0,"29km ENE of Fallon, Nevada",0.1678,12,",nn,",reviewed,1538980464990,"M 0.9 - 29km ENE of Fallon, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539050761107,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660036 +,2.0,00660034,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660034&format=geojson,0.047,1.0,97.74,",nn00660034,",0.0,ml,,nn,7.0,"2km ENE of Sun Valley, Nevada",0.1267,0,",nn,",reviewed,1538980388303,"M 0.0 - 2km ENE of Sun Valley, Nevada",0,earthquake,",dyfi,geoserve,origin,phase-data,",-480.0,1539050759664,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660034 +,,20273278,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273278&format=geojson,,,,",ak20273278,",2.1,ml,,ak,,"97km WSW of Old Crow, Canada",0.75,68,",ak,",automatic,1538980381760,"M 2.1 - 97km WSW of Old Crow, Canada",0,earthquake,",geoserve,origin,",-540.0,1538980712833,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273278 +,,70806354,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70806354&format=geojson,0.0218,,183.0,",av70806354,",-0.38,ml,,av,4.0,"42km ENE of Adak, Alaska",0.04,0,",av,",reviewed,1538980329850,"M -0.4 - 42km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539116116250,https://earthquake.usgs.gov/earthquakes/eventpage/av70806354 +,,70806349,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70806349&format=geojson,0.02246,,185.0,",av70806349,",-0.3,ml,,av,4.0,"42km ENE of Adak, Alaska",0.07,0,",av,",reviewed,1538980326930,"M -0.3 - 42km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539116046950,https://earthquake.usgs.gov/earthquakes/eventpage/av70806349 +,,20273274,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273274&format=geojson,,,,",ak20273274,",3.0,ml,,ak,,"89km SW of Old Crow, Canada",0.86,138,",ak,",automatic,1538979732966,"M 3.0 - 89km SW of Old Crow, Canada",0,earthquake,",geoserve,origin,",-540.0,1538980028452,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273274 +,,20273270,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273270&format=geojson,,,,",ak20273270,",1.3,ml,,ak,,"30km NNW of Nikiski, Alaska",0.39,26,",ak,",automatic,1538979421973,"M 1.3 - 30km NNW of Nikiski, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538979735868,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273270 +,,20273268,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273268&format=geojson,,,,",ak20273268,",2.0,ml,,ak,,"63km SSW of Kaktovik, Alaska",0.86,62,",ak,",automatic,1538979367538,"M 2.0 - 63km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538979736137,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273268 +,,20273264,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273264&format=geojson,,,,",ak20273264,",2.1,ml,,ak,,"11km ESE of Sterling, Alaska",0.6,68,",ak,",automatic,1538979218301,"M 2.1 - 11km ESE of Sterling, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538979604342,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273264 +,,70638297,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70638297&format=geojson,0.05905,,200.0,",hv70638297,",1.83,ml,,hv,37.0,"10km SSW of Leilani Estates, Hawaii",0.32,52,",hv,",automatic,1538978995180,"M 1.8 - 10km SSW of Leilani Estates, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538979344830,https://earthquake.usgs.gov/earthquakes/eventpage/hv70638297 +,,2018281003,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018281003&format=geojson,0.0918,,242.0,",pr2018281003,",1.95,md,,pr,4.0,"6km SSE of Ponce, Puerto Rico",0.15,58,",pr,",reviewed,1538978582040,"M 2.0 - 6km SSE of Ponce, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538983627626,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018281003 +,,61793871,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61793871&format=geojson,0.02045,,111.0,",av61793871,",0.3,ml,,av,5.0,"42km ENE of Adak, Alaska",0.19,1,",av,",reviewed,1538978266210,"M 0.3 - 42km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539115410410,https://earthquake.usgs.gov/earthquakes/eventpage/av61793871 +,,1000h8zi,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h8zi&format=geojson,0.726,,229.0,",ak20273257,us1000h8zi,",2.5,ml,,us,,"60km ESE of Amatignak Island, Alaska",0.24,96,",ak,us,",reviewed,1538977568950,"M 2.5 - 60km ESE of Amatignak Island, Alaska",0,earthquake,",geoserve,origin,phase-data,",-720.0,1539077254040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h8zi +,,1000h8mj,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h8mj&format=geojson,3.773,,101.0,",us1000h8mj,",4.9,mb,,us,,"293km ESE of Iwo Jima, Japan",0.92,369,",us,",reviewed,1538977532250,"M 4.9 - 293km ESE of Iwo Jima, Japan",0,earthquake,",geoserve,origin,phase-data,",600.0,1538978864040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h8mj +,,20273255,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273255&format=geojson,,,,",ak20273255,",1.9,ml,,ak,,"43km W of Valdez, Alaska",1.04,56,",ak,",automatic,1538977255125,"M 1.9 - 43km W of Valdez, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538977642366,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273255 +,,80312789,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80312789&format=geojson,0.124,,101.0,",mb80312789,",1.42,ml,,mb,12.0,"15km SE of Lincoln, Montana",0.12,31,",mb,",reviewed,1538977194340,"M 1.4 - 15km SE of Lincoln, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539009040720,https://earthquake.usgs.gov/earthquakes/eventpage/mb80312789 +,,20273253,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273253&format=geojson,,,,",ak20273253,",1.6,ml,,ak,,"42km SSE of Homer, Alaska",0.61,39,",ak,",automatic,1538976989591,"M 1.6 - 42km SSE of Homer, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538977320139,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273253 +,,38317448,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38317448&format=geojson,0.1121,,90.0,",ci38317448,",1.04,ml,,ci,22.0,"19km ESE of Ridgecrest, CA",0.14,17,",ci,",reviewed,1538976108460,"M 1.0 - 19km ESE of Ridgecrest, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539128639682,https://earthquake.usgs.gov/earthquakes/eventpage/ci38317448 +,2.2,60300077,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60300077&format=geojson,0.1007,1.0,118.0,",uu60300077,",1.63,md,,uu,11.0,"12km E of Kanab, Utah",0.11,41,",uu,",reviewed,1538975540090,"M 1.6 - 12km E of Kanab, Utah",0,earthquake,",dyfi,geoserve,origin,phase-data,",-420.0,1539218889583,https://earthquake.usgs.gov/earthquakes/eventpage/uu60300077 +,,61427332,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61427332&format=geojson,0.05784,,201.0,",uw61427332,",0.29,ml,,uw,11.0,"36km SSE of Morton, Washington",0.13,1,",uw,",reviewed,1538975525890,"M 0.3 - 36km SSE of Morton, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539017272320,https://earthquake.usgs.gov/earthquakes/eventpage/uw61427332 +,,20273243,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273243&format=geojson,,,,",ak20273243,",1.8,ml,,ak,,"12km E of Sterling, Alaska",0.54,50,",ak,",automatic,1538975405410,"M 1.8 - 12km E of Sterling, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538976072921,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273243 +,,2018281002,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018281002&format=geojson,0.066,,131.0,",pr2018281002,",0.88,md,,pr,5.0,"3km ENE of Vazquez, Puerto Rico",0.2,12,",pr,",reviewed,1538975110590,"M 0.9 - 3km ENE of Vazquez, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538983610370,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018281002 +,2.2,38317440,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38317440&format=geojson,0.06205,7.0,93.0,",ci38317440,",2.68,ml,,ci,40.0,"8km SSW of Los Alamos, CA",0.17,112,",ci,",reviewed,1538975085920,"M 2.7 - 8km SSW of Los Alamos, CA",0,earthquake,",dyfi,focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1539038606133,https://earthquake.usgs.gov/earthquakes/eventpage/ci38317440 +,3.8,1000h8mf,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h8mf&format=geojson,1.784,3.0,79.0,",us1000h8mf,",4.2,mb,,us,,"32km NNW of Ti Port-de-Paix, Haiti",1.07,273,",us,",reviewed,1538975066950,"M 4.2 - 32km NNW of Ti Port-de-Paix, Haiti",0,earthquake,",dyfi,geoserve,origin,phase-data,",-300.0,1539040157087,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h8mf +,,20273238,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273238&format=geojson,,,,",ak20273238,",1.7,ml,,ak,,"57km NW of Nikiski, Alaska",0.48,44,",ak,",automatic,1538975036954,"M 1.7 - 57km NW of Nikiski, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538975529281,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273238 +,2.9,1000h8md,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h8md&format=geojson,,1.0,33.0,",us1000h8md,",2.9,ml,,us,,"9km N of Hennessey, Oklahoma",0.25,130,",us,",reviewed,1538974606700,"M 2.9 - 9km N of Hennessey, Oklahoma",0,earthquake,",dyfi,geoserve,origin,phase-data,",-360.0,1539304498913,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h8md +,,20273236,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273236&format=geojson,,,,",ak20273236,",1.6,ml,,ak,,"110km NNW of Arctic Village, Alaska",0.94,39,",ak,",automatic,1538974577330,"M 1.6 - 110km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538974794137,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273236 +,,2018281001,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018281001&format=geojson,0.0587,,155.0,",pr2018281001,",2.47,md,,pr,8.0,"3km N of Sabana Eneas, Puerto Rico",0.18,94,",pr,",reviewed,1538973920850,"M 2.5 - 3km N of Sabana Eneas, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538976253949,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018281001 +,,73095001,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095001&format=geojson,0.04153,,91.0,",nc73095001,",0.98,md,,nc,24.0,"24km ENE of San Ardo, CA",0.08,15,",nc,",reviewed,1538972701650,"M 1.0 - 24km ENE of San Ardo, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539056763108,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095001 +,,38317432,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38317432&format=geojson,0.01524,,111.0,",ci38317432,",0.62,ml,,ci,30.0,"10km N of Borrego Springs, CA",0.18,6,",ci,",reviewed,1538972553760,"M 0.6 - 10km N of Borrego Springs, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539114787408,https://earthquake.usgs.gov/earthquakes/eventpage/ci38317432 +,,73094996,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094996&format=geojson,0.01637,,64.0,",nc73094996,",1.43,md,,nc,38.0,"6km WNW of The Geysers, CA",0.07,31,",nc,",reviewed,1538972367410,"M 1.4 - 6km WNW of The Geysers, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539156363009,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094996 +,,20273233,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273233&format=geojson,,,,",ak20273233,",1.6,ml,,ak,,"70km SSW of Arctic Village, Alaska",0.89,39,",ak,",automatic,1538972308775,"M 1.6 - 70km SSW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538972600993,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273233 +,,20273226,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273226&format=geojson,,,,",ak20273226,",2.0,ml,,ak,,"60km ESE of Sutton-Alpine, Alaska",0.72,62,",ak,",automatic,1538972192061,"M 2.0 - 60km ESE of Sutton-Alpine, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538972822528,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273226 +,,20273227,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273227&format=geojson,,,,",ak20273227,",2.0,ml,,ak,,"89km NW of Talkeetna, Alaska",0.5,62,",ak,",automatic,1538972160762,"M 2.0 - 89km NW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538972368678,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273227 +,,20273224,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273224&format=geojson,,,,",ak20273224,",1.2,ml,,ak,,"73km ENE of Cantwell, Alaska",0.27,22,",ak,",automatic,1538972033731,"M 1.2 - 73km ENE of Cantwell, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538972499648,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273224 +,,73094991,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094991&format=geojson,0.00258,,81.0,",nc73094991,",0.89,md,,nc,14.0,"4km NW of The Geysers, CA",0.04,12,",nc,",automatic,1538971540990,"M 0.9 - 4km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538973483141,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094991 +,,20273221,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273221&format=geojson,,,,",ak20273221,",1.7,ml,,ak,,"97km WNW of Arctic Village, Alaska",1.11,44,",ak,",automatic,1538970975226,"M 1.7 - 97km WNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538971261338,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273221 +,,20273219,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273219&format=geojson,,,,",ak20273219,",1.4,ml,,ak,,"27km SW of Anchor Point, Alaska",0.53,30,",ak,",automatic,1538970876577,"M 1.4 - 27km SW of Anchor Point, Alaska",0,earthquake,",geoserve,origin,",-600.0,1538971100150,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273219 +,,20273215,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273215&format=geojson,,,,",ak20273215,",1.6,ml,,ak,,"56km SE of Cantwell, Alaska",1.11,39,",ak,",automatic,1538970582374,"M 1.6 - 56km SE of Cantwell, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538970848231,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273215 +,,20273213,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273213&format=geojson,,,,",ak20273213,",1.3,ml,,ak,,"72km SSW of Kobuk, Alaska",1.13,26,",ak,",automatic,1538970466184,"M 1.3 - 72km SSW of Kobuk, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538970848498,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273213 +,,20273212,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273212&format=geojson,,,,",ak20273212,",2.0,ml,,ak,,"47km SW of Kaktovik, Alaska",0.91,62,",ak,",automatic,1538969667836,"M 2.0 - 47km SW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538969851938,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273212 +,,20273210,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273210&format=geojson,,,,",ak20273210,",1.7,ml,,ak,,"52km ESE of Lazy Mountain, Alaska",0.75,44,",ak,",automatic,1538969661133,"M 1.7 - 52km ESE of Lazy Mountain, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538969851687,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273210 +,,00659972,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659972&format=geojson,0.334,,159.7,",nn00659972,",0.8,ml,,nn,9.0,"26km W of Alamo, Nevada",0.1547,10,",nn,",reviewed,1538969329567,"M 0.8 - 26km W of Alamo, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539050732136,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659972 +,,20273209,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273209&format=geojson,,,,",ak20273209,",1.1,ml,,ak,,"7km SW of Y, Alaska",0.82,19,",ak,",automatic,1538968374169,"M 1.1 - 7km SW of Y, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538968544012,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273209 +,,70638132,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70638132&format=geojson,0.03128,,148.0,",hv70638132,",1.82,md,,hv,47.0,"4km SE of Pahala, Hawaii",0.1,51,",hv,",reviewed,1538968073530,"M 1.8 - 4km SE of Pahala, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539227549760,https://earthquake.usgs.gov/earthquakes/eventpage/hv70638132 +,,38317416,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38317416&format=geojson,0.1164,,90.0,",ci38317416,",1.43,ml,,ci,22.0,"18km SE of Ridgecrest, CA",0.15,31,",ci,",reviewed,1538968063070,"M 1.4 - 18km SE of Ridgecrest, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1539031703040,https://earthquake.usgs.gov/earthquakes/eventpage/ci38317416 +,,38317408,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38317408&format=geojson,0.02656,,19.0,",ci38317408,",1.7,ml,,ci,89.0,"8km NE of Aguanga, CA",0.2,44,",ci,",reviewed,1538967781810,"M 1.7 - 8km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1539031887480,https://earthquake.usgs.gov/earthquakes/eventpage/ci38317408 +,,00659965,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659965&format=geojson,0.346,,78.32,",nn00659965,",1.1,ml,,nn,31.0,"28km W of Alamo, Nevada",0.2236,19,",nn,",reviewed,1538967485772,"M 1.1 - 28km W of Alamo, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539050730365,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659965 +,,38317400,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38317400&format=geojson,0.04117,,88.0,",ci38317400,",0.99,ml,,ci,51.0,"22km SSW of La Quinta, CA",0.18,15,",ci,",reviewed,1538967424390,"M 1.0 - 22km SSW of La Quinta, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539030452873,https://earthquake.usgs.gov/earthquakes/eventpage/ci38317400 +,,00660030,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660030&format=geojson,0.034,,70.74,",nn00660030,",0.1,ml,,nn,16.0,"50km ESE of Beatty, Nevada",0.1584,0,",nn,",reviewed,1538967163452,"M 0.1 - 50km ESE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539050756655,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660030 +,,20273204,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273204&format=geojson,,,,",ak20273204,",1.9,ml,,ak,,"109km NNW of Arctic Village, Alaska",0.97,56,",ak,",automatic,1538967072627,"M 1.9 - 109km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538967719001,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273204 +,,20273201,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273201&format=geojson,,,,",ak20273201,",1.5,ml,,ak,,"71km E of Cape Yakataga, Alaska",1.25,35,",ak,",automatic,1538966521018,"M 1.5 - 71km E of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538967084677,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273201 +,,00660028,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660028&format=geojson,0.033,,80.28,",nn00660028,",-0.3,ml,,nn,6.0,"4km WSW of Tahoe Vista, California",0.0449,0,",nn,",reviewed,1538965869816,"M -0.3 - 4km WSW of Tahoe Vista, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539050754965,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660028 +,,73094981,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094981&format=geojson,0.01119,,79.0,",nc73094981,",1.07,md,,nc,15.0,"2km WNW of The Geysers, CA",0.05,18,",nc,",automatic,1538965840970,"M 1.1 - 2km WNW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538967783560,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094981 +,3.1,1000h8l6,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h8l6&format=geojson,0.913,25.0,127.0,",us1000h8l6,",3.6,ml,,us,,"1km WNW of Hope Bay, Jamaica",0.49,207,",us,",reviewed,1538965711210,"M 3.6 - 1km WNW of Hope Bay, Jamaica",0,earthquake,",dyfi,geoserve,origin,phase-data,",-300.0,1538990464116,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h8l6 +,,20273198,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273198&format=geojson,,,,",ak20273198,",1.7,ml,,ak,,"113km NNW of Arctic Village, Alaska",0.79,44,",ak,",automatic,1538965448737,"M 1.7 - 113km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538966018462,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273198 +,,20273197,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273197&format=geojson,,,,",ak20273197,",1.8,ml,,ak,,"57km NE of Valdez, Alaska",1.02,50,",ak,",automatic,1538965170181,"M 1.8 - 57km NE of Valdez, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538965545305,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273197 +,,20273191,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273191&format=geojson,,,,",ak20273191,",2.3,ml,,ak,,"88km ENE of Sutton-Alpine, Alaska",0.85,81,",ak,",automatic,1538965160267,"M 2.3 - 88km ENE of Sutton-Alpine, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538965444428,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273191 +,,38317392,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38317392&format=geojson,0.02916,,37.0,",ci38317392,",1.67,ml,,ci,65.0,"3km ENE of Cabazon, CA",0.19,43,",ci,",reviewed,1538965106110,"M 1.7 - 3km ENE of Cabazon, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1539005687290,https://earthquake.usgs.gov/earthquakes/eventpage/ci38317392 +,,00659974,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659974&format=geojson,0.034,,80.09,",nn00659974,",0.6,ml,,nn,8.0,"3km WSW of Tahoe Vista, California",0.1387,6,",nn,",reviewed,1538965100363,"M 0.6 - 3km WSW of Tahoe Vista, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539050733923,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659974 +,,60065833,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nm60065833&format=geojson,0.02113,,121.0,",nm60065833,",1.14,md,,nm,10.0,"9km NNE of Portageville, Missouri",0.05,20,",nm,",reviewed,1538964981940,"M 1.1 - 9km NNE of Portageville, Missouri",0,earthquake,",geoserve,origin,phase-data,",-360.0,1539009181250,https://earthquake.usgs.gov/earthquakes/eventpage/nm60065833 +,,73094976,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094976&format=geojson,0.038,,99.0,",nc73094976,",1.14,md,,nc,15.0,"4km N of Pinnacles, CA",0.08,20,",nc,",reviewed,1538964969040,"M 1.1 - 4km N of Pinnacles, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539140343572,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094976 +,,20273188,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273188&format=geojson,,,,",ak20273188,",1.4,ml,,ak,,"88km NW of Talkeetna, Alaska",0.82,30,",ak,",automatic,1538964526079,"M 1.4 - 88km NW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538964820478,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273188 +,,00659960,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659960&format=geojson,0.034,,61.26,",nn00659960,",1.6,ml,,nn,29.0,"3km WSW of Tahoe Vista, California",0.2024,39,",nn,",reviewed,1538964070984,"M 1.6 - 3km WSW of Tahoe Vista, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539050723117,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659960 +,2.7,38317384,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38317384&format=geojson,0.09087,6.0,72.0,",ci38317384,",2.91,ml,,ci,49.0,"12km NNW of Progreso, B.C., MX",0.28,132,",ci,",reviewed,1538962530300,"M 2.9 - 12km NNW of Progreso, B.C., MX",0,earthquake,",dyfi,focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1539419452164,https://earthquake.usgs.gov/earthquakes/eventpage/ci38317384 +,,20273182,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273182&format=geojson,,,,",ak20273182,",1.8,ml,,ak,,"73km SSW of Kobuk, Alaska",1.01,50,",ak,",automatic,1538962471822,"M 1.8 - 73km SSW of Kobuk, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538962838712,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273182 +,,20273180,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273180&format=geojson,,,,",ak20273180,",1.0,ml,,ak,,"54km WNW of Willow, Alaska",0.18,15,",ak,",automatic,1538962303489,"M 1.0 - 54km WNW of Willow, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538962737651,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273180 +,,00660027,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660027&format=geojson,0.058,,143.31,",nn00660027,",-0.1,ml,,nn,15.0,"66km E of Beatty, Nevada",0.2155,0,",nn,",reviewed,1538962173247,"M -0.1 - 66km E of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539050752809,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660027 +,,20273176,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273176&format=geojson,,,,",ak20273176,",1.2,ml,,ak,,"31km NNW of Sutton-Alpine, Alaska",0.41,22,",ak,",automatic,1538961466619,"M 1.2 - 31km NNW of Sutton-Alpine, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538961721652,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273176 +,,20273172,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273172&format=geojson,,,,",ak20273172,",1.7,ml,,ak,,"108km NW of Arctic Village, Alaska",1.08,44,",ak,",automatic,1538960950619,"M 1.7 - 108km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538961620815,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273172 +,,70638007,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70638007&format=geojson,0.3709,,268.0,",hv70638007,us1000h8k1,",2.72,ml,,hv,28.0,"43km W of Kailua-Kona, Hawaii",0.21,114,",hv,us,",reviewed,1538960761110,"M 2.7 - 43km W of Kailua-Kona, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539304347040,https://earthquake.usgs.gov/earthquakes/eventpage/hv70638007 +,,20273168,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273168&format=geojson,,,,",ak20273168,",2.2,ml,,ak,,"101km NNW of Arctic Village, Alaska",1.36,74,",ak,",automatic,1538960731262,"M 2.2 - 101km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538961458879,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273168 +,,20273166,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273166&format=geojson,,,,",ak20273166,",1.5,ml,,ak,,"52km SW of Valdez, Alaska",0.49,35,",ak,",automatic,1538960681669,"M 1.5 - 52km SW of Valdez, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538961156445,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273166 +,,20273160,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273160&format=geojson,,,,",ak20273160,",1.7,ml,,ak,,"70km WSW of Anchor Point, Alaska",0.25,44,",ak,",automatic,1538960493622,"M 1.7 - 70km WSW of Anchor Point, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538961459153,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273160 +,,38317376,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38317376&format=geojson,0.05078,,43.0,",ci38317376,",1.07,ml,,ci,36.0,"6km S of Palomar Observatory, CA",0.16,18,",ci,",reviewed,1538960398790,"M 1.1 - 6km S of Palomar Observatory, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539005641789,https://earthquake.usgs.gov/earthquakes/eventpage/ci38317376 +,,20273151,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273151&format=geojson,,,,",ak20273151,us1000h8jw,",3.2,ml,,ak,,"104km NNW of Arctic Village, Alaska",0.39,158,",ak,us,",automatic,1538960358294,"M 3.2 - 104km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538961307040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273151 +,,20273142,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273142&format=geojson,,,,",ak20273142,",2.1,ml,,ak,,"82km NW of Talkeetna, Alaska",0.82,68,",ak,",automatic,1538960094601,"M 2.1 - 82km NW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538961156162,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273142 +,,20273139,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273139&format=geojson,,,,",ak20273139,",1.4,ml,,ak,,"44km WNW of Willow, Alaska",0.26,30,",ak,",automatic,1538960061036,"M 1.4 - 44km WNW of Willow, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538960581811,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273139 +,,20273138,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273138&format=geojson,,,,",ak20273138,us1000h8js,",2.9,ml,,ak,,"108km NNW of Arctic Village, Alaska",0.86,129,",ak,us,",automatic,1538960054506,"M 2.9 - 108km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538960887040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273138 +,,20273156,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273156&format=geojson,,,,",ak20273156,",2.3,ml,,ak,,"105km NW of Arctic Village, Alaska",0.97,81,",ak,",reviewed,1538960021991,"M 2.3 - 105km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539027582913,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273156 +,,00660025,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660025&format=geojson,0.346,,167.39,",nn00660025,",1.0,ml,,nn,6.0,"27km WSW of Hawthorne, Nevada",0.1356,15,",nn,",reviewed,1538959994872,"M 1.0 - 27km WSW of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539050751405,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660025 +,,20273157,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273157&format=geojson,,,,",ak20273157,",1.4,ml,,ak,,"108km NNW of Arctic Village, Alaska",0.82,30,",ak,",reviewed,1538959927031,"M 1.4 - 108km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539026674411,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273157 +,,20273134,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273134&format=geojson,,,,",ak20273134,",2.0,ml,,ak,,"116km NW of Arctic Village, Alaska",0.94,62,",ak,",automatic,1538959726437,"M 2.0 - 116km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538960450271,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273134 +,,73094961,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094961&format=geojson,0.0293,,105.0,",nc73094961,",0.78,md,,nc,30.0,"10km NNW of Cholame, CA",0.07,9,",nc,",reviewed,1538959724200,"M 0.8 - 10km NNW of Cholame, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539127143065,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094961 +,,1000h8jg,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h8jg&format=geojson,0.944,,110.0,",us1000h8jg,",3.4,ml,,us,,"113km NW of Arctic Village, Alaska",0.73,178,",us,",reviewed,1538959448110,"M 3.4 - 113km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538960123040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h8jg +,,20273124,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273124&format=geojson,,,,",ak20273124,",1.4,ml,,ak,,"41km NNE of Talkeetna, Alaska",0.67,30,",ak,",automatic,1538958779264,"M 1.4 - 41km NNE of Talkeetna, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538959060255,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273124 +,,2018281000,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018281000&format=geojson,0.1314,,199.0,",pr2018281000,",1.69,md,,pr,8.0,"2km SSE of Pajaros, Puerto Rico",0.27,44,",pr,",reviewed,1538958694840,"M 1.7 - 2km SSE of Pajaros, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538974114740,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018281000 +,,80313274,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80313274&format=geojson,0.082,,116.0,",mb80313274,",0.9,ml,,mb,10.0,"10km ESE of Lincoln, Montana",0.15,12,",mb,",reviewed,1538958656140,"M 0.9 - 10km ESE of Lincoln, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539187783160,https://earthquake.usgs.gov/earthquakes/eventpage/mb80313274 +,,20273119,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273119&format=geojson,,,,",ak20273119,us1000h8j9,",3.5,ml,3.39,ak,,"123km NNW of Arctic Village, Alaska",0.77,188,",ak,us,",reviewed,1538958290432,"M 3.5 - 123km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,shakemap,",-540.0,1539026609842,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273119 +,,00660018,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660018&format=geojson,0.208,,269.43,",nn00660018,",0.8,ml,,nn,13.0,"60km NNE of Pahrump, Nevada",0.1543,10,",nn,",reviewed,1538957373093,"M 0.8 - 60km NNE of Pahrump, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539050747271,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660018 +,,73094946,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094946&format=geojson,0.00994,,92.0,",nc73094946,",0.24,md,,nc,11.0,"6km W of Cobb, CA",0.02,1,",nc,",reviewed,1538957311400,"M 0.2 - 6km W of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539061744599,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094946 +,1.0,60065828,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=se60065828&format=geojson,0.3892,1.0,94.0,",se60065828,",2.12,md,,se,11.0,"19km NNE of Pineville, Kentucky",0.12,69,",se,",reviewed,1538957266640,"M 2.1 - 19km NNE of Pineville, Kentucky",0,earthquake,",dyfi,geoserve,origin,phase-data,",-300.0,1539014105174,https://earthquake.usgs.gov/earthquakes/eventpage/se60065828 +,,73094951,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094951&format=geojson,0.103,,58.0,",nc73094951,",1.17,md,,nc,21.0,"9km NNE of San Martin, CA",0.1,21,",nc,",reviewed,1538957200570,"M 1.2 - 9km NNE of San Martin, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539150243347,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094951 +,,60300042,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60300042&format=geojson,0.2538,,63.0,",nn00659955,uu60300042,",2.11,ml,,uu,18.0,"44km WSW of Fillmore, Utah",0.23,68,",nn,uu,",reviewed,1538957006900,"M 2.1 - 44km WSW of Fillmore, Utah",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539050712999,https://earthquake.usgs.gov/earthquakes/eventpage/uu60300042 +,,73094941,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094941&format=geojson,0.2052,,150.0,",nc73094941,",1.22,md,,nc,7.0,"8km W of Almanor, CA",0.05,23,",nc,",reviewed,1538956874540,"M 1.2 - 8km W of Almanor, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539115024356,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094941 +,,37411125,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37411125&format=geojson,0.02847,,136.0,",ci37411125,",0.42,ml,,ci,15.0,"6km SSE of Idyllwild, CA",0.08,3,",ci,",reviewed,1538956601370,"M 0.4 - 6km SSE of Idyllwild, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539023101055,https://earthquake.usgs.gov/earthquakes/eventpage/ci37411125 +,,38317368,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38317368&format=geojson,0.1007,,128.0,",ci38317368,",0.69,ml,,ci,13.0,"9km SW of Beaumont, CA",0.12,7,",ci,",reviewed,1538956595290,"M 0.7 - 9km SW of Beaumont, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539022918910,https://earthquake.usgs.gov/earthquakes/eventpage/ci38317368 +,,38317360,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38317360&format=geojson,0.1123,,111.0,",ci38317360,",1.37,ml,,ci,15.0,"6km NNW of Boron, CA",0.2,29,",ci,",reviewed,1538955373500,"M 1.4 Quarry Blast - 6km NNW of Boron, CA",0,quarry blast,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539041767917,https://earthquake.usgs.gov/earthquakes/eventpage/ci38317360 +,,20273107,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273107&format=geojson,,,,",ak20273107,",2.1,ml,,ak,,"64km SSW of Redoubt Volcano, Alaska",1.22,68,",ak,",automatic,1538955148948,"M 2.1 - 64km SSW of Redoubt Volcano, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538955941891,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273107 +,,60300037,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60300037&format=geojson,0.07774,,177.0,",uu60300037,",1.18,ml,,uu,6.0,"20km WNW of Mona, Utah",0.06,21,",uu,",reviewed,1538955143080,"M 1.2 - 20km WNW of Mona, Utah",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539028439600,https://earthquake.usgs.gov/earthquakes/eventpage/uu60300037 +,,20273104,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273104&format=geojson,,,,",ak20273104,",1.3,ml,,ak,,"89km W of Talkeetna, Alaska",0.31,26,",ak,",automatic,1538954349203,"M 1.3 - 89km W of Talkeetna, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538954634357,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273104 +,,61793561,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61793561&format=geojson,0.01465,,225.0,",av61793561,",-0.35,ml,,av,7.0,"100km ESE of King Salmon, Alaska",0.09,0,",av,",reviewed,1538954168950,"M -0.4 - 100km ESE of King Salmon, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539108039690,https://earthquake.usgs.gov/earthquakes/eventpage/av61793561 +,,20273101,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273101&format=geojson,,,,",ak20273101,",1.8,ml,,ak,,"72km SSW of Kotzebue, Alaska",0.52,50,",ak,",automatic,1538953477013,"M 1.8 - 72km SSW of Kotzebue, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538953950170,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273101 +,,38317344,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38317344&format=geojson,0.03027,,39.0,",ci38317344,",1.33,ml,,ci,48.0,"8km ENE of Aguanga, CA",0.17,27,",ci,",reviewed,1538953401930,"M 1.3 - 8km ENE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1539005692730,https://earthquake.usgs.gov/earthquakes/eventpage/ci38317344 +,,20273098,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273098&format=geojson,,,,",ak20273098,",2.2,ml,,ak,,"113km NNW of Arctic Village, Alaska",1.22,74,",ak,",automatic,1538953181636,"M 2.2 - 113km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538953627977,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273098 +,,70637872,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70637872&format=geojson,0.001568,,225.0,",hv70637872,",1.92,md,,hv,11.0,"7km WSW of Volcano, Hawaii",0.25,57,",hv,",automatic,1538952935340,"M 1.9 - 7km WSW of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538953126610,https://earthquake.usgs.gov/earthquakes/eventpage/hv70637872 +,,70806319,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70806319&format=geojson,0.03753,,164.0,",av70806319,",-0.43,ml,,av,4.0,"55km SSW of Redoubt Volcano, Alaska",0.17,0,",av,",reviewed,1538952717960,"M -0.4 - 55km SSW of Redoubt Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539108326520,https://earthquake.usgs.gov/earthquakes/eventpage/av70806319 +,,61427267,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61427267&format=geojson,0.02259,,162.0,",uw61427267,",0.91,ml,,uw,10.0,"22km E of Eatonville, Washington",0.08,13,",uw,",reviewed,1538952263540,"M 0.9 - 22km E of Eatonville, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539046964400,https://earthquake.usgs.gov/earthquakes/eventpage/uw61427267 +,,20273092,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273092&format=geojson,,,,",ak20273092,",1.8,ml,,ak,,"108km NW of Arctic Village, Alaska",0.92,50,",ak,",automatic,1538952046966,"M 1.8 - 108km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538952511023,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273092 +,,73094936,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094936&format=geojson,0.04137,,222.0,",nc73094936,",1.33,md,,nc,18.0,"9km SSW of The Geysers, CA",0.05,27,",nc,",reviewed,1538951396300,"M 1.3 - 9km SSW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539134404377,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094936 +,,20273085,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273085&format=geojson,,,,",ak20273085,",2.1,ml,,ak,,"61km W of Talkeetna, Alaska",0.63,68,",ak,",automatic,1538951155167,"M 2.1 - 61km W of Talkeetna, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538951434188,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273085 +,,60300032,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60300032&format=geojson,0.2405,,115.0,",uu60300032,",1.4,ml,,uu,9.0,"18km E of Soda Springs, Idaho",0.18,30,",uu,",reviewed,1538950848970,"M 1.4 - 18km E of Soda Springs, Idaho",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539027790810,https://earthquake.usgs.gov/earthquakes/eventpage/uu60300032 +,,73094931,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094931&format=geojson,0.03992,,234.0,",nc73094931,",0.98,md,,nc,19.0,"9km SSW of The Geysers, CA",0.05,15,",nc,",reviewed,1538950661220,"M 1.0 - 9km SSW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539122703088,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094931 +,2.2,1000h8in,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h8in&format=geojson,2.468,1.0,46.0,",us1000h8in,",4.9,mb,,us,,"21km NNE of Cortes, Philippines",0.99,370,",us,",reviewed,1538949287630,"M 4.9 - 21km NNE of Cortes, Philippines",0,earthquake,",dyfi,geoserve,origin,phase-data,",480.0,1538951757805,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h8in +,,20273067,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273067&format=geojson,,,,",ak20273067,",1.8,ml,,ak,,"62km W of Cantwell, Alaska",0.66,50,",ak,",automatic,1538947514548,"M 1.8 - 62km W of Cantwell, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538948282982,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273067 +,,37197836,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37197836&format=geojson,0.05268,,70.0,",ci37197836,",0.8,ml,,ci,22.0,"18km ESE of Julian, CA",0.18,10,",ci,",reviewed,1538947328830,"M 0.8 - 18km ESE of Julian, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539025401933,https://earthquake.usgs.gov/earthquakes/eventpage/ci37197836 +,,38317320,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38317320&format=geojson,0.01975,,31.0,",ci38317320,",0.85,ml,,ci,42.0,"9km NE of Aguanga, CA",0.15,11,",ci,",reviewed,1538947325200,"M 0.9 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539024993929,https://earthquake.usgs.gov/earthquakes/eventpage/ci38317320 +,,61427242,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61427242&format=geojson,0.06415,,278.0,",uw61427242,",-0.18,md,,uw,4.0,"21km S of Morton, Washington",0.06,0,",uw,",reviewed,1538946616810,"M -0.2 - 21km S of Morton, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539019222050,https://earthquake.usgs.gov/earthquakes/eventpage/uw61427242 +,1.0,60065823,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=se60065823&format=geojson,0.1372,1.0,137.0,",se60065823,",2.12,md,,se,12.0,"12km SE of Mount Olivet, Kentucky",0.14,69,",se,",reviewed,1538945782760,"M 2.1 - 12km SE of Mount Olivet, Kentucky",0,earthquake,",dyfi,geoserve,origin,phase-data,",-300.0,1539014224761,https://earthquake.usgs.gov/earthquakes/eventpage/se60065823 +,,1000h8i2,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h8i2&format=geojson,4.072,,231.0,",us1000h8i2,",4.5,mb,,us,,"226km ENE of Socorro Island, Mexico",1.09,312,",us,",reviewed,1538945765850,"M 4.5 - 226km ENE of Socorro Island, Mexico",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538946655040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h8i2 +,,73094921,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094921&format=geojson,0.0676,,71.0,",nc73094921,",1.07,md,,nc,12.0,"14km ENE of Alum Rock, CA",0.04,18,",nc,",reviewed,1538945712180,"M 1.1 - 14km ENE of Alum Rock, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539131320672,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094921 +,,73094911,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094911&format=geojson,0.01112,,61.0,",nc73094911,",1.23,md,,nc,26.0,"3km W of Cobb, CA",0.08,23,",nc,",reviewed,1538945129940,"M 1.2 - 3km W of Cobb, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539134464382,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094911 +,,20273061,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273061&format=geojson,,,,",ak20273061,",2.3,ml,,ak,,"75km SSW of Kaktovik, Alaska",0.53,81,",ak,",automatic,1538944852497,"M 2.3 - 75km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538945190308,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273061 +,,38317288,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38317288&format=geojson,0.1658,,94.0,",ci38317288,",1.24,ml,,ci,19.0,"22km SE of Bodfish, CA",0.11,24,",ci,",reviewed,1538943833290,"M 1.2 - 22km SE of Bodfish, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539121248693,https://earthquake.usgs.gov/earthquakes/eventpage/ci38317288 +,,00659948,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659948&format=geojson,0.264,,168.95,",nn00659948,",0.6,ml,,nn,6.0,"14km E of Fernley, Nevada",0.149,6,",nn,",reviewed,1538943498014,"M 0.6 - 14km E of Fernley, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538952794858,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659948 +,,20273031,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273031&format=geojson,,,,",ak20273031,",2.3,ml,,ak,,"123km NW of Arctic Village, Alaska",0.88,81,",ak,",automatic,1538942679376,"M 2.3 - 123km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538943095368,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273031 +,,20273028,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273028&format=geojson,,,,",ak20273028,",1.6,ml,,ak,,"113km NW of Arctic Village, Alaska",1.14,39,",ak,",automatic,1538942471579,"M 1.6 - 113km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538942757778,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273028 +,,73094906,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094906&format=geojson,0.06346,,242.0,",nc73094906,",0.92,md,,nc,19.0,"10km SE of Cloverdale, CA",0.03,13,",nc,",reviewed,1538942443980,"M 0.9 - 10km SE of Cloverdale, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539055142955,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094906 +,4.6,1000h8hi,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h8hi&format=geojson,1.635,33.0,55.0,",us1000h8hi,",5.2,mww,,us,,"16km NNW of Ti Port-de-Paix, Haiti",0.67,431,",us,",reviewed,1538942417310,"M 5.2 - 16km NNW of Ti Port-de-Paix, Haiti",0,earthquake,",dyfi,geoserve,moment-tensor,origin,phase-data,",-300.0,1539101373040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h8hi +,,00659947,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659947&format=geojson,0.274,,182.49,",nn00659947,",1.5,ml,,nn,6.0,"20km ENE of Fernley, Nevada",0.1541,35,",nn,",reviewed,1538941487449,"M 1.5 - 20km ENE of Fernley, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538952424773,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659947 +,,38317272,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38317272&format=geojson,0.01882,,34.0,",ci38317272,",1.18,ml,,ci,43.0,"3km ESE of Lake Henshaw, CA",0.2,21,",ci,",reviewed,1538941161230,"M 1.2 - 3km ESE of Lake Henshaw, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539005695737,https://earthquake.usgs.gov/earthquakes/eventpage/ci38317272 +,,20273023,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273023&format=geojson,,,,",ak20273023,",1.0,ml,,ak,,"33km SSW of Redoubt Volcano, Alaska",0.46,15,",ak,",automatic,1538940684920,"M 1.0 - 33km SSW of Redoubt Volcano, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538941084341,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273023 +,,1000h8h4,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h8h4&format=geojson,2.801,,106.0,",us1000h8h4,",4.4,mb,,us,,"54km S of Sinarharapan, Indonesia",1.26,298,",us,",reviewed,1538939821920,"M 4.4 - 54km S of Sinarharapan, Indonesia",0,earthquake,",geoserve,origin,phase-data,",420.0,1538941101040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h8h4 +,,70637612,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70637612&format=geojson,0.0266,,286.0,",hv70637612,",1.76,md,,hv,43.0,"3km SE of Leilani Estates, Hawaii",0.11,48,",hv,",automatic,1538939800600,"M 1.8 - 3km SE of Leilani Estates, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538939992050,https://earthquake.usgs.gov/earthquakes/eventpage/hv70637612 +,,61427222,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61427222&format=geojson,0.126,,263.0,",uw61427222,",0.08,md,,uw,3.0,"7km NNE of Seabeck, Washington",0.05,0,",uw,",reviewed,1538939750840,"M 0.1 - 7km NNE of Seabeck, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539019656570,https://earthquake.usgs.gov/earthquakes/eventpage/uw61427222 +,,20273013,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273013&format=geojson,,,,",ak20273013,",1.7,ml,,ak,,"102km W of Cantwell, Alaska",1.23,44,",ak,",automatic,1538939737580,"M 1.7 - 102km W of Cantwell, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538940395743,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273013 +,,20273012,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273012&format=geojson,,,,",ak20273012,",1.7,ml,,ak,,"65km ENE of Cantwell, Alaska",1.24,44,",ak,",automatic,1538939700747,"M 1.7 - 65km ENE of Cantwell, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538940508521,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273012 +,,20273010,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273010&format=geojson,,,,",ak20273010,",1.4,ml,,ak,,"123km NNW of Arctic Village, Alaska",1.01,30,",ak,",automatic,1538939357460,"M 1.4 - 123km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538939585539,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273010 +,,38317256,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38317256&format=geojson,0.05146,,71.0,",ci38317256,",0.84,ml,,ci,36.0,"18km ESE of Julian, CA",0.18,11,",ci,",reviewed,1538939313870,"M 0.8 - 18km ESE of Julian, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539024249675,https://earthquake.usgs.gov/earthquakes/eventpage/ci38317256 +,2.0,70637597,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70637597&format=geojson,0.04225,3.0,123.0,",hv70637597,us1000h8gv,",3.32,ml,,hv,40.0,"15km SE of Volcano, Hawaii",0.11,170,",hv,us,",reviewed,1538938753950,"M 3.3 - 15km SE of Volcano, Hawaii",0,earthquake,",dyfi,geoserve,origin,phase-data,",-600.0,1539027934207,https://earthquake.usgs.gov/earthquakes/eventpage/hv70637597 +,,73094901,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094901&format=geojson,0.006345,,101.0,",nc73094901,",0.88,md,,nc,11.0,"7km NW of The Geysers, CA",0.02,12,",nc,",automatic,1538938518690,"M 0.9 - 7km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538941082991,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094901 +,,00659914,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659914&format=geojson,0.17,,158.39,",nn00659914,",0.8,ml,,nn,9.0,"61km SSW of Goldfield, Nevada",0.1409,10,",nn,",reviewed,1538938215442,"M 0.8 - 61km SSW of Goldfield, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538945951074,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659914 +,,00659946,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659946&format=geojson,0.09,,164.47,",nn00659946,",0.8,ml,,nn,5.0,"16km ENE of Hawthorne, Nevada",0.1321,10,",nn,",reviewed,1538938130090,"M 0.8 - 16km ENE of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538951686994,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659946 +,,20273003,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273003&format=geojson,,,,",ak20273003,",1.2,ml,,ak,,"17km SSW of Y, Alaska",0.59,22,",ak,",automatic,1538937598605,"M 1.2 - 17km SSW of Y, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538938016086,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273003 +,,20273001,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273001&format=geojson,,,,",ak20273001,",1.6,ml,,ak,,"28km ENE of Cantwell, Alaska",0.86,39,",ak,",automatic,1538937336294,"M 1.6 - 28km ENE of Cantwell, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538937545852,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273001 +,,38317248,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38317248&format=geojson,0.005504,,88.0,",ci38317248,",0.37,ml,,ci,21.0,"10km NE of Aguanga, CA",0.12,2,",ci,",reviewed,1538937060930,"M 0.4 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539027388269,https://earthquake.usgs.gov/earthquakes/eventpage/ci38317248 +,,00659945,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659945&format=geojson,0.033,,79.49,",nn00659945,",0.1,ml,,nn,9.0,"4km WSW of Tahoe Vista, California",0.0913,0,",nn,",reviewed,1538936674411,"M 0.1 - 4km WSW of Tahoe Vista, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538951501773,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659945 +,,20272997,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272997&format=geojson,,,,",ak20272997,",1.7,ml,,ak,,"79km SW of Homer, Alaska",0.4,44,",ak,",automatic,1538936551272,"M 1.7 - 79km SW of Homer, Alaska",0,earthquake,",geoserve,origin,",-600.0,1538936759719,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272997 +,4.3,1000h8gb,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h8gb&format=geojson,2.637,17.0,63.0,",us1000h8gb,",5.1,mww,,us,,"14km ENE of Sambelia, Indonesia",1.28,407,",us,",reviewed,1538935041200,"M 5.1 - 14km ENE of Sambelia, Indonesia",1,earthquake,",dyfi,geoserve,origin,phase-data,",480.0,1539213200944,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h8gb +,,20272985,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272985&format=geojson,,,,",ak20272985,",2.2,ml,,ak,,"62km SSW of Adak, Alaska",0.59,74,",ak,",reviewed,1538934323547,"M 2.2 - 62km SSW of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-720.0,1538950587614,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272985 +,,80312749,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80312749&format=geojson,0.085,,118.0,",mb80312749,",1.18,ml,,mb,12.0,"11km ESE of Lincoln, Montana",0.21,21,",mb,",reviewed,1538934148950,"M 1.2 - 11km ESE of Lincoln, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539010991520,https://earthquake.usgs.gov/earthquakes/eventpage/mb80312749 +,,2018280017,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018280017&format=geojson,0.1307,,302.0,",pr2018280017,",1.47,md,,pr,3.0,"10km SSE of Pole Ojea, Puerto Rico",0.04,33,",pr,",reviewed,1538934147620,"M 1.5 - 10km SSE of Pole Ojea, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538943206706,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018280017 +green,,1000h8g6,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h8g6&format=geojson,1.597,,50.0,",us1000h8g6,",5.5,mww,2.08,us,,"181km NW of Raoul Island, New Zealand",1.47,465,",us,",reviewed,1538934141320,"M 5.5 - 181km NW of Raoul Island, New Zealand",0,earthquake,",geoserve,losspager,moment-tensor,origin,phase-data,shakemap,",-720.0,1539023229040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h8g6 +,,38317232,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38317232&format=geojson,0.3077,,109.0,",nn00659907,ci38317232,",1.61,ml,,ci,28.0,"39km SSW of Furnace Creek, CA",0.15,40,",nn,ci,",reviewed,1538934003970,"M 1.6 - 39km SSW of Furnace Creek, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539041600028,https://earthquake.usgs.gov/earthquakes/eventpage/ci38317232 +,,20272982,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272982&format=geojson,,,,",ak20272982,",1.4,ml,,ak,,"3km NNW of Glennallen, Alaska",0.76,30,",ak,",automatic,1538933743015,"M 1.4 - 3km NNW of Glennallen, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538933975451,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272982 +,,20272979,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272979&format=geojson,,,,",ak20272979,",1.6,ml,,ak,,"28km ENE of Cantwell, Alaska",1.11,39,",ak,",automatic,1538933572933,"M 1.6 - 28km ENE of Cantwell, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538933862124,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272979 +,,20272977,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272977&format=geojson,,,,",ak20272977,",1.2,ml,,ak,,"3km ESE of Big Lake, Alaska",0.72,22,",ak,",automatic,1538933260185,"M 1.2 - 3km ESE of Big Lake, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538933535506,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272977 +,,61793436,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61793436&format=geojson,0.02386,,146.0,",av61793436,",0.75,ml,,av,4.0,"16km NNE of Atka, Alaska",0.2,9,",av,",reviewed,1538932999100,"M 0.8 - 16km NNE of Atka, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539107597450,https://earthquake.usgs.gov/earthquakes/eventpage/av61793436 +,,73094891,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094891&format=geojson,0.007187,,57.0,",nc73094891,",1.46,md,,nc,12.0,"5km W of Mammoth Lakes, CA",0.05,33,",nc,",reviewed,1538932905540,"M 1.5 - 5km W of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539113522217,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094891 +,,00659943,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659943&format=geojson,0.321,,108.65,",nn00659943,",1.2,ml,,nn,7.0,"30km SE of Yerington, Nevada",0.0936,22,",nn,",reviewed,1538932005168,"M 1.2 - 30km SE of Yerington, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538950578061,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659943 +,,73094886,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094886&format=geojson,0.005161,,66.0,",nc73094886,",0.48,md,,nc,10.0,"5km W of Mammoth Lakes, CA",0.07,4,",nc,",reviewed,1538931596970,"M 0.5 - 5km W of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539104824411,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094886 +,,61427202,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61427202&format=geojson,0.02308,,177.0,",uw61427202,",0.45,ml,,uw,6.0,"27km NNW of Packwood, Washington",0.03,3,",uw,",reviewed,1538931438700,"M 0.5 - 27km NNW of Packwood, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539019404030,https://earthquake.usgs.gov/earthquakes/eventpage/uw61427202 +,,73094881,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094881&format=geojson,0.007117,,60.0,",nc73094881,",-0.02,md,,nc,9.0,"5km W of Mammoth Lakes, CA",0.06,0,",nc,",reviewed,1538931418210,"M -0.0 - 5km W of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539103515309,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094881 +,,00659942,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659942&format=geojson,0.128,,158.12,",nn00659942,",0.9,ml,,nn,13.0,"27km WSW of Truckee, California",0.1894,12,",nn,",reviewed,1538929783683,"M 0.9 - 27km WSW of Truckee, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538950023572,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659942 +,,73094871,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094871&format=geojson,0.03982,,64.0,",nc73094871,",1.06,md,,nc,24.0,"14km ESE of Alum Rock, CA",0.04,17,",nc,",reviewed,1538929456020,"M 1.1 - 14km ESE of Alum Rock, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539139022907,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094871 +,,20272961,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272961&format=geojson,,,,",ak20272961,",1.4,ml,,ak,,"71km NNE of Sutton-Alpine, Alaska",0.9,30,",ak,",automatic,1538929371128,"M 1.4 - 71km NNE of Sutton-Alpine, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538930465361,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272961 +,,70806314,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70806314&format=geojson,0.06484,,200.0,",av70806314,",-0.75,ml,,av,6.0,"102km NW of Larsen Bay, Alaska",0.17,0,",av,",reviewed,1538929057820,"M -0.8 - 102km NW of Larsen Bay, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539107274030,https://earthquake.usgs.gov/earthquakes/eventpage/av70806314 +,,20272958,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272958&format=geojson,,,,",ak20272958,",1.8,ml,,ak,,"82km S of Kaktovik, Alaska",1.02,50,",ak,",automatic,1538928161483,"M 1.8 - 82km S of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538928583434,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272958 +,,73094866,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094866&format=geojson,0.01156,,101.0,",nc73094866,",0.89,md,,nc,10.0,"3km NE of The Geysers, CA",0.02,12,",nc,",automatic,1538927940690,"M 0.9 - 3km NE of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538934363276,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094866 +,,20272953,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272953&format=geojson,,,,",ak20272953,",1.6,ml,,ak,,"26km SE of Sterling, Alaska",0.49,39,",ak,",automatic,1538927768624,"M 1.6 - 26km SE of Sterling, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538928178731,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272953 +,,20272951,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272951&format=geojson,,,,",ak20272951,",1.6,ml,,ak,,"93km S of Ruby, Alaska",0.56,39,",ak,",automatic,1538927485772,"M 1.6 - 93km S of Ruby, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538928066003,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272951 +,,73094851,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094851&format=geojson,0.006952,,57.0,",nc73094851,",0.4,md,,nc,21.0,"5km W of Mammoth Lakes, CA",0.05,2,",nc,",reviewed,1538927366560,"M 0.4 - 5km W of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539112383112,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094851 +,,20272948,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272948&format=geojson,,,,",ak20272948,",1.8,ml,,ak,,"118km N of Arctic Village, Alaska",1.02,50,",ak,",automatic,1538927260728,"M 1.8 - 118km N of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538928065721,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272948 +,,73094846,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094846&format=geojson,0.006279,,65.0,",nc73094846,",0.79,md,,nc,30.0,"5km WNW of Cobb, CA",0.04,10,",nc,",reviewed,1538926902210,"M 0.8 - 5km WNW of Cobb, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539133082250,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094846 +,,20272942,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272942&format=geojson,,,,",ak20272942,",2.1,ml,,ak,,"71km SW of Kaktovik, Alaska",1.03,68,",ak,",automatic,1538926551651,"M 2.1 - 71km SW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538926755679,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272942 +,2.7,73094841,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094841&format=geojson,0.1601,1.0,106.0,",nc73094841,",1.63,md,,nc,41.0,"2km ENE of Angwin, CA",0.14,41,",nc,",reviewed,1538926196120,"M 1.6 - 2km ENE of Angwin, CA",0,earthquake,",dyfi,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539138302753,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094841 +,,73094836,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094836&format=geojson,0.1037,,103.0,",nc73094836,",1.84,md,,nc,42.0,"14km NE of San Simeon, CA",0.08,52,",nc,",reviewed,1538925945160,"M 1.8 - 14km NE of San Simeon, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539145322863,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094836 +,,38317184,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38317184&format=geojson,0.1674,,251.0,",ci38317184,",1.26,ml,,ci,27.0,"16km WSW of La Jolla, CA",0.15,24,",ci,",reviewed,1538925506860,"M 1.3 - 16km WSW of La Jolla, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539023834845,https://earthquake.usgs.gov/earthquakes/eventpage/ci38317184 +,2.7,20272929,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272929&format=geojson,,1.0,,",ak20272929,",2.3,ml,,ak,,"126km SSW of Old Crow, Canada",0.44,82,",ak,",automatic,1538925366449,"M 2.3 - 126km SSW of Old Crow, Canada",0,earthquake,",dyfi,geoserve,origin,",-540.0,1538926928626,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272929 +,,60300012,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60300012&format=geojson,0.2514,,146.0,",uu60300012,",1.77,md,,uu,10.0,"44km WSW of Fillmore, Utah",0.12,48,",uu,",reviewed,1538924936490,"M 1.8 - 44km WSW of Fillmore, Utah",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539024241800,https://earthquake.usgs.gov/earthquakes/eventpage/uu60300012 +,,20272789,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272789&format=geojson,,,,",ak20272789,",2.2,ml,,ak,,"114km NNW of Arctic Village, Alaska",0.71,74,",ak,",automatic,1538924758079,"M 2.2 - 114km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538925067018,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272789 +,,20272785,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272785&format=geojson,,,,",ak20272785,",1.8,ml,,ak,,"58km SSW of Homer, Alaska",0.47,50,",ak,",automatic,1538923939739,"M 1.8 - 58km SSW of Homer, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538924152126,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272785 +,,1000hb41,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000hb41&format=geojson,1.308,,154.0,",us1000hb41,",4.1,mb,,us,,"89km NE of Miyako, Japan",0.81,259,",us,",reviewed,1538923896600,"M 4.1 - 89km NE of Miyako, Japan",0,earthquake,",geoserve,origin,phase-data,",600.0,1539532511040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000hb41 +,,38317176,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38317176&format=geojson,0.00472,,97.0,",ci38317176,",0.37,ml,,ci,19.0,"10km NE of Aguanga, CA",0.1,2,",ci,",reviewed,1538923479870,"M 0.4 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539023928540,https://earthquake.usgs.gov/earthquakes/eventpage/ci38317176 +,,20272780,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272780&format=geojson,,,,",ak20272780,",1.8,ml,,ak,,"74km SE of Old Iliamna, Alaska",0.8,50,",ak,",automatic,1538923220814,"M 1.8 - 74km SE of Old Iliamna, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538923513877,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272780 +,,61793341,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61793341&format=geojson,0.01376,,113.0,",av61793341,",-0.52,ml,,av,4.0,"41km ENE of Adak, Alaska",0.06,0,",av,",reviewed,1538922730360,"M -0.5 - 41km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539106672150,https://earthquake.usgs.gov/earthquakes/eventpage/av61793341 +,,1000hb40,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000hb40&format=geojson,5.193,,77.0,",us1000hb40,",4.5,mb,,us,,"34km E of Ramhormoz, Iran",0.76,312,",us,",reviewed,1538922323890,"M 4.5 - 34km E of Ramhormoz, Iran",0,earthquake,",geoserve,origin,phase-data,",210.0,1539530990040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000hb40 +,,20272765,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272765&format=geojson,,,,",ak20272765,",1.3,ml,,ak,,"40km ENE of Y, Alaska",0.77,26,",ak,",automatic,1538922268170,"M 1.3 - 40km ENE of Y, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538923007039,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272765 +,,20272763,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272763&format=geojson,,,,",ak20272763,",2.0,ml,,ak,,"108km NW of Arctic Village, Alaska",0.92,62,",ak,",automatic,1538922216758,"M 2.0 - 108km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538922533056,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272763 +,,60300002,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60300002&format=geojson,0.05596,,119.0,",uu60300002,",1.84,ml,,uu,8.0,"10km NE of Hildale, Utah",0.1,52,",uu,",reviewed,1538921890300,"M 1.8 - 10km NE of Hildale, Utah",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539023439160,https://earthquake.usgs.gov/earthquakes/eventpage/uu60300002 +,,20272758,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272758&format=geojson,,,,",ak20272758,",2.0,ml,,ak,,"107km NW of Arctic Village, Alaska",1.09,62,",ak,",automatic,1538921729998,"M 2.0 - 107km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538922247774,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272758 +,1.0,1000h8ex,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h8ex&format=geojson,0.115,1.0,75.0,",us1000h8ex,",4.6,mb,,us,,"53km W of Ovalle, Chile",0.36,326,",us,",reviewed,1538921640770,"M 4.6 - 53km W of Ovalle, Chile",0,earthquake,",dyfi,geoserve,origin,phase-data,",-240.0,1539527864952,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h8ex +,,20272755,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272755&format=geojson,,,,",ak20272755,",2.3,ml,,ak,,"108km NW of Arctic Village, Alaska",0.94,81,",ak,",automatic,1538921570444,"M 2.3 - 108km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538922247473,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272755 +,,2018280016,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018280016&format=geojson,1.0452,,272.0,",pr2018280016,us1000h8fn,",3.16,md,,pr,14.0,"87km N of San Juan, Puerto Rico",0.37,154,",pr,us,",reviewed,1538920632930,"M 3.2 - 87km N of San Juan, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1539093059040,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018280016 +,2.0,1000h8et,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h8et&format=geojson,0.592,5.0,44.0,",us1000h8et,",4.9,mww,,us,,"45km SW of Jarm, Afghanistan",0.68,370,",us,",reviewed,1538920359870,"M 4.9 - 45km SW of Jarm, Afghanistan",0,earthquake,",dyfi,geoserve,origin,phase-data,",270.0,1539527691580,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h8et +,,20272739,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272739&format=geojson,,,,",ak20272739,",2.2,ml,,ak,,"133km NW of Arctic Village, Alaska",0.74,74,",ak,",automatic,1538920134703,"M 2.2 - 133km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538920490746,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272739 +,0.0,73094821,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094821&format=geojson,0.01174,0.0,53.0,",nc73094821,",1.55,md,,nc,35.0,"4km W of Cobb, CA",0.05,37,",nc,",reviewed,1538919947170,"M 1.6 - 4km W of Cobb, CA",0,earthquake,",dyfi,focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539143823735,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094821 +,,00659941,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659941&format=geojson,0.417,,155.04,",nn00659941,",1.4,ml,,nn,7.0,"20km NW of Hawthorne, Nevada",0.0919,30,",nn,",reviewed,1538919761346,"M 1.4 - 20km NW of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538949466520,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659941 +,,00659898,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659898&format=geojson,0.332,,116.75,",nn00659898,",1.6,ml,,nn,17.0,"77km S of Currant, Nevada",0.1764,39,",nn,",reviewed,1538919380077,"M 1.6 - 77km S of Currant, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538933961127,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659898 +,,61793311,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61793311&format=geojson,0.1101,,223.0,",av61793311,",0.76,ml,,av,10.0,"99km NNW of Larsen Bay, Alaska",0.22,9,",av,",reviewed,1538919358130,"M 0.8 - 99km NNW of Larsen Bay, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539105978390,https://earthquake.usgs.gov/earthquakes/eventpage/av61793311 +,,00659940,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659940&format=geojson,0.114,,141.12,",nn00659940,",0.5,ml,,nn,8.0,"17km ENE of Spanish Springs, Nevada",0.1341,4,",nn,",reviewed,1538919165863,"M 0.5 - 17km ENE of Spanish Springs, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538948912492,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659940 +,,38317160,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38317160&format=geojson,0.02775,,147.0,",ci38317160,",0.43,ml,,ci,18.0,"4km SW of Idyllwild, CA",0.07,3,",ci,",reviewed,1538918871630,"M 0.4 - 4km SW of Idyllwild, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539022436780,https://earthquake.usgs.gov/earthquakes/eventpage/ci38317160 +,,1000hb3z,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000hb3z&format=geojson,5.316,,140.0,",us1000hb3z,",4.1,mb,,us,,"128km ESE of Ndoi Island, Fiji",0.71,259,",us,",reviewed,1538918217280,"M 4.1 - 128km ESE of Ndoi Island, Fiji",0,earthquake,",geoserve,origin,phase-data,",-720.0,1539525320040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000hb3z +,,1000h8ek,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h8ek&format=geojson,0.626,,47.0,",us1000h8ek,",4.3,mb,,us,,"13km ENE of Tokoroa, New Zealand",0.76,284,",us,",reviewed,1538918126990,"M 4.3 - 13km ENE of Tokoroa, New Zealand",0,earthquake,",geoserve,origin,phase-data,",720.0,1539524240040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h8ek +,,60299997,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60299997&format=geojson,0.0723,,72.0,",uu60299997,",1.46,ml,,uu,9.0,"42km ENE of Old Faithful Geyser, Wyoming",0.08,33,",uu,",reviewed,1538918013400,"M 1.5 - 42km ENE of Old Faithful Geyser, Wyoming",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539027265140,https://earthquake.usgs.gov/earthquakes/eventpage/uu60299997 +,,37197828,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37197828&format=geojson,0.06763,,168.0,",ci37197828,",1.24,ml,,ci,8.0,"6km E of Heber, CA",0.31,24,",ci,",reviewed,1538917216850,"M 1.2 - 6km E of Heber, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539023484797,https://earthquake.usgs.gov/earthquakes/eventpage/ci37197828 +,,38317152,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38317152&format=geojson,0.01608,,49.0,",ci38317152,",1.59,ml,,ci,25.0,"7km W of Holtville, CA",0.29,39,",ci,",reviewed,1538917196670,"M 1.6 - 7km W of Holtville, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539022878061,https://earthquake.usgs.gov/earthquakes/eventpage/ci38317152 +,,00659939,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659939&format=geojson,0.112,,162.89,",nn00659939,",1.2,ml,,nn,7.0,"26km WSW of Hawthorne, Nevada",0.1012,22,",nn,",reviewed,1538916446933,"M 1.2 - 26km WSW of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538948357849,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659939 +,,73094816,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094816&format=geojson,0.02554,,140.0,",nc73094816,",1.4,md,,nc,20.0,"8km ENE of Pinnacles, CA",0.12,30,",nc,",reviewed,1538916042350,"M 1.4 - 8km ENE of Pinnacles, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539148683192,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094816 +,,73094811,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094811&format=geojson,0.002808,,70.0,",nc73094811,",0.65,md,,nc,20.0,"7km NW of The Geysers, CA",0.02,6,",nc,",reviewed,1538915774840,"M 0.7 - 7km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539130504848,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094811 +,,73094806,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094806&format=geojson,0.001275,,46.0,",nc73094806,",1.38,md,,nc,33.0,"7km NW of The Geysers, CA",0.05,29,",nc,",reviewed,1538915736030,"M 1.4 - 7km NW of The Geysers, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539154682826,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094806 +,,38317144,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38317144&format=geojson,0.004839,,48.0,",ci38317144,",0.66,ml,,ci,25.0,"10km NE of Aguanga, CA",0.14,7,",ci,",reviewed,1538915105400,"M 0.7 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539006061910,https://earthquake.usgs.gov/earthquakes/eventpage/ci38317144 +,,80313219,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80313219&format=geojson,0.21,,176.0,",mb80313219,",0.53,ml,,mb,4.0,"17km S of Whitehall, Montana",0.14,4,",mb,",reviewed,1538914925090,"M 0.5 - 17km S of Whitehall, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539129240010,https://earthquake.usgs.gov/earthquakes/eventpage/mb80313219 +,,60299992,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60299992&format=geojson,0.03054,,128.0,",uu60299992,",1.19,ml,,uu,10.0,"24km NE of West Yellowstone, Montana",0.09,22,",uu,",reviewed,1538914504800,"M 1.2 - 24km NE of West Yellowstone, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539023190410,https://earthquake.usgs.gov/earthquakes/eventpage/uu60299992 +,,38317136,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38317136&format=geojson,0.02712,,37.0,",ci38317136,",0.76,ml,,ci,35.0,"9km NE of Aguanga, CA",0.14,9,",ci,",reviewed,1538914496920,"M 0.8 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1539006122800,https://earthquake.usgs.gov/earthquakes/eventpage/ci38317136 +,,1000h8ee,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h8ee&format=geojson,12.097,,87.0,",us1000h8ee,",4.6,mb,,us,,Southwest Indian Ridge,0.38,326,",us,",reviewed,1538913909730,M 4.6 - Southwest Indian Ridge,0,earthquake,",geoserve,origin,phase-data,",180.0,1538915007040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h8ee +,,20272727,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272727&format=geojson,,,,",ak20272727,",1.8,ml,,ak,,"72km WSW of Talkeetna, Alaska",0.34,50,",ak,",automatic,1538913607737,"M 1.8 - 72km WSW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538914293372,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272727 +,,00659937,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659937&format=geojson,0.033,,59.06,",nn00659937,",-0.1,ml,,nn,21.0,"58km E of Beatty, Nevada",0.1085,0,",nn,",reviewed,1538913366990,"M -0.1 - 58km E of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538947618836,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659937 +,,2018280015,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018280015&format=geojson,0.0464,,164.0,",pr2018280015,",1.55,md,,pr,3.0,"1km SSE of Palmarejo, Puerto Rico",0.31,37,",pr,",reviewed,1538913272600,"M 1.6 - 1km SSE of Palmarejo, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538929006660,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018280015 +,,20272725,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272725&format=geojson,,,,",ak20272725,",1.3,ml,,ak,,"103km SE of Kobuk, Alaska",0.88,26,",ak,",automatic,1538912076368,"M 1.3 - 103km SE of Kobuk, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538912540079,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272725 +,,00659936,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659936&format=geojson,0.057,,136.22,",nn00659936,",-0.1,ml,,nn,10.0,"46km ESE of Beatty, Nevada",0.1583,0,",nn,",reviewed,1538911779251,"M -0.1 - 46km ESE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538947061102,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659936 +,,20272722,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272722&format=geojson,,,,",ak20272722,",1.4,ml,,ak,,"51km WSW of Talkeetna, Alaska",0.55,30,",ak,",automatic,1538911102585,"M 1.4 - 51km WSW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538911492712,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272722 +,,1000h8e2,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h8e2&format=geojson,4.769,,69.0,",us1000h8e2,",4.6,mb,,us,,"58km SW of Urunchi, China",1.43,326,",us,",reviewed,1538910941650,"M 4.6 - 58km SW of Urunchi, China",0,earthquake,",geoserve,origin,phase-data,",480.0,1538912518040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h8e2 +,,73094801,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094801&format=geojson,0.03873,,139.0,",nc73094801,",1.42,md,,nc,22.0,"22km NE of San Lucas, CA",0.06,31,",nc,",reviewed,1538910897300,"M 1.4 - 22km NE of San Lucas, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539132783219,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094801 +,,80313214,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80313214&format=geojson,0.085,,115.0,",mb80313214,",1.15,ml,,mb,9.0,"11km ESE of Lincoln, Montana",0.08,20,",mb,",reviewed,1538910778560,"M 1.2 - 11km ESE of Lincoln, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539128998410,https://earthquake.usgs.gov/earthquakes/eventpage/mb80313214 +,,20272720,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272720&format=geojson,,,,",ak20272720,",1.6,ml,,ak,,"42km W of Talkeetna, Alaska",0.28,39,",ak,",automatic,1538910165523,"M 1.6 - 42km W of Talkeetna, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538910446762,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272720 +,,00659935,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659935&format=geojson,0.095,,196.39,",nn00659935,",0.6,ml,,nn,6.0,"40km SSE of Hawthorne, Nevada",0.0823,6,",nn,",reviewed,1538909411726,"M 0.6 - 40km SSE of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538946504867,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659935 +,,20272713,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272713&format=geojson,,,,",ak20272713,",1.4,ml,,ak,,"46km NNE of Yakutat, Alaska",0.63,30,",ak,",automatic,1538909173368,"M 1.4 - 46km NNE of Yakutat, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538909832764,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272713 +,,70637067,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70637067&format=geojson,0.01044,,89.0,",hv70637067,",1.73,md,,hv,44.0,"4km SSE of Pahala, Hawaii",0.09,46,",hv,",reviewed,1538909133530,"M 1.7 - 4km SSE of Pahala, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539217678940,https://earthquake.usgs.gov/earthquakes/eventpage/hv70637067 +,,70806294,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70806294&format=geojson,0.08274,,256.0,",av70806294,",0.33,ml,,av,6.0,"31km W of Unalaska, Alaska",0.32,2,",av,",reviewed,1538909027830,"M 0.3 - 31km W of Unalaska, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539105499130,https://earthquake.usgs.gov/earthquakes/eventpage/av70806294 +,,20272704,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272704&format=geojson,,,,",ak20272704,",1.0,ml,,ak,,"21km WSW of Big Lake, Alaska",0.53,15,",ak,",automatic,1538908364736,"M 1.0 - 21km WSW of Big Lake, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538908557035,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272704 +,,73094796,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094796&format=geojson,0.0531,,159.0,",nc73094796,",1.29,md,,nc,37.0,"11km SW of The Geysers, CA",0.07,26,",nc,",reviewed,1538907454850,"M 1.3 - 11km SW of The Geysers, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539142203589,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094796 +,,00659921,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659921&format=geojson,0.145,,239.14,",nn00659921,",0.5,ml,,nn,6.0,"27km N of Cold Springs, Nevada",0.1576,4,",nn,",reviewed,1538907187571,"M 0.5 - 27km N of Cold Springs, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538942635465,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659921 +,,70636997,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70636997&format=geojson,0.007016,,142.0,",hv70636997,",0.63,md,,hv,15.0,"13km S of Fern Acres, Hawaii",0.1,6,",hv,",reviewed,1538907051940,"M 0.6 - 13km S of Fern Acres, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539297300360,https://earthquake.usgs.gov/earthquakes/eventpage/hv70636997 +,,70636972,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70636972&format=geojson,0.006311,,212.0,",hv70636972,",1.82,md,,hv,10.0,"5km W of Volcano, Hawaii",0.19,51,",hv,",automatic,1538906251900,"M 1.8 - 5km W of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538906437240,https://earthquake.usgs.gov/earthquakes/eventpage/hv70636972 +,,20272697,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272697&format=geojson,,,,",ak20272697,",2.1,ml,,ak,,"125km NNW of Arctic Village, Alaska",1.04,68,",ak,",automatic,1538906051021,"M 2.1 - 125km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538906326029,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272697 +,,2018280013,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018280013&format=geojson,0.2579,,313.0,",pr2018280013,",2.37,md,,pr,4.0,"24km N of Isabela, Puerto Rico",0.44,86,",pr,",reviewed,1538906030040,"M 2.4 - 24km N of Isabela, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538911782183,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018280013 +,,73094791,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094791&format=geojson,0.002571,,69.0,",nc73094791,",0.74,md,,nc,10.0,"6km WNW of Cobb, CA",0.02,8,",nc,",automatic,1538905854070,"M 0.7 - 6km WNW of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538907783638,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094791 +,,70636952,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70636952&format=geojson,0.004085,,60.0,",hv70636952,",1.78,ml,,hv,26.0,"4km WSW of Volcano, Hawaii",0.07,49,",hv,",reviewed,1538905579690,"M 1.8 - 4km WSW of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539135203870,https://earthquake.usgs.gov/earthquakes/eventpage/hv70636952 +,,20272694,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272694&format=geojson,,,,",ak20272694,",1.0,ml,,ak,,"49km E of Lazy Mountain, Alaska",1.3,15,",ak,",automatic,1538905577260,"M 1.0 - 49km E of Lazy Mountain, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538906183609,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272694 +,,1000h8dp,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h8dp&format=geojson,1.36,,66.0,",us1000h8dp,",5.0,mb,,us,,"157km ENE of Georgetown, Saint Helena",0.95,385,",us,",reviewed,1538905468640,"M 5.0 - 157km ENE of Georgetown, Saint Helena",0,earthquake,",geoserve,origin,phase-data,",-60.0,1538906466040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h8dp +,,20272685,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272685&format=geojson,,,,",ak20272685,",2.0,ml,,ak,,"60km WNW of Valdez, Alaska",0.81,62,",ak,",automatic,1538904745368,"M 2.0 - 60km WNW of Valdez, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538905607447,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272685 +,,20272682,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272682&format=geojson,,,,",ak20272682,",1.6,ml,,ak,,"59km WNW of Valdez, Alaska",0.59,39,",ak,",automatic,1538904694743,"M 1.6 - 59km WNW of Valdez, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538905389975,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272682 +,,61427182,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61427182&format=geojson,0.07003,,220.0,",uw61427182,",0.77,ml,,uw,5.0,"4km WNW of Chico, Washington",0.03,9,",uw,",reviewed,1538904672890,"M 0.8 - 4km WNW of Chico, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539020075400,https://earthquake.usgs.gov/earthquakes/eventpage/uw61427182 +,,2018280008,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018280008&format=geojson,1.1211,,343.0,",pr2018280008,",3.11,md,,pr,6.0,"46km N of Charlotte Amalie, U.S. Virgin Islands",0.26,149,",pr,",reviewed,1538904482500,"M 3.1 - 46km N of Charlotte Amalie, U.S. Virgin Islands",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538912300976,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018280008 +green,3.1,20272669,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272669&format=geojson,,2.0,,",ak20272669,at00pg8275,us1000h8de,",4.0,ml,4.57,ak,,"60km WNW of Valdez, Alaska",0.79,247,",ak,at,us,",reviewed,1538904354275,"M 4.0 - 60km WNW of Valdez, Alaska",1,earthquake,",dyfi,geoserve,impact-link,losspager,moment-tensor,origin,phase-data,shakemap,",-540.0,1538938071193,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272669 +,,20272664,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272664&format=geojson,,,,",ak20272664,",2.2,ml,,ak,,"46km SSW of Kaktovik, Alaska",0.92,74,",ak,",automatic,1538903942393,"M 2.2 - 46km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538904224200,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272664 +,,73094786,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094786&format=geojson,0.009764,,94.0,",nc73094786,",0.64,md,,nc,9.0,"11km E of Mammoth Lakes, CA",0.02,6,",nc,",reviewed,1538903862380,"M 0.6 - 11km E of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539103683302,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094786 +,,20272659,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272659&format=geojson,,,,",ak20272659,",1.7,ml,,ak,,"160km SSE of Kotzebue, Alaska",0.62,44,",ak,",automatic,1538903602354,"M 1.7 - 160km SSE of Kotzebue, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538903982485,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272659 +,,60299987,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60299987&format=geojson,0.2308,,75.0,",uu60299987,",2.62,ml,,uu,36.0,"20km NE of Randolph, Utah",0.26,106,",uu,",reviewed,1538903549080,"M 2.6 - 20km NE of Randolph, Utah",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539019505550,https://earthquake.usgs.gov/earthquakes/eventpage/uu60299987 +,,20272657,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272657&format=geojson,,,,",ak20272657,",1.5,ml,,ak,,"23km ESE of Cohoe, Alaska",0.65,35,",ak,",automatic,1538903362009,"M 1.5 - 23km ESE of Cohoe, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538903651563,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272657 +,,73094781,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094781&format=geojson,0.006969,,69.0,",nc73094781,",1.02,md,,nc,15.0,"9km NW of The Geysers, CA",0.06,16,",nc,",automatic,1538902645020,"M 1.0 - 9km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538905563113,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094781 +,,70636902,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70636902&format=geojson,0.002608,,144.0,",hv70636902,",1.01,md,,hv,18.0,"13km SSW of Fern Acres, Hawaii",0.12,16,",hv,",reviewed,1538902276270,"M 1.0 - 13km SSW of Fern Acres, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539292818040,https://earthquake.usgs.gov/earthquakes/eventpage/hv70636902 +,,38317128,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38317128&format=geojson,0.04188,,84.0,",ci38317128,",0.86,ml,,ci,26.0,"4km NW of Cabazon, CA",0.16,11,",ci,",reviewed,1538902256130,"M 0.9 - 4km NW of Cabazon, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1539006128530,https://earthquake.usgs.gov/earthquakes/eventpage/ci38317128 +,,2018280012,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018280012&format=geojson,0.4418,,214.0,",pr2018280012,",3.0,md,,pr,17.0,"39km SSE of Boca de Yuma, Dominican Republic",0.43,138,",pr,",reviewed,1538902223020,"M 3.0 - 39km SSE of Boca de Yuma, Dominican Republic",0,earthquake,",geoserve,origin,phase-data,",-300.0,1538912991656,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018280012 +,,38317120,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38317120&format=geojson,0.03636,,90.0,",ci38317120,",0.71,ml,,ci,27.0,"12km E of Julian, CA",0.18,8,",ci,",reviewed,1538901966850,"M 0.7 - 12km E of Julian, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539115047351,https://earthquake.usgs.gov/earthquakes/eventpage/ci38317120 +,,20272641,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272641&format=geojson,,,,",ak20272641,av61793171,",0.7,ml,,ak,,"98km NNW of Nikiski, Alaska",0.39,8,",ak,av,",automatic,1538901319690,"M 0.7 - 98km NNW of Nikiski, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539104336600,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272641 +,,73094776,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094776&format=geojson,0.00878,,82.0,",nc73094776,",1.08,md,,nc,16.0,"6km W of Cobb, CA",0.04,18,",nc,",automatic,1538900456000,"M 1.1 - 6km W of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538903821945,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094776 +,,00659895,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659895&format=geojson,0.1,,60.08,",nn00659895,",0.1,ml,,nn,21.0,"49km E of Beatty, Nevada",0.1207,0,",nn,",reviewed,1538900033845,"M 0.1 - 49km E of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538933037719,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659895 +,,2018280011,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018280011&format=geojson,0.4439,,207.0,",pr2018280011,",2.46,md,,pr,6.0,"55km SE of Punta Cana, Dominican Republic",0.25,93,",pr,",reviewed,1538899991460,"M 2.5 - 55km SE of Punta Cana, Dominican Republic",0,earthquake,",geoserve,origin,phase-data,",-300.0,1538912315936,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018280011 +,,2018280010,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018280010&format=geojson,0.1358,,173.0,",pr2018280010,",2.14,md,,pr,5.0,"1km N of Fuig, Puerto Rico",0.17,70,",pr,",reviewed,1538899824370,"M 2.1 - 1km N of Fuig, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538911170887,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018280010 +,,2018280009,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018280009&format=geojson,0.4225,,315.0,",pr2018280009,",2.69,md,,pr,5.0,"22km W of Rincon, Puerto Rico",0.32,111,",pr,",reviewed,1538899169420,"M 2.7 - 22km W of Rincon, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538909675334,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018280009 +,,1000h8d3,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h8d3&format=geojson,1.288,,55.0,",us1000h8d3,",4.9,mb,,us,,"148km ENE of Georgetown, Saint Helena",0.8,369,",us,",reviewed,1538899077070,"M 4.9 - 148km ENE of Georgetown, Saint Helena",0,earthquake,",geoserve,origin,phase-data,",-60.0,1538900259040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h8d3 +,,20272636,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272636&format=geojson,,,,",ak20272636,",1.9,ml,,ak,,"128km SSE of Prudhoe Bay, Alaska",0.75,56,",ak,",automatic,1538899055904,"M 1.9 - 128km SSE of Prudhoe Bay, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538899456060,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272636 +,,70636802,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70636802&format=geojson,0.01222,,34.0,",hv70636802,",1.76,md,,hv,21.0,"5km WSW of Volcano, Hawaii",0.1,48,",hv,",automatic,1538898173710,"M 1.8 - 5km WSW of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538898371610,https://earthquake.usgs.gov/earthquakes/eventpage/hv70636802 +,,2018280007,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018280007&format=geojson,0.1405,,184.0,",pr2018280007,",2.06,md,,pr,5.0,"1km N of Guanica, Puerto Rico",0.11,65,",pr,",reviewed,1538898047720,"M 2.1 - 1km N of Guanica, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538911143887,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018280007 +,,73094766,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094766&format=geojson,0.004989,,59.0,",nc73094766,",1.34,md,,nc,39.0,"6km WNW of Cobb, CA",0.08,28,",nc,",reviewed,1538897817550,"M 1.3 - 6km WNW of Cobb, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539141603536,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094766 +,,2018280014,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018280014&format=geojson,0.2009,,236.0,",pr2018280014,",2.29,md,,pr,6.0,"26km SW of Stella, Puerto Rico",0.43,81,",pr,",reviewed,1538897065600,"M 2.3 - 26km SW of Stella, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538912326304,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018280014 +,,61427162,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61427162&format=geojson,0.1062,,77.0,",uw61427162,",1.13,ml,,uw,12.0,"14km W of Shelton, Washington",0.1,20,",uw,",reviewed,1538896798240,"M 1.1 - 14km W of Shelton, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539020992920,https://earthquake.usgs.gov/earthquakes/eventpage/uw61427162 +,,38317112,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38317112&format=geojson,0.02562,,44.0,",ci38317112,",0.72,ml,,ci,32.0,"8km NE of Aguanga, CA",0.14,8,",ci,",reviewed,1538896546240,"M 0.7 - 8km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1539006131310,https://earthquake.usgs.gov/earthquakes/eventpage/ci38317112 +,,38317104,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38317104&format=geojson,0.008414,,59.0,",ci38317104,",0.4,ml,,ci,28.0,"9km NE of Aguanga, CA",0.14,2,",ci,",reviewed,1538896271420,"M 0.4 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539022483734,https://earthquake.usgs.gov/earthquakes/eventpage/ci38317104 +,,20272508,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272508&format=geojson,,,,",ak20272508,",1.5,ml,,ak,,"69km E of Cape Yakataga, Alaska",1.32,35,",ak,",automatic,1538896175573,"M 1.5 - 69km E of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538896653174,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272508 +,,2018280006,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018280006&format=geojson,0.683,,314.0,",pr2018280006,",2.44,md,,pr,10.0,"46km NNE of Luquillo, Puerto Rico",0.2,92,",pr,",reviewed,1538895891630,"M 2.4 - 46km NNE of Luquillo, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538908580550,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018280006 +,,20272507,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272507&format=geojson,,,,",ak20272507,",2.0,ml,,ak,,"65km SSW of Kaktovik, Alaska",0.98,62,",ak,",automatic,1538895807225,"M 2.0 - 65km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538896013452,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272507 +,,73094751,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094751&format=geojson,0.007445,,72.0,",nc73094751,",1.53,md,,nc,42.0,"2km WNW of Cobb, CA",0.08,36,",nc,",reviewed,1538894781530,"M 1.5 - 2km WNW of Cobb, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539142083578,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094751 +,,60299982,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60299982&format=geojson,0.04468,,104.0,",uu60299982,",1.07,ml,,uu,10.0,"22km ENE of West Yellowstone, Montana",0.12,18,",uu,",reviewed,1538894494870,"M 1.1 - 22km ENE of West Yellowstone, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539022510860,https://earthquake.usgs.gov/earthquakes/eventpage/uu60299982 +,,00659893,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659893&format=geojson,0.169,,142.46,",nn00659893,",0.3,ml,,nn,11.0,"24km SSW of Pahrump, Nevada",0.1683,1,",nn,",reviewed,1538894445231,"M 0.3 - 24km SSW of Pahrump, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538931556236,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659893 +,,1000h8cm,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h8cm&format=geojson,1.067,,87.0,",us1000h8cm,",4.4,mb,,us,,"70km SE of Sinjai, Indonesia",0.41,298,",us,",reviewed,1538894433970,"M 4.4 - 70km SE of Sinjai, Indonesia",0,earthquake,",geoserve,origin,phase-data,",480.0,1538896884040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h8cm +,,38317096,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38317096&format=geojson,0.01425,,33.0,",ci38317096,",0.9,ml,,ci,36.0,"9km NE of Aguanga, CA",0.19,12,",ci,",reviewed,1538893786900,"M 0.9 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1539006375630,https://earthquake.usgs.gov/earthquakes/eventpage/ci38317096 +,,73094746,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094746&format=geojson,0.002225,,90.0,",nc73094746,",0.33,md,,nc,15.0,"10km NW of The Geysers, CA",0.02,2,",nc,",reviewed,1538893331960,"M 0.3 - 10km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539124827591,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094746 +,,73094741,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094741&format=geojson,0.01247,,117.0,",nc73094741,",0.77,md,,nc,11.0,"2km NW of The Geysers, CA",0.02,9,",nc,",automatic,1538893269750,"M 0.8 - 2km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538897043276,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094741 +,,00659920,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659920&format=geojson,0.082,,134.58,",nn00659920,",1.4,ml,,nn,4.0,"7km S of Dayton, Nevada",0.0657,30,",nn,",reviewed,1538893233552,"M 1.4 - 7km S of Dayton, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538942265553,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659920 +,,20272497,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272497&format=geojson,,,,",ak20272497,",1.3,ml,,ak,,"22km SSE of Anchorage, Alaska",0.62,26,",ak,",automatic,1538892895958,"M 1.3 - 22km SSE of Anchorage, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538893229046,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272497 +,,1000h8cj,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h8cj&format=geojson,0.311,,79.0,",us1000h8cj,",2.8,ml,,us,,"28km SE of Pecos, Texas",0.93,121,",us,",reviewed,1538892858640,"M 2.8 - 28km SE of Pecos, Texas",0,earthquake,",geoserve,origin,phase-data,",-360.0,1538894720040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h8cj +,,20272493,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272493&format=geojson,,,,",ak20272493,",1.6,ml,,ak,,"94km NW of Talkeetna, Alaska",0.37,39,",ak,",automatic,1538892724384,"M 1.6 - 94km NW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538892943576,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272493 +,,61793091,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61793091&format=geojson,0.0294,,125.0,",av61793091,",0.17,ml,,av,5.0,"43km ENE of Adak, Alaska",0.06,0,",av,",reviewed,1538892101290,"M 0.2 - 43km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539047739120,https://earthquake.usgs.gov/earthquakes/eventpage/av61793091 +,,73094736,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094736&format=geojson,0.06505,,136.0,",nc73094736,",0.81,md,,nc,14.0,"8km WSW of Templeton, CA",0.05,10,",nc,",reviewed,1538892088880,"M 0.8 - 8km WSW of Templeton, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539123123134,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094736 +,,70806279,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70806279&format=geojson,0.01457,,112.0,",av70806279,",-0.04,ml,,av,5.0,"41km ENE of Adak, Alaska",0.3,0,",av,",reviewed,1538891823170,"M -0.0 - 41km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539047315690,https://earthquake.usgs.gov/earthquakes/eventpage/av70806279 +,,20272491,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272491&format=geojson,,,,",ak20272491,",1.3,ml,,ak,,"34km ESE of North Nenana, Alaska",1.11,26,",ak,",automatic,1538891758388,"M 1.3 - 34km ESE of North Nenana, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538892107917,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272491 +,,2018280005,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018280005&format=geojson,0.3439,,219.0,",pr2018280005,",2.77,md,,pr,18.0,"35km N of San Antonio, Puerto Rico",0.2,118,",pr,",reviewed,1538891752820,"M 2.8 - 35km N of San Antonio, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538906055812,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018280005 +,,73094731,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094731&format=geojson,0.01608,,219.0,",nc73094731,",0.76,md,,nc,19.0,"2km NW of Cobb, CA",0.06,9,",nc,",reviewed,1538891738130,"M 0.8 - 2km NW of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539140490287,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094731 +,,00659905,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659905&format=geojson,0.044,,77.05,",nn00659905,",-0.1,ml,,nn,18.0,"46km ESE of Beatty, Nevada",0.1398,0,",nn,",reviewed,1538891442924,"M -0.1 - 46km ESE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538932113474,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659905 +,,00659890,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659890&format=geojson,0.144,,67.9,",nn00659890,",1.5,ml,,nn,15.0,"30km SW of Hawthorne, Nevada",0.1476,35,",nn,",reviewed,1538891431031,"M 1.5 - 30km SW of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538930632806,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659890 +,,60241891,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nm60241891&format=geojson,0.03041,,92.0,",nm60241891,",1.29,md,,nm,11.0,"3km E of Ridgely, Tennessee",0.05,26,",nm,",reviewed,1538890483960,"M 1.3 - 3km E of Ridgely, Tennessee",0,earthquake,",geoserve,origin,phase-data,",-360.0,1539006781110,https://earthquake.usgs.gov/earthquakes/eventpage/nm60241891 +,,60241886,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nm60241886&format=geojson,0.02942,,106.0,",nm60241886,",1.33,md,,nm,9.0,"2km SSE of Ridgely, Tennessee",0.02,27,",nm,",reviewed,1538889831770,"M 1.3 - 2km SSE of Ridgely, Tennessee",0,earthquake,",geoserve,origin,phase-data,",-360.0,1539007032760,https://earthquake.usgs.gov/earthquakes/eventpage/nm60241886 +,,80313429,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80313429&format=geojson,0.179,,219.0,",mb80313429,",-0.56,md,,mb,6.0,"30km ENE of Polson, Montana",0.23,0,",mb,",reviewed,1538889134770,"M -0.6 - 30km ENE of Polson, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539208686770,https://earthquake.usgs.gov/earthquakes/eventpage/mb80313429 +,,61427147,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61427147&format=geojson,0.03228,,289.0,",uw61427147,",0.42,ml,,uw,3.0,"26km NNW of Packwood, Washington",0.01,3,",uw,",reviewed,1538888936790,"M 0.4 - 26km NNW of Packwood, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539021472850,https://earthquake.usgs.gov/earthquakes/eventpage/uw61427147 +,,2018280004,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018280004&format=geojson,1.0318,,341.0,",pr2018280004,",1.92,md,,pr,5.0,"39km N of Charlotte Amalie, U.S. Virgin Islands",0.05,57,",pr,",reviewed,1538888641050,"M 1.9 - 39km N of Charlotte Amalie, U.S. Virgin Islands",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538906045652,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018280004 +,,38317080,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38317080&format=geojson,0.006653,,35.0,",ci38317080,",0.79,ml,,ci,32.0,"10km NE of Aguanga, CA",0.16,10,",ci,",reviewed,1538888420230,"M 0.8 - 10km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1539006378450,https://earthquake.usgs.gov/earthquakes/eventpage/ci38317080 +,,38317072,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38317072&format=geojson,0.004981,,58.0,",ci38317072,",0.71,ml,,ci,24.0,"10km NE of Aguanga, CA",0.21,8,",ci,",reviewed,1538888259990,"M 0.7 - 10km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1539006441590,https://earthquake.usgs.gov/earthquakes/eventpage/ci38317072 +,,61793046,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61793046&format=geojson,0.05048,,316.0,",av61793046,",1.01,ml,,av,5.0,"47km W of Tanaga Volcano, Alaska",0.19,16,",av,",reviewed,1538887783500,"M 1.0 - 47km W of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539046526380,https://earthquake.usgs.gov/earthquakes/eventpage/av61793046 +,,73094726,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094726&format=geojson,0.05186,,198.0,",nc73094726,",1.64,md,,nc,10.0,"18km SE of Petrolia, CA",0.05,41,",nc,",reviewed,1538887479560,"M 1.6 - 18km SE of Petrolia, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539142443875,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094726 +,,60299972,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60299972&format=geojson,0.1454,,123.0,",uu60299972,",1.5,ml,,uu,9.0,"17km SW of Old Faithful Geyser, Wyoming",0.1,35,",uu,",reviewed,1538887473410,"M 1.5 - 17km SW of Old Faithful Geyser, Wyoming",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539022262070,https://earthquake.usgs.gov/earthquakes/eventpage/uu60299972 +,,20272477,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272477&format=geojson,,,,",ak20272477,",1.8,ml,,ak,,"53km ESE of Cordova, Alaska",0.7,50,",ak,",automatic,1538887385141,"M 1.8 - 53km ESE of Cordova, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538887653363,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272477 +,,00659918,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659918&format=geojson,0.018,,94.81,",nn00659918,",0.9,ml,,nn,12.0,"11km NW of Virginia City, Nevada",0.1867,12,",nn,",reviewed,1538887368105,"M 0.9 - 11km NW of Virginia City, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538941344132,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659918 +,,20272475,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272475&format=geojson,,,,",ak20272475,",1.8,ml,,ak,,"58km WNW of Valdez, Alaska",0.59,50,",ak,",automatic,1538886992899,"M 1.8 - 58km WNW of Valdez, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538887303843,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272475 +,,20272469,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272469&format=geojson,,,,",ak20272469,",1.7,ml,,ak,,"82km SW of Anchor Point, Alaska",0.7,44,",ak,",automatic,1538886730063,"M 1.7 - 82km SW of Anchor Point, Alaska",0,earthquake,",geoserve,origin,",-600.0,1538887017927,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272469 +,,2018280003,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018280003&format=geojson,0.177,,344.0,",pr2018280003,",1.34,md,,pr,3.0,"20km SSW of Guanica, Puerto Rico",0.15,28,",pr,",reviewed,1538886672090,"M 1.3 - 20km SSW of Guanica, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538906029292,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018280003 +,2.2,2018280000,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018280000&format=geojson,1.3761,1.0,276.0,",pr2018280000,us1000h8cf,",3.44,md,,pr,16.0,"123km N of San Juan, Puerto Rico",0.7,182,",pr,us,",reviewed,1538886232190,"M 3.4 - 123km N of San Juan, Puerto Rico",0,earthquake,",dyfi,geoserve,origin,phase-data,",-240.0,1538902259481,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018280000 +,,00659917,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659917&format=geojson,0.2,,86.38,",nn00659917,",0.2,ml,,nn,8.0,"20km N of Summerlin South, Nevada",0.2133,1,",nn,",reviewed,1538886126883,"M 0.2 - 20km N of Summerlin South, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538940603933,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659917 +,,2018280002,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018280002&format=geojson,0.1819,,208.0,",pr2018280002,",1.88,md,,pr,4.0,"3km SE of Maria Antonia, Puerto Rico",0.21,54,",pr,",reviewed,1538886001180,"M 1.9 - 3km SE of Maria Antonia, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538906010660,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018280002 +,,70636442,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70636442&format=geojson,0.01099,,136.0,",hv70636442,",2.22,ml,,hv,21.0,"2km WNW of Volcano, Hawaii",0.11,76,",hv,",reviewed,1538885671580,"M 2.2 - 2km WNW of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539292270710,https://earthquake.usgs.gov/earthquakes/eventpage/hv70636442 +,,38317064,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38317064&format=geojson,0.009552,,44.0,",ci38317064,",0.37,ml,,ci,27.0,"9km NE of Aguanga, CA",0.14,2,",ci,",reviewed,1538885468460,"M 0.4 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539021404710,https://earthquake.usgs.gov/earthquakes/eventpage/ci38317064 +,,80312859,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80312859&format=geojson,0.036,,159.0,",mb80312859,",0.87,ml,,mb,5.0,"20km NNE of Dillon, Montana",0.06,12,",mb,",reviewed,1538885395300,"M 0.9 - 20km NNE of Dillon, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539021003450,https://earthquake.usgs.gov/earthquakes/eventpage/mb80312859 +,,38317056,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38317056&format=geojson,0.009552,,55.0,",ci38317056,",0.49,ml,,ci,21.0,"9km NE of Aguanga, CA",0.11,4,",ci,",reviewed,1538884817820,"M 0.5 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539006397335,https://earthquake.usgs.gov/earthquakes/eventpage/ci38317056 +,,38317048,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38317048&format=geojson,0.008556,,35.0,",ci38317048,",0.84,ml,,ci,46.0,"9km NE of Aguanga, CA",0.18,11,",ci,",reviewed,1538884768780,"M 0.8 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1539021082850,https://earthquake.usgs.gov/earthquakes/eventpage/ci38317048 +,,20272466,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272466&format=geojson,,,,",ak20272466,",1.8,ml,,ak,,"34km ESE of Cantwell, Alaska",0.67,50,",ak,",automatic,1538884555596,"M 1.8 - 34km ESE of Cantwell, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538884847120,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272466 +,2.2,38317040,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38317040&format=geojson,0.197,1.0,72.0,",ci38317040,",2.15,ml,,ci,28.0,"22km SSE of Santa Barbara, CA",0.35,71,",ci,",reviewed,1538884299830,"M 2.2 - 22km SSE of Santa Barbara, CA",0,earthquake,",dyfi,geoserve,nearby-cities,origin,phase-data,",-480.0,1539128306484,https://earthquake.usgs.gov/earthquakes/eventpage/ci38317040 +,,61793006,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61793006&format=geojson,0.1912,,225.0,",av61793006,",0.99,ml,,av,14.0,"27km SW of Adak, Alaska",0.23,15,",av,",reviewed,1538884267290,"M 1.0 - 27km SW of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539046177380,https://earthquake.usgs.gov/earthquakes/eventpage/av61793006 +,,38317032,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38317032&format=geojson,0.01716,,28.0,",ci38317032,",1.37,ml,,ci,71.0,"8km NE of Aguanga, CA",0.21,29,",ci,",reviewed,1538883903540,"M 1.4 - 8km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1539019438680,https://earthquake.usgs.gov/earthquakes/eventpage/ci38317032 +,,38317016,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38317016&format=geojson,0.003355,,169.0,",ci38317016,",0.6,ml,,ci,17.0,"10km NE of Aguanga, CA",0.08,6,",ci,",reviewed,1538883698250,"M 0.6 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539022115168,https://earthquake.usgs.gov/earthquakes/eventpage/ci38317016 +,,00659916,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659916&format=geojson,0.027,,72.03,",nn00659916,",0.1,ml,,nn,23.0,"55km ENE of Beatty, Nevada",0.2109,0,",nn,",reviewed,1538883306067,"M 0.1 - 55km ENE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538940232577,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659916 +,,20272460,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272460&format=geojson,,,,",ak20272460,",1.7,ml,,ak,,"68km WSW of Anchor Point, Alaska",0.52,44,",ak,",automatic,1538882624784,"M 1.7 - 68km WSW of Anchor Point, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538882877501,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272460 +,,20272454,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272454&format=geojson,,,,",ak20272454,",2.3,ml,,ak,,"65km SSW of Kaktovik, Alaska",0.68,81,",ak,",automatic,1538882057495,"M 2.3 - 65km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538882670231,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272454 +,,73094716,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094716&format=geojson,0.01118,,146.0,",nc73094716,",0.56,md,,nc,6.0,"8km NW of The Geysers, CA",0.01,5,",nc,",automatic,1538881523580,"M 0.6 - 8km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538884083024,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094716 +,,1000h8c2,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h8c2&format=geojson,1.57,,82.0,",us1000h8c2,",4.7,mb,,us,,"177km WSW of Chichi-shima, Japan",0.85,340,",us,",reviewed,1538881270700,"M 4.7 - 177km WSW of Chichi-shima, Japan",0,earthquake,",geoserve,origin,phase-data,",540.0,1538882370040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h8c2 +,,38317000,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38317000&format=geojson,0.0989,,64.0,",ci38317000,",1.09,ml,,ci,28.0,"5km SE of Loma Linda, CA",0.18,18,",ci,",reviewed,1538881117730,"M 1.1 - 5km SE of Loma Linda, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539006597433,https://earthquake.usgs.gov/earthquakes/eventpage/ci38317000 +,,00659915,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659915&format=geojson,0.097,,75.24,",nn00659915,",0.7,ml,,nn,13.0,"8km NE of Incline Village, Nevada",0.1354,8,",nn,",reviewed,1538880968154,"M 0.7 - 8km NE of Incline Village, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538938942241,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659915 +,,1000h8hv,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h8hv&format=geojson,0.462,,189.0,",ak20272439,us1000h8hv,",3.4,ml,,us,,"57km E of Atka, Alaska",0.48,178,",ak,us,",reviewed,1538880806630,"M 3.4 - 57km E of Atka, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539052651040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h8hv +,,38316992,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38316992&format=geojson,0.09077,,154.0,",ci38316992,",0.75,ml,,ci,17.0,"7km ESE of Valle Vista, CA",0.13,9,",ci,",reviewed,1538880638200,"M 0.8 - 7km ESE of Valle Vista, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539021127729,https://earthquake.usgs.gov/earthquakes/eventpage/ci38316992 +,,00659913,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659913&format=geojson,0.113,,133.54,",nn00659913,",0.5,ml,,nn,6.0,"9km NE of Incline Village, Nevada",0.1007,4,",nn,",reviewed,1538880517256,"M 0.5 - 9km NE of Incline Village, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538938201844,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659913 +,,00659883,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659883&format=geojson,0.096,,34.08,",nn00659883,",1.6,ml,,nn,30.0,"8km NE of Incline Village, Nevada",0.1996,39,",nn,",reviewed,1538880346982,"M 1.6 - 8km NE of Incline Village, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538929157156,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659883 +,,73094711,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094711&format=geojson,0.06926,,278.0,",nc73094711,",0.26,md,,nc,8.0,"12km SSE of Mammoth Lakes, CA",0.09,1,",nc,",reviewed,1538880342110,"M 0.3 - 12km SSE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539103082245,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094711 +,,1000hb3d,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000hb3d&format=geojson,7.532,,135.0,",us1000hb3d,",4.5,mb,,us,,"216km SSW of Vaini, Tonga",1.08,312,",us,",reviewed,1538879397980,"M 4.5 - 216km SSW of Vaini, Tonga",0,earthquake,",geoserve,origin,phase-data,",-720.0,1539389129040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000hb3d +,,20272437,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272437&format=geojson,,,,",ak20272437,",0.7,ml,,ak,,"85km NNW of Cape Yakataga, Alaska",0.31,8,",ak,",automatic,1538879360874,"M 0.7 - 85km NNW of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538879523634,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272437 +,1.0,1000hb3e,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000hb3e&format=geojson,1.639,0.0,156.0,",us1000hb3e,",4.3,mb,,us,,"18km NNW of Pisco, Peru",1.05,284,",us,",reviewed,1538879299260,"M 4.3 - 18km NNW of Pisco, Peru",0,earthquake,",dyfi,geoserve,origin,phase-data,",-300.0,1539391299464,https://earthquake.usgs.gov/earthquakes/eventpage/us1000hb3e +,,20272436,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272436&format=geojson,,,,",ak20272436,",1.0,ml,,ak,,"8km W of Houston, Alaska",0.45,15,",ak,",automatic,1538879094695,"M 1.0 - 8km W of Houston, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538879281972,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272436 +,,1000hb3g,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000hb3g&format=geojson,7.765,,146.0,",us1000hb3g,",4.3,mb,,us,,"84km NNW of Sola, Vanuatu",0.83,284,",us,",reviewed,1538879018320,"M 4.3 - 84km NNW of Sola, Vanuatu",0,earthquake,",geoserve,origin,phase-data,",660.0,1539385725040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000hb3g +,,1000hb3f,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000hb3f&format=geojson,5.064,,68.0,",us1000hb3f,",4.3,mb,,us,,"38km E of Nikol'skoye, Russia",0.94,284,",us,",reviewed,1538878998360,"M 4.3 - 38km E of Nikol'skoye, Russia",0,earthquake,",geoserve,origin,phase-data,",720.0,1539383877040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000hb3f +,,1000h8bk,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h8bk&format=geojson,0.929,,204.0,",us1000h8bk,",4.4,mb,,us,,"93km NW of Queenstown, New Zealand",0.79,298,",us,",reviewed,1538878970420,"M 4.4 - 93km NW of Queenstown, New Zealand",0,earthquake,",geoserve,origin,phase-data,",720.0,1539138674040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h8bk +,,20272435,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272435&format=geojson,,,,",ak20272435,",0.9,ml,,ak,,"39km SW of Cape Yakataga, Alaska",0.76,12,",ak,",reviewed,1538878562780,"M 0.9 - 39km SW of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538942983932,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272435 +,,1000hb3c,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000hb3c&format=geojson,1.835,,137.0,",us1000hb3c,",4.4,mb,,us,,"24km SE of Ozernovskiy, Russia",0.67,298,",us,",reviewed,1538878397040,"M 4.4 - 24km SE of Ozernovskiy, Russia",0,earthquake,",geoserve,origin,phase-data,",720.0,1539382409040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000hb3c +,,2018280001,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018280001&format=geojson,0.2104,,205.0,",pr2018280001,",2.25,md,,pr,5.0,"19km SSW of Stella, Puerto Rico",0.21,78,",pr,",reviewed,1538878202940,"M 2.3 - 19km SSW of Stella, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538894428837,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018280001 +,,38316984,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38316984&format=geojson,0.007934,,46.0,",ci38316984,",0.44,ml,,ci,21.0,"10km NE of Aguanga, CA",0.18,3,",ci,",reviewed,1538877601150,"M 0.4 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539006600320,https://earthquake.usgs.gov/earthquakes/eventpage/ci38316984 +,,38316976,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38316976&format=geojson,0.01657,,77.0,",ci38316976,",0.51,ml,,ci,20.0,"10km NE of Aguanga, CA",0.22,4,",ci,",reviewed,1538876682730,"M 0.5 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539020776235,https://earthquake.usgs.gov/earthquakes/eventpage/ci38316976 +,,1000h8fm,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h8fm&format=geojson,28.498,,130.0,",us1000h8fm,",5.1,mb,,us,,Pacific-Antarctic Ridge,1.02,400,",us,",reviewed,1538876662920,M 5.1 - Pacific-Antarctic Ridge,0,earthquake,",geoserve,moment-tensor,origin,phase-data,",-540.0,1538929775040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h8fm +,,1000h8be,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h8be&format=geojson,0.17,,64.0,",us1000h8be,",4.5,mb,,us,,"17km NW of Roshtqal'a, Tajikistan",0.77,312,",us,",reviewed,1538876150350,"M 4.5 - 17km NW of Roshtqal'a, Tajikistan",0,earthquake,",geoserve,origin,phase-data,",300.0,1538878605040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h8be +,,1000hb3b,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000hb3b&format=geojson,2.11,,128.0,",us1000hb3b,",4.4,mb,,us,,"201km ESE of Tadine, New Caledonia",0.71,298,",us,",reviewed,1538874923240,"M 4.4 - 201km ESE of Tadine, New Caledonia",0,earthquake,",geoserve,origin,phase-data,",660.0,1539381085040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000hb3b +,3.8,1000h8b9,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h8b9&format=geojson,0.516,19.0,66.0,",us1000h8b9,",4.8,mb,,us,,"12km N of Shinshiro, Japan",0.8,362,",us,",reviewed,1538874859870,"M 4.8 - 12km N of Shinshiro, Japan",0,earthquake,",dyfi,geoserve,origin,phase-data,",540.0,1539319234277,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h8b9 +,,38316960,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38316960&format=geojson,0.03294,,58.0,",ci38316960,",0.94,ml,,ci,21.0,"4km ESE of Lytle Creek, CA",0.18,14,",ci,",reviewed,1538874591380,"M 0.9 - 4km ESE of Lytle Creek, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539006781173,https://earthquake.usgs.gov/earthquakes/eventpage/ci38316960 +green,,1000h8fi,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h8fi&format=geojson,30.792,,105.0,",us1000h8fi,",5.6,mww,0.0,us,,Pacific-Antarctic Ridge,1.1,482,",us,",reviewed,1538874411150,M 5.6 - Pacific-Antarctic Ridge,0,earthquake,",geoserve,losspager,moment-tensor,origin,phase-data,shakemap,",-540.0,1539379704162,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h8fi +,,1000h8b6,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h8b6&format=geojson,0.553,,110.0,",us1000h8b6,",4.4,mb,,us,,"7km ESE of Chuquitira, Peru",1.1,298,",us,",reviewed,1538874290290,"M 4.4 - 7km ESE of Chuquitira, Peru",0,earthquake,",geoserve,origin,phase-data,",-300.0,1538875150040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h8b6 +,,20272430,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272430&format=geojson,,,,",ak20272430,",1.6,ml,,ak,,"104km W of Talkeetna, Alaska",0.56,39,",ak,",automatic,1538874231476,"M 1.6 - 104km W of Talkeetna, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538874575329,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272430 +,,20272423,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272423&format=geojson,,,,",ak20272423,",1.6,ml,,ak,,"50km NNE of Yakutat, Alaska",0.85,39,",ak,",automatic,1538873722627,"M 1.6 - 50km NNE of Yakutat, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538874156518,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272423 +,,20272417,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272417&format=geojson,,,,",ak20272417,",1.6,ml,,ak,,"115km ESE of Holy Cross, Alaska",0.69,39,",ak,",automatic,1538873420881,"M 1.6 - 115km ESE of Holy Cross, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538873870675,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272417 +,,20272419,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272419&format=geojson,,,,",ak20272419,",0.3,ml,,ak,,"15km E of North Nenana, Alaska",0.47,1,",ak,",reviewed,1538873191530,"M 0.3 - 15km E of North Nenana, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538940824037,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272419 +,,20272415,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272415&format=geojson,,,,",ak20272415,",1.6,ml,,ak,,"49km NNE of Sutton-Alpine, Alaska",0.77,39,",ak,",automatic,1538873176978,"M 1.6 - 49km NNE of Sutton-Alpine, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538873760963,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272415 +,,38316952,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38316952&format=geojson,0.03841,,46.0,",ci38316952,",1.16,ml,,ci,21.0,"4km ESE of Lytle Creek, CA",0.14,21,",ci,",reviewed,1538873128990,"M 1.2 - 4km ESE of Lytle Creek, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539006797872,https://earthquake.usgs.gov/earthquakes/eventpage/ci38316952 +,,20272408,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272408&format=geojson,,,,",ak20272408,",1.7,ml,,ak,,"16km NNE of Redoubt Volcano, Alaska",0.84,44,",ak,",automatic,1538873031897,"M 1.7 - 16km NNE of Redoubt Volcano, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538873323608,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272408 +,,20272407,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272407&format=geojson,,,,",ak20272407,",1.3,ml,,ak,,"13km ESE of North Nenana, Alaska",0.33,26,",ak,",automatic,1538873028656,"M 1.3 - 13km ESE of North Nenana, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538873213981,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272407 +,,73094696,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094696&format=geojson,0.009427,,80.0,",nc73094696,",0.74,md,,nc,10.0,"9km NW of The Geysers, CA",0.02,8,",nc,",automatic,1538872759450,"M 0.7 - 9km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538875742199,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094696 +,,38316944,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38316944&format=geojson,0.02438,,131.0,",ci38316944,",0.72,ml,,ci,16.0,"4km ESE of Lytle Creek, CA",0.08,8,",ci,",reviewed,1538872615420,"M 0.7 - 4km ESE of Lytle Creek, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539018107917,https://earthquake.usgs.gov/earthquakes/eventpage/ci38316944 +,,73094691,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094691&format=geojson,0.01661,,60.0,",nc73094691,",0.39,md,,nc,20.0,"3km N of The Geysers, CA",0.04,2,",nc,",reviewed,1538872103350,"M 0.4 - 3km N of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539053403789,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094691 +,,1000h8au,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h8au&format=geojson,1.18,,77.0,",us1000h8au,",4.9,mb,,us,,"67km SSW of Intipuca, El Salvador",1.48,369,",us,",reviewed,1538872003570,"M 4.9 - 67km SSW of Intipuca, El Salvador",0,earthquake,",geoserve,origin,phase-data,",-360.0,1538873706040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h8au +,,00659912,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659912&format=geojson,0.005,,92.48,",nn00659912,",0.8,ml,,nn,13.0,"13km NW of Virginia City, Nevada",0.1953,10,",nn,",reviewed,1538871923245,"M 0.8 - 13km NW of Virginia City, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538938015357,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659912 +,,70636147,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70636147&format=geojson,0.07696,,53.0,",hv70636147,",1.91,md,,hv,39.0,"17km W of Volcano, Hawaii",0.14,56,",hv,",automatic,1538871908470,"M 1.9 - 17km W of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538872117980,https://earthquake.usgs.gov/earthquakes/eventpage/hv70636147 +,,70806264,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70806264&format=geojson,0.02224,,218.0,",av70806264,",-1.11,ml,,av,4.0,"42km ENE of Adak, Alaska",0.03,0,",av,",reviewed,1538871799970,"M -1.1 - 42km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539045383420,https://earthquake.usgs.gov/earthquakes/eventpage/av70806264 +,,38316928,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38316928&format=geojson,0.1067,,39.0,",ci38316928,",1.31,ml,,ci,43.0,"3km NNW of Beaumont, CA",0.2,26,",ci,",reviewed,1538871315850,"M 1.3 - 3km NNW of Beaumont, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539006800923,https://earthquake.usgs.gov/earthquakes/eventpage/ci38316928 +green,5.5,1000h8an,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h8an&format=geojson,1.642,185.0,19.0,",us1000h8an,",5.9,mww,4.94,us,,"21km WNW of Ti Port-de-Paix, Haiti",0.81,637,",us,",reviewed,1538871111280,"M 5.9 - 21km WNW of Ti Port-de-Paix, Haiti",0,earthquake,",dyfi,geoserve,losspager,moment-tensor,origin,phase-data,shakemap,",-300.0,1539139099474,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h8an +green,,1000h8ar,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h8ar&format=geojson,13.441,,53.0,",us1000h8ar,",5.6,mww,0.0,us,,Central Mid-Atlantic Ridge,1.16,482,",us,",reviewed,1538871005390,M 5.6 - Central Mid-Atlantic Ridge,0,earthquake,",geoserve,losspager,moment-tensor,origin,phase-data,shakemap,",-180.0,1539101744040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h8ar +,,73094681,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094681&format=geojson,0.1881,,211.0,",nc73094681,",0.88,md,,nc,9.0,"17km W of Round Valley, CA",0.1,12,",nc,",reviewed,1538870899200,"M 0.9 - 17km W of Round Valley, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539109322826,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094681 +,,37197820,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37197820&format=geojson,0.0321,,24.0,",ci37197820,",1.53,ml,,ci,55.0,"8km ENE of Aguanga, CA",0.28,36,",ci,",reviewed,1538870356060,"M 1.5 - 8km ENE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539016833292,https://earthquake.usgs.gov/earthquakes/eventpage/ci37197820 +,,38316912,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38316912&format=geojson,0.02907,,23.0,",ci38316912,",1.61,ml,,ci,71.0,"8km NE of Aguanga, CA",0.18,40,",ci,",reviewed,1538870350630,"M 1.6 - 8km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1539016464130,https://earthquake.usgs.gov/earthquakes/eventpage/ci38316912 +,,38316904,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38316904&format=geojson,0.06686,,134.0,",ci38316904,",0.62,ml,,ci,20.0,"18km ESE of Anza, CA",0.21,6,",ci,",reviewed,1538869570510,"M 0.6 - 18km ESE of Anza, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539006831584,https://earthquake.usgs.gov/earthquakes/eventpage/ci38316904 +,,70806259,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70806259&format=geojson,0.0119,,199.0,",av70806259,",-0.54,ml,,av,5.0,"53km SSW of Redoubt Volcano, Alaska",0.13,0,",av,",reviewed,1538869427810,"M -0.5 - 53km SSW of Redoubt Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539042409260,https://earthquake.usgs.gov/earthquakes/eventpage/av70806259 +,,00659865,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659865&format=geojson,0.009,,61.61,",nn00659865,",1.0,ml,,nn,17.0,"13km NW of Virginia City, Nevada",0.183,15,",nn,",reviewed,1538869151057,"M 1.0 - 13km NW of Virginia City, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538877988518,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659865 +,,20272373,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272373&format=geojson,,,,",ak20272373,",0.8,ml,,ak,,"69km ENE of Cape Yakataga, Alaska",0.3,10,",ak,",reviewed,1538869127444,"M 0.8 Ice Quake - 69km ENE of Cape Yakataga, Alaska",0,ice quake,",geoserve,origin,phase-data,",-540.0,1539484496379,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272373 +,,20272371,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272371&format=geojson,,,,",ak20272371,",2.0,ml,,ak,,"79km SSW of Kaktovik, Alaska",0.6,62,",ak,",reviewed,1538868163195,"M 2.0 - 79km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484495779,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272371 +,,00659951,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659951&format=geojson,0.093,,223.57,",nn00659951,",0.6,ml,,nn,4.0,"7km NE of Incline Village, Nevada",0.0243,6,",nn,",reviewed,1538867929802,"M 0.6 - 7km NE of Incline Village, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538954271511,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659951 +,,20272364,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272364&format=geojson,,,,",ak20272364,",1.3,ml,,ak,,"21km NNE of Badger, Alaska",0.43,26,",ak,",reviewed,1538867872112,"M 1.3 Explosion - 21km NNE of Badger, Alaska",0,explosion,",geoserve,origin,phase-data,",-540.0,1539484495182,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272364 +,,00659950,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659950&format=geojson,0.101,,102.95,",nn00659950,",0.8,ml,,nn,7.0,"9km NE of Incline Village, Nevada",0.1068,10,",nn,",reviewed,1538867805040,"M 0.8 - 9km NE of Incline Village, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538954086631,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659950 +,,00659862,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659862&format=geojson,0.394,,111.93,",nn00659862,",0.7,ml,,nn,18.0,"35km SSE of Goldfield, Nevada",0.1773,8,",nn,",reviewed,1538867429326,"M 0.7 - 35km SSE of Goldfield, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538877986500,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659862 +,,2018279011,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018279011&format=geojson,1.9184,,231.0,",pr2018279011,",2.97,md,,pr,4.0,"31km ENE of Miches, Dominican Republic",0.01,136,",pr,",reviewed,1538867232380,"M 3.0 - 31km ENE of Miches, Dominican Republic",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538894414629,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018279011 +,,38316888,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38316888&format=geojson,0.02704,,42.0,",ci38316888,",0.64,ml,,ci,32.0,"8km NE of Aguanga, CA",0.15,6,",ci,",reviewed,1538866967740,"M 0.6 - 8km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539015216018,https://earthquake.usgs.gov/earthquakes/eventpage/ci38316888 +,,1000h8a8,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h8a8&format=geojson,3.605,,39.0,",us1000h8a8,",4.9,mb,,us,,"71km W of Kandrian, Papua New Guinea",0.95,369,",us,",reviewed,1538866862430,"M 4.9 - 71km W of Kandrian, Papua New Guinea",0,earthquake,",geoserve,origin,phase-data,",600.0,1538868092040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h8a8 +,2.7,38316880,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38316880&format=geojson,0.1132,1.0,67.0,",ci38316880,",1.64,ml,,ci,26.0,"12km WNW of Tehachapi, CA",0.19,42,",ci,",reviewed,1538866787820,"M 1.6 - 12km WNW of Tehachapi, CA",0,earthquake,",dyfi,geoserve,nearby-cities,origin,phase-data,",-480.0,1539006980180,https://earthquake.usgs.gov/earthquakes/eventpage/ci38316880 +,,38316872,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38316872&format=geojson,0.02101,,32.0,",ci38316872,",0.64,ml,,ci,33.0,"9km NE of Aguanga, CA",0.13,6,",ci,",reviewed,1538866708330,"M 0.6 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539014627606,https://earthquake.usgs.gov/earthquakes/eventpage/ci38316872 +,,20272359,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272359&format=geojson,,,,",ak20272359,",1.3,ml,,ak,,"80km W of Cantwell, Alaska",0.43,26,",ak,",reviewed,1538865930036,"M 1.3 - 80km W of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484494562,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272359 +,,80312854,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80312854&format=geojson,0.085,,129.0,",mb80312854,",0.97,ml,,mb,10.0,"11km ESE of Lincoln, Montana",0.06,14,",mb,",reviewed,1538865201730,"M 1.0 - 11km ESE of Lincoln, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539020665120,https://earthquake.usgs.gov/earthquakes/eventpage/mb80312854 +,,73094641,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094641&format=geojson,0.05012,,224.0,",nc73094641,",1.0,md,,nc,21.0,"10km NNE of Healdsburg, CA",0.07,15,",nc,",reviewed,1538864727650,"M 1.0 - 10km NNE of Healdsburg, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539056705105,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094641 +,,20272356,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272356&format=geojson,,,,",ak20272356,",1.0,ml,,ak,,"73km WNW of Tanana, Alaska",0.31,15,",ak,",reviewed,1538864537606,"M 1.0 - 73km WNW of Tanana, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484493984,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272356 +,,73094621,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094621&format=geojson,0.002536,,75.0,",nc73094621,",1.08,md,,nc,38.0,"10km NW of The Geysers, CA",0.04,18,",nc,",reviewed,1538864401110,"M 1.1 - 10km NW of The Geysers, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539107248928,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094621 +,,20272353,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272353&format=geojson,,,,",ak20272353,",1.1,ml,,ak,,"77km WSW of Delta Junction, Alaska",0.44,19,",ak,",reviewed,1538864366335,"M 1.1 - 77km WSW of Delta Junction, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484493369,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272353 +,2.0,2018279009,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018279009&format=geojson,0.4906,3.0,172.0,",pr2018279009,us1000h8a4,",3.29,md,,pr,21.0,"63km SE of Punta Cana, Dominican Republic",0.4,167,",pr,us,",reviewed,1538864356560,"M 3.3 - 63km SE of Punta Cana, Dominican Republic",0,earthquake,",dyfi,geoserve,origin,phase-data,",-300.0,1538945002742,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018279009 +,,2018279010,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018279010&format=geojson,0.0831,,241.0,",pr2018279010,",2.29,md,,pr,6.0,"9km SE of La Parguera, Puerto Rico",0.04,81,",pr,",reviewed,1538864168730,"M 2.3 - 9km SE of La Parguera, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538869084503,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018279010 +,,1000h89r,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h89r&format=geojson,1.167,,86.0,",us1000h89r,",4.5,mb,,us,,"23km WSW of `Alaqahdari-ye Kiran wa Munjan, Afghanistan",0.98,312,",us,",reviewed,1538864135250,"M 4.5 - 23km WSW of `Alaqahdari-ye Kiran wa Munjan, Afghanistan",0,earthquake,",geoserve,origin,phase-data,",270.0,1539396949040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h89r +,,20272349,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272349&format=geojson,,,,",ak20272349,",1.1,ml,,ak,,"61km ENE of Cape Yakataga, Alaska",0.38,19,",ak,",reviewed,1538863742166,"M 1.1 Ice Quake - 61km ENE of Cape Yakataga, Alaska",0,ice quake,",geoserve,origin,phase-data,",-540.0,1539484492799,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272349 +,,20272347,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272347&format=geojson,,,,",ak20272347,",0.9,ml,,ak,,"72km WNW of Tanana, Alaska",0.36,12,",ak,",reviewed,1538863351147,"M 0.9 - 72km WNW of Tanana, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484492214,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272347 +,,20272345,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272345&format=geojson,,,,",ak20272345,",1.0,ml,,ak,,"73km WNW of Tanana, Alaska",0.26,15,",ak,",reviewed,1538863295477,"M 1.0 - 73km WNW of Tanana, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484491630,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272345 +,2.0,1000h89b,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h89b&format=geojson,,1.0,46.0,",us1000h89b,",2.5,ml,,us,,"20km N of Taloga, Oklahoma",0.57,96,",us,",reviewed,1538863267000,"M 2.5 - 20km N of Taloga, Oklahoma",0,earthquake,",dyfi,geoserve,origin,phase-data,",-360.0,1539396649548,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h89b +,,20272340,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272340&format=geojson,,,,",ak20272340,",1.5,ml,,ak,,"59km E of Cape Yakataga, Alaska",0.27,35,",ak,",reviewed,1538862997903,"M 1.5 Ice Quake - 59km E of Cape Yakataga, Alaska",0,ice quake,",geoserve,origin,phase-data,",-540.0,1539484491057,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272340 +,,20280620,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20280620&format=geojson,,,,",ak20280620,",1.5,ml,,ak,,"59km S of Tanaga Volcano, Alaska",0.63,35,",ak,",reviewed,1538862502873,"M 1.5 - 59km S of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539484490499,https://earthquake.usgs.gov/earthquakes/eventpage/ak20280620 +,,70806254,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70806254&format=geojson,0.02578,,122.0,",av70806254,",-0.54,ml,,av,5.0,"42km ENE of Adak, Alaska",0.1,0,",av,",reviewed,1538862480280,"M -0.5 - 42km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539041736270,https://earthquake.usgs.gov/earthquakes/eventpage/av70806254 +,,20272337,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272337&format=geojson,,,,",ak20272337,",1.9,ml,,ak,,"79km WSW of Anchor Point, Alaska",0.43,56,",ak,",reviewed,1538862451964,"M 1.9 - 79km WSW of Anchor Point, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484489769,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272337 +,,1000h895,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h895&format=geojson,4.133,,111.0,",us1000h895,",4.3,mb,,us,,"204km NNW of Pubu, China",0.96,284,",us,",reviewed,1538862385560,"M 4.3 - 204km NNW of Pubu, China",0,earthquake,",geoserve,origin,phase-data,",480.0,1539396293040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h895 +,,38316856,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38316856&format=geojson,0.07016,,97.0,",ci38316856,",0.62,ml,,ci,21.0,"10km NNW of Anza, CA",0.17,6,",ci,",reviewed,1538862351260,"M 0.6 - 10km NNW of Anza, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539006956622,https://earthquake.usgs.gov/earthquakes/eventpage/ci38316856 +,,20272334,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272334&format=geojson,,,,",ak20272334,",0.9,ml,,ak,,"66km S of Cantwell, Alaska",0.82,12,",ak,",reviewed,1538862329824,"M 0.9 - 66km S of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484489191,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272334 +,,20272332,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272332&format=geojson,,,,",ak20272332,",2.8,ml,,ak,,"275km ESE of Kodiak, Alaska",0.63,121,",ak,",reviewed,1538861811712,"M 2.8 - 275km ESE of Kodiak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539484488543,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272332 +,,38316848,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38316848&format=geojson,0.00612,,34.0,",ci38316848,",0.86,ml,,ci,35.0,"10km NE of Aguanga, CA",0.16,11,",ci,",reviewed,1538861744500,"M 0.9 - 10km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1539007000830,https://earthquake.usgs.gov/earthquakes/eventpage/ci38316848 +,,00659861,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659861&format=geojson,0.104,,75.05,",nn00659861,",0.4,ml,,nn,11.0,"9km NE of Incline Village, Nevada",0.1402,2,",nn,",reviewed,1538861503630,"M 0.4 - 9km NE of Incline Village, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538877984129,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659861 +,,61427092,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61427092&format=geojson,0.1823,,104.0,",uw61427092,",1.81,ml,,uw,17.0,"4km S of Point Roberts, Washington",0.32,50,",uw,",reviewed,1538861411850,"M 1.8 - 4km S of Point Roberts, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539048048870,https://earthquake.usgs.gov/earthquakes/eventpage/uw61427092 +,,60299947,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60299947&format=geojson,0.1961,,104.0,",uu60299947,",1.39,ml,,uu,17.0,"4km SW of Mount Pleasant, Utah",0.12,30,",uu,",reviewed,1538861326600,"M 1.4 - 4km SW of Mount Pleasant, Utah",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539021920970,https://earthquake.usgs.gov/earthquakes/eventpage/uu60299947 +,,1000h88y,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h88y&format=geojson,0.734,,114.0,",us1000h88y,",4.1,mb,,us,,"42km SSE of Pirgos, Greece",0.88,259,",us,",reviewed,1538861314080,"M 4.1 - 42km SSE of Pirgos, Greece",0,earthquake,",geoserve,origin,phase-data,",120.0,1539396207040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h88y +,,61427087,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61427087&format=geojson,0.06924,,100.0,",uw61427087,",1.13,ml,,uw,8.0,"11km WSW of Seabeck, Washington",0.13,20,",uw,",reviewed,1538860926440,"M 1.1 - 11km WSW of Seabeck, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539036519650,https://earthquake.usgs.gov/earthquakes/eventpage/uw61427087 +,,00659859,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659859&format=geojson,0.091,,140.05,",nn00659859,",0.3,ml,,nn,20.0,"30km NNE of Beatty, Nevada",0.3093,1,",nn,",reviewed,1538860720980,"M 0.3 - 30km NNE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538877982666,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659859 +,,61792776,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61792776&format=geojson,0.02097,,121.0,",av61792776,",-0.67,ml,,av,5.0,"42km ENE of Adak, Alaska",0.05,0,",av,",reviewed,1538859846490,"M -0.7 - 42km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539041445590,https://earthquake.usgs.gov/earthquakes/eventpage/av61792776 +,,00659858,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659858&format=geojson,0.106,,197.86,",nn00659858,",0.1,ml,,nn,4.0,"9km NE of Incline Village, Nevada",0.1037,0,",nn,",reviewed,1538859830914,"M 0.1 - 9km NE of Incline Village, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538877980517,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659858 +,,20272213,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272213&format=geojson,,,,",ak20272213,us1000h88p,",2.4,ml,,ak,,"63km WNW of Willow, Alaska",0.41,89,",ak,us,",reviewed,1538859625282,"M 2.4 - 63km WNW of Willow, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484487691,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272213 +,,20272211,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272211&format=geojson,,,,",ak20272211,",1.5,ml,,ak,,"31km WSW of Tanaga Volcano, Alaska",0.4,35,",ak,",reviewed,1538859285544,"M 1.5 - 31km WSW of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539484487158,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272211 +,,20280614,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20280614&format=geojson,,,,",ak20280614,",1.6,ml,,ak,,"95km NW of Arctic Village, Alaska",0.39,39,",ak,",reviewed,1538859142405,"M 1.6 - 95km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484486551,https://earthquake.usgs.gov/earthquakes/eventpage/ak20280614 +,,60065928,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=se60065928&format=geojson,0.134,,144.0,",se60065928,",1.56,md,,se,8.0,"6km SE of Sweetwater, Tennessee",0.49,37,",se,",reviewed,1538859003360,"M 1.6 - 6km SE of Sweetwater, Tennessee",0,earthquake,",geoserve,origin,phase-data,",-300.0,1539091212390,https://earthquake.usgs.gov/earthquakes/eventpage/se60065928 +,,2018279008,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018279008&format=geojson,0.1132,,338.0,",pr2018279008,",1.75,md,,pr,3.0,"13km SSE of La Parguera, Puerto Rico",0.06,47,",pr,",reviewed,1538858844370,"M 1.8 - 13km SSE of La Parguera, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538869075207,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018279008 +,,38316840,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38316840&format=geojson,0.06157,,60.0,",ci38316840,",1.58,ml,,ci,18.0,"10km E of Taft, CA",0.17,38,",ci,",reviewed,1538858719060,"M 1.6 - 10km E of Taft, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539014353416,https://earthquake.usgs.gov/earthquakes/eventpage/ci38316840 +,,20280613,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20280613&format=geojson,,,,",ak20280613,",1.6,ml,,ak,,"104km NW of Arctic Village, Alaska",0.28,39,",ak,",reviewed,1538858714812,"M 1.6 - 104km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484485966,https://earthquake.usgs.gov/earthquakes/eventpage/ak20280613 +,,20272194,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272194&format=geojson,,,,",ak20272194,us1000h88e,",3.3,ml,3.11,ak,,"103km NNW of Arctic Village, Alaska",0.55,168,",ak,us,",reviewed,1538858335319,"M 3.3 - 103km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,shakemap,",-540.0,1539484892897,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272194 +,,20272196,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272196&format=geojson,,,,",ak20272196,",2.0,ml,,ak,,"72km ESE of Adak, Alaska",0.78,62,",ak,",reviewed,1538858304136,"M 2.0 - 72km ESE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-720.0,1539484484567,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272196 +,,20272192,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272192&format=geojson,,,,",ak20272192,",1.1,ml,,ak,,"42km ENE of Kobuk, Alaska",0.46,19,",ak,",reviewed,1538858258264,"M 1.1 - 42km ENE of Kobuk, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484483951,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272192 +,,20272191,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272191&format=geojson,,,,",ak20272191,",2.2,ml,,ak,,"64km SE of Adak, Alaska",0.53,74,",ak,",reviewed,1538857643818,"M 2.2 - 64km SE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-720.0,1539484483386,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272191 +,,38316832,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38316832&format=geojson,0.01564,,33.0,",ci38316832,",1.26,ml,,ci,51.0,"9km NE of Aguanga, CA",0.21,24,",ci,",reviewed,1538857585720,"M 1.3 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1539007126890,https://earthquake.usgs.gov/earthquakes/eventpage/ci38316832 +,,00659852,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659852&format=geojson,0.105,,95.2,",nn00659852,",0.8,ml,,nn,8.0,"9km NE of Incline Village, Nevada",0.108,10,",nn,",reviewed,1538857496121,"M 0.8 - 9km NE of Incline Village, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538877966295,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659852 +,,00659851,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659851&format=geojson,0.098,,94.45,",nn00659851,",0.3,ml,,nn,6.0,"8km NE of Incline Village, Nevada",0.1133,1,",nn,",reviewed,1538857149155,"M 0.3 - 8km NE of Incline Village, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538877964620,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659851 +,,20272187,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272187&format=geojson,,,,",ak20272187,",1.1,ml,,ak,,"85km ENE of Cantwell, Alaska",0.31,19,",ak,",reviewed,1538857012689,"M 1.1 - 85km ENE of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484482775,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272187 +,,00659840,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659840&format=geojson,0.093,,34.03,",nn00659840,",2.3,ml,,nn,35.0,"8km NE of Incline Village, Nevada",0.1896,81,",nn,",reviewed,1538856912442,"M 2.3 - 8km NE of Incline Village, Nevada",0,earthquake,",focal-mechanism,geoserve,origin,phase-data,",-480.0,1538877957155,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659840 +,,00659850,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659850&format=geojson,0.008,,61.57,",nn00659850,",2.0,ml,,nn,10.0,"13km NW of Virginia City, Nevada",0.1838,62,",nn,",reviewed,1538856896798,"M 2.0 - 13km NW of Virginia City, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538877962810,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659850 +,,00659849,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659849&format=geojson,0.097,,95.91,",nn00659849,",0.3,ml,,nn,6.0,"8km NE of Incline Village, Nevada",0.1047,1,",nn,",reviewed,1538856848206,"M 0.3 - 8km NE of Incline Village, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538877960829,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659849 +,,00659848,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659848&format=geojson,0.099,,159.19,",nn00659848,",0.4,ml,,nn,5.0,"8km NE of Incline Village, Nevada",0.1116,2,",nn,",reviewed,1538856826953,"M 0.4 - 8km NE of Incline Village, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538877958999,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659848 +,,20272185,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272185&format=geojson,,,,",ak20272185,",2.5,ml,,ak,,"68km SE of Adak, Alaska",0.57,96,",ak,",reviewed,1538856676236,"M 2.5 - 68km SE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-720.0,1539484482201,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272185 +,2.7,00659830,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659830&format=geojson,0.095,19.0,33.96,",nn00659830,nc73094601,us1000h880,",2.7,ml,,nn,30.0,"8km NE of Incline Village, Nevada",0.1633,117,",nn,nc,us,",reviewed,1538856668466,"M 2.7 - 8km NE of Incline Village, Nevada",0,earthquake,",dyfi,focal-mechanism,geoserve,origin,phase-data,scitech-link,",-480.0,1539265479450,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659830 +,,20272182,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272182&format=geojson,,,,",ak20272182,",1.3,ml,,ak,,"145km ENE of Nome, Alaska",0.34,26,",ak,",reviewed,1538855945311,"M 1.3 - 145km ENE of Nome, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484481662,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272182 +,,38316824,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38316824&format=geojson,0.07655,,52.0,",ci38316824,",1.08,ml,,ci,33.0,"4km ENE of Calimesa, CA",0.22,18,",ci,",reviewed,1538855738990,"M 1.1 - 4km ENE of Calimesa, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539007068533,https://earthquake.usgs.gov/earthquakes/eventpage/ci38316824 +,,73094596,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094596&format=geojson,0.002159,,134.0,",nc73094596,",1.14,md,,nc,7.0,"10km WNW of The Geysers, CA",0.02,20,",nc,",automatic,1538854994930,"M 1.1 - 10km WNW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538858282391,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094596 +,,73094591,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094591&format=geojson,0.02019,,249.0,",nc73094591,",1.18,md,,nc,16.0,"23km SSW of New Idria, CA",0.04,21,",nc,",reviewed,1538854793400,"M 1.2 - 23km SSW of New Idria, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539129542745,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094591 +,,38316816,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38316816&format=geojson,0.006189,,72.0,",ci38316816,",0.67,ml,,ci,22.0,"9km NE of Aguanga, CA",0.21,7,",ci,",reviewed,1538854629720,"M 0.7 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539007086126,https://earthquake.usgs.gov/earthquakes/eventpage/ci38316816 +,,2018279007,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018279007&format=geojson,0.2192,,256.0,",pr2018279007,",2.36,md,,pr,3.0,"2km NNE of Mayaguez, Puerto Rico",0.01,86,",pr,",reviewed,1538854490370,"M 2.4 - 2km NNE of Mayaguez, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538869065439,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018279007 +,,38316808,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38316808&format=geojson,0.007623,,57.0,",ci38316808,",0.6,ml,,ci,21.0,"10km NE of Aguanga, CA",0.08,6,",ci,",reviewed,1538854309140,"M 0.6 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539018957764,https://earthquake.usgs.gov/earthquakes/eventpage/ci38316808 +,,20272175,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272175&format=geojson,,,,",ak20272175,",1.2,ml,,ak,,"59km NE of Whittier, Alaska",0.35,22,",ak,",reviewed,1538854279362,"M 1.2 Ice Quake - 59km NE of Whittier, Alaska",0,ice quake,",geoserve,origin,phase-data,",-540.0,1539484481107,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272175 +,,20272173,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272173&format=geojson,,,,",ak20272173,",1.1,ml,,ak,,"19km N of College, Alaska",1.09,19,",ak,",automatic,1538854182000,"M 1.1 - 19km N of College, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538854588870,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272173 +,,20272176,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272176&format=geojson,,,,",ak20272176,",0.4,ml,,ak,,"3km ESE of Badger, Alaska",0.21,2,",ak,",reviewed,1538854138145,"M 0.4 - 3km ESE of Badger, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484480561,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272176 +,,20272172,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272172&format=geojson,,,,",ak20272172,",0.9,ml,,ak,,"70km NW of Yakutat, Alaska",0.46,12,",ak,",reviewed,1538853371707,"M 0.9 - 70km NW of Yakutat, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484479997,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272172 +,,20280602,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20280602&format=geojson,,,,",ak20280602,",1.8,ml,,ak,,"72km W of Larsen Bay, Alaska",0.33,50,",ak,",reviewed,1538852926239,"M 1.8 - 72km W of Larsen Bay, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484479421,https://earthquake.usgs.gov/earthquakes/eventpage/ak20280602 +,,20280601,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20280601&format=geojson,,,,",ak20280601,",2.1,ml,,ak,,"84km SE of Atka, Alaska",0.45,68,",ak,",reviewed,1538852340696,"M 2.1 - 84km SE of Atka, Alaska",0,earthquake,",geoserve,origin,phase-data,",-720.0,1539484478868,https://earthquake.usgs.gov/earthquakes/eventpage/ak20280601 +,,20272168,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272168&format=geojson,,,,",ak20272168,",1.3,ml,,ak,,"92km N of Kobuk, Alaska",0.35,26,",ak,",reviewed,1538852142863,"M 1.3 - 92km N of Kobuk, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484478304,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272168 +,,38316800,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38316800&format=geojson,0.02409,,148.0,",ci38316800,",0.08,ml,,ci,9.0,"13km NE of Little Lake, CA",0.07,0,",ci,",reviewed,1538851951710,"M 0.1 - 13km NE of Little Lake, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539018380084,https://earthquake.usgs.gov/earthquakes/eventpage/ci38316800 +,,20272165,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272165&format=geojson,,,,",ak20272165,",1.6,ml,,ak,,"73km NNW of Arctic Village, Alaska",0.42,39,",ak,",reviewed,1538851940565,"M 1.6 - 73km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484477716,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272165 +,,20272162,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272162&format=geojson,,,,",ak20272162,",1.2,ml,,ak,,"50km SSW of Cantwell, Alaska",0.41,22,",ak,",reviewed,1538851830430,"M 1.2 - 50km SSW of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484477111,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272162 +,,61427062,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61427062&format=geojson,0.02875,,154.0,",uw61427062,",0.89,ml,,uw,16.0,"26km SSW of Morton, Washington",0.12,12,",uw,",reviewed,1538851432530,"M 0.9 - 26km SSW of Morton, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539034274880,https://earthquake.usgs.gov/earthquakes/eventpage/uw61427062 +,,73094586,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094586&format=geojson,0.005446,,113.0,",nc73094586,",0.91,md,,nc,21.0,"3km NW of Crockett, CA",0.13,13,",nc,",reviewed,1538850951080,"M 0.9 - 3km NW of Crockett, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539137042615,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094586 +,,20272160,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272160&format=geojson,,,,",ak20272160,",2.0,ml,,ak,,"42km N of Arctic Village, Alaska",0.56,62,",ak,",reviewed,1538850894794,"M 2.0 - 42km N of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484476468,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272160 +,2.0,73094581,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094581&format=geojson,0.1903,1.0,35.0,",nc73094581,",2.43,md,,nc,34.0,"28km N of Shasta Lake, CA",0.13,91,",nc,",reviewed,1538850307450,"M 2.4 - 28km N of Shasta Lake, CA",0,earthquake,",dyfi,focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539152942641,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094581 +,,38316792,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38316792&format=geojson,0.02766,,115.0,",ci38316792,",0.27,ml,,ci,10.0,"13km NE of Little Lake, CA",0.03,1,",ci,",reviewed,1538849646440,"M 0.3 - 13km NE of Little Lake, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539017758274,https://earthquake.usgs.gov/earthquakes/eventpage/ci38316792 +,,00659857,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659857&format=geojson,0.035,,162.2,",nn00659857,",0.1,ml,,nn,15.0,"49km E of Beatty, Nevada",0.197,0,",nn,",reviewed,1538849630611,"M 0.1 - 49km E of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538877979085,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659857 +,,70635637,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70635637&format=geojson,0.0099,,73.0,",hv70635637,",1.93,ml,,hv,11.0,"4km WSW of Volcano, Hawaii",0.15,57,",hv,",automatic,1538849319730,"M 1.9 - 4km WSW of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538849669730,https://earthquake.usgs.gov/earthquakes/eventpage/hv70635637 +,,70635632,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70635632&format=geojson,0.008778,,50.0,",hv70635632,",1.93,ml,,hv,22.0,"4km WSW of Volcano, Hawaii",0.1,57,",hv,",automatic,1538849318930,"M 1.9 - 4km WSW of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538849661380,https://earthquake.usgs.gov/earthquakes/eventpage/hv70635632 +,,70635627,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70635627&format=geojson,0.01295,,68.0,",hv70635627,",1.93,ml,,hv,11.0,"5km WSW of Volcano, Hawaii",0.08,57,",hv,",automatic,1538849309590,"M 1.9 - 5km WSW of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538849657660,https://earthquake.usgs.gov/earthquakes/eventpage/hv70635627 +,,20272158,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272158&format=geojson,,,,",ak20272158,",1.3,ml,,ak,,"58km N of Talkeetna, Alaska",0.66,26,",ak,",reviewed,1538848906297,"M 1.3 - 58km N of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484475849,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272158 +,,61792661,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61792661&format=geojson,0.01256,,161.0,",av61792661,",-0.7,ml,,av,4.0,"41km ENE of Adak, Alaska",0.1,0,",av,",reviewed,1538848637470,"M -0.7 - 41km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539040336190,https://earthquake.usgs.gov/earthquakes/eventpage/av61792661 +,,20272156,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272156&format=geojson,,,,",ak20272156,",1.4,ml,,ak,,"42km N of Arctic Village, Alaska",0.49,30,",ak,",reviewed,1538848536198,"M 1.4 - 42km N of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484475280,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272156 +,,20272152,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272152&format=geojson,,,,",ak20272152,",1.0,ml,,ak,,"43km WNW of Anchorage, Alaska",0.68,15,",ak,",reviewed,1538847362043,"M 1.0 - 43km WNW of Anchorage, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484474645,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272152 +,,20272150,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272150&format=geojson,,,,",ak20272150,",1.0,ml,,ak,,"30km WNW of Valdez, Alaska",0.68,15,",ak,",reviewed,1538847136404,"M 1.0 - 30km WNW of Valdez, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484474083,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272150 +,,20280592,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20280592&format=geojson,,,,",ak20280592,",1.9,ml,,ak,,"82km SSW of Kaktovik, Alaska",0.45,56,",ak,",reviewed,1538846613775,"M 1.9 - 82km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484473498,https://earthquake.usgs.gov/earthquakes/eventpage/ak20280592 +,,20272148,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272148&format=geojson,,,,",ak20272148,",1.6,ml,,ak,,"93km NNW of Arctic Village, Alaska",0.47,39,",ak,",reviewed,1538846372727,"M 1.6 - 93km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484472935,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272148 +,,73094571,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094571&format=geojson,0.004927,,66.0,",nc73094571,",0.76,md,,nc,29.0,"10km WNW of The Geysers, CA",0.06,9,",nc,",reviewed,1538846341930,"M 0.8 - 10km WNW of The Geysers, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539086822420,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094571 +,,20272145,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272145&format=geojson,,,,",ak20272145,",1.5,ml,,ak,,"78km WNW of Arctic Village, Alaska",0.54,35,",ak,",reviewed,1538846082629,"M 1.5 - 78km WNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484472307,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272145 +,,73094566,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094566&format=geojson,0.01006,,33.0,",nc73094566,",1.14,md,,nc,27.0,"6km NW of The Geysers, CA",0.03,20,",nc,",automatic,1538846014750,"M 1.1 - 6km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538847962393,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094566 +,,20280589,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20280589&format=geojson,,,,",ak20280589,",2.5,ml,,ak,,"200km SSE of Adak, Alaska",0.52,96,",ak,",reviewed,1538845702656,"M 2.5 - 200km SSE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-720.0,1539484471709,https://earthquake.usgs.gov/earthquakes/eventpage/ak20280589 +,,20272143,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272143&format=geojson,,,,",ak20272143,",0.3,ml,,ak,,"97km NW of Nikiski, Alaska",0.51,1,",ak,",reviewed,1538845637898,"M 0.3 - 97km NW of Nikiski, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484471143,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272143 +,,20272141,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272141&format=geojson,,,,",ak20272141,",0.6,ml,,ak,,"57km E of Cantwell, Alaska",0.51,6,",ak,",reviewed,1538845453774,"M 0.6 - 57km E of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484470579,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272141 +,,20272139,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272139&format=geojson,,,,",ak20272139,",0.9,ml,,ak,,"49km NNE of Yakutat, Alaska",0.41,12,",ak,",reviewed,1538845081935,"M 0.9 Ice Quake - 49km NNE of Yakutat, Alaska",0,ice quake,",geoserve,origin,phase-data,",-540.0,1539484470047,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272139 +,,20272135,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272135&format=geojson,,,,",ak20272135,",2.3,ml,,ak,,"38km NNE of Nikiski, Alaska",0.78,81,",ak,",reviewed,1538844790215,"M 2.3 - 38km NNE of Nikiski, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484469328,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272135 +,,20280584,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20280584&format=geojson,,,,",ak20280584,",1.5,ml,,ak,,"115km NNW of Arctic Village, Alaska",0.58,35,",ak,",reviewed,1538844087378,"M 1.5 - 115km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484468745,https://earthquake.usgs.gov/earthquakes/eventpage/ak20280584 +,,20272124,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272124&format=geojson,,,,",ak20272124,",1.6,ml,,ak,,"115km NNW of Arctic Village, Alaska",0.7,39,",ak,",reviewed,1538843623653,"M 1.6 - 115km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484468146,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272124 +,,20272120,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272120&format=geojson,,,,",ak20272120,",1.4,ml,,ak,,"88km NW of Cape Yakataga, Alaska",0.66,30,",ak,",reviewed,1538843328700,"M 1.4 - 88km NW of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484467480,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272120 +,,20280581,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20280581&format=geojson,,,,",ak20280581,",1.8,ml,,ak,,"32km SSW of Atka, Alaska",0.5,50,",ak,",reviewed,1538843165998,"M 1.8 - 32km SSW of Atka, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539484466925,https://earthquake.usgs.gov/earthquakes/eventpage/ak20280581 +,,80312654,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80312654&format=geojson,0.037,,109.0,",mb80312654,",1.58,ml,,mb,8.0,"16km SE of Challis, Idaho",0.08,38,",mb,",reviewed,1538842965650,"M 1.6 - 16km SE of Challis, Idaho",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539011784870,https://earthquake.usgs.gov/earthquakes/eventpage/mb80312654 +,,1000h856,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h856&format=geojson,2.36,,62.0,",us1000h856,",5.0,mww,,us,,"11km ESE of Kimbe, Papua New Guinea",0.78,385,",us,",reviewed,1538842952660,"M 5.0 - 11km ESE of Kimbe, Papua New Guinea",1,earthquake,",geoserve,origin,phase-data,",600.0,1538843883040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h856 +,,20272118,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272118&format=geojson,,,,",ak20272118,",0.8,ml,,ak,,"3km NNE of Big Lake, Alaska",0.37,10,",ak,",reviewed,1538842795518,"M 0.8 - 3km NNE of Big Lake, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484466357,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272118 +,,80312844,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80312844&format=geojson,0.053,,109.0,",mb80312844,",1.13,md,,mb,8.0,"14km SE of Challis, Idaho",0.09,20,",mb,",reviewed,1538842324590,"M 1.1 - 14km SE of Challis, Idaho",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539020202500,https://earthquake.usgs.gov/earthquakes/eventpage/mb80312844 +,,00659855,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659855&format=geojson,0.041,,86.81,",nn00659855,",0.5,ml,,nn,9.0,"17km NNE of Hawthorne, Nevada",0.1353,4,",nn,",reviewed,1538841935327,"M 0.5 - 17km NNE of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538877977615,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659855 +,,20272115,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272115&format=geojson,,,,",ak20272115,",0.7,ml,,ak,,"55km WNW of Cape Yakataga, Alaska",0.62,8,",ak,",reviewed,1538841805187,"M 0.7 - 55km WNW of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484465774,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272115 +,,20280578,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20280578&format=geojson,,,,",ak20280578,",2.1,ml,,ak,,"85km WSW of Chernabura Island, Alaska",0.46,68,",ak,",reviewed,1538841543959,"M 2.1 - 85km WSW of Chernabura Island, Alaska",0,earthquake,",geoserve,origin,phase-data,",-660.0,1539484465213,https://earthquake.usgs.gov/earthquakes/eventpage/ak20280578 +,,20272109,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272109&format=geojson,,,,",ak20272109,",1.8,ml,,ak,,"95km NNW of Arctic Village, Alaska",0.55,50,",ak,",reviewed,1538841138126,"M 1.8 - 95km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484464636,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272109 +,,20272105,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272105&format=geojson,,,,",ak20272105,us1000h84z,",3.1,ml,,ak,,"103km NNW of Arctic Village, Alaska",0.58,148,",ak,us,",reviewed,1538840925138,"M 3.1 - 103km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484463785,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272105 +,,00659803,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659803&format=geojson,0.039,,61.42,",nn00659803,",0.8,ml,,nn,43.0,"48km ESE of Beatty, Nevada",0.1974,10,",nn,",reviewed,1538840901256,"M 0.8 - 48km ESE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538877905491,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659803 +,,60241801,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nm60241801&format=geojson,0.06464,,80.0,",nm60241801,",1.49,md,,nm,12.0,"5km E of Steele, Missouri",0.03,34,",nm,",reviewed,1538840597710,"M 1.5 - 5km E of Steele, Missouri",0,earthquake,",geoserve,origin,phase-data,",-360.0,1539007456280,https://earthquake.usgs.gov/earthquakes/eventpage/nm60241801 +,,20272098,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272098&format=geojson,,,,",ak20272098,",2.4,ml,,ak,,"48km E of Atka, Alaska",0.2,89,",ak,",reviewed,1538840197271,"M 2.4 - 48km E of Atka, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539484463232,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272098 +,,1000h84u,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h84u&format=geojson,6.142,,105.0,",us1000h84u,",4.2,mb,,us,,Western Xizang,1.11,271,",us,",reviewed,1538840120010,M 4.2 - Western Xizang,0,earthquake,",geoserve,origin,phase-data,",480.0,1538843003040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h84u +,,20272087,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272087&format=geojson,,,,",ak20272087,",2.3,ml,,ak,,"41km NW of Fort Yukon, Alaska",1.91,81,",ak,",automatic,1538839836577,"M 2.3 - 41km NW of Fort Yukon, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538840616746,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272087 +,,20272086,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272086&format=geojson,,,,",ak20272086,us1000h84r,",3.4,ml,,ak,,"84km SW of Kaktovik, Alaska",0.62,178,",ak,us,",reviewed,1538839827868,"M 3.4 - 84km SW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484462272,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272086 +,,20272085,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272085&format=geojson,,,,",ak20272085,",0.9,ml,,ak,,"84km WNW of Cape Yakataga, Alaska",0.31,12,",ak,",reviewed,1538839759570,"M 0.9 Ice Quake - 84km WNW of Cape Yakataga, Alaska",0,ice quake,",geoserve,origin,phase-data,",-540.0,1539484461733,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272085 +,,2018279006,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018279006&format=geojson,0.0649,,190.0,",pr2018279006,",2.19,md,,pr,6.0,"2km NW of Moca, Puerto Rico",0.12,74,",pr,",reviewed,1538839685660,"M 2.2 - 2km NW of Moca, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538857604872,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018279006 +,,20272084,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272084&format=geojson,,,,",ak20272084,",0.9,ml,,ak,,"51km ENE of Sutton-Alpine, Alaska",0.41,12,",ak,",reviewed,1538839605502,"M 0.9 - 51km ENE of Sutton-Alpine, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484461168,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272084 +,,20272094,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272094&format=geojson,,,,",ak20272094,",1.2,ml,,ak,,"48km N of Yakutat, Alaska",0.5,22,",ak,",reviewed,1538839557946,"M 1.2 Ice Quake - 48km N of Yakutat, Alaska",0,ice quake,",geoserve,origin,phase-data,",-540.0,1539484460603,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272094 +,,20280570,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20280570&format=geojson,,,,",ak20280570,",0.8,ml,,ak,,"57km ENE of Cape Yakataga, Alaska",0.42,10,",ak,",reviewed,1538839248477,"M 0.8 Ice Quake - 57km ENE of Cape Yakataga, Alaska",0,ice quake,",geoserve,origin,phase-data,",-540.0,1539484460048,https://earthquake.usgs.gov/earthquakes/eventpage/ak20280570 +,,1000h84n,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h84n&format=geojson,1.108,,85.0,",us1000h84n,",4.8,mb,,us,,"147km E of Nago, Japan",0.83,354,",us,",reviewed,1538839123780,"M 4.8 - 147km E of Nago, Japan",0,earthquake,",geoserve,origin,phase-data,",540.0,1538840634040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h84n +,,38316768,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38316768&format=geojson,0.1352,,58.0,",ci38316768,",1.23,ml,,ci,23.0,"11km ESE of Olancha, CA",0.15,23,",ci,",reviewed,1538838892490,"M 1.2 - 11km ESE of Olancha, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539116235330,https://earthquake.usgs.gov/earthquakes/eventpage/ci38316768 +,,20272077,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272077&format=geojson,,,,",ak20272077,",1.6,ml,,ak,,"125km NNE of Cape Yakataga, Alaska",0.43,39,",ak,",reviewed,1538838820165,"M 1.6 - 125km NNE of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484459341,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272077 +,,20280568,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20280568&format=geojson,,,,",ak20280568,",1.7,ml,,ak,,"106km S of Old Iliamna, Alaska",0.47,44,",ak,",reviewed,1538838773496,"M 1.7 - 106km S of Old Iliamna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484458773,https://earthquake.usgs.gov/earthquakes/eventpage/ak20280568 +,,38316760,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38316760&format=geojson,0.02362,,48.0,",ci38316760,",0.32,ml,,ci,18.0,"10km NE of Aguanga, CA",0.2,2,",ci,",reviewed,1538838604850,"M 0.3 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539007194950,https://earthquake.usgs.gov/earthquakes/eventpage/ci38316760 +,,73094536,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094536&format=geojson,0.04126,,127.0,",nc73094536,",-0.04,md,,nc,6.0,"8km N of Mineral, CA",0.04,0,",nc,",reviewed,1538838540840,"M -0.0 - 8km N of Mineral, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539100719455,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094536 +,,20272074,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272074&format=geojson,,,,",ak20272074,",1.3,ml,,ak,,"40km ENE of Talkeetna, Alaska",0.42,26,",ak,",reviewed,1538838175968,"M 1.3 - 40km ENE of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484458113,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272074 +,,60299937,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60299937&format=geojson,0.05349,,103.0,",uu60299937,",0.87,ml,,uu,10.0,"18km NE of West Yellowstone, Montana",0.18,12,",uu,",reviewed,1538838042360,"M 0.9 - 18km NE of West Yellowstone, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539020900110,https://earthquake.usgs.gov/earthquakes/eventpage/uu60299937 +,,20272072,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272072&format=geojson,,,,",ak20272072,",1.2,ml,,ak,,"42km WSW of Big Lake, Alaska",0.43,22,",ak,",reviewed,1538838032039,"M 1.2 - 42km WSW of Big Lake, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484457478,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272072 +,,20280565,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20280565&format=geojson,,,,",ak20280565,",2.7,ml,,ak,,"241km SE of Kodiak, Alaska",0.69,112,",ak,",reviewed,1538837920225,"M 2.7 - 241km SE of Kodiak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539484411137,https://earthquake.usgs.gov/earthquakes/eventpage/ak20280565 +,,00659798,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659798&format=geojson,0.028,,39.97,",nn00659798,",0.3,ml,,nn,42.0,"56km ENE of Beatty, Nevada",0.1818,1,",nn,",reviewed,1538837587161,"M 0.3 - 56km ENE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538877902167,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659798 +,,38316744,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38316744&format=geojson,0.04359,,16.0,",ci38316744,",1.81,ml,,ci,89.0,"8km SSW of Idyllwild, CA",0.17,50,",ci,",reviewed,1538837157060,"M 1.8 - 8km SSW of Idyllwild, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1539014163540,https://earthquake.usgs.gov/earthquakes/eventpage/ci38316744 +,,70806234,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70806234&format=geojson,0.01013,,195.0,",av70806234,",-1.08,ml,,av,4.0,"41km ENE of Adak, Alaska",0.1,0,",av,",reviewed,1538837111510,"M -1.1 - 41km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539040109950,https://earthquake.usgs.gov/earthquakes/eventpage/av70806234 +,,2018279005,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018279005&format=geojson,1.0744,,334.0,",pr2018279005,",3.21,md,,pr,9.0,"48km SW of Christiansted, U.S. Virgin Islands",0.31,159,",pr,",reviewed,1538837088320,"M 3.2 - 48km SW of Christiansted, U.S. Virgin Islands",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538847686666,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018279005 +,,61426997,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61426997&format=geojson,0.003676,,132.0,",uw61426997,",-0.11,mh,,uw,6.0,"38km NNE of Amboy, Washington",0.05,0,",uw,",reviewed,1538836601190,"M -0.1 - 38km NNE of Amboy, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539023284530,https://earthquake.usgs.gov/earthquakes/eventpage/uw61426997 +,,20272068,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272068&format=geojson,,,,",ak20272068,",1.3,ml,,ak,,"109km NW of Talkeetna, Alaska",0.35,26,",ak,",reviewed,1538836508606,"M 1.3 - 109km NW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484410507,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272068 +,,20272065,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272065&format=geojson,,,,",ak20272065,",1.2,ml,,ak,,"108km NW of Talkeetna, Alaska",0.39,22,",ak,",reviewed,1538836037920,"M 1.2 - 108km NW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484409913,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272065 +,,38316736,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38316736&format=geojson,0.1271,,45.0,",ci38316736,",1.24,ml,,ci,51.0,"14km E of Ocotillo Wells, CA",0.24,24,",ci,",reviewed,1538835286650,"M 1.2 - 14km E of Ocotillo Wells, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539013355705,https://earthquake.usgs.gov/earthquakes/eventpage/ci38316736 +,,38316728,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38316728&format=geojson,0.04036,,50.0,",ci38316728,",0.53,ml,,ci,17.0,"5km SW of Anza, CA",0.14,4,",ci,",reviewed,1538835194140,"M 0.5 - 5km SW of Anza, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539007212204,https://earthquake.usgs.gov/earthquakes/eventpage/ci38316728 +,,20272061,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272061&format=geojson,,,,",ak20272061,",1.9,ml,,ak,,"55km WNW of Cape Yakataga, Alaska",0.51,56,",ak,",reviewed,1538835131885,"M 1.9 - 55km WNW of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484409173,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272061 +,,20272060,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272060&format=geojson,,,,",ak20272060,",-0.2,ml,,ak,,"24km S of Ester, Alaska",0.44,0,",ak,",reviewed,1538834828289,"M -0.2 - 24km S of Ester, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484408626,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272060 +,,80312839,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80312839&format=geojson,0.081,,116.0,",mb80312839,",-0.34,md,,mb,8.0,"10km ESE of Lincoln, Montana",0.06,0,",mb,",reviewed,1538834800860,"M -0.3 - 10km ESE of Lincoln, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539019171790,https://earthquake.usgs.gov/earthquakes/eventpage/mb80312839 +,,00659854,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659854&format=geojson,0.075,,66.46,",nn00659854,",1.2,ml,,nn,18.0,"8km S of Dayton, Nevada",0.2042,22,",nn,",reviewed,1538834657295,"M 1.2 - 8km S of Dayton, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538954643863,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659854 +,,00659853,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659853&format=geojson,0.192,,149.92,",nn00659853,",1.4,ml,,nn,6.0,"12km NNW of Dixon Lane-Meadow Creek, California",0.1777,30,",nn,",reviewed,1538834460249,"M 1.4 - 12km NNW of Dixon Lane-Meadow Creek, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538877967985,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659853 +,,20272057,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272057&format=geojson,,,,",ak20272057,",1.7,ml,,ak,,"48km WNW of Willow, Alaska",0.5,44,",ak,",reviewed,1538834451913,"M 1.7 - 48km WNW of Willow, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484407899,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272057 +,,00659839,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659839&format=geojson,0.152,,126.34,",nn00659839,",0.3,ml,,nn,13.0,"36km NW of Beatty, Nevada",0.1411,1,",nn,",reviewed,1538834332586,"M 0.3 - 36km NW of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538877953826,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659839 +,,80312644,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80312644&format=geojson,0.085,,116.0,",mb80312644,",1.39,ml,,mb,12.0,"11km ESE of Lincoln, Montana",0.1,30,",mb,",reviewed,1538833823510,"M 1.4 - 11km ESE of Lincoln, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539012734210,https://earthquake.usgs.gov/earthquakes/eventpage/mb80312644 +,,20272052,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272052&format=geojson,,,,",ak20272052,",1.5,ml,,ak,,"62km E of Cape Yakataga, Alaska",0.38,35,",ak,",reviewed,1538833655239,"M 1.5 Ice Quake - 62km E of Cape Yakataga, Alaska",0,ice quake,",geoserve,origin,phase-data,",-540.0,1539484407344,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272052 +,,20272050,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272050&format=geojson,,,,",ak20272050,",1.8,ml,,ak,,"35km WSW of Y, Alaska",0.57,50,",ak,",reviewed,1538833597543,"M 1.8 - 35km WSW of Y, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484406621,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272050 +,,38316712,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38316712&format=geojson,0.006028,,102.0,",ci38316712,",0.19,ml,,ci,16.0,"10km NE of Aguanga, CA",0.13,1,",ci,",reviewed,1538833031130,"M 0.2 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539017181950,https://earthquake.usgs.gov/earthquakes/eventpage/ci38316712 +,,20272046,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272046&format=geojson,,,,",ak20272046,us1000h83p,",2.4,ml,,ak,,"70km SSW of Kaktovik, Alaska",0.61,89,",ak,us,",reviewed,1538832780732,"M 2.4 - 70km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484405916,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272046 +,,1000h83i,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h83i&format=geojson,1.334,,93.0,",us1000h83i,",4.1,mb,,us,,"18km NNW of Baghlan, Afghanistan",0.72,259,",us,",reviewed,1538831473720,"M 4.1 - 18km NNW of Baghlan, Afghanistan",0,earthquake,",geoserve,origin,phase-data,",270.0,1538839930040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h83i +,,20272039,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272039&format=geojson,,,,",ak20272039,",1.7,ml,,ak,,"18km N of North Nenana, Alaska",0.58,44,",ak,",reviewed,1538831400346,"M 1.7 - 18km N of North Nenana, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484405241,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272039 +,,73094516,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094516&format=geojson,0.1144,,243.0,",nc73094516,",0.73,md,,nc,11.0,"18km WSW of Toms Place, CA",0.07,8,",nc,",reviewed,1538831132680,"M 0.7 - 18km WSW of Toms Place, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539107703665,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094516 +,,38316704,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38316704&format=geojson,0.01235,,119.0,",ci38316704,",0.34,ml,,ci,13.0,"9km NE of Aguanga, CA",0.17,2,",ci,",reviewed,1538831016190,"M 0.3 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539007229788,https://earthquake.usgs.gov/earthquakes/eventpage/ci38316704 +,,20272035,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272035&format=geojson,,,,",ak20272035,",1.1,ml,,ak,,"105km W of Cantwell, Alaska",0.66,19,",ak,",reviewed,1538830963114,"M 1.1 - 105km W of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484404602,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272035 +,,38316696,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38316696&format=geojson,0.08335,,126.0,",ci38316696,",0.59,ml,,ci,30.0,"21km NNW of Borrego Springs, CA",0.15,5,",ci,",reviewed,1538830920880,"M 0.6 - 21km NNW of Borrego Springs, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539012447252,https://earthquake.usgs.gov/earthquakes/eventpage/ci38316696 +,,20272034,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272034&format=geojson,,,,",ak20272034,",0.9,ml,,ak,,"58km E of Cape Yakataga, Alaska",0.35,12,",ak,",reviewed,1538830369426,"M 0.9 Ice Quake - 58km E of Cape Yakataga, Alaska",0,ice quake,",geoserve,origin,phase-data,",-540.0,1539484404005,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272034 +,,20272030,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272030&format=geojson,,,,",ak20272030,",2.8,ml,,ak,,"56km SSW of Little Sitkin Island, Alaska",0.59,121,",ak,",reviewed,1538829901703,"M 2.8 - 56km SSW of Little Sitkin Island, Alaska",0,earthquake,",geoserve,origin,phase-data,",720.0,1539484403417,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272030 +,,20272028,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272028&format=geojson,,,,",ak20272028,",0.8,ml,,ak,,"90km ENE of Cape Yakataga, Alaska",0.44,10,",ak,",reviewed,1538829626720,"M 0.8 - 90km ENE of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539484402836,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272028 +,,00659793,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659793&format=geojson,0.123,,62.79,",nn00659793,",1.4,ml,,nn,17.0,"28km WSW of Hawthorne, Nevada",0.1995,30,",nn,",reviewed,1538829529133,"M 1.4 - 28km WSW of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538877899214,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659793 +,,60299932,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60299932&format=geojson,0.04736,,124.0,",uu60299932,",1.69,md,,uu,8.0,"25km SSE of Old Faithful Geyser, Wyoming",0.21,44,",uu,",reviewed,1538829103310,"M 1.7 - 25km SSE of Old Faithful Geyser, Wyoming",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539026367550,https://earthquake.usgs.gov/earthquakes/eventpage/uu60299932 +,,20272018,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272018&format=geojson,,,,",ak20272018,",1.9,ml,,ak,,"55km W of Talkeetna, Alaska",0.4,56,",ak,",reviewed,1538827966329,"M 1.9 - 55km W of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484401842,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272018 +,,20272016,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272016&format=geojson,,,,",ak20272016,",0.4,ml,,ak,,"96km NW of Nikiski, Alaska",0.42,2,",ak,",reviewed,1538827827503,"M 0.4 - 96km NW of Nikiski, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484401262,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272016 +,,20272014,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272014&format=geojson,,,,",ak20272014,",0.7,ml,,ak,,"8km NE of North Pole, Alaska",0.66,8,",ak,",reviewed,1538827746512,"M 0.7 - 8km NE of North Pole, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484400656,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272014 +,,61792521,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61792521&format=geojson,0.03884,,240.0,",av61792521,",0.09,ml,,av,5.0,"10km ENE of Atka, Alaska",0.17,0,",av,",reviewed,1538827628410,"M 0.1 - 10km ENE of Atka, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539039343180,https://earthquake.usgs.gov/earthquakes/eventpage/av61792521 +,,70806224,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70806224&format=geojson,0.03105,,110.0,",av70806224,",-0.02,ml,,av,5.0,"54km SSW of Redoubt Volcano, Alaska",0.14,0,",av,",reviewed,1538827502500,"M -0.0 - 54km SSW of Redoubt Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539042730510,https://earthquake.usgs.gov/earthquakes/eventpage/av70806224 +,,80312629,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80312629&format=geojson,0.125,,101.0,",mb80312629,",1.42,ml,,mb,11.0,"15km SE of Lincoln, Montana",0.15,31,",mb,",reviewed,1538827230490,"M 1.4 - 15km SE of Lincoln, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539018868810,https://earthquake.usgs.gov/earthquakes/eventpage/mb80312629 +,,38316680,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38316680&format=geojson,0.02309,,44.0,",ci38316680,",0.88,ml,,ci,44.0,"2km SSE of Mentone, CA",0.17,12,",ci,",reviewed,1538827005930,"M 0.9 - 2km SSE of Mentone, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539011737813,https://earthquake.usgs.gov/earthquakes/eventpage/ci38316680 +,,60065723,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nm60065723&format=geojson,0.08937,,118.0,",nm60065723,",1.94,md,,nm,11.0,"11km NNW of Covington, Tennessee",0.06,58,",nm,",reviewed,1538826827420,"M 1.9 - 11km NNW of Covington, Tennessee",0,earthquake,",geoserve,origin,phase-data,",-360.0,1538846884710,https://earthquake.usgs.gov/earthquakes/eventpage/nm60065723 +,,20272009,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272009&format=geojson,,,,",ak20272009,",0.7,ml,,ak,,"59km NW of Cape Yakataga, Alaska",0.46,8,",ak,",reviewed,1538826573029,"M 0.7 - 59km NW of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484399995,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272009 +,,20272007,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272007&format=geojson,,,,",ak20272007,",2.3,ml,,ak,,"56km WSW of Amatignak Island, Alaska",0.62,81,",ak,",reviewed,1538826358175,"M 2.3 - 56km WSW of Amatignak Island, Alaska",0,earthquake,",geoserve,origin,phase-data,",-720.0,1539484399433,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272007 +,,20280546,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20280546&format=geojson,,,,",ak20280546,",2.8,ml,,ak,,"278km ESE of Kodiak, Alaska",0.57,121,",ak,",reviewed,1538826039747,"M 2.8 - 278km ESE of Kodiak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539484398748,https://earthquake.usgs.gov/earthquakes/eventpage/ak20280546 +,,00659828,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659828&format=geojson,0.018,,236.47,",nn00659828,",-0.1,ml,,nn,7.0,"50km NNW of Gabbs, Nevada",0.2124,0,",nn,",reviewed,1538825988422,"M -0.1 - 50km NNW of Gabbs, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538877934859,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659828 +,,1000h830,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h830&format=geojson,1.052,,78.0,",us1000h830,",4.4,mb,,us,,"118km SW of Kota Ternate, Indonesia",0.52,298,",us,",reviewed,1538825820340,"M 4.4 - 118km SW of Kota Ternate, Indonesia",0,earthquake,",geoserve,origin,phase-data,",480.0,1538826558040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h830 +,2.2,73094501,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094501&format=geojson,0.143,2.0,101.0,",nc73094501,",1.77,md,,nc,12.0,"8km NNW of Redwood Valley, CA",0.09,49,",nc,",reviewed,1538825719310,"M 1.8 - 8km NNW of Redwood Valley, CA",0,earthquake,",dyfi,geoserve,nearby-cities,origin,phase-data,",-480.0,1539223647249,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094501 +,,60299927,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60299927&format=geojson,0.05189,,104.0,",uu60299927,",0.92,ml,,uu,9.0,"18km NE of West Yellowstone, Montana",0.14,13,",uu,",reviewed,1538825716970,"M 0.9 - 18km NE of West Yellowstone, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539020712890,https://earthquake.usgs.gov/earthquakes/eventpage/uu60299927 +,,73094496,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094496&format=geojson,0.001711,,100.0,",nc73094496,",0.89,md,,nc,10.0,"6km WNW of Cobb, CA",0.04,12,",nc,",automatic,1538825631970,"M 0.9 - 6km WNW of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538827562460,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094496 +,,20272005,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272005&format=geojson,,,,",ak20272005,",1.1,ml,,ak,,"112km NW of Talkeetna, Alaska",0.47,19,",ak,",reviewed,1538825275300,"M 1.1 - 112km NW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484398144,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272005 +,,20280544,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20280544&format=geojson,,,,",ak20280544,",2.7,ml,,ak,,"81km S of King Salmon, Alaska",0.52,112,",ak,",reviewed,1538824775824,"M 2.7 - 81km S of King Salmon, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484397183,https://earthquake.usgs.gov/earthquakes/eventpage/ak20280544 +,,20272003,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272003&format=geojson,,,,",ak20272003,",1.1,ml,,ak,,"19km W of Big Lake, Alaska",0.66,19,",ak,",reviewed,1538824753288,"M 1.1 - 19km W of Big Lake, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484396509,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272003 +,,20272001,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20272001&format=geojson,,,,",ak20272001,",0.9,ml,,ak,,"144km WNW of Haines Junction, Canada",0.31,12,",ak,",reviewed,1538824377989,"M 0.9 - 144km WNW of Haines Junction, Canada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539484395919,https://earthquake.usgs.gov/earthquakes/eventpage/ak20272001 +,,80312619,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80312619&format=geojson,0.663,,111.0,",mb80312619,",1.65,ml,,mb,7.0,"62km WSW of Challis, Idaho",0.22,42,",mb,",reviewed,1538824358170,"M 1.7 - 62km WSW of Challis, Idaho",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539384085910,https://earthquake.usgs.gov/earthquakes/eventpage/mb80312619 +,,00659827,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659827&format=geojson,0.08,,118.88,",nn00659827,",0.1,ml,,nn,5.0,"3km NNE of Lemmon Valley, Nevada",0.1095,0,",nn,",reviewed,1538824191397,"M 0.1 - 3km NNE of Lemmon Valley, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538877933216,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659827 +,,20271999,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271999&format=geojson,,,,",ak20271999,",1.3,ml,,ak,,"53km SSW of Cantwell, Alaska",0.42,26,",ak,",reviewed,1538824103100,"M 1.3 - 53km SSW of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484395253,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271999 +,,20271992,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271992&format=geojson,,,,",ak20271992,",1.1,ml,,ak,,"45km SSW of Cantwell, Alaska",0.56,19,",ak,",reviewed,1538823908315,"M 1.1 - 45km SSW of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484394598,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271992 +,,20271991,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271991&format=geojson,,,,",ak20271991,",0.7,ml,,ak,,"39km NW of Willow, Alaska",0.44,8,",ak,",reviewed,1538823752643,"M 0.7 - 39km NW of Willow, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484393910,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271991 +,,73094471,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094471&format=geojson,0.005318,,107.0,",nc73094471,",0.56,md,,nc,7.0,"8km WNW of The Geysers, CA",0.03,5,",nc,",automatic,1538823534770,"M 0.6 - 8km WNW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538825463290,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094471 +,,70806219,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70806219&format=geojson,0.05862,,162.0,",av70806219,",-0.5,ml,,av,5.0,"23km W of Dutch Harbor, Alaska",0.17,0,",av,",reviewed,1538823367810,"M -0.5 - 23km W of Dutch Harbor, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539038851450,https://earthquake.usgs.gov/earthquakes/eventpage/av70806219 +,,70806214,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70806214&format=geojson,0.05461,,162.0,",av70806214,",0.03,ml,,av,6.0,"23km W of Dutch Harbor, Alaska",0.14,0,",av,",reviewed,1538823311170,"M 0.0 - 23km W of Dutch Harbor, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539038690140,https://earthquake.usgs.gov/earthquakes/eventpage/av70806214 +,,2018279003,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018279003&format=geojson,1.588,,339.0,",pr2018279003,",3.24,md,,pr,9.0,"93km N of Road Town, British Virgin Islands",0.3,162,",pr,",reviewed,1538823111280,"M 3.2 - 93km N of Road Town, British Virgin Islands",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538838164404,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018279003 +,,61426937,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61426937&format=geojson,0.007234,,119.0,",uw61426937,",0.45,ml,,uw,14.0,"33km NE of Amboy, Washington",0.13,3,",uw,",reviewed,1538823077190,"M 0.5 - 33km NE of Amboy, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539031782520,https://earthquake.usgs.gov/earthquakes/eventpage/uw61426937 +,,00659789,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659789&format=geojson,0.057,,32.87,",nn00659789,",0.5,ml,,nn,44.0,"54km ESE of Beatty, Nevada",0.209,4,",nn,",reviewed,1538823066751,"M 0.5 - 54km ESE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538877893639,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659789 +,,20280538,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20280538&format=geojson,,,,",ak20280538,",2.1,ml,,ak,,"121km SE of Amatignak Island, Alaska",0.31,68,",ak,",reviewed,1538822520195,"M 2.1 - 121km SE of Amatignak Island, Alaska",0,earthquake,",geoserve,origin,phase-data,",-720.0,1539484393299,https://earthquake.usgs.gov/earthquakes/eventpage/ak20280538 +,,1000h82r,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h82r&format=geojson,0.748,,146.0,",us1000h82r,",4.2,mb,,us,,"82km NNW of Kota Ternate, Indonesia",0.83,271,",us,",reviewed,1538822234100,"M 4.2 - 82km NNW of Kota Ternate, Indonesia",0,earthquake,",geoserve,origin,phase-data,",480.0,1538824060040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h82r +,,00659826,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659826&format=geojson,0.435,,109.68,",nn00659826,",0.7,ml,,nn,13.0,"38km S of Caliente, Nevada",0.2351,8,",nn,",reviewed,1538821434704,"M 0.7 - 38km S of Caliente, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538877931461,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659826 +,,20271989,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271989&format=geojson,,,,",ak20271989,",0.8,ml,,ak,,"97km NNW of Yakutat, Alaska",0.37,10,",ak,",reviewed,1538821303813,"M 0.8 - 97km NNW of Yakutat, Alaska",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539484392730,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271989 +,,20271984,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271984&format=geojson,,,,",ak20271984,",2.3,ml,,ak,,"26km NNW of Fritz Creek, Alaska",0.72,81,",ak,",reviewed,1538821223631,"M 2.3 - 26km NNW of Fritz Creek, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484391885,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271984 +,,70806209,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70806209&format=geojson,0.06972,,140.0,",av70806209,",-0.31,ml,,av,5.0,"22km W of Unalaska, Alaska",0.16,0,",av,",reviewed,1538820671620,"M -0.3 - 22km W of Unalaska, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539038555470,https://earthquake.usgs.gov/earthquakes/eventpage/av70806209 +,,20271978,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271978&format=geojson,,,,",ak20271978,av61792491,",1.3,ml,,ak,,"104km N of Redoubt Volcano, Alaska",0.52,26,",ak,av,",reviewed,1538820469842,"M 1.3 - 104km N of Redoubt Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484391157,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271978 +,,38316672,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38316672&format=geojson,0.005643,,50.0,",ci38316672,",0.52,ml,,ci,22.0,"10km NE of Aguanga, CA",0.15,4,",ci,",reviewed,1538820448270,"M 0.5 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539007291826,https://earthquake.usgs.gov/earthquakes/eventpage/ci38316672 +,,20271977,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271977&format=geojson,,,,",ak20271977,",1.3,ml,,ak,,"71km NW of Yakutat, Alaska",0.75,26,",ak,",reviewed,1538820329877,"M 1.3 - 71km NW of Yakutat, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484390338,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271977 +,2.0,1000h82b,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h82b&format=geojson,0.894,3.0,77.0,",us1000h82b,",4.6,mb,,us,,"89km NW of Queenstown, New Zealand",1.3,326,",us,",reviewed,1538818636410,"M 4.6 - 89km NW of Queenstown, New Zealand",0,earthquake,",dyfi,geoserve,origin,phase-data,",720.0,1538988912304,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h82b +,,2018279002,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018279002&format=geojson,0.2686,,320.0,",pr2018279002,",1.95,md,,pr,4.0,"18km WNW of Puerto Real, Puerto Rico",0.21,58,",pr,",reviewed,1538818525440,"M 2.0 - 18km WNW of Puerto Real, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538838006440,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018279002 +,,20280533,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20280533&format=geojson,,,,",ak20280533,",1.7,ml,,ak,,"106km NNW of Arctic Village, Alaska",0.57,44,",ak,",reviewed,1538818335558,"M 1.7 - 106km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484389736,https://earthquake.usgs.gov/earthquakes/eventpage/ak20280533 +,,73094381,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094381&format=geojson,0.2814,,42.0,",nc73094381,",2.24,md,,nc,35.0,"10km NE of Orland, CA",0.23,77,",nc,",reviewed,1538818216200,"M 2.2 - 10km NE of Orland, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539152042542,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094381 +,,73094376,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094376&format=geojson,0.02579,,151.0,",nc73094376,",1.11,md,,nc,33.0,"11km S of Kelseyville, CA",0.05,19,",nc,",reviewed,1538818127220,"M 1.1 - 11km S of Kelseyville, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539096062825,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094376 +,,20280532,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20280532&format=geojson,,,,",ak20280532,",1.1,ml,,ak,,"99km NW of Arctic Village, Alaska",0.79,19,",ak,",reviewed,1538818038152,"M 1.1 - 99km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484389177,https://earthquake.usgs.gov/earthquakes/eventpage/ak20280532 +,,60299922,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60299922&format=geojson,0.06869,,115.0,",uu60299922,",1.02,md,,uu,11.0,"8km SSW of Milford, Utah",0.08,16,",uu,",reviewed,1538817693250,"M 1.0 - 8km SSW of Milford, Utah",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539026524050,https://earthquake.usgs.gov/earthquakes/eventpage/uu60299922 +,,20271972,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271972&format=geojson,,,,",ak20271972,",1.6,ml,,ak,,"95km NW of Arctic Village, Alaska",0.36,39,",ak,",reviewed,1538817478554,"M 1.6 - 95km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484388492,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271972 +,,73094366,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094366&format=geojson,0.2979,,77.0,",nc73094366,",2.06,md,,nc,14.0,"14km NNE of Lake Pillsbury, CA",0.16,65,",nc,",reviewed,1538817029010,"M 2.1 - 14km NNE of Lake Pillsbury, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539210425564,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094366 +,,20280530,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20280530&format=geojson,,,,",ak20280530,",1.3,ml,,ak,,"97km NW of Arctic Village, Alaska",0.5,26,",ak,",reviewed,1538817019830,"M 1.3 - 97km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484387784,https://earthquake.usgs.gov/earthquakes/eventpage/ak20280530 +,,70634942,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70634942&format=geojson,0.03448,,60.0,",hv70634942,",1.95,ml,,hv,24.0,"22km ENE of Honaunau-Napoopoo, Hawaii",0.13,58,",hv,",reviewed,1538816698420,"M 2.0 - 22km ENE of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539141518540,https://earthquake.usgs.gov/earthquakes/eventpage/hv70634942 +,,20271970,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271970&format=geojson,,,,",ak20271970,",2.0,ml,,ak,,"80km SSW of Kaktovik, Alaska",0.51,62,",ak,",reviewed,1538816637296,"M 2.0 - 80km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484387128,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271970 +,,20271969,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271969&format=geojson,,,,",ak20271969,",0.3,ml,,ak,,"31km N of North Nenana, Alaska",0.48,1,",ak,",reviewed,1538815401917,"M 0.3 - 31km N of North Nenana, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484386567,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271969 +,,38316664,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38316664&format=geojson,0.03721,,47.0,",ci38316664,",0.57,ml,,ci,22.0,"8km ENE of Aguanga, CA",0.16,5,",ci,",reviewed,1538815376330,"M 0.6 - 8km ENE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539007340876,https://earthquake.usgs.gov/earthquakes/eventpage/ci38316664 +,,20271965,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271965&format=geojson,,,,",ak20271965,",0.3,ml,,ak,,"32km N of North Nenana, Alaska",0.44,1,",ak,",reviewed,1538814513177,"M 0.3 - 32km N of North Nenana, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484385961,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271965 +,,20271964,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271964&format=geojson,,,,",ak20271964,",0.5,ml,,ak,,"43km SW of North Nenana, Alaska",0.42,4,",ak,",reviewed,1538814395239,"M 0.5 - 43km SW of North Nenana, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484385324,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271964 +,,20271963,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271963&format=geojson,,,,",ak20271963,",2.2,ml,,ak,,"80km SSW of Kaktovik, Alaska",0.48,74,",ak,",reviewed,1538812756114,"M 2.2 - 80km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484384663,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271963 +,,20271960,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271960&format=geojson,,,,",ak20271960,",1.7,ml,,ak,,"20km WSW of Big Lake, Alaska",0.55,44,",ak,",reviewed,1538811876638,"M 1.7 - 20km WSW of Big Lake, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484383970,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271960 +,,20271961,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271961&format=geojson,,,,",ak20271961,",0.4,ml,,ak,,"37km S of Redoubt Volcano, Alaska",0.29,2,",ak,",reviewed,1538811702884,"M 0.4 - 37km S of Redoubt Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484383405,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271961 +,,20271947,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271947&format=geojson,,,,",ak20271947,",3.4,ml,,ak,,"20km S of Redoubt Volcano, Alaska",0.59,178,",ak,",reviewed,1538811120737,"M 3.4 - 20km S of Redoubt Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484382015,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271947 +,,20280521,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20280521&format=geojson,,,,",ak20280521,",1.5,ml,,ak,,"68km N of Kodiak, Alaska",0.47,35,",ak,",reviewed,1538810519257,"M 1.5 - 68km N of Kodiak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484381440,https://earthquake.usgs.gov/earthquakes/eventpage/ak20280521 +,,20271942,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271942&format=geojson,,,,",ak20271942,",2.0,ml,,ak,,"1km SSE of Houston, Alaska",0.39,62,",ak,",reviewed,1538810479306,"M 2.0 - 1km SSE of Houston, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484380653,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271942 +,,20271941,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271941&format=geojson,,,,",ak20271941,",1.5,ml,,ak,,"69km SSW of Redoubt Volcano, Alaska",0.41,35,",ak,",reviewed,1538809926544,"M 1.5 - 69km SSW of Redoubt Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484380044,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271941 +,,20271940,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271940&format=geojson,,,,",ak20271940,",1.3,ml,,ak,,"105km W of Cantwell, Alaska",0.55,26,",ak,",reviewed,1538809597754,"M 1.3 - 105km W of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484379405,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271940 +,,38316656,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38316656&format=geojson,0.02631,,85.0,",ci38316656,",1.4,ml,,ci,23.0,"7km S of Brawley, CA",0.23,30,",ci,",reviewed,1538809519600,"M 1.4 - 7km S of Brawley, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539011373463,https://earthquake.usgs.gov/earthquakes/eventpage/ci38316656 +,,38316648,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38316648&format=geojson,0.03132,,107.0,",ci38316648,",0.15,ml,,ci,9.0,"10km WSW of Anza, CA",0.09,0,",ci,",reviewed,1538809369310,"M 0.2 - 10km WSW of Anza, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539007479132,https://earthquake.usgs.gov/earthquakes/eventpage/ci38316648 +,,38316640,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38316640&format=geojson,0.02874,,71.0,",ci38316640,",0.36,ml,,ci,17.0,"9km ENE of Aguanga, CA",0.15,2,",ci,",reviewed,1538809214980,"M 0.4 - 9km ENE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539007481161,https://earthquake.usgs.gov/earthquakes/eventpage/ci38316640 +,,70634772,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70634772&format=geojson,0.08137,,224.0,",hv70634772,",2.49,ml,,hv,33.0,"10km SSE of Leilani Estates, Hawaii",0.13,95,",hv,",reviewed,1538808901290,"M 2.5 - 10km SSE of Leilani Estates, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539045629100,https://earthquake.usgs.gov/earthquakes/eventpage/hv70634772 +,,73094286,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094286&format=geojson,0.165,,251.0,",nn00659822,nc73094286,",1.09,md,,nc,9.0,"6km SW of Chester, CA",0.13,18,",nn,nc,",reviewed,1538808646270,"M 1.1 - 6km SW of Chester, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539058023226,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094286 +,,38316632,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38316632&format=geojson,0.09911,,58.0,",ci38316632,",1.07,ml,,ci,63.0,"15km ENE of Borrego Springs, CA",0.19,18,",ci,",reviewed,1538808450290,"M 1.1 - 15km ENE of Borrego Springs, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539010948221,https://earthquake.usgs.gov/earthquakes/eventpage/ci38316632 +,,20280517,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20280517&format=geojson,,,,",ak20280517,",1.4,ml,,ak,,"29km SW of Tanaga Volcano, Alaska",0.43,30,",ak,",reviewed,1538808068469,"M 1.4 - 29km SW of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539484378811,https://earthquake.usgs.gov/earthquakes/eventpage/ak20280517 +,,38316624,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38316624&format=geojson,0.01478,,32.0,",ci38316624,",0.69,ml,,ci,30.0,"9km NE of Aguanga, CA",0.2,7,",ci,",reviewed,1538807638750,"M 0.7 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1539007563220,https://earthquake.usgs.gov/earthquakes/eventpage/ci38316624 +,2.0,1000h80u,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h80u&format=geojson,2.757,1.0,189.0,",us1000h80u,",4.3,mb,,us,,"290km WNW of Bandon, Oregon",0.95,285,",us,",reviewed,1538807492600,"M 4.3 - 290km WNW of Bandon, Oregon",0,earthquake,",dyfi,geoserve,origin,phase-data,",-540.0,1538871429231,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h80u +,,00659821,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659821&format=geojson,0.108,,88.02,",nn00659821,",0.3,ml,,nn,10.0,"13km NNE of Incline Village, Nevada",0.1127,1,",nn,",reviewed,1538807423121,"M 0.3 - 13km NNE of Incline Village, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538877926769,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659821 +,,2018279001,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018279001&format=geojson,0.1199,,255.0,",pr2018279001,",2.56,md,,pr,14.0,"13km SSW of Guanica, Puerto Rico",0.12,101,",pr,",reviewed,1538807392860,"M 2.6 - 13km SSW of Guanica, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538815930150,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018279001 +,,38316616,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38316616&format=geojson,0.02563,,37.0,",ci38316616,",0.46,ml,,ci,25.0,"9km NE of Aguanga, CA",0.12,3,",ci,",reviewed,1538807038600,"M 0.5 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539007580053,https://earthquake.usgs.gov/earthquakes/eventpage/ci38316616 +,,00659820,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659820&format=geojson,0.019,,163.83,",nn00659820,",-0.2,ml,,nn,6.0,"52km ESE of Beatty, Nevada",0.1211,0,",nn,",reviewed,1538806492983,"M -0.2 - 52km ESE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538877923248,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659820 +,,70634672,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70634672&format=geojson,0.01781,,186.0,",hv70634672,",1.5,ml,,hv,9.0,"12km E of Volcano, Hawaii",0.12,35,",hv,",reviewed,1538806413990,"M 1.5 - 12km E of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539289097070,https://earthquake.usgs.gov/earthquakes/eventpage/hv70634672 +,,00659819,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659819&format=geojson,0.025,,197.65,",nn00659819,",0.1,ml,,nn,8.0,"50km ESE of Beatty, Nevada",0.1448,0,",nn,",reviewed,1538805382629,"M 0.1 - 50km ESE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538877921757,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659819 +,,20271939,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271939&format=geojson,,,,",ak20271939,",2.3,ml,,ak,,"62km SSW of Adak, Alaska",0.44,81,",ak,",reviewed,1538804595692,"M 2.3 - 62km SSW of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-720.0,1539484378201,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271939 +,,20280515,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20280515&format=geojson,,,,",ak20280515,",2.0,ml,,ak,,"88km E of Atka, Alaska",0.26,62,",ak,",reviewed,1538804483291,"M 2.0 - 88km E of Atka, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539484377655,https://earthquake.usgs.gov/earthquakes/eventpage/ak20280515 +,,73094266,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094266&format=geojson,0.009193,,148.0,",nc73094266,",0.22,md,,nc,6.0,"7km WNW of The Geysers, CA",0.02,1,",nc,",reviewed,1538804192400,"M 0.2 - 7km WNW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539080978218,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094266 +,,38316608,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38316608&format=geojson,0.008875,,28.0,",ci38316608,",1.41,ml,,ci,59.0,"9km NE of Aguanga, CA",0.19,31,",ci,",reviewed,1538804019210,"M 1.4 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1539007625870,https://earthquake.usgs.gov/earthquakes/eventpage/ci38316608 +,,20271937,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271937&format=geojson,,,,",ak20271937,",1.1,ml,,ak,,"58km W of Anchorage, Alaska",0.31,19,",ak,",reviewed,1538803721099,"M 1.1 - 58km W of Anchorage, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484376953,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271937 +,,20271935,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271935&format=geojson,,,,",ak20271935,",1.6,ml,,ak,,"46km S of Redoubt Volcano, Alaska",0.53,39,",ak,",reviewed,1538802905866,"M 1.6 - 46km S of Redoubt Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484376226,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271935 +,,20271933,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271933&format=geojson,,,,",ak20271933,",1.8,ml,,ak,,"84km SW of Kaktovik, Alaska",0.76,50,",ak,",reviewed,1538802271490,"M 1.8 - 84km SW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484375546,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271933 +,,20271930,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271930&format=geojson,,,,",ak20271930,",2.2,ml,,ak,,"78km SSW of Kaktovik, Alaska",0.54,74,",ak,",reviewed,1538801900288,"M 2.2 - 78km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484374914,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271930 +,,38316584,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38316584&format=geojson,0.1339,,128.0,",ci38316584,",0.9,ml,,ci,16.0,"26km ENE of Pine Valley, CA",0.13,12,",ci,",reviewed,1538801713880,"M 0.9 - 26km ENE of Pine Valley, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539109448181,https://earthquake.usgs.gov/earthquakes/eventpage/ci38316584 +,,73094256,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094256&format=geojson,0.004366,,90.0,",nc73094256,",0.56,md,,nc,10.0,"7km WNW of The Geysers, CA",0.04,5,",nc,",automatic,1538801672820,"M 0.6 - 7km WNW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538802603073,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094256 +,,20271928,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271928&format=geojson,,,,",ak20271928,",2.0,ml,,ak,,"28km SE of False Pass, Alaska",0.45,62,",ak,",reviewed,1538801481439,"M 2.0 - 28km SE of False Pass, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484374340,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271928 +,,20271927,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271927&format=geojson,,,,",ak20271927,",1.3,ml,,ak,,"90km N of Kobuk, Alaska",0.48,26,",ak,",reviewed,1538801478427,"M 1.3 - 90km N of Kobuk, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484373721,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271927 +,,20271924,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271924&format=geojson,,,,",ak20271924,",1.0,ml,,ak,,"36km NNE of North Nenana, Alaska",0.49,15,",ak,",reviewed,1538801058234,"M 1.0 - 36km NNE of North Nenana, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484373102,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271924 +,,20271921,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271921&format=geojson,,,,",ak20271921,",1.8,ml,,ak,,"65km NE of Sutton-Alpine, Alaska",0.83,50,",ak,",reviewed,1538800971801,"M 1.8 - 65km NE of Sutton-Alpine, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484372379,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271921 +,,20271917,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271917&format=geojson,,,,",ak20271917,",2.0,ml,,ak,,"129km NNW of Arctic Village, Alaska",0.69,62,",ak,",reviewed,1538800592205,"M 2.0 - 129km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484371756,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271917 +,,20271914,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271914&format=geojson,,,,",ak20271914,",1.4,ml,,ak,,"55km SW of Anchor Point, Alaska",0.2,30,",ak,",reviewed,1538799863242,"M 1.4 - 55km SW of Anchor Point, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539484371156,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271914 +,,38316576,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38316576&format=geojson,0.01153,,26.0,",ci38316576,",2.18,ml,,ci,100.0,"9km NE of Aguanga, CA",0.21,73,",ci,",reviewed,1538799832410,"M 2.2 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1539010537050,https://earthquake.usgs.gov/earthquakes/eventpage/ci38316576 +,2.7,1000h800,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h800&format=geojson,1.134,1.0,75.0,",us1000h800,",4.6,mb,,us,,"27km ESE of Chitose, Japan",0.41,326,",us,",reviewed,1538799265130,"M 4.6 - 27km ESE of Chitose, Japan",0,earthquake,",dyfi,geoserve,origin,phase-data,",540.0,1538811844812,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h800 +,,20271909,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271909&format=geojson,,,,",ak20271909,",1.8,ml,,ak,,"70km SW of Cantwell, Alaska",0.44,50,",ak,",reviewed,1538799213586,"M 1.8 - 70km SW of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484370427,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271909 +,,20271908,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271908&format=geojson,,,,",ak20271908,",0.9,ml,,ak,,"6km E of Big Lake, Alaska",0.68,12,",ak,",reviewed,1538799145978,"M 0.9 - 6km E of Big Lake, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484369832,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271908 +,,38316568,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38316568&format=geojson,0.003679,,42.0,",ci38316568,",0.99,ml,,ci,37.0,"10km NE of Aguanga, CA",0.16,15,",ci,",reviewed,1538798779410,"M 1.0 - 10km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1539007633140,https://earthquake.usgs.gov/earthquakes/eventpage/ci38316568 +,,38316560,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38316560&format=geojson,0.07012,,49.0,",ci38316560,",0.47,ml,,ci,21.0,"10km NE of Aguanga, CA",0.14,3,",ci,",reviewed,1538798739760,"M 0.5 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539007647486,https://earthquake.usgs.gov/earthquakes/eventpage/ci38316560 +,,73094246,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094246&format=geojson,0.1064,,249.0,",nc73094246,",0.68,md,,nc,13.0,"16km WSW of Toms Place, CA",0.05,7,",nc,",reviewed,1538798639150,"M 0.7 - 16km WSW of Toms Place, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539057363169,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094246 +,,00659818,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659818&format=geojson,0.082,,130.91,",nn00659818,",-0.1,ml,,nn,4.0,"7km S of Dayton, Nevada",0.0643,0,",nn,",reviewed,1538798511978,"M -0.1 - 7km S of Dayton, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538877920235,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659818 +,,20280502,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20280502&format=geojson,,,,",ak20280502,",1.4,ml,,ak,,"74km WSW of Anchor Point, Alaska",0.4,30,",ak,",reviewed,1538797925596,"M 1.4 - 74km WSW of Anchor Point, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484369244,https://earthquake.usgs.gov/earthquakes/eventpage/ak20280502 +,,20271904,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271904&format=geojson,,,,",ak20271904,",2.0,ml,,ak,,"126km ESE of Nikolski, Alaska",0.4,62,",ak,",reviewed,1538797747310,"M 2.0 - 126km ESE of Nikolski, Alaska",0,earthquake,",geoserve,origin,phase-data,",-660.0,1539484368661,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271904 +,,61792391,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61792391&format=geojson,0.01781,,133.0,",av61792391,",0.84,ml,,av,5.0,"46km W of Tanaga Volcano, Alaska",0.08,11,",av,",reviewed,1538797517020,"M 0.8 - 46km W of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539029861630,https://earthquake.usgs.gov/earthquakes/eventpage/av61792391 +,,73094231,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094231&format=geojson,0.02234,,146.0,",nc73094231,",0.91,md,,nc,12.0,"9km NW of Pinnacles, CA",0.11,13,",nc,",reviewed,1538797158190,"M 0.9 - 9km NW of Pinnacles, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539058382267,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094231 +,,60065623,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nm60065623&format=geojson,0.08697,,68.0,",nm60065623,",2.21,md,,nm,15.0,"12km NNW of Covington, Tennessee",0.12,75,",nm,",reviewed,1538796941480,"M 2.2 - 12km NNW of Covington, Tennessee",0,earthquake,",geoserve,origin,phase-data,",-360.0,1538832580160,https://earthquake.usgs.gov/earthquakes/eventpage/nm60065623 +,,20271901,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271901&format=geojson,,,,",ak20271901,",1.4,ml,,ak,,"41km WSW of Talkeetna, Alaska",0.3,30,",ak,",reviewed,1538795669793,"M 1.4 - 41km WSW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484367910,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271901 +,,73094226,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094226&format=geojson,0.05309,,93.0,",nc73094226,",1.12,md,,nc,32.0,"7km NW of Templeton, CA",0.07,19,",nc,",reviewed,1538795668840,"M 1.1 - 7km NW of Templeton, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539092704503,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094226 +,,70806204,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70806204&format=geojson,0.01172,,253.0,",av70806204,",-0.65,ml,,av,5.0,"44km ENE of Adak, Alaska",0.3,0,",av,",reviewed,1538795292540,"M -0.7 - 44km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539032101530,https://earthquake.usgs.gov/earthquakes/eventpage/av70806204 +,,00659777,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659777&format=geojson,0.16,,190.54,",nn00659777,",0.9,ml,,nn,7.0,"7km NE of Big Pine, California",0.1104,12,",nn,",reviewed,1538794961456,"M 0.9 - 7km NE of Big Pine, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538877885855,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659777 +,,20271898,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271898&format=geojson,,,,",ak20271898,",1.2,ml,,ak,,"101km W of Cantwell, Alaska",0.5,22,",ak,",reviewed,1538794837838,"M 1.2 - 101km W of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484367284,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271898 +,,61426887,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61426887&format=geojson,0.04853,,221.0,",uw61426887,",0.6,ml,,uw,12.0,"36km SSE of Morton, Washington",0.15,6,",uw,",reviewed,1538794290330,"M 0.6 - 36km SSE of Morton, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539025249540,https://earthquake.usgs.gov/earthquakes/eventpage/uw61426887 +,,80312824,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80312824&format=geojson,0.083,,116.0,",mb80312824,",0.37,md,,mb,11.0,"10km ESE of Lincoln, Montana",0.1,2,",mb,",reviewed,1538794001210,"M 0.4 - 10km ESE of Lincoln, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539015110720,https://earthquake.usgs.gov/earthquakes/eventpage/mb80312824 +,,73094216,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094216&format=geojson,0.009019,,88.0,",nc73094216,",1.52,md,,nc,20.0,"6km NNW of Pinnacles, CA",0.07,36,",nc,",reviewed,1538793996210,"M 1.5 - 6km NNW of Pinnacles, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539087722516,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094216 +,,20271896,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271896&format=geojson,,,,",ak20271896,",1.6,ml,,ak,,"5km SSW of Manley Hot Springs, Alaska",0.81,39,",ak,",reviewed,1538793977595,"M 1.6 - 5km SSW of Manley Hot Springs, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484366560,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271896 +,,38316552,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38316552&format=geojson,0.00433,,38.0,",ci38316552,",0.83,ml,,ci,36.0,"10km NE of Aguanga, CA",0.16,11,",ci,",reviewed,1538793510490,"M 0.8 - 10km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1539007697100,https://earthquake.usgs.gov/earthquakes/eventpage/ci38316552 +,,80312609,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80312609&format=geojson,0.11,,111.0,",mb80312609,",1.6,ml,,mb,17.0,"18km S of Lakeside, Montana",0.16,39,",mb,",reviewed,1538793320110,"M 1.6 - 18km S of Lakeside, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539012304370,https://earthquake.usgs.gov/earthquakes/eventpage/mb80312609 +,,70806194,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70806194&format=geojson,0.03101,,246.0,",av70806194,",-0.04,ml,,av,5.0,"11km NNW of Atka, Alaska",0.19,0,",av,",reviewed,1538793192390,"M -0.0 - 11km NNW of Atka, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539027656670,https://earthquake.usgs.gov/earthquakes/eventpage/av70806194 +,,38316544,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38316544&format=geojson,0.02418,,61.0,",ci38316544,",0.47,ml,,ci,24.0,"8km NE of Aguanga, CA",0.17,3,",ci,",reviewed,1538792898520,"M 0.5 - 8km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539009267324,https://earthquake.usgs.gov/earthquakes/eventpage/ci38316544 +,,20271892,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271892&format=geojson,,,,",ak20271892,",1.6,ml,,ak,,"124km NNW of Arctic Village, Alaska",0.58,39,",ak,",reviewed,1538792351136,"M 1.6 - 124km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484365997,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271892 +,,20271886,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271886&format=geojson,,,,",ak20271886,av61792356,",2.1,ml,,ak,,"105km N of Redoubt Volcano, Alaska",0.57,68,",ak,av,",reviewed,1538792243876,"M 2.1 - 105km N of Redoubt Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484365292,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271886 +,,20271879,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271879&format=geojson,,,,",ak20271879,",1.6,ml,,ak,,"36km NNW of Valdez, Alaska",0.29,39,",ak,",reviewed,1538791778568,"M 1.6 - 36km NNW of Valdez, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484364686,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271879 +,,20271874,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271874&format=geojson,,,,",ak20271874,",2.6,ml,,ak,,"82km W of Anchor Point, Alaska",0.51,104,",ak,",reviewed,1538791736169,"M 2.6 - 82km W of Anchor Point, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484363762,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271874 +,,00659774,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659774&format=geojson,0.006,,168.25,",nn00659774,",1.6,ml,,nn,8.0,"39km NW of Carlin, Nevada",0.0755,39,",nn,",reviewed,1538791596574,"M 1.6 Explosion - 39km NW of Carlin, Nevada",0,explosion,",geoserve,origin,phase-data,",-480.0,1538877883228,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659774 +,,20271871,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271871&format=geojson,,,,",ak20271871,",2.0,ml,,ak,,"13km S of Kodiak Station, Alaska",0.43,62,",ak,",reviewed,1538791453418,"M 2.0 - 13km S of Kodiak Station, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484363149,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271871 +,,20280492,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20280492&format=geojson,,,,",ak20280492,",2.3,ml,,ak,,"34km WSW of Little Sitkin Island, Alaska",0.52,81,",ak,",reviewed,1538791395878,"M 2.3 - 34km WSW of Little Sitkin Island, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539484362575,https://earthquake.usgs.gov/earthquakes/eventpage/ak20280492 +,,38316528,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38316528&format=geojson,0.01539,,50.0,",ci38316528,",0.65,ml,,ci,23.0,"9km NE of Aguanga, CA",0.18,6,",ci,",reviewed,1538791034940,"M 0.7 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539007666661,https://earthquake.usgs.gov/earthquakes/eventpage/ci38316528 +,,73094196,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094196&format=geojson,0.0565,,88.0,",nc73094196,",1.6,md,,nc,26.0,"14km SSE of Tres Pinos, CA",0.09,39,",nc,",reviewed,1538790754800,"M 1.6 - 14km SSE of Tres Pinos, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538797143545,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094196 +,,20271869,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271869&format=geojson,,,,",ak20271869,",2.2,ml,,ak,,"152km SSE of Yakutat, Alaska",0.67,74,",ak,",reviewed,1538790642259,"M 2.2 - 152km SSE of Yakutat, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484361943,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271869 +,,20280490,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20280490&format=geojson,,,,",ak20280490,",1.3,ml,,ak,,"77km SW of Anchor Point, Alaska",0.36,26,",ak,",reviewed,1538790594410,"M 1.3 - 77km SW of Anchor Point, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539484361326,https://earthquake.usgs.gov/earthquakes/eventpage/ak20280490 +,,20271866,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271866&format=geojson,,,,",ak20271866,",1.1,ml,,ak,,"8km SSW of Ester, Alaska",0.59,19,",ak,",reviewed,1538790495750,"M 1.1 - 8km SSW of Ester, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484360628,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271866 +,,73094186,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094186&format=geojson,0.01321,,47.0,",nc73094186,",1.74,md,,nc,44.0,"3km NE of The Geysers, CA",0.05,47,",nc,",reviewed,1538790271640,"M 1.7 - 3km NE of The Geysers, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538807043494,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094186 +,,73094191,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094191&format=geojson,0.009802,,180.0,",nc73094191,",0.04,md,,nc,11.0,"4km SE of Mammoth Lakes, CA",0.06,0,",nc,",reviewed,1538790252670,"M 0.0 - 4km SE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538790896439,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094191 +,,73094176,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094176&format=geojson,0.03741,,91.0,",nc73094176,",1.04,md,,nc,21.0,"3km SSW of San Juan Bautista, CA",0.06,17,",nc,",reviewed,1538789953770,"M 1.0 - 3km SSW of San Juan Bautista, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538805363339,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094176 +,,73094171,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094171&format=geojson,0.01504,,74.0,",nc73094171,",0.85,md,,nc,14.0,"10km WNW of The Geysers, CA",0.04,11,",nc,",automatic,1538789934080,"M 0.9 - 10km WNW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538790029957,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094171 +,,20271863,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271863&format=geojson,,,,",ak20271863,",2.0,ml,,ak,,"104km NNW of Arctic Village, Alaska",0.63,62,",ak,",reviewed,1538789688783,"M 2.0 - 104km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484359931,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271863 +,,1000h7yt,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h7yt&format=geojson,6.041,,92.0,",us1000h7yt,",4.0,mb,,us,,"18km SSE of Borazjan, Iran",0.98,246,",us,",reviewed,1538789037450,"M 4.0 - 18km SSE of Borazjan, Iran",0,earthquake,",geoserve,origin,phase-data,",210.0,1538790508040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h7yt +,,00659816,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659816&format=geojson,0.054,,272.91,",nn00659816,",0.7,ml,,nn,5.0,"44km E of Hawthorne, Nevada",0.0882,8,",nn,",reviewed,1538788925348,"M 0.7 - 44km E of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538877918843,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659816 +,2.2,70634342,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70634342&format=geojson,0.07392,4.0,166.0,",hv70634342,us1000h7yq,",2.55,ml,,hv,42.0,"10km E of Waimea, Hawaii",0.1,101,",hv,us,",reviewed,1538788526260,"M 2.6 - 10km E of Waimea, Hawaii",0,earthquake,",dyfi,geoserve,origin,phase-data,",-600.0,1538883319245,https://earthquake.usgs.gov/earthquakes/eventpage/hv70634342 +,,20271860,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271860&format=geojson,,,,",ak20271860,",1.7,ml,,ak,,"83km SW of Kaktovik, Alaska",0.52,44,",ak,",reviewed,1538788305970,"M 1.7 - 83km SW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484359335,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271860 +,,20271859,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271859&format=geojson,,,,",ak20271859,",1.5,ml,,ak,,"63km ENE of Cape Yakataga, Alaska",0.43,35,",ak,",reviewed,1538788062334,"M 1.5 Ice Quake - 63km ENE of Cape Yakataga, Alaska",0,ice quake,",geoserve,origin,phase-data,",-540.0,1539484358766,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271859 +,,2018279000,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018279000&format=geojson,0.1046,,268.0,",pr2018279000,",2.69,md,,pr,6.0,"5km WSW of Mayaguez, Puerto Rico",0.32,111,",pr,",reviewed,1538787610380,"M 2.7 - 5km WSW of Mayaguez, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538805971665,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018279000 +,,73094161,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094161&format=geojson,0.05486,,119.0,",nc73094161,nn00659814,",1.1,md,,nc,16.0,"2km NNE of Bishop, CA",0.06,19,",nc,nn,",reviewed,1538787584790,"M 1.1 - 2km NNE of Bishop, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538877912293,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094161 +,,20271857,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271857&format=geojson,,,,",ak20271857,",1.3,ml,,ak,,"48km ENE of Cape Yakataga, Alaska",0.43,26,",ak,",reviewed,1538787458003,"M 1.3 Ice Quake - 48km ENE of Cape Yakataga, Alaska",0,ice quake,",geoserve,origin,phase-data,",-540.0,1539484358145,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271857 +,,00659773,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659773&format=geojson,0.447,,163.36,",nn00659773,",1.4,ml,,nn,7.0,"45km S of Caliente, Nevada",0.1804,30,",nn,",reviewed,1538787287145,"M 1.4 - 45km S of Caliente, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538877879629,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659773 +,,00659813,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659813&format=geojson,0.161,,120.09,",nn00659813,",0.6,ml,,nn,10.0,"8km NE of Big Pine, California",0.1841,6,",nn,",reviewed,1538787154047,"M 0.6 - 8km NE of Big Pine, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538877909789,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659813 +,,38316504,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38316504&format=geojson,0.04753,,76.0,",ci38316504,",0.85,ml,,ci,22.0,"6km S of Palomar Observatory, CA",0.18,11,",ci,",reviewed,1538787098070,"M 0.9 - 6km S of Palomar Observatory, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539007684343,https://earthquake.usgs.gov/earthquakes/eventpage/ci38316504 +,,20271856,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271856&format=geojson,,,,",ak20271856,",2.0,ml,,ak,,"80km SW of Kaktovik, Alaska",0.54,62,",ak,",reviewed,1538786806463,"M 2.0 - 80km SW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484357508,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271856 +,3.9,1000h81j,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h81j&format=geojson,0.065,3.0,93.0,",us1000h81j,",1.9,ml,,us,,"10km WNW of Newcastle, Oklahoma",0.23,57,",us,",reviewed,1538786631080,"M 1.9 - 10km WNW of Newcastle, Oklahoma",0,earthquake,",dyfi,geoserve,origin,phase-data,",-360.0,1538810893877,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h81j +,,20280483,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20280483&format=geojson,,,,",ak20280483,",0.9,ml,,ak,,"78km SSW of Kobuk, Alaska",0.41,12,",ak,",reviewed,1538786560742,"M 0.9 - 78km SSW of Kobuk, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484356949,https://earthquake.usgs.gov/earthquakes/eventpage/ak20280483 +,,38316496,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38316496&format=geojson,0.08469,,61.0,",ci38316496,",0.62,ml,,ci,17.0,"9km NE of Aguanga, CA",0.17,6,",ci,",reviewed,1538786540360,"M 0.6 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1539007700880,https://earthquake.usgs.gov/earthquakes/eventpage/ci38316496 +,4.3,1000h7ya,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h7ya&format=geojson,0.614,23.0,37.0,",us1000h7ya,",4.6,mwr,,us,,"2km NNW of Misterbianco, Italy",0.99,335,",us,",reviewed,1538786060340,"M 4.6 - 2km NNW of Misterbianco, Italy",0,earthquake,",dyfi,geoserve,moment-tensor,origin,phase-data,",60.0,1538940608756,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h7ya +,,20280482,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20280482&format=geojson,,,,",ak20280482,",1.1,ml,,ak,,"109km SE of Old Iliamna, Alaska",0.46,19,",ak,",reviewed,1538785984012,"M 1.1 - 109km SE of Old Iliamna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484356334,https://earthquake.usgs.gov/earthquakes/eventpage/ak20280482 +,,38316488,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38316488&format=geojson,0.1304,,73.0,",ci38316488,",1.5,ml,,ci,40.0,"26km ENE of Pine Valley, CA",0.19,35,",ci,",reviewed,1538785389850,"M 1.5 - 26km ENE of Pine Valley, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538786495364,https://earthquake.usgs.gov/earthquakes/eventpage/ci38316488 +,,73094151,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094151&format=geojson,0.001872,,46.0,",nc73094151,",1.05,md,,nc,35.0,"7km WNW of The Geysers, CA",0.05,17,",nc,",reviewed,1538784777880,"M 1.1 - 7km WNW of The Geysers, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538796243471,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094151 +,,00659809,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659809&format=geojson,0.042,,102.06,",nn00659809,",0.2,ml,,nn,14.0,"44km ESE of Beatty, Nevada",0.1476,1,",nn,",reviewed,1538784759786,"M 0.2 - 44km ESE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538877907726,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659809 +,,20271854,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271854&format=geojson,,,,",ak20271854,",1.2,ml,,ak,,"115km N of Ruby, Alaska",0.37,22,",ak,",reviewed,1538784229992,"M 1.2 - 115km N of Ruby, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484355714,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271854 +,,20280480,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20280480&format=geojson,,,,",ak20280480,",1.2,ml,,ak,,"85km WSW of Cordova, Alaska",0.39,22,",ak,",reviewed,1538784191266,"M 1.2 - 85km WSW of Cordova, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484355126,https://earthquake.usgs.gov/earthquakes/eventpage/ak20280480 +,,20271851,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271851&format=geojson,,,,",ak20271851,",2.3,ml,,ak,,"80km NNW of Arctic Village, Alaska",0.74,81,",ak,",reviewed,1538784017366,"M 2.3 - 80km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539484354414,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271851 +,,38316472,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38316472&format=geojson,0.02959,,36.0,",ci38316472,",0.89,ml,,ci,31.0,"9km ENE of Aguanga, CA",0.12,12,",ci,",reviewed,1538783987390,"M 0.9 - 9km ENE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538786267120,https://earthquake.usgs.gov/earthquakes/eventpage/ci38316472 +,,70634202,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70634202&format=geojson,0.03411,,67.0,",hv70634202,",1.74,ml,,hv,39.0,"10km SSE of Volcano, Hawaii",0.13,47,",hv,",automatic,1538783683520,"M 1.7 - 10km SSE of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538784028180,https://earthquake.usgs.gov/earthquakes/eventpage/hv70634202 +,,20276320,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276320&format=geojson,,,,",ak20276320,",1.7,ml,,ak,,"108km NNW of Arctic Village, Alaska",0.57,44,",ak,",reviewed,1538783611824,"M 1.7 - 108km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219625115,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276320 +,,20271850,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271850&format=geojson,,,,",ak20271850,",1.5,ml,,ak,,"53km SSE of Homer, Alaska",0.39,35,",ak,",reviewed,1538783450583,"M 1.5 - 53km SSE of Homer, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219624573,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271850 +,,2018278013,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018278013&format=geojson,0.8906,,336.0,",pr2018278013,",3.21,md,,pr,7.0,"36km NNW of Charlotte Amalie, U.S. Virgin Islands",0.33,159,",pr,",reviewed,1538783317710,"M 3.2 - 36km NNW of Charlotte Amalie, U.S. Virgin Islands",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538805957825,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018278013 +,,38316464,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38316464&format=geojson,0.02134,,31.0,",ci38316464,",1.2,ml,,ci,45.0,"8km NE of Aguanga, CA",0.14,22,",ci,",reviewed,1538783305860,"M 1.2 - 8km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1538785838720,https://earthquake.usgs.gov/earthquakes/eventpage/ci38316464 +,,20276318,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276318&format=geojson,,,,",ak20276318,",1.7,ml,,ak,,"108km NNW of Arctic Village, Alaska",0.52,44,",ak,",reviewed,1538782995579,"M 1.7 - 108km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219624028,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276318 +,,73094146,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094146&format=geojson,0.004044,,138.0,",nc73094146,",0.76,md,,nc,9.0,"10km WNW of The Geysers, CA",0.04,9,",nc,",automatic,1538782836750,"M 0.8 - 10km WNW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538783703063,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094146 +,,20271847,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271847&format=geojson,,,,",ak20271847,",1.4,ml,,ak,,"45km WNW of Nikiski, Alaska",0.41,30,",ak,",reviewed,1538782480815,"M 1.4 - 45km WNW of Nikiski, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219623410,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271847 +,,20276316,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276316&format=geojson,,,,",ak20276316,",1.2,ml,,ak,,"59km W of Cantwell, Alaska",0.61,22,",ak,",reviewed,1538782371410,"M 1.2 - 59km W of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219622883,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276316 +,,20271842,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271842&format=geojson,,,,",ak20271842,",1.2,ml,,ak,,"98km SSW of Fort McPherson, Canada",0.48,22,",ak,",reviewed,1538781921669,"M 1.2 - 98km SSW of Fort McPherson, Canada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539219622355,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271842 +,,38316456,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38316456&format=geojson,0.1358,,85.0,",ci38316456,",1.25,ml,,ci,23.0,"26km ENE of Pine Valley, CA",0.16,24,",ci,",reviewed,1538781731180,"M 1.3 - 26km ENE of Pine Valley, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538785234894,https://earthquake.usgs.gov/earthquakes/eventpage/ci38316456 +,,70806174,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70806174&format=geojson,0.01118,,100.0,",av70806174,",0.01,ml,,av,6.0,"41km ENE of Adak, Alaska",0.06,0,",av,",reviewed,1538781564150,"M 0.0 - 41km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538784058370,https://earthquake.usgs.gov/earthquakes/eventpage/av70806174 +,,20271841,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271841&format=geojson,,,,",ak20271841,",1.4,ml,,ak,,"119km NW of Arctic Village, Alaska",0.58,30,",ak,",reviewed,1538781327896,"M 1.4 - 119km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219621757,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271841 +,,80312819,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80312819&format=geojson,0.12,,230.0,",mb80312819,",-0.6,md,,mb,4.0,"7km ENE of Whitehall, Montana",0.1,0,",mb,",reviewed,1538781076550,"M -0.6 Quarry Blast - 7km ENE of Whitehall, Montana",0,quarry blast,",geoserve,origin,phase-data,",-420.0,1539014660260,https://earthquake.usgs.gov/earthquakes/eventpage/mb80312819 +,,20276313,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276313&format=geojson,,,,",ak20276313,",1.1,ml,,ak,,"8km SSE of Y, Alaska",0.63,19,",ak,",reviewed,1538780922838,"M 1.1 - 8km SSE of Y, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219621195,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276313 +,,73094141,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094141&format=geojson,0.05878,,54.0,",nc73094141,",2.17,md,,nc,67.0,"5km E of Kenwood, CA",0.09,72,",nc,",reviewed,1538780917520,"M 2.2 - 5km E of Kenwood, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538802063020,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094141 +,,73094136,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094136&format=geojson,0.08893,,93.0,",nc73094136,nn00659758,",1.88,md,,nc,41.0,"7km S of Toms Place, CA",0.07,54,",nc,nn,",reviewed,1538780873840,"M 1.9 - 7km S of Toms Place, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538792043075,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094136 +,,20271837,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271837&format=geojson,,,,",ak20271837,",1.1,ml,,ak,,"6km WSW of Meadow Lakes, Alaska",0.55,19,",ak,",reviewed,1538780483207,"M 1.1 - 6km WSW of Meadow Lakes, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219620615,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271837 +,,38316440,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38316440&format=geojson,0.12,,238.0,",ci38316440,",1.22,ml,,ci,23.0,"6km NE of North Shore, CA",0.15,23,",ci,",reviewed,1538780400460,"M 1.2 - 6km NE of North Shore, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538784567553,https://earthquake.usgs.gov/earthquakes/eventpage/ci38316440 +,,73094131,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094131&format=geojson,0.0373,,200.0,",nc73094131,",0.26,md,,nc,11.0,"6km S of Mammoth Lakes, CA",0.03,1,",nc,",reviewed,1538780121360,"M 0.3 - 6km S of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538785083186,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094131 +,,20271833,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271833&format=geojson,,,,",ak20271833,",1.5,ml,,ak,,"115km NNW of Arctic Village, Alaska",0.5,35,",ak,",reviewed,1538779734641,"M 1.5 - 115km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219620047,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271833 +,,20271831,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271831&format=geojson,,,,",ak20271831,",2.2,ml,,ak,,"72km SSW of Kaktovik, Alaska",0.55,74,",ak,",reviewed,1538779609902,"M 2.2 - 72km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219619449,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271831 +,,73094126,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094126&format=geojson,0.004586,,111.0,",nc73094126,",0.93,md,,nc,11.0,"7km WNW of Cobb, CA",0.02,13,",nc,",automatic,1538778931990,"M 0.9 - 7km WNW of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538780943781,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094126 +,,20271827,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271827&format=geojson,,,,",ak20271827,",1.3,ml,,ak,,"44km NNW of Talkeetna, Alaska",0.49,26,",ak,",reviewed,1538778472584,"M 1.3 - 44km NNW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219618813,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271827 +,,73094121,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094121&format=geojson,0.00967,,106.0,",nc73094121,",0.57,md,,nc,7.0,"8km WNW of Cobb, CA",0.02,5,",nc,",automatic,1538778143340,"M 0.6 - 8km WNW of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538787124444,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094121 +,,20271826,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271826&format=geojson,,,,",ak20271826,",1.5,ml,,ak,,"77km W of Anchor Point, Alaska",0.19,35,",ak,",reviewed,1538778019016,"M 1.5 - 77km W of Anchor Point, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219618218,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271826 +,,2018278012,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018278012&format=geojson,0.9905,,307.0,",pr2018278012,",2.98,md,,pr,4.0,"75km N of San Juan, Puerto Rico",0.32,137,",pr,",reviewed,1538777966150,"M 3.0 - 75km N of San Juan, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538787527510,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018278012 +,,20276307,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276307&format=geojson,,,,",ak20276307,",1.4,ml,,ak,,"42km S of Tanaga Volcano, Alaska",0.53,30,",ak,",reviewed,1538777829547,"M 1.4 - 42km S of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539219617684,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276307 +,,73094116,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094116&format=geojson,0.0022,,166.0,",nc73094116,",0.98,md,,nc,18.0,"7km WNW of Cobb, CA",0.04,15,",nc,",automatic,1538777424260,"M 1.0 - 7km WNW of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538779682664,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094116 +,,73094111,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094111&format=geojson,0.001867,,171.0,",nc73094111,",0.42,md,,nc,9.0,"7km WNW of Cobb, CA",0.04,3,",nc,",automatic,1538777414400,"M 0.4 - 7km WNW of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538779023602,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094111 +,,60299912,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60299912&format=geojson,0.06403,,150.0,",uu60299912,",0.21,md,,uu,7.0,"6km W of Park City, Utah",0.08,1,",uu,",reviewed,1538777392350,"M 0.2 - 6km W of Park City, Utah",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539020494910,https://earthquake.usgs.gov/earthquakes/eventpage/uu60299912 +,2.2,73094101,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094101&format=geojson,0.002118,4.0,67.0,",nc73094101,",2.45,md,,nc,51.0,"7km WNW of Cobb, CA",0.07,93,",nc,",reviewed,1538777288500,"M 2.5 - 7km WNW of Cobb, CA",0,earthquake,",dyfi,focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539125031585,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094101 +,,20271823,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271823&format=geojson,,,,",ak20271823,",1.2,ml,,ak,,"20km NNE of Badger, Alaska",0.55,22,",ak,",reviewed,1538777043339,"M 1.2 Explosion - 20km NNE of Badger, Alaska",0,explosion,",geoserve,origin,phase-data,",-540.0,1539219617095,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271823 +,,73094096,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094096&format=geojson,0.01714,,78.0,",nc73094096,",1.12,md,,nc,10.0,"7km NW of The Geysers, CA",0.05,19,",nc,",automatic,1538776458560,"M 1.1 - 7km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538784484132,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094096 +,,20271818,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271818&format=geojson,,,,",ak20271818,us1000h7wa,",2.7,ml,,ak,,"75km SSW of Kaktovik, Alaska",0.63,112,",ak,us,",reviewed,1538776188190,"M 2.7 - 75km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219616438,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271818 +,,00659744,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659744&format=geojson,0.013,,82.52,",nn00659744,",1.0,ml,,nn,13.0,"2km W of Sun Valley, Nevada",0.112,15,",nn,",reviewed,1538776143377,"M 1.0 - 2km W of Sun Valley, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538777746940,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659744 +,,73094091,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094091&format=geojson,0.01908,,95.0,",nc73094091,",0.58,md,,nc,11.0,"15km NW of Parkfield, CA",0.06,5,",nc,",reviewed,1538776050750,"M 0.6 - 15km NW of Parkfield, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538786687346,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094091 +,,20276304,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276304&format=geojson,,,,",ak20276304,",1.5,ml,,ak,,"125km NW of Arctic Village, Alaska",0.54,35,",ak,",reviewed,1538775852522,"M 1.5 - 125km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219574299,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276304 +,,20271812,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271812&format=geojson,,,,",ak20271812,us1000h7vw,",3.1,ml,,ak,,"73km SSW of Kaktovik, Alaska",0.63,148,",ak,us,",reviewed,1538775653776,"M 3.1 - 73km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219573534,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271812 +,,20271810,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271810&format=geojson,,,,",ak20271810,",0.8,ml,,ak,,"71km W of Healy, Alaska",0.41,10,",ak,",reviewed,1538775509987,"M 0.8 - 71km W of Healy, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219572996,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271810 +,,80312814,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80312814&format=geojson,0.088,,195.0,",mb80312814,",0.24,md,,mb,8.0,"31km NW of Lincoln, Montana",0.06,1,",mb,",reviewed,1538775438630,"M 0.2 - 31km NW of Lincoln, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539014440500,https://earthquake.usgs.gov/earthquakes/eventpage/mb80312814 +,,20271805,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271805&format=geojson,,,,",ak20271805,",2.2,ml,,ak,,"77km S of Tok, Alaska",0.52,74,",ak,",reviewed,1538775334635,"M 2.2 - 77km S of Tok, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219572250,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271805 +,,20276300,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276300&format=geojson,,,,",ak20276300,",1.5,ml,,ak,,"73km WSW of Anchor Point, Alaska",0.31,35,",ak,",reviewed,1538775284697,"M 1.5 - 73km WSW of Anchor Point, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219571706,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276300 +,,38316408,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38316408&format=geojson,0.07405,,71.0,",ci38316408,",0.89,ml,,ci,20.0,"2km ESE of Home Gardens, CA",0.22,12,",ci,",reviewed,1538775045720,"M 0.9 Quarry Blast - 2km ESE of Home Gardens, CA",0,quarry blast,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538782177247,https://earthquake.usgs.gov/earthquakes/eventpage/ci38316408 +,,20271804,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271804&format=geojson,,,,",ak20271804,",1.2,ml,,ak,,"61km WSW of Talkeetna, Alaska",0.28,22,",ak,",reviewed,1538775011261,"M 1.2 - 61km WSW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219571160,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271804 +,,1000h7vl,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h7vl&format=geojson,1.91,,94.0,",us1000h7vl,",4.8,mb,,us,,"173km ESE of Tadine, New Caledonia",0.89,354,",us,",reviewed,1538774595140,"M 4.8 - 173km ESE of Tadine, New Caledonia",0,earthquake,",geoserve,origin,phase-data,",660.0,1538775403040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h7vl +,,70633947,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70633947&format=geojson,0.04889,,95.0,",hv70633947,",1.92,ml,,hv,46.0,"12km SSE of Volcano, Hawaii",0.25,57,",hv,",automatic,1538774114470,"M 1.9 - 12km SSE of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538774457860,https://earthquake.usgs.gov/earthquakes/eventpage/hv70633947 +,,2018278011,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018278011&format=geojson,0.6681,,311.0,",pr2018278011,",2.89,md,,pr,7.0,"59km NNE of Arecibo, Puerto Rico",0.41,128,",pr,",reviewed,1538773897810,"M 2.9 - 59km NNE of Arecibo, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538787514118,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018278011 +,,2018278010,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018278010&format=geojson,0.5754,,354.0,",pr2018278010,",2.48,md,,pr,4.0,"59km N of Isabela, Puerto Rico",0.21,95,",pr,",reviewed,1538773780750,"M 2.5 - 59km N of Isabela, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538787503118,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018278010 +,,1000h7v7,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h7v7&format=geojson,2.086,,41.0,",us1000h7v7,",5.4,mww,,us,,"187km ESE of Tadine, New Caledonia",1.05,449,",us,",reviewed,1538773707890,"M 5.4 - 187km ESE of Tadine, New Caledonia",0,earthquake,",geoserve,moment-tensor,origin,phase-data,",660.0,1538931431040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h7v7 +,,61792141,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61792141&format=geojson,0.02186,,124.0,",av61792141,",-0.21,ml,,av,5.0,"42km ENE of Adak, Alaska",0.08,0,",av,",reviewed,1538773327380,"M -0.2 - 42km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538779105540,https://earthquake.usgs.gov/earthquakes/eventpage/av61792141 +,,20276298,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276298&format=geojson,,,,",ak20276298,",1.8,ml,,ak,,"65km SW of Atka, Alaska",0.22,50,",ak,",reviewed,1538773206377,"M 1.8 - 65km SW of Atka, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539219570636,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276298 +,,00659743,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659743&format=geojson,0.112,,267.64,",nn00659743,",0.2,ml,,nn,5.0,"33km NW of Beatty, Nevada",0.1844,1,",nn,",reviewed,1538773121315,"M 0.2 - 33km NW of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538776079917,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659743 +,,20276297,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276297&format=geojson,,,,",ak20276297,",1.1,ml,,ak,,"131km NW of Talkeetna, Alaska",0.29,19,",ak,",reviewed,1538772883001,"M 1.1 - 131km NW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219570100,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276297 +,,20276296,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276296&format=geojson,,,,",ak20276296,",2.6,ml,,ak,,"246km SE of Kodiak, Alaska",0.73,104,",ak,",reviewed,1538772378155,"M 2.6 - 246km SE of Kodiak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539219569570,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276296 +,,73094076,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094076&format=geojson,0.009903,,47.0,",nc73094076,",1.63,md,,nc,43.0,"7km NW of The Geysers, CA",0.05,41,",nc,",reviewed,1538771794900,"M 1.6 - 7km NW of The Geysers, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538792703142,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094076 +,,20271792,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271792&format=geojson,,,,",ak20271792,",0.5,ml,,ak,,"96km NW of Nikiski, Alaska",0.51,4,",ak,",reviewed,1538771742746,"M 0.5 - 96km NW of Nikiski, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219569045,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271792 +,,20271790,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271790&format=geojson,,,,",ak20271790,",1.6,ml,,ak,,"31km SSW of Tanaga Volcano, Alaska",0.54,39,",ak,",reviewed,1538771659076,"M 1.6 - 31km SSW of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539219568491,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271790 +,,20271788,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271788&format=geojson,,,,",ak20271788,",1.5,ml,,ak,,"115km NNW of Arctic Village, Alaska",0.41,35,",ak,",reviewed,1538771485931,"M 1.5 - 115km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219567857,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271788 +,,20271785,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271785&format=geojson,,,,",ak20271785,",1.1,ml,,ak,,"82km ENE of Cantwell, Alaska",0.6,19,",ak,",reviewed,1538771038012,"M 1.1 - 82km ENE of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219567275,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271785 +,,20271782,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271782&format=geojson,,,,",ak20271782,",1.6,ml,,ak,,"11km N of Anchor Point, Alaska",0.52,39,",ak,",reviewed,1538770997309,"M 1.6 - 11km N of Anchor Point, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219566647,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271782 +,,20271779,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271779&format=geojson,,,,",ak20271779,",1.0,ml,,ak,,"82km ENE of Cantwell, Alaska",0.41,15,",ak,",reviewed,1538770734507,"M 1.0 - 82km ENE of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219566064,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271779 +,,60299887,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60299887&format=geojson,0.07789,,91.0,",uu60299887,",1.8,ml,,uu,13.0,"38km SE of Salina, Utah",0.14,50,",uu,",reviewed,1538770392390,"M 1.8 - 38km SE of Salina, Utah",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539019999880,https://earthquake.usgs.gov/earthquakes/eventpage/uu60299887 +,,20271777,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271777&format=geojson,,,,",ak20271777,",1.4,ml,,ak,,"38km WNW of Anchor Point, Alaska",0.25,30,",ak,",reviewed,1538769690875,"M 1.4 - 38km WNW of Anchor Point, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219565490,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271777 +,,20271774,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271774&format=geojson,,,,",ak20271774,",1.8,ml,,ak,,"46km N of Valdez, Alaska",0.57,50,",ak,",reviewed,1538768933353,"M 1.8 - 46km N of Valdez, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219564908,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271774 +,,61426762,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61426762&format=geojson,0.09064,,59.0,",uw61426762,",1.5,ml,,uw,11.0,"15km N of Montesano, Washington",0.19,35,",uw,",reviewed,1538768647310,"M 1.5 - 15km N of Montesano, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538774521010,https://earthquake.usgs.gov/earthquakes/eventpage/uw61426762 +,,20271772,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271772&format=geojson,,,,",ak20271772,",1.7,ml,,ak,,"81km SSW of Kaktovik, Alaska",0.79,44,",ak,",reviewed,1538768007822,"M 1.7 - 81km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219564245,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271772 +,,00659737,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659737&format=geojson,0.095,,157.06,",nn00659737,",1.2,ml,,nn,37.0,"36km N of Beatty, Nevada",0.18,22,",nn,",reviewed,1538767781799,"M 1.2 - 36km N of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538774233356,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659737 +,,00659722,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659722&format=geojson,0.218,,256.85,",nn00659722,",1.3,ml,,nn,6.0,"38km S of Gabbs, Nevada",0.0769,26,",nn,",reviewed,1538767766779,"M 1.3 - 38km S of Gabbs, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538773852565,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659722 +,,20271672,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271672&format=geojson,,,,",ak20271672,",0.8,ml,,ak,,"73km ESE of Circle, Alaska",0.39,10,",ak,",reviewed,1538767309257,"M 0.8 - 73km ESE of Circle, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219563674,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271672 +,,20271564,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271564&format=geojson,,,,",ak20271564,",1.7,ml,,ak,,"13km ESE of Seward, Alaska",0.6,44,",ak,",reviewed,1538767168652,"M 1.7 - 13km ESE of Seward, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219563101,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271564 +,,20271560,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271560&format=geojson,,,,",ak20271560,",0.9,ml,,ak,,"33km N of North Nenana, Alaska",0.64,12,",ak,",reviewed,1538766937238,"M 0.9 - 33km N of North Nenana, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219562547,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271560 +,,73094071,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094071&format=geojson,0.01241,,84.0,",nc73094071,",1.19,md,,nc,17.0,"4km W of Cobb, CA",0.04,22,",nc,",automatic,1538766710010,"M 1.2 - 4km W of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538774643151,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094071 +,,1000h7tk,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h7tk&format=geojson,2.54,,117.0,",us1000h7tk,",4.2,mb,,us,,"11km NNW of Itbayat, Philippines",1.4,271,",us,",reviewed,1538766646880,"M 4.2 - 11km NNW of Itbayat, Philippines",0,earthquake,",geoserve,origin,phase-data,",480.0,1538838254040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h7tk +,,20271558,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271558&format=geojson,,,,",ak20271558,",0.8,ml,,ak,,"67km SW of North Nenana, Alaska",0.36,10,",ak,",reviewed,1538766366282,"M 0.8 - 67km SW of North Nenana, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219562027,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271558 +,,80312564,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80312564&format=geojson,0.2,,115.0,",mb80312564,",1.46,ml,,mb,9.0,"5km ENE of Butte, Montana",0.13,33,",mb,",reviewed,1538766225150,"M 1.5 Quarry Blast - 5km ENE of Butte, Montana",0,quarry blast,",geoserve,origin,phase-data,",-420.0,1538769210440,https://earthquake.usgs.gov/earthquakes/eventpage/mb80312564 +,,20271555,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271555&format=geojson,,,,",ak20271555,",1.1,ml,,ak,,"79km E of Cantwell, Alaska",0.42,19,",ak,",reviewed,1538765552554,"M 1.1 - 79km E of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219561454,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271555 +,,38316336,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38316336&format=geojson,0.2308,,150.0,",ci38316336,",1.82,ml,,ci,31.0,"45km ENE of Ensenada, B.C., MX",0.21,51,",ci,",reviewed,1538765252890,"M 1.8 - 45km ENE of Ensenada, B.C., MX",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538766324183,https://earthquake.usgs.gov/earthquakes/eventpage/ci38316336 +,,73094061,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094061&format=geojson,0.04007,,288.0,",nc73094061,",0.25,md,,nc,6.0,"14km SE of Mammoth Lakes, CA",0.01,1,",nc,",reviewed,1538764992730,"M 0.3 - 14km SE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538781122798,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094061 +,,38316328,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38316328&format=geojson,0.01428,,31.0,",ci38316328,",0.87,ml,,ci,43.0,"9km NE of Aguanga, CA",0.17,12,",ci,",reviewed,1538764493400,"M 0.9 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538765959115,https://earthquake.usgs.gov/earthquakes/eventpage/ci38316328 +,,20271538,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271538&format=geojson,,,,",ak20271538,",1.7,ml,,ak,,"71km WNW of Talkeetna, Alaska",0.56,44,",ak,",reviewed,1538764335394,"M 1.7 - 71km WNW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219560729,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271538 +,,70633722,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70633722&format=geojson,0.0805,,202.0,",hv70633722,",2.42,ml,,hv,43.0,"11km SSW of Leilani Estates, Hawaii",0.16,90,",hv,",reviewed,1538764134360,"M 2.4 - 11km SSW of Leilani Estates, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539132353520,https://earthquake.usgs.gov/earthquakes/eventpage/hv70633722 +,,70633717,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70633717&format=geojson,0.01144,,60.0,",hv70633717,",0.48,md,,hv,16.0,"6km WSW of Volcano, Hawaii",0.1,4,",hv,",reviewed,1538764098270,"M 0.5 - 6km WSW of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539031302420,https://earthquake.usgs.gov/earthquakes/eventpage/hv70633717 +,,20271535,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271535&format=geojson,,,,",ak20271535,",1.5,ml,,ak,,"32km S of Redoubt Volcano, Alaska",0.34,35,",ak,",reviewed,1538764089075,"M 1.5 - 32km S of Redoubt Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219560111,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271535 +,,73094051,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094051&format=geojson,0.008074,,64.0,",nc73094051,",1.04,md,,nc,21.0,"6km NW of The Geysers, CA",0.04,17,",nc,",automatic,1538763704000,"M 1.0 - 6km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538772902985,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094051 +,,2018278009,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018278009&format=geojson,0.4513,,327.0,",pr2018278009,",2.93,md,,pr,7.0,"47km NNW of San Antonio, Puerto Rico",0.15,132,",pr,",reviewed,1538763650410,"M 2.9 - 47km NNW of San Antonio, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538779611570,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018278009 +,,1000h7qa,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h7qa&format=geojson,8.881,,45.0,",us1000h7qa,",5.2,mb,,us,,Mid-Indian Ridge,0.75,416,",us,",reviewed,1538763370980,M 5.2 - Mid-Indian Ridge,0,earthquake,",geoserve,origin,phase-data,",300.0,1538838103040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h7qa +,2.0,73094046,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094046&format=geojson,0.006649,1.0,72.0,",nc73094046,",1.79,md,,nc,48.0,"5km WNW of The Geysers, CA",0.05,49,",nc,",reviewed,1538762878340,"M 1.8 - 5km WNW of The Geysers, CA",0,earthquake,",dyfi,focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538787612770,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094046 +,,00659742,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659742&format=geojson,0.093,,156.29,",nn00659742,",0.9,ml,,nn,7.0,"24km WSW of Hawthorne, Nevada",0.1426,12,",nn,",reviewed,1538762736012,"M 0.9 - 24km WSW of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538775893790,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659742 +,,20271532,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271532&format=geojson,,,,",av61792056,ak20271532,",1.3,ml,,ak,,"22km W of Adak, Alaska",0.6,26,",av,ak,",reviewed,1538762492731,"M 1.3 - 22km W of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539219559561,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271532 +,,20271525,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271525&format=geojson,,,,",ak20271525,us1000h7pp,",2.2,ml,,ak,,"34km NW of Valdez, Alaska",0.67,74,",ak,us,",reviewed,1538762045831,"M 2.2 - 34km NW of Valdez, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219558893,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271525 +,,20271522,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271522&format=geojson,,,,",ak20271522,",1.6,ml,,ak,,"111km NNW of Arctic Village, Alaska",0.47,39,",ak,",reviewed,1538761972496,"M 1.6 - 111km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219558309,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271522 +,,20276276,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276276&format=geojson,,,,",ak20276276,",1.1,ml,,ak,,"71km E of Adak, Alaska",0.43,19,",ak,",reviewed,1538761875920,"M 1.1 - 71km E of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539219557763,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276276 +,,38316304,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38316304&format=geojson,0.06092,,75.0,",ci38316304,",0.92,ml,,ci,18.0,"6km WSW of Pala, CA",0.27,13,",ci,",reviewed,1538761723520,"M 0.9 Quarry Blast - 6km WSW of Pala, CA",0,quarry blast,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538775755270,https://earthquake.usgs.gov/earthquakes/eventpage/ci38316304 +,,20271515,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271515&format=geojson,,,,",ak20271515,",1.8,ml,,ak,,"105km W of Cantwell, Alaska",0.53,50,",ak,",reviewed,1538761643939,"M 1.8 - 105km W of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219557156,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271515 +,,70633672,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70633672&format=geojson,0.07549,,188.0,",hv70633672,",2.3,ml,,hv,23.0,"15km SW of Leilani Estates, Hawaii",0.08,81,",hv,",reviewed,1538761561640,"M 2.3 - 15km SW of Leilani Estates, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539032097010,https://earthquake.usgs.gov/earthquakes/eventpage/hv70633672 +,,20271508,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271508&format=geojson,,,,",ak20271508,",0.7,ml,,ak,,"21km WNW of North Nenana, Alaska",0.52,8,",ak,",reviewed,1538761058646,"M 0.7 - 21km WNW of North Nenana, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219556605,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271508 +,,20271513,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271513&format=geojson,,,,",ak20271513,",1.6,ml,,ak,,"88km NW of Talkeetna, Alaska",0.36,39,",ak,",reviewed,1538761058584,"M 1.6 - 88km NW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219556018,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271513 +,,20271505,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271505&format=geojson,,,,",ak20271505,",1.8,ml,,ak,,"108km SSW of Kaktovik, Alaska",0.43,50,",ak,",reviewed,1538760858542,"M 1.8 - 108km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219555432,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271505 +,,38316296,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38316296&format=geojson,0.06416,,234.0,",ci38316296,",0.55,ml,,ci,11.0,"6km ENE of Coso Junction, CA",0.08,5,",ci,",reviewed,1538760727140,"M 0.6 - 6km ENE of Coso Junction, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538761494909,https://earthquake.usgs.gov/earthquakes/eventpage/ci38316296 +,,20276271,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276271&format=geojson,,,,",ak20276271,",3.0,ml,,ak,,Gulf of Alaska,0.95,138,",ak,",reviewed,1538760547279,M 3.0 - Gulf of Alaska,0,earthquake,",geoserve,origin,phase-data,",-600.0,1539219554801,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276271 +,,73094041,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094041&format=geojson,0.1049,,252.0,",nc73094041,",1.87,md,,nc,14.0,"12km W of Petrolia, CA",0.06,54,",nc,",reviewed,1538760098680,"M 1.9 - 12km W of Petrolia, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538787229404,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094041 +,,20271502,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271502&format=geojson,,,,",ak20271502,",1.5,ml,,ak,,"163km NNE of Cape Yakataga, Alaska",0.5,35,",ak,",reviewed,1538759652434,"M 1.5 - 163km NNE of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219554166,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271502 +,,73094036,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094036&format=geojson,0.006583,,142.0,",nc73094036,",0.15,md,,nc,10.0,"3km SSW of Mammoth Lakes, CA",0.03,0,",nc,",reviewed,1538759602850,"M 0.2 - 3km SSW of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538779504642,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094036 +,,20271499,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271499&format=geojson,,,,",ak20271499,us1000h7nl,",2.4,ml,,ak,,"66km SSW of Kaktovik, Alaska",0.55,89,",ak,us,",reviewed,1538758431289,"M 2.4 - 66km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219553499,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271499 +,,2018278008,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018278008&format=geojson,1.8358,,348.0,",pr2018278008,",3.2,md,,pr,3.0,"87km ENE of Miches, Dominican Republic",0.34,158,",pr,",reviewed,1538757670030,"M 3.2 - 87km ENE of Miches, Dominican Republic",0,earthquake,",geoserve,origin,phase-data,",-300.0,1538779561105,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018278008 +,,2018278006,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018278006&format=geojson,0.4012,,304.0,",pr2018278006,us1000h7nm,",3.15,md,,pr,13.0,"6km SSE of Boca de Yuma, Dominican Republic",0.37,153,",pr,us,",reviewed,1538757509330,"M 3.2 - 6km SSE of Boca de Yuma, Dominican Republic",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538763845040,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018278006 +,,73094021,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094021&format=geojson,0.01046,,34.0,",nc73094021,",1.59,md,,nc,40.0,"5km W of Cobb, CA",0.05,39,",nc,",reviewed,1538757503780,"M 1.6 - 5km W of Cobb, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538795223373,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094021 +,,73094026,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094026&format=geojson,0.05321,,327.0,",nc73094026,",0.61,md,,nc,9.0,"2km SE of Cobb, CA",0.04,6,",nc,",reviewed,1538757492050,"M 0.6 - 2km SE of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538790144536,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094026 +,2.0,73094016,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094016&format=geojson,0.003467,1.0,52.0,",nc73094016,",1.94,md,,nc,46.0,"6km WNW of Cobb, CA",0.04,58,",nc,",reviewed,1538757459610,"M 1.9 - 6km WNW of Cobb, CA",0,earthquake,",dyfi,focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538788129890,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094016 +,2.2,80312499,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80312499&format=geojson,0.113,1.0,108.0,",mb80312499,",1.54,ml,,mb,12.0,"14km ESE of Lincoln, Montana",0.14,37,",mb,",reviewed,1538757173570,"M 1.5 - 14km ESE of Lincoln, Montana",0,earthquake,",dyfi,geoserve,origin,phase-data,",-420.0,1538771505127,https://earthquake.usgs.gov/earthquakes/eventpage/mb80312499 +,,38316264,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38316264&format=geojson,0.03007,,51.0,",ci38316264,",1.09,ml,,ci,46.0,"8km ENE of Aguanga, CA",0.17,18,",ci,",reviewed,1538756874800,"M 1.1 - 8km ENE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1538757687606,https://earthquake.usgs.gov/earthquakes/eventpage/ci38316264 +,,20271492,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271492&format=geojson,,,,",ak20271492,us1000h7l6,",2.8,ml,,ak,,"29km WSW of Valdez, Alaska",0.55,121,",ak,us,",reviewed,1538756820921,"M 2.8 - 29km WSW of Valdez, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219552670,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271492 +,,20276267,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276267&format=geojson,,,,",ak20276267,",1.6,ml,,ak,,"50km S of Adak, Alaska",0.42,39,",ak,",reviewed,1538756790675,"M 1.6 - 50km S of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-720.0,1539219552100,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276267 +,,20271491,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271491&format=geojson,,,,",ak20271491,",1.0,ml,,ak,,"102km WNW of Talkeetna, Alaska",0.63,15,",ak,",reviewed,1538756413805,"M 1.0 - 102km WNW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219551559,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271491 +,,70633582,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70633582&format=geojson,0.04185,,57.0,",hv70633582,",1.35,md,,hv,38.0,"21km E of Honaunau-Napoopoo, Hawaii",0.17,28,",hv,",reviewed,1538756366430,"M 1.4 - 21km E of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539387515120,https://earthquake.usgs.gov/earthquakes/eventpage/hv70633582 +,,73094011,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094011&format=geojson,0.07976,,111.0,",nc73094011,",1.3,md,,nc,19.0,"11km S of Tres Pinos, CA",0.07,26,",nc,",reviewed,1538756314500,"M 1.3 - 11km S of Tres Pinos, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538801162931,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094011 +,,73094006,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73094006&format=geojson,0.08373,,113.0,",nc73094006,",1.72,md,,nc,30.0,"11km S of Tres Pinos, CA",0.05,46,",nc,",reviewed,1538756299700,"M 1.7 - 11km S of Tres Pinos, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538799542781,https://earthquake.usgs.gov/earthquakes/eventpage/nc73094006 +,,20271528,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271528&format=geojson,,,,",ak20271528,",0.9,ml,,ak,,"23km WSW of Haines Junction, Canada",0.42,12,",ak,",reviewed,1538756069964,"M 0.9 - 23km WSW of Haines Junction, Canada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539219551025,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271528 +,,70806129,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70806129&format=geojson,0.06887,,173.0,",av70806129,",0.15,ml,,av,6.0,"94km SE of King Salmon, Alaska",0.08,0,",av,",reviewed,1538756018750,"M 0.2 - 94km SE of King Salmon, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538778127050,https://earthquake.usgs.gov/earthquakes/eventpage/av70806129 +,,00659730,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659730&format=geojson,0.109,,246.99,",nn00659730,",0.2,ml,,nn,3.0,"27km E of Hawthorne, Nevada",0.0803,1,",nn,",reviewed,1538755962172,"M 0.2 - 27km E of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538771083170,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659730 +,,20271489,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271489&format=geojson,,,,",ak20271489,",1.0,ml,,ak,,"47km SSW of Cantwell, Alaska",0.35,15,",ak,",reviewed,1538755930116,"M 1.0 - 47km SSW of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219550505,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271489 +,,20271488,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271488&format=geojson,,,,",ak20271488,",1.1,ml,,ak,,"52km WNW of Talkeetna, Alaska",0.32,19,",ak,",reviewed,1538755477761,"M 1.1 - 52km WNW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219549977,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271488 +,,00659728,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659728&format=geojson,0.107,,263.26,",nn00659728,",-0.3,ml,,nn,4.0,"35km NNE of Beatty, Nevada",0.0741,0,",nn,",reviewed,1538755175073,"M -0.3 - 35km NNE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538770898473,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659728 +,,20271485,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271485&format=geojson,,,,",ak20271485,",2.0,ml,,ak,,"69km SW of Atka, Alaska",0.38,62,",ak,",reviewed,1538754982987,"M 2.0 - 69km SW of Atka, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539219549417,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271485 +,,70633542,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70633542&format=geojson,0.01186,,48.0,",hv70633542,",1.9,md,,hv,19.0,"6km WSW of Volcano, Hawaii",0.12,56,",hv,",automatic,1538754980130,"M 1.9 - 6km WSW of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538755165150,https://earthquake.usgs.gov/earthquakes/eventpage/hv70633542 +,,20271479,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271479&format=geojson,,,,",ak20271479,",1.8,ml,,ak,,"16km ESE of Anchorage, Alaska",0.71,50,",ak,",reviewed,1538754622064,"M 1.8 - 16km ESE of Anchorage, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219548700,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271479 +,,70806124,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70806124&format=geojson,0.02563,,230.0,",av70806124,",-0.46,ml,,av,4.0,"94km SE of King Salmon, Alaska",0.07,0,",av,",reviewed,1538754364390,"M -0.5 - 94km SE of King Salmon, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538777799870,https://earthquake.usgs.gov/earthquakes/eventpage/av70806124 +,,20271477,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271477&format=geojson,,,,",ak20271477,",1.6,ml,,ak,,"34km SSW of Tanaga Volcano, Alaska",0.42,39,",ak,",reviewed,1538754331655,"M 1.6 - 34km SSW of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539219548145,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271477 +,,80312524,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80312524&format=geojson,0.077,,119.0,",mb80312524,",1.11,ml,,mb,9.0,"10km ESE of Lincoln, Montana",0.05,19,",mb,",reviewed,1538754088180,"M 1.1 - 10km ESE of Lincoln, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538768936650,https://earthquake.usgs.gov/earthquakes/eventpage/mb80312524 +,,73093996,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093996&format=geojson,0.01343,,77.0,",nc73093996,",1.31,md,,nc,39.0,"2km NW of The Geysers, CA",0.07,26,",nc,",reviewed,1538753093730,"M 1.3 - 2km NW of The Geysers, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538793364205,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093996 +,,20271475,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271475&format=geojson,,,,",ak20271475,",0.7,ml,,ak,,"14km NNW of North Nenana, Alaska",0.58,8,",ak,",reviewed,1538752855252,"M 0.7 - 14km NNW of North Nenana, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219547546,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271475 +,,1000h7kj,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h7kj&format=geojson,13.836,,59.0,",us1000h7kj,",5.2,mb,,us,,Ascension Island region,0.86,416,",us,",reviewed,1538752408150,M 5.2 - Ascension Island region,0,earthquake,",geoserve,origin,phase-data,",-60.0,1538753397040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h7kj +green,,1000h7jc,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h7jc&format=geojson,3.589,,34.0,",us1000h7jc,",5.8,mww,1.86,us,,Ascension Island region,0.87,518,",us,",reviewed,1538751584140,M 5.8 - Ascension Island region,0,earthquake,",geoserve,losspager,moment-tensor,origin,phase-data,shakemap,",-60.0,1539436278856,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h7jc +,,70633507,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70633507&format=geojson,0.04063,,97.0,",hv70633507,us1000h7j6,",2.46,ml,,hv,35.0,"13km S of Volcano, Hawaii",0.08,93,",hv,us,",reviewed,1538751410790,"M 2.5 - 13km S of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539435772040,https://earthquake.usgs.gov/earthquakes/eventpage/hv70633507 +,,38316232,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38316232&format=geojson,0.06011,,91.0,",ci38316232,",0.65,ml,,ci,24.0,"10km S of Idyllwild, CA",0.14,6,",ci,",reviewed,1538751171780,"M 0.7 - 10km S of Idyllwild, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538753654684,https://earthquake.usgs.gov/earthquakes/eventpage/ci38316232 +,,73093991,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093991&format=geojson,0.01141,,85.0,",nc73093991,",0.68,md,,nc,16.0,"4km W of Cobb, CA",0.04,7,",nc,",reviewed,1538751055490,"M 0.7 - 4km W of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538784363119,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093991 +,,00659727,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659727&format=geojson,0.08,,114.38,",nn00659727,",0.9,ml,,nn,6.0,"21km E of Hawthorne, Nevada",0.1093,12,",nn,",reviewed,1538750487722,"M 0.9 - 21km E of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538770713313,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659727 +,,38316224,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38316224&format=geojson,0.005434,,35.0,",ci38316224,",0.78,ml,,ci,36.0,"1km SSW of Lake Henshaw, CA",0.15,9,",ci,",reviewed,1538750356970,"M 0.8 - 1km SSW of Lake Henshaw, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538756063172,https://earthquake.usgs.gov/earthquakes/eventpage/ci38316224 +,,1000hanc,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000hanc&format=geojson,2.784,,149.0,",us1000hanc,",4.4,mb,,us,,"15km E of Lluta, Peru",1.26,298,",us,",reviewed,1538749968560,"M 4.4 - 15km E of Lluta, Peru",0,earthquake,",geoserve,origin,phase-data,",-300.0,1539435093040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000hanc +,,61426577,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61426577&format=geojson,0.2365,,118.0,",uw61426577,",1.23,ml,,uw,9.0,"53km NW of Granite Falls, Washington",0.13,23,",uw,",reviewed,1538749396780,"M 1.2 - 53km NW of Granite Falls, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538762901000,https://earthquake.usgs.gov/earthquakes/eventpage/uw61426577 +,,70806104,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70806104&format=geojson,0.06643,,190.0,",av70806104,",-0.54,ml,,av,4.0,"94km SE of King Salmon, Alaska",0.03,0,",av,",reviewed,1538748950840,"M -0.5 - 94km SE of King Salmon, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538777119960,https://earthquake.usgs.gov/earthquakes/eventpage/av70806104 +,,70806109,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70806109&format=geojson,0.06376,,169.0,",av70806109,",-0.08,ml,,av,6.0,"94km SE of King Salmon, Alaska",0.19,0,",av,",reviewed,1538748623020,"M -0.1 - 94km SE of King Salmon, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538777351430,https://earthquake.usgs.gov/earthquakes/eventpage/av70806109 +,,20271472,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271472&format=geojson,,,,",ak20271472,",1.9,ml,,ak,,"109km N of Arctic Village, Alaska",0.43,56,",ak,",reviewed,1538748546294,"M 1.9 - 109km N of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219546874,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271472 +,,70806084,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70806084&format=geojson,0.06135,,238.0,",av70806084,",-0.01,ml,,av,7.0,"94km SE of King Salmon, Alaska",0.1,0,",av,",reviewed,1538748447440,"M -0.0 - 94km SE of King Salmon, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538775578910,https://earthquake.usgs.gov/earthquakes/eventpage/av70806084 +,,70806089,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70806089&format=geojson,0.05654,,244.0,",av70806089,",-0.17,ml,,av,5.0,"93km SE of King Salmon, Alaska",0.09,0,",av,",reviewed,1538748405910,"M -0.2 - 93km SE of King Salmon, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538775771870,https://earthquake.usgs.gov/earthquakes/eventpage/av70806089 +,,20271469,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271469&format=geojson,,,,",ak20271469,",1.0,ml,,ak,,"36km N of North Nenana, Alaska",0.75,15,",ak,",reviewed,1538748227099,"M 1.0 - 36km N of North Nenana, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219546227,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271469 +,,80312594,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80312594&format=geojson,0.684,,121.0,",mb80312594,",1.58,ml,,mb,7.0,"64km WSW of Challis, Idaho",0.19,38,",mb,",reviewed,1538747992370,"M 1.6 - 64km WSW of Challis, Idaho",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538768931490,https://earthquake.usgs.gov/earthquakes/eventpage/mb80312594 +,,70806074,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70806074&format=geojson,0.02748,,159.0,",av70806074,",-1.22,ml,,av,4.0,"43km ENE of Adak, Alaska",0.2,0,",av,",reviewed,1538747692790,"M -1.2 - 43km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538774691260,https://earthquake.usgs.gov/earthquakes/eventpage/av70806074 +,,73093986,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093986&format=geojson,0.004355,,102.0,",nc73093986,",0.55,md,,nc,10.0,"3km NW of The Geysers, CA",0.02,5,",nc,",automatic,1538747592990,"M 0.6 - 3km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538749562609,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093986 +,,80312554,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80312554&format=geojson,0.672,,123.0,",mb80312554,",1.63,md,,mb,7.0,"63km WSW of Challis, Idaho",0.12,41,",mb,",reviewed,1538747394550,"M 1.6 - 63km WSW of Challis, Idaho",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538763447430,https://earthquake.usgs.gov/earthquakes/eventpage/mb80312554 +,,70806064,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70806064&format=geojson,0.009467,,166.0,",av70806064,",0.11,ml,,av,4.0,"51km SSW of Redoubt Volcano, Alaska",0.07,0,",av,",reviewed,1538747358580,"M 0.1 - 51km SSW of Redoubt Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538774304020,https://earthquake.usgs.gov/earthquakes/eventpage/av70806064 +,,70806059,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70806059&format=geojson,0.01871,,123.0,",av70806059,",-1.26,ml,,av,4.0,"41km ENE of Adak, Alaska",0.24,0,",av,",reviewed,1538746911930,"M -1.3 - 41km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538774135050,https://earthquake.usgs.gov/earthquakes/eventpage/av70806059 +,,20276256,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276256&format=geojson,,,,",ak20276256,",1.7,ml,,ak,,"51km E of Amatignak Island, Alaska",0.28,44,",ak,",reviewed,1538746892180,"M 1.7 - 51km E of Amatignak Island, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539219545654,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276256 +,,20276255,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276255&format=geojson,,,,",ak20276255,",1.1,ml,,ak,,"101km NW of Arctic Village, Alaska",0.47,19,",ak,",reviewed,1538746822440,"M 1.1 - 101km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219545093,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276255 +,,2018278007,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018278007&format=geojson,1.5076,,331.0,",pr2018278007,us1000h7nr,",3.14,md,,pr,9.0,"144km NNE of Vieques, Puerto Rico",0.16,152,",pr,us,",reviewed,1538746627070,"M 3.1 - 144km NNE of Vieques, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1539434750040,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018278007 +,,20276254,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276254&format=geojson,,,,",ak20276254,",1.3,ml,,ak,,"97km NW of Arctic Village, Alaska",0.39,26,",ak,",reviewed,1538746448856,"M 1.3 - 97km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219544523,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276254 +green,3.8,73093981,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093981&format=geojson,0.07589,580.0,42.0,",nc73093981,at00pg4o5d,us1000h7il,",3.83,mw,4.48,nc,87.0,"5km SW of Tres Pinos, CA",0.26,446,",nc,at,us,",reviewed,1538746177550,"M 3.8 - 5km SW of Tres Pinos, CA",1,earthquake,",dyfi,focal-mechanism,geoserve,impact-link,losspager,moment-tensor,nearby-cities,origin,phase-data,scitech-link,shakemap,",-480.0,1539434628040,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093981 +,,00660010,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660010&format=geojson,0.181,,294.77,",nn00660010,",0.2,ml,,nn,3.0,"46km SE of Hawthorne, Nevada",0.0282,1,",nn,",reviewed,1538744801738,"M 0.2 - 46km SE of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539015410827,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660010 +,,20271463,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271463&format=geojson,,,,",ak20271463,us1000h7ig,",2.6,ml,,ak,,"28km S of Redoubt Volcano, Alaska",0.55,104,",ak,us,",reviewed,1538744422594,"M 2.6 - 28km S of Redoubt Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539434115040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271463 +,,38316184,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38316184&format=geojson,0.06834,,86.0,",ci38316184,",0.88,ml,,ci,24.0,"7km W of Idyllwild, CA",0.13,12,",ci,",reviewed,1538744171280,"M 0.9 - 7km W of Idyllwild, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538754896061,https://earthquake.usgs.gov/earthquakes/eventpage/ci38316184 +,,38316176,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38316176&format=geojson,0.01687,,23.0,",ci38316176,",1.49,ml,,ci,64.0,"2km ESE of Lake Henshaw, CA",0.17,34,",ci,",reviewed,1538744157240,"M 1.5 - 2km ESE of Lake Henshaw, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538754365426,https://earthquake.usgs.gov/earthquakes/eventpage/ci38316176 +,,20271460,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271460&format=geojson,,,,",ak20271460,",2.0,ml,,ak,,"88km SSW of Shishmaref, Alaska",0.64,62,",ak,",reviewed,1538744116889,"M 2.0 - 88km SSW of Shishmaref, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219542980,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271460 +,,00659726,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659726&format=geojson,0.02,,93.06,",nn00659726,",-0.1,ml,,nn,11.0,"56km ENE of Beatty, Nevada",0.1393,0,",nn,",reviewed,1538743764766,"M -0.1 - 56km ENE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538770342465,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659726 +,,38316168,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38316168&format=geojson,0.02659,,36.0,",ci38316168,",0.56,ml,,ci,30.0,"9km NE of Aguanga, CA",0.13,5,",ci,",reviewed,1538743619060,"M 0.6 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538755532404,https://earthquake.usgs.gov/earthquakes/eventpage/ci38316168 +,,20271457,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271457&format=geojson,,,,",ak20271457,",1.0,ml,,ak,,"36km NNE of North Nenana, Alaska",0.62,15,",ak,",reviewed,1538743323539,"M 1.0 - 36km NNE of North Nenana, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219542394,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271457 +,,61791946,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61791946&format=geojson,0.04967,,321.0,",av61791946,",0.81,ml,,av,5.0,"43km WSW of Tanaga Volcano, Alaska",0.26,10,",av,",reviewed,1538742527100,"M 0.8 - 43km WSW of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538784503300,https://earthquake.usgs.gov/earthquakes/eventpage/av61791946 +,,60241636,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nm60241636&format=geojson,0.06595,,36.0,",nm60241636,",2.26,md,,nm,42.0,"3km E of Steele, Missouri",0.15,79,",nm,",reviewed,1538742507550,"M 2.3 - 3km E of Steele, Missouri",0,earthquake,",geoserve,origin,phase-data,",-360.0,1538744945810,https://earthquake.usgs.gov/earthquakes/eventpage/nm60241636 +,,70633317,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70633317&format=geojson,0.04665,,127.0,",hv70633317,",1.8,ml,,hv,44.0,"15km SE of Volcano, Hawaii",0.17,50,",hv,",automatic,1538742210670,"M 1.8 - 15km SE of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538742554130,https://earthquake.usgs.gov/earthquakes/eventpage/hv70633317 +,,73093976,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093976&format=geojson,0.02725,,130.0,",nc73093976,",1.05,md,,nc,25.0,"6km SSE of Mammoth Lakes, CA",0.04,17,",nc,",reviewed,1538742084530,"M 1.1 - 6km SSE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538785514551,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093976 +,,20271453,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271453&format=geojson,,,,",ak20271453,",1.3,ml,,ak,,"25km S of Ester, Alaska",0.63,26,",ak,",reviewed,1538741981936,"M 1.3 - 25km S of Ester, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219541782,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271453 +,,70806049,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70806049&format=geojson,0.02068,,158.0,",av70806049,",-1.12,ml,,av,4.0,"42km ENE of Adak, Alaska",0.12,0,",av,",reviewed,1538741950500,"M -1.1 - 42km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538773723370,https://earthquake.usgs.gov/earthquakes/eventpage/av70806049 +,,70806044,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70806044&format=geojson,0.02502,,119.0,",av70806044,",-0.5,ml,,av,5.0,"42km ENE of Adak, Alaska",0.07,0,",av,",reviewed,1538741942640,"M -0.5 - 42km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538773653700,https://earthquake.usgs.gov/earthquakes/eventpage/av70806044 +,,20271451,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271451&format=geojson,,,,",ak20271451,",1.1,ml,,ak,,"19km NE of Healy, Alaska",0.51,19,",ak,",reviewed,1538741873038,"M 1.1 - 19km NE of Healy, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219541107,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271451 +,,00659717,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659717&format=geojson,0.166,,149.14,",nn00659717,",-0.1,ml,,nn,3.0,"15km NE of Spanish Springs, Nevada",0.0556,0,",nn,",reviewed,1538741731777,"M -0.1 - 15km NE of Spanish Springs, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538765922821,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659717 +,,00659714,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659714&format=geojson,0.347,,289.46,",nn00659714,",0.4,ml,,nn,9.0,"42km NE of Searles Valley, California",0.1889,2,",nn,",reviewed,1538741498493,"M 0.4 - 42km NE of Searles Valley, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538765737996,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659714 +,,20271446,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271446&format=geojson,,,,",ak20271446,",1.3,ml,,ak,,"8km WSW of Big Lake, Alaska",0.48,26,",ak,",reviewed,1538741144776,"M 1.3 - 8km WSW of Big Lake, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219540482,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271446 +,,20271447,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271447&format=geojson,,,,",ak20271447,",1.6,ml,,ak,,"95km N of Yakutat, Alaska",0.61,39,",ak,",reviewed,1538741099432,"M 1.6 - 95km N of Yakutat, Alaska",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539219539806,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271447 +,,20271445,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271445&format=geojson,,,,",ak20271445,",1.9,ml,,ak,,"61km SE of King Salmon, Alaska",0.41,56,",ak,",reviewed,1538740921774,"M 1.9 - 61km SE of King Salmon, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219539182,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271445 +,,38316152,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38316152&format=geojson,0.008827,,46.0,",ci38316152,",0.58,ml,,ci,25.0,"10km NE of Aguanga, CA",0.16,5,",ci,",reviewed,1538740659890,"M 0.6 - 10km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1538746394350,https://earthquake.usgs.gov/earthquakes/eventpage/ci38316152 +,,00659713,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659713&format=geojson,0.241,,189.57,",nn00659713,",0.4,ml,,nn,6.0,"43km NE of Searles Valley, California",0.2123,2,",nn,",reviewed,1538740223247,"M 0.4 - 43km NE of Searles Valley, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538764630562,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659713 +,,20271444,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271444&format=geojson,,,,",ak20271444,",1.4,ml,,ak,,"91km WNW of Skagway, Alaska",0.39,30,",ak,",reviewed,1538739711777,"M 1.4 - 91km WNW of Skagway, Alaska",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539219538595,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271444 +,,38316144,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38316144&format=geojson,0.008448,,30.0,",ci38316144,",0.99,ml,,ci,50.0,"1km SW of Lake Henshaw, CA",0.15,15,",ci,",reviewed,1538739556140,"M 1.0 - 1km SW of Lake Henshaw, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538753593516,https://earthquake.usgs.gov/earthquakes/eventpage/ci38316144 +,,38316136,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38316136&format=geojson,0.08424,,51.0,",ci38316136,",1.34,ml,,ci,44.0,"21km NNW of Borrego Springs, CA",0.22,28,",ci,",reviewed,1538739262640,"M 1.3 - 21km NNW of Borrego Springs, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538746387536,https://earthquake.usgs.gov/earthquakes/eventpage/ci38316136 +,1.0,80312489,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80312489&format=geojson,0.825,1.0,98.0,",mb80312489,",2.46,ml,,mb,8.0,"62km WSW of Challis, Idaho",0.17,93,",mb,",reviewed,1538739252080,"M 2.5 - 62km WSW of Challis, Idaho",0,earthquake,",dyfi,geoserve,origin,phase-data,",-420.0,1538762805219,https://earthquake.usgs.gov/earthquakes/eventpage/mb80312489 +,,80312549,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80312549&format=geojson,0.825,,129.0,",mb80312549,",1.62,ml,,mb,5.0,"63km WSW of Challis, Idaho",0.09,40,",mb,",reviewed,1538739075830,"M 1.6 - 63km WSW of Challis, Idaho",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538763080040,https://earthquake.usgs.gov/earthquakes/eventpage/mb80312549 +,,80312484,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80312484&format=geojson,0.836,,130.0,",mb80312484,",1.75,ml,,mb,6.0,"62km WSW of Challis, Idaho",0.14,47,",mb,",reviewed,1538738647310,"M 1.8 - 62km WSW of Challis, Idaho",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538749565340,https://earthquake.usgs.gov/earthquakes/eventpage/mb80312484 +,,80312494,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80312494&format=geojson,0.79,,125.0,",mb80312494,",2.41,md,,mb,6.0,"65km WSW of Challis, Idaho",0.09,89,",mb,",reviewed,1538738195620,"M 2.4 - 65km WSW of Challis, Idaho",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538751766250,https://earthquake.usgs.gov/earthquakes/eventpage/mb80312494 +,,80312479,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80312479&format=geojson,0.825,,129.0,",mb80312479,",2.11,ml,,mb,7.0,"62km WSW of Challis, Idaho",0.07,68,",mb,",reviewed,1538738167920,"M 2.1 - 62km WSW of Challis, Idaho",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538772509200,https://earthquake.usgs.gov/earthquakes/eventpage/mb80312479 +,,73093971,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093971&format=geojson,0.01543,,112.0,",nc73093971,",0.78,md,,nc,11.0,"3km WSW of Cobb, CA",0.04,9,",nc,",automatic,1538737964370,"M 0.8 - 3km WSW of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538738882594,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093971 +,,20271442,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271442&format=geojson,,,,",ak20271442,",1.7,ml,,ak,,"115km SSE of Old Iliamna, Alaska",0.34,44,",ak,",reviewed,1538737900214,"M 1.7 - 115km SSE of Old Iliamna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219537990,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271442 +,,20271440,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271440&format=geojson,,,,",ak20271440,",1.5,ml,,ak,,"4km SW of Kobuk, Alaska",0.48,35,",ak,",reviewed,1538737775569,"M 1.5 - 4km SW of Kobuk, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219537397,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271440 +,,00659674,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659674&format=geojson,0.045,,70.08,",nn00659674,",0.0,ml,,nn,23.0,"48km ESE of Beatty, Nevada",0.1309,0,",nn,",reviewed,1538737609226,"M 0.0 - 48km ESE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538759457874,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659674 +,,20276242,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276242&format=geojson,,,,",ak20276242,",1.8,ml,,ak,,"81km SE of Atka, Alaska",0.45,50,",ak,",reviewed,1538737601354,"M 1.8 - 81km SE of Atka, Alaska",0,earthquake,",geoserve,origin,phase-data,",-720.0,1539219536838,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276242 +,,00659707,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659707&format=geojson,0.035,,90.67,",nn00659707,",0.0,ml,,nn,6.0,"3km WSW of Tahoe Vista, California",0.0449,0,",nn,",reviewed,1538737488370,"M 0.0 - 3km WSW of Tahoe Vista, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538764075454,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659707 +,,20271437,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271437&format=geojson,,,,",ak20271437,",1.7,ml,,ak,,"19km ENE of Willow, Alaska",0.4,44,",ak,",reviewed,1538737190574,"M 1.7 - 19km ENE of Willow, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219536076,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271437 +,,80312544,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80312544&format=geojson,0.821,,129.0,",mb80312544,",1.38,ml,,mb,6.0,"63km WSW of Challis, Idaho",0.1,29,",mb,",reviewed,1538737006880,"M 1.4 - 63km WSW of Challis, Idaho",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538762648860,https://earthquake.usgs.gov/earthquakes/eventpage/mb80312544 +,,38316128,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38316128&format=geojson,0.04092,,53.0,",ci38316128,",0.7,ml,,ci,24.0,"8km S of Idyllwild, CA",0.12,8,",ci,",reviewed,1538736993670,"M 0.7 - 8km S of Idyllwild, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538746390017,https://earthquake.usgs.gov/earthquakes/eventpage/ci38316128 +,,20271434,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271434&format=geojson,,,,",ak20271434,",1.1,ml,,ak,,"36km NNE of North Nenana, Alaska",0.43,19,",ak,",reviewed,1538736975937,"M 1.1 - 36km NNE of North Nenana, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219535444,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271434 +,,20271432,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271432&format=geojson,,,,",ak20271432,",1.9,ml,,ak,,"57km NNW of Valdez, Alaska",0.7,56,",ak,",reviewed,1538736655237,"M 1.9 - 57km NNW of Valdez, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219534724,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271432 +,,73093961,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093961&format=geojson,0.03325,,161.0,",nc73093961,",1.23,md,,nc,12.0,"13km SE of Pinnacles, CA",0.02,23,",nc,",reviewed,1538736476130,"M 1.2 - 13km SE of Pinnacles, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538797863616,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093961 +,,80312519,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80312519&format=geojson,0.082,,116.0,",mb80312519,",0.59,md,,mb,10.0,"10km ESE of Lincoln, Montana",0.11,5,",mb,",reviewed,1538736443570,"M 0.6 - 10km ESE of Lincoln, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538760696430,https://earthquake.usgs.gov/earthquakes/eventpage/mb80312519 +,,20271431,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271431&format=geojson,,,,",ak20271431,",0.9,ml,,ak,,"38km ESE of Sutton-Alpine, Alaska",0.47,12,",ak,",reviewed,1538736010228,"M 0.9 - 38km ESE of Sutton-Alpine, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219534176,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271431 +,,73093956,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093956&format=geojson,0.008802,,147.0,",nc73093956,",0.72,md,,nc,8.0,"2km NW of The Geysers, CA",0.02,8,",nc,",automatic,1538735886900,"M 0.7 - 2km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538736782374,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093956 +,,1000h7fq,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h7fq&format=geojson,10.213,,210.0,",us1000h7fq,",4.6,mb,,us,,Northern East Pacific Rise,1.17,326,",us,",reviewed,1538735663890,M 4.6 - Northern East Pacific Rise,0,earthquake,",geoserve,origin,phase-data,",-420.0,1538738249040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h7fq +,,20271430,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271430&format=geojson,,,,",ak20271430,",1.1,ml,,ak,,"70km N of Nikiski, Alaska",0.27,19,",ak,",reviewed,1538735416526,"M 1.1 - 70km N of Nikiski, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219533537,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271430 +,2.7,38316120,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38316120&format=geojson,0.04254,1.0,21.0,",ci38316120,",2.14,ml,,ci,100.0,"7km WSW of Calimesa, CA",0.15,71,",ci,",reviewed,1538735252540,"M 2.1 - 7km WSW of Calimesa, CA",0,earthquake,",dyfi,focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1538753162990,https://earthquake.usgs.gov/earthquakes/eventpage/ci38316120 +,,20276236,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276236&format=geojson,,,,",ak20276236,",2.4,ml,,ak,,"52km WSW of Nikolski, Alaska",0.65,89,",ak,",reviewed,1538734688208,"M 2.4 - 52km WSW of Nikolski, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539219533022,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276236 +,,20271429,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271429&format=geojson,,,,",ak20271429,",1.4,ml,,ak,,"163km S of Kotzebue, Alaska",0.36,30,",ak,",reviewed,1538734354896,"M 1.4 - 163km S of Kotzebue, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219532466,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271429 +,,20271427,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271427&format=geojson,,,,",ak20271427,",1.2,ml,,ak,,"65km SW of Deltana, Alaska",0.58,22,",ak,",reviewed,1538733503085,"M 1.2 - 65km SW of Deltana, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219531825,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271427 +,,00659706,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659706&format=geojson,0.112,,238.52,",nn00659706,",0.0,ml,,nn,3.0,"20km SSE of Hawthorne, Nevada",0.0099,0,",nn,",reviewed,1538733025044,"M 0.0 - 20km SSE of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538763889461,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659706 +,,73093946,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093946&format=geojson,0.04818,,61.0,",nc73093946,",0.87,md,,nc,14.0,"8km NE of Gilroy, CA",0.05,12,",nc,",reviewed,1538732628660,"M 0.9 - 8km NE of Gilroy, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538784852010,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093946 +,,20276233,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276233&format=geojson,,,,",ak20276233,",1.4,ml,,ak,,"77km ENE of Glennallen, Alaska",0.23,30,",ak,",reviewed,1538732586812,"M 1.4 Other Event - 77km ENE of Glennallen, Alaska",0,other event,",geoserve,origin,phase-data,",-540.0,1539219531246,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276233 +,,20271423,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271423&format=geojson,,,,",ak20271423,",1.6,ml,,ak,,"50km S of Redoubt Volcano, Alaska",0.33,39,",ak,",reviewed,1538732147211,"M 1.6 - 50km S of Redoubt Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219530502,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271423 +,,20271421,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271421&format=geojson,,,,",ak20271421,",2.0,ml,,ak,,"64km NW of Yakutat, Alaska",0.63,62,",ak,",reviewed,1538731748855,"M 2.0 - 64km NW of Yakutat, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219529881,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271421 +,,80312474,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80312474&format=geojson,0.106,,107.0,",mb80312474,",0.93,ml,,mb,9.0,"13km SE of Lincoln, Montana",0.14,13,",mb,",reviewed,1538731438980,"M 0.9 - 13km SE of Lincoln, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538752161570,https://earthquake.usgs.gov/earthquakes/eventpage/mb80312474 +,,00659705,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659705&format=geojson,0.007,,168.75,",nn00659705,",-0.1,ml,,nn,6.0,"60km ESE of Beatty, Nevada",0.1127,0,",nn,",reviewed,1538731106259,"M -0.1 - 60km ESE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538763888583,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659705 +,,20271420,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271420&format=geojson,,,,",ak20271420,",1.9,ml,,ak,,"83km E of Old Iliamna, Alaska",0.43,56,",ak,",reviewed,1538730760046,"M 1.9 - 83km E of Old Iliamna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219529285,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271420 +,,73093936,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093936&format=geojson,0.05554,,90.0,",nc73093936,",1.31,md,,nc,13.0,"4km ENE of Pinnacles, CA",0.08,26,",nc,",reviewed,1538730287070,"M 1.3 - 4km ENE of Pinnacles, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538794502308,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093936 +,,38316104,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38316104&format=geojson,0.000967,,49.0,",ci38316104,",0.49,ml,,ci,22.0,"10km NE of Aguanga, CA",0.15,4,",ci,",reviewed,1538729821320,"M 0.5 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538746407090,https://earthquake.usgs.gov/earthquakes/eventpage/ci38316104 +,,38316096,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38316096&format=geojson,0.1011,,68.0,",ci38316096,",1.15,ml,,ci,58.0,"12km NNE of Ocotillo Wells, CA",0.2,20,",ci,",reviewed,1538728841650,"M 1.2 - 12km NNE of Ocotillo Wells, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538752217433,https://earthquake.usgs.gov/earthquakes/eventpage/ci38316096 +,,73093931,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093931&format=geojson,0.03564,,115.0,",nc73093931,",1.08,md,,nc,25.0,"11km ENE of Mammoth Lakes, CA",0.05,18,",nc,",reviewed,1538728687210,"M 1.1 - 11km ENE of Mammoth Lakes, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538784648240,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093931 +,,00660009,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660009&format=geojson,0.034,,178.43,",nn00660009,",0.1,ml,,nn,3.0,"4km W of Tahoe Vista, California",0.0354,0,",nn,",reviewed,1538727597394,"M 0.1 - 4km W of Tahoe Vista, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539015410130,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660009 +,,70633017,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70633017&format=geojson,0.03265,,160.0,",hv70633017,",1.31,md,,hv,24.0,"14km SSE of Fern Acres, Hawaii",0.11,26,",hv,",reviewed,1538727585180,"M 1.3 - 14km SSE of Fern Acres, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539140805100,https://earthquake.usgs.gov/earthquakes/eventpage/hv70633017 +,,2018278005,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018278005&format=geojson,0.8559,,251.0,",pr2018278005,",2.9,md,,pr,7.0,"91km NW of San Antonio, Puerto Rico",0.3,129,",pr,",reviewed,1538727561120,"M 2.9 - 91km NW of San Antonio, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-300.0,1538738224629,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018278005 +,,70633007,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70633007&format=geojson,0.04617,,163.0,",hv70633007,",0.8,md,,hv,17.0,"5km ESE of Volcano, Hawaii",0.16,10,",hv,",reviewed,1538727432340,"M 0.8 - 5km ESE of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539288072730,https://earthquake.usgs.gov/earthquakes/eventpage/hv70633007 +,,20271417,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271417&format=geojson,,,,",ak20271417,",2.1,ml,,ak,,"16km N of Anchorage, Alaska",0.51,68,",ak,",reviewed,1538727043537,"M 2.1 - 16km N of Anchorage, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219528549,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271417 +,2.0,61426472,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61426472&format=geojson,0.02903,2.0,91.0,",uw61426472,",2.33,ml,,uw,30.0,"13km N of Richland, Washington",0.09,84,",uw,",reviewed,1538726965390,"M 2.3 - 13km N of Richland, Washington",0,earthquake,",dyfi,geoserve,origin,phase-data,",-480.0,1538799775789,https://earthquake.usgs.gov/earthquakes/eventpage/uw61426472 +,,73093926,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093926&format=geojson,0.003661,,68.0,",nc73093926,",0.95,md,,nc,13.0,"4km WNW of Cobb, CA",0.05,14,",nc,",automatic,1538726649160,"M 1.0 - 4km WNW of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538727543465,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093926 +,,80312459,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80312459&format=geojson,0.103,,115.0,",mb80312459,",1.1,ml,,mb,10.0,"13km ESE of Lincoln, Montana",0.12,19,",mb,",reviewed,1538726586030,"M 1.1 - 13km ESE of Lincoln, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538753507540,https://earthquake.usgs.gov/earthquakes/eventpage/mb80312459 +,,73093921,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093921&format=geojson,0.03174,,277.0,",nc73093921,",0.78,md,,nc,11.0,"10km WNW of Cobb, CA",0.07,9,",nc,",reviewed,1538726359570,"M 0.8 - 10km WNW of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538781603853,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093921 +,,20276228,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276228&format=geojson,,,,",ak20276228,",1.6,ml,,ak,,"36km WSW of Nikiski, Alaska",0.37,39,",ak,",reviewed,1538726104306,"M 1.6 - 36km WSW of Nikiski, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219527964,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276228 +,,2018278004,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018278004&format=geojson,0.1641,,164.0,",pr2018278004,",1.98,md,,pr,7.0,"1km ESE of Lluveras, Puerto Rico",0.21,60,",pr,",reviewed,1538725256480,"M 2.0 - 1km ESE of Lluveras, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538738066284,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018278004 +,,73093916,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093916&format=geojson,0.09074,,146.0,",nc73093916,",1.18,md,,nc,21.0,"19km ESE of Tres Pinos, CA",0.18,21,",nc,",reviewed,1538724587220,"M 1.2 - 19km ESE of Tres Pinos, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538792884159,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093916 +,,20271414,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271414&format=geojson,,,,",ak20271414,",1.8,ml,,ak,,"40km ENE of Sutton-Alpine, Alaska",0.55,50,",ak,",reviewed,1538724323011,"M 1.8 - 40km ENE of Sutton-Alpine, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219527136,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271414 +,,2018278003,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018278003&format=geojson,0.2544,,293.0,",pr2018278003,",2.77,md,,pr,8.0,"3km N of Rincon, Puerto Rico",0.34,118,",pr,",reviewed,1538724295670,"M 2.8 - 3km N of Rincon, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538738034200,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018278003 +,,61426462,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61426462&format=geojson,0.04794,,99.0,",uw61426462,",0.97,ml,,uw,8.0,"9km NNE of Waterville, Washington",0.08,14,",uw,",reviewed,1538724090000,"M 1.0 - 9km NNE of Waterville, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538763858800,https://earthquake.usgs.gov/earthquakes/eventpage/uw61426462 +,,20271413,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271413&format=geojson,,,,",ak20271413,",1.9,ml,,ak,,"83km SW of Kaktovik, Alaska",0.34,56,",ak,",reviewed,1538723966560,"M 1.9 - 83km SW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219526401,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271413 +,,73095556,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73095556&format=geojson,0.204,,179.0,",nc73095556,",1.43,md,,nc,10.0,"2km N of Canyondam, CA",0.1,31,",nc,",reviewed,1538723592070,"M 1.4 - 2km N of Canyondam, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539125524359,https://earthquake.usgs.gov/earthquakes/eventpage/nc73095556 +,,20271410,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271410&format=geojson,,,,",ak20271410,av61791876,",1.6,ml,,ak,,"98km NNW of Nikiski, Alaska",0.45,39,",ak,av,",reviewed,1538723483384,"M 1.6 - 98km NNW of Nikiski, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219525717,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271410 +,,73093886,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093886&format=geojson,0.008746,,109.0,",nc73093886,",0.53,md,,nc,18.0,"10km E of Mammoth Lakes, CA",0.03,4,",nc,",reviewed,1538723141190,"M 0.5 - 10km E of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538787002430,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093886 +,,20276224,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276224&format=geojson,,,,",ak20276224,",2.8,ml,,ak,,"215km SSE of Atka, Alaska",0.51,121,",ak,",reviewed,1538723103295,"M 2.8 - 215km SSE of Atka, Alaska",0,earthquake,",geoserve,origin,phase-data,",-720.0,1539219525154,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276224 +,,20271409,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271409&format=geojson,,,,",ak20271409,",1.1,ml,,ak,,"43km SE of Butte, Alaska",0.36,19,",ak,",reviewed,1538722888802,"M 1.1 - 43km SE of Butte, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219524538,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271409 +,,20271406,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271406&format=geojson,,,,",ak20271406,",1.6,ml,,ak,,"32km S of Redoubt Volcano, Alaska",0.34,39,",ak,",reviewed,1538722790266,"M 1.6 - 32km S of Redoubt Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219523908,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271406 +,,73093881,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093881&format=geojson,0.008701,,110.0,",nc73093881,",0.51,md,,nc,11.0,"10km E of Mammoth Lakes, CA",0.03,4,",nc,",reviewed,1538722723030,"M 0.5 - 10km E of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538777943500,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093881 +,,20271405,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271405&format=geojson,,,,",ak20271405,",1.3,ml,,ak,,"22km S of Cantwell, Alaska",0.52,26,",ak,",reviewed,1538722709435,"M 1.3 - 22km S of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219523348,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271405 +,,20271404,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271404&format=geojson,,,,",ak20271404,",2.5,ml,,ak,,"75km SSW of Kaktovik, Alaska",0.59,96,",ak,",reviewed,1538722674821,"M 2.5 - 75km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219522712,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271404 +,,38316088,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38316088&format=geojson,0.04072,,40.0,",ci38316088,",0.51,ml,,ci,27.0,"5km SW of Anza, CA",0.13,4,",ci,",reviewed,1538722385490,"M 0.5 - 5km SW of Anza, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538751446700,https://earthquake.usgs.gov/earthquakes/eventpage/ci38316088 +,,20271402,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271402&format=geojson,,,,",ak20271402,",2.8,ml,,ak,,"80km SSW of Shishmaref, Alaska",0.66,121,",ak,",reviewed,1538722260544,"M 2.8 - 80km SSW of Shishmaref, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219522113,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271402 +,,38316080,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38316080&format=geojson,0.02374,,80.0,",ci38316080,",0.46,ml,,ci,19.0,"9km NE of Aguanga, CA",0.12,3,",ci,",reviewed,1538721861050,"M 0.5 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538746424027,https://earthquake.usgs.gov/earthquakes/eventpage/ci38316080 +,,20271401,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271401&format=geojson,,,,",ak20271401,",1.8,ml,,ak,,"75km SSE of Tanaga Volcano, Alaska",0.19,50,",ak,",reviewed,1538721567462,"M 1.8 - 75km SSE of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-720.0,1539219521528,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271401 +,,20271398,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271398&format=geojson,,,,",ak20271398,",1.0,ml,,ak,,"12km SSW of Circle Hot Springs Station, Alaska",0.64,15,",ak,",reviewed,1538720864025,"M 1.0 - 12km SSW of Circle Hot Springs Station, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219520938,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271398 +,,20271397,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271397&format=geojson,,,,",ak20271397,",2.2,ml,,ak,,"83km SW of Kaktovik, Alaska",0.58,74,",ak,",reviewed,1538720833127,"M 2.2 - 83km SW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219520213,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271397 +,,00660008,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660008&format=geojson,0.039,,124.78,",nn00660008,",-0.5,ml,,nn,3.0,"6km W of Tahoe Vista, California",0.0234,0,",nn,",reviewed,1538720214824,"M -0.5 - 6km W of Tahoe Vista, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539015040992,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660008 +,,73093841,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093841&format=geojson,0.08036,,107.0,",nc73093841,",0.55,md,,nc,9.0,"13km ESE of Manton, CA",0.06,5,",nc,",reviewed,1538720187300,"M 0.6 - 13km ESE of Manton, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538766782432,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093841 +,,38316072,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38316072&format=geojson,0.008383,,63.0,",ci38316072,",1.07,ml,,ci,12.0,"7km W of Holtville, CA",0.25,18,",ci,",reviewed,1538719881720,"M 1.1 - 7km W of Holtville, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538751142164,https://earthquake.usgs.gov/earthquakes/eventpage/ci38316072 +,,00659704,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659704&format=geojson,0.02,,121.75,",nn00659704,",-0.3,ml,,nn,5.0,"70km ENE of Beatty, Nevada",0.0634,0,",nn,",reviewed,1538719745084,"M -0.3 - 70km ENE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538762963582,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659704 +,,73093831,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093831&format=geojson,0.1055,,150.0,",nc73093831,",0.92,md,,nc,12.0,"26km SSW of Mammoth Lakes, CA",0.03,13,",nc,",reviewed,1538719609440,"M 0.9 - 26km SSW of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538761563787,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093831 +,,80312539,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80312539&format=geojson,0.461,,214.0,",mb80312539,",0.64,ml,,mb,7.0,"45km NE of Seeley Lake, Montana",0.22,6,",mb,",reviewed,1538719445430,"M 0.6 - 45km NE of Seeley Lake, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538761948660,https://earthquake.usgs.gov/earthquakes/eventpage/mb80312539 +,,20271396,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271396&format=geojson,,,,",ak20271396,us1000h7eh,",3.4,ml,,ak,,"85km SSW of Shishmaref, Alaska",0.54,178,",ak,us,",reviewed,1538718703758,"M 3.4 - 85km SSW of Shishmaref, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219519534,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271396 +,,60299842,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60299842&format=geojson,0.03044,,49.0,",uu60299842,",2.27,ml,,uu,26.0,"24km NE of West Yellowstone, Montana",0.17,79,",uu,",reviewed,1538718651850,"M 2.3 - 24km NE of West Yellowstone, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538748464990,https://earthquake.usgs.gov/earthquakes/eventpage/uu60299842 +,,00659668,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659668&format=geojson,0.09,,87.74,",nn00659668,",1.3,ml,,nn,8.0,"11km NW of Bridgeport, California",0.1306,26,",nn,",reviewed,1538718027306,"M 1.3 - 11km NW of Bridgeport, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538758338295,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659668 +,,20271388,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271388&format=geojson,,,,",ak20271388,",2.5,ml,,ak,,"44km W of Anchor Point, Alaska",0.57,96,",ak,",reviewed,1538717383422,"M 2.5 - 44km W of Anchor Point, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219518524,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271388 +,,20271386,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271386&format=geojson,,,,",ak20271386,",1.6,ml,,ak,,"54km SSW of Adak, Alaska",0.19,39,",ak,",reviewed,1538717280073,"M 1.6 - 54km SSW of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539219517964,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271386 +,,1000h7ec,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h7ec&format=geojson,3.563,,115.0,",us1000h7ec,",4.2,mb,,us,,"265km N of Ndoi Island, Fiji",0.54,271,",us,",reviewed,1538716850030,"M 4.2 - 265km N of Ndoi Island, Fiji",0,earthquake,",geoserve,origin,phase-data,",-720.0,1538721649040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h7ec +,,20271384,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271384&format=geojson,,,,",ak20271384,",1.5,ml,,ak,,"27km W of Anchor Point, Alaska",0.36,35,",ak,",reviewed,1538716788634,"M 1.5 - 27km W of Anchor Point, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219517230,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271384 +,,38316064,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38316064&format=geojson,0.00424,,59.0,",ci38316064,",0.43,ml,,ci,20.0,"9km NE of Aguanga, CA",0.23,3,",ci,",reviewed,1538716585080,"M 0.4 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538746426187,https://earthquake.usgs.gov/earthquakes/eventpage/ci38316064 +,,20271381,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271381&format=geojson,,,,",ak20271381,",1.9,ml,,ak,,"86km NNE of Sutton-Alpine, Alaska",0.52,56,",ak,",reviewed,1538716349580,"M 1.9 - 86km NNE of Sutton-Alpine, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219516471,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271381 +,,00659703,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659703&format=geojson,0.074,,201.06,",nn00659703,",-0.1,ml,,nn,3.0,"8km S of Dayton, Nevada",0.098,0,",nn,",reviewed,1538716028934,"M -0.1 - 8km S of Dayton, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538762778578,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659703 +,,38316056,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38316056&format=geojson,0.006829,,55.0,",ci38316056,",0.31,ml,,ci,18.0,"10km NE of Aguanga, CA",0.17,1,",ci,",reviewed,1538715736140,"M 0.3 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538746442698,https://earthquake.usgs.gov/earthquakes/eventpage/ci38316056 +,,00659702,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659702&format=geojson,0.028,,217.0,",nn00659702,",-0.2,ml,,nn,6.0,"69km ENE of Beatty, Nevada",0.088,0,",nn,",reviewed,1538715424391,"M -0.2 - 69km ENE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538762593599,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659702 +,,20271380,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271380&format=geojson,,,,",ak20271380,",1.3,ml,,ak,,"15km W of Talkeetna, Alaska",0.56,26,",ak,",reviewed,1538715407143,"M 1.3 - 15km W of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219515913,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271380 +,,2018278002,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018278002&format=geojson,0.1507,,183.0,",pr2018278002,",1.76,md,,pr,5.0,"1km NNW of Maria Antonia, Puerto Rico",0.14,48,",pr,",reviewed,1538714996530,"M 1.8 - 1km NNW of Maria Antonia, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538727170686,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018278002 +,,70806024,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70806024&format=geojson,0.0185,,108.0,",av70806024,",-0.72,ml,,av,5.0,"52km SSW of Redoubt Volcano, Alaska",0.31,0,",av,",reviewed,1538714808410,"M -0.7 - 52km SSW of Redoubt Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538784536160,https://earthquake.usgs.gov/earthquakes/eventpage/av70806024 +,,70632752,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70632752&format=geojson,0.01015,,44.0,",hv70632752,",1.86,ml,,hv,26.0,"5km SW of Volcano, Hawaii",0.08,53,",hv,",reviewed,1538714515970,"M 1.9 - 5km SW of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539139542080,https://earthquake.usgs.gov/earthquakes/eventpage/hv70632752 +,,20271377,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271377&format=geojson,,,,",ak20271377,",1.2,ml,,ak,,"27km SW of Talkeetna, Alaska",0.3,22,",ak,",reviewed,1538714113659,"M 1.2 - 27km SW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219515338,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271377 +,,73093811,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093811&format=geojson,0.04924,,156.0,",nc73093811,",0.82,md,,nc,9.0,"9km N of Pinnacles, CA",0.06,10,",nc,",reviewed,1538713821940,"M 0.8 - 9km N of Pinnacles, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538786403371,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093811 +,,73093801,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093801&format=geojson,0.01017,,126.0,",nc73093801,",0.56,md,,nc,10.0,"7km WNW of The Geysers, CA",0.03,5,",nc,",automatic,1538713228710,"M 0.6 - 7km WNW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538719804719,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093801 +,,20271376,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271376&format=geojson,,,,",ak20271376,",1.4,ml,,ak,,"85km N of Kobuk, Alaska",0.46,30,",ak,",reviewed,1538712492691,"M 1.4 - 85km N of Kobuk, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219514713,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271376 +,,38316032,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38316032&format=geojson,0.0475,,50.0,",ci38316032,",0.56,ml,,ci,24.0,"1km NW of Anza, CA",0.13,5,",ci,",reviewed,1538712386690,"M 0.6 - 1km NW of Anza, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538746459645,https://earthquake.usgs.gov/earthquakes/eventpage/ci38316032 +,,38316024,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38316024&format=geojson,0.004966,,70.0,",ci38316024,",0.26,ml,,ci,13.0,"10km NE of Aguanga, CA",0.16,1,",ci,",reviewed,1538711933560,"M 0.3 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538746461797,https://earthquake.usgs.gov/earthquakes/eventpage/ci38316024 +,,20276207,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276207&format=geojson,,,,",ak20276207,",1.8,ml,,ak,,"80km E of King Salmon, Alaska",0.57,50,",ak,",reviewed,1538711867891,"M 1.8 - 80km E of King Salmon, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219514112,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276207 +,,2018278001,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018278001&format=geojson,1.4332,,346.0,",pr2018278001,us1000h7f3,",3.12,md,,pr,4.0,"54km NNE of Road Town, British Virgin Islands",0.28,150,",pr,us,",reviewed,1538711818250,"M 3.1 - 54km NNE of Road Town, British Virgin Islands",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538790722040,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018278001 +,,20271375,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271375&format=geojson,,,,",ak20271375,",1.6,ml,,ak,,"37km SE of Homer, Alaska",0.47,39,",ak,",reviewed,1538711617811,"M 1.6 - 37km SE of Homer, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219513530,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271375 +,,38316016,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38316016&format=geojson,0.01882,,34.0,",ci38316016,",0.9,ml,,ci,42.0,"3km ESE of Lake Henshaw, CA",0.16,12,",ci,",reviewed,1538711601430,"M 0.9 - 3km ESE of Lake Henshaw, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538750944782,https://earthquake.usgs.gov/earthquakes/eventpage/ci38316016 +,,73093796,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093796&format=geojson,0.008459,,106.0,",nc73093796,",0.89,md,,nc,8.0,"2km NE of The Geysers, CA",0.02,12,",nc,",automatic,1538711188890,"M 0.9 - 2km NE of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538718063533,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093796 +,,00660007,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660007&format=geojson,0.172,,200.47,",nn00660007,",0.4,ml,,nn,3.0,"12km ESE of Yerington, Nevada",0.058,2,",nn,",reviewed,1538710662682,"M 0.4 - 12km ESE of Yerington, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539014670903,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660007 +,,73093791,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093791&format=geojson,0.00923,,37.0,",nc73093791,",1.54,md,,nc,58.0,"3km ESE of Berkeley, CA",0.07,36,",nc,",reviewed,1538710630110,"M 1.5 - 3km ESE of Berkeley, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538791203998,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093791 +,,00659700,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659700&format=geojson,0.066,,172.3,",nn00659700,",-0.4,ml,,nn,5.0,"65km N of Pahrump, Nevada",0.0399,0,",nn,",reviewed,1538710434897,"M -0.4 - 65km N of Pahrump, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538761671644,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659700 +,,20271370,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271370&format=geojson,,,,",ak20271370,",1.6,ml,,ak,,"84km W of Willow, Alaska",0.39,39,",ak,",reviewed,1538707445145,"M 1.6 - 84km W of Willow, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219512875,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271370 +,,38316008,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38316008&format=geojson,0.02477,,32.0,",ci38316008,",0.88,ml,,ci,46.0,"8km NE of Aguanga, CA",0.15,12,",ci,",reviewed,1538706992110,"M 0.9 - 8km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1538750597940,https://earthquake.usgs.gov/earthquakes/eventpage/ci38316008 +,,20271361,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271361&format=geojson,,,,",ak20271361,us1000h7dr,",2.8,ml,,ak,,"15km WSW of Big Lake, Alaska",0.45,121,",ak,us,",reviewed,1538706943587,"M 2.8 - 15km WSW of Big Lake, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219511942,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271361 +,,20271355,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271355&format=geojson,,,,",ak20271355,us1000h7dl,",2.4,ml,,ak,,"55km W of Talkeetna, Alaska",0.51,89,",ak,us,",reviewed,1538705666506,"M 2.4 - 55km W of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219511119,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271355 +,,70806019,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70806019&format=geojson,0.2078,,297.0,",av70806019,",0.74,ml,,av,6.0,"36km SSW of Unalaska, Alaska",0.19,8,",av,",reviewed,1538705230000,"M 0.7 - 36km SSW of Unalaska, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767544700,https://earthquake.usgs.gov/earthquakes/eventpage/av70806019 +,,38316000,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38316000&format=geojson,0.02928,,80.0,",ci38316000,",0.41,ml,,ci,10.0,"12km NE of Little Lake, CA",0.05,3,",ci,",reviewed,1538705122680,"M 0.4 - 12km NE of Little Lake, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538784187937,https://earthquake.usgs.gov/earthquakes/eventpage/ci38316000 +,,38315992,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38315992&format=geojson,0.007343,,46.0,",ci38315992,",0.29,ml,,ci,22.0,"10km NE of Aguanga, CA",0.15,1,",ci,",reviewed,1538704806830,"M 0.3 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538750140269,https://earthquake.usgs.gov/earthquakes/eventpage/ci38315992 +,,38315984,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38315984&format=geojson,0.006004,,45.0,",ci38315984,",0.39,ml,,ci,17.0,"10km NE of Aguanga, CA",0.11,2,",ci,",reviewed,1538704647200,"M 0.4 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538746493380,https://earthquake.usgs.gov/earthquakes/eventpage/ci38315984 +,,1000h7di,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h7di&format=geojson,2.584,,82.0,",us1000h7di,",5.0,mb,,us,,"155km SW of Kavieng, Papua New Guinea",1.26,385,",us,",reviewed,1538704595820,"M 5.0 - 155km SW of Kavieng, Papua New Guinea",0,earthquake,",geoserve,origin,phase-data,",600.0,1538705708040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h7di +,2.7,70632562,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70632562&format=geojson,0.04103,1.0,78.0,",hv70632562,us1000h7df,",2.87,ml,,hv,52.0,"11km SSE of Volcano, Hawaii",0.08,127,",hv,us,",reviewed,1538704541440,"M 2.9 - 11km SSE of Volcano, Hawaii",0,earthquake,",dyfi,geoserve,origin,phase-data,",-600.0,1538764837998,https://earthquake.usgs.gov/earthquakes/eventpage/hv70632562 +,,73093786,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093786&format=geojson,0.1433,,150.0,",nc73093786,",0.82,md,,nc,16.0,"12km SSW of Toms Place, CA",0.05,10,",nc,",reviewed,1538704193740,"M 0.8 - 12km SSW of Toms Place, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538768403587,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093786 +,,73093781,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093781&format=geojson,0.1022,,228.0,",nc73093781,",0.92,md,,nc,12.0,"16km SE of Tres Pinos, CA",0.06,13,",nc,",reviewed,1538704046330,"M 0.9 - 16km SE of Tres Pinos, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539080587963,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093781 +,5.0,1000h7da,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h7da&format=geojson,3.657,1.0,60.0,",us1000h7da,",5.3,mww,,us,,"23km WSW of Checca, Peru",1.34,433,",us,",reviewed,1538703961210,"M 5.3 - 23km WSW of Checca, Peru",0,earthquake,",dyfi,geoserve,moment-tensor,origin,phase-data,",-300.0,1538765682975,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h7da +,,20271351,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271351&format=geojson,,,,",ak20271351,",1.6,ml,,ak,,"91km WSW of Cantwell, Alaska",0.42,39,",ak,",reviewed,1538702406631,"M 1.6 - 91km WSW of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219510515,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271351 +,,20271348,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271348&format=geojson,,,,",ak20271348,",2.0,ml,,ak,,"95km NNW of Talkeetna, Alaska",0.38,62,",ak,",reviewed,1538702207477,"M 2.0 - 95km NNW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219509805,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271348 +,,2018278000,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018278000&format=geojson,0.5524,,317.0,",pr2018278000,",2.9,md,,pr,5.0,"58km NNW of San Antonio, Puerto Rico",0.07,129,",pr,",reviewed,1538702194210,"M 2.9 - 58km NNW of San Antonio, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538715050287,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018278000 +,,73093771,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093771&format=geojson,0.01101,,73.0,",nc73093771,",0.88,md,,nc,18.0,"4km WNW of The Geysers, CA",0.02,12,",nc,",automatic,1538702038820,"M 0.9 - 4km WNW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538702134748,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093771 +,,60299817,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60299817&format=geojson,0.09008,,112.0,",uu60299817,",0.87,md,,uu,11.0,"11km NW of Milford, Utah",0.26,12,",uu,",reviewed,1538701839540,"M 0.9 - 11km NW of Milford, Utah",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538758650780,https://earthquake.usgs.gov/earthquakes/eventpage/uu60299817 +,,1000hams,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000hams&format=geojson,1.187,,118.0,",us1000hams,",4.6,mb,,us,,"162km E of Nago, Japan",0.66,326,",us,",reviewed,1538701532340,"M 4.6 - 162km E of Nago, Japan",0,earthquake,",geoserve,origin,phase-data,",540.0,1539306889040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000hams +,,20276200,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276200&format=geojson,,,,",ak20276200,",1.8,ml,,ak,,"39km NNE of Redoubt Volcano, Alaska",0.49,50,",ak,",reviewed,1538701528883,"M 1.8 - 39km NNE of Redoubt Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219509218,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276200 +,,20276199,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276199&format=geojson,,,,",ak20276199,",1.6,ml,,ak,,"100km NNW of Kodiak, Alaska",0.45,39,",ak,",reviewed,1538701006623,"M 1.6 - 100km NNW of Kodiak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219508697,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276199 +,,70632447,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70632447&format=geojson,0.01684,,82.0,",hv70632447,",1.71,md,,hv,39.0,"4km SSE of Pahala, Hawaii",0.09,45,",hv,",reviewed,1538699930180,"M 1.7 - 4km SSE of Pahala, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538701759420,https://earthquake.usgs.gov/earthquakes/eventpage/hv70632447 +,2.0,38315976,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38315976&format=geojson,0.05659,1.0,27.0,",ci38315976,",1.66,ml,,ci,85.0,"17km ESE of Anza, CA",0.18,43,",ci,",reviewed,1538699774400,"M 1.7 - 17km ESE of Anza, CA",0,earthquake,",dyfi,focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1538749885380,https://earthquake.usgs.gov/earthquakes/eventpage/ci38315976 +,,73093756,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093756&format=geojson,0.0133,,57.0,",nc73093756,",1.1,md,,nc,18.0,"4km W of Cobb, CA",0.03,19,",nc,",automatic,1538699026220,"M 1.1 - 4km W of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538702464512,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093756 +,,20271344,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271344&format=geojson,,,,",ak20271344,",1.1,ml,,ak,,"29km SSW of Badger, Alaska",0.44,19,",ak,",reviewed,1538698856012,"M 1.1 - 29km SSW of Badger, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219508004,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271344 +,,73093751,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093751&format=geojson,0.04318,,117.0,",nc73093751,",0.49,md,,nc,6.0,"1km ENE of Dixon Lane-Meadow Creek, CA",0.03,4,",nc,",reviewed,1538698725210,"M 0.5 - 1km ENE of Dixon Lane-Meadow Creek, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538703904126,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093751 +,,70806004,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70806004&format=geojson,0.02879,,132.0,",av70806004,",-0.49,ml,,av,5.0,"43km ENE of Adak, Alaska",0.12,0,",av,",reviewed,1538698613110,"M -0.5 - 43km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538765954840,https://earthquake.usgs.gov/earthquakes/eventpage/av70806004 +,,38315816,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38315816&format=geojson,0.02765,,32.0,",ci38315816,",1.11,ml,,ci,55.0,"3km ENE of Cabazon, CA",0.2,19,",ci,",reviewed,1538698417250,"M 1.1 - 3km ENE of Cabazon, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538748731963,https://earthquake.usgs.gov/earthquakes/eventpage/ci38315816 +,,70805999,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70805999&format=geojson,0.01674,,114.0,",av70805999,",-0.69,ml,,av,4.0,"41km ENE of Adak, Alaska",0.11,0,",av,",reviewed,1538698155000,"M -0.7 - 41km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538765541720,https://earthquake.usgs.gov/earthquakes/eventpage/av70805999 +,,20271254,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271254&format=geojson,,,,",ak20271254,",1.6,ml,,ak,,"68km NNW of Valdez, Alaska",0.71,39,",ak,",reviewed,1538697547155,"M 1.6 - 68km NNW of Valdez, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539308386805,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271254 +,3.1,1000h7cn,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h7cn&format=geojson,1.015,7.0,33.0,",us1000h7cn,",5.4,mb,,us,,"37km E of Tomakomai, Japan",0.84,451,",us,",reviewed,1538697528010,"M 5.4 - 37km E of Tomakomai, Japan",0,earthquake,",dyfi,geoserve,moment-tensor,origin,phase-data,",540.0,1538757701040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h7cn +,,20271253,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271253&format=geojson,,,,",ak20271253,",2.4,ml,,ak,,"75km SE of Atka, Alaska",0.51,89,",ak,",reviewed,1538696972229,"M 2.4 - 75km SE of Atka, Alaska",0,earthquake,",geoserve,origin,phase-data,",-720.0,1539308386247,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271253 +,,73093746,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093746&format=geojson,0.002281,,178.0,",nc73093746,",0.84,md,,nc,11.0,"7km WNW of The Geysers, CA",0.04,11,",nc,",automatic,1538696925080,"M 0.8 - 7km WNW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538697022854,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093746 +,,38315792,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38315792&format=geojson,0.006318,,53.0,",ci38315792,",0.4,ml,,ci,22.0,"10km NE of Aguanga, CA",0.12,2,",ci,",reviewed,1538696849030,"M 0.4 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538698383134,https://earthquake.usgs.gov/earthquakes/eventpage/ci38315792 +,,2018277012,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018277012&format=geojson,1.1306,,212.0,",pr2018277012,",2.53,md,,pr,6.0,"60km E of Christiansted, U.S. Virgin Islands",0.23,98,",pr,",reviewed,1538696502220,"M 2.5 - 60km E of Christiansted, U.S. Virgin Islands",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538714991894,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018277012 +,,20271250,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271250&format=geojson,,,,",ak20271250,",1.2,ml,,ak,,"19km NE of Healy, Alaska",0.26,22,",ak,",reviewed,1538696016746,"M 1.2 Explosion - 19km NE of Healy, Alaska",0,explosion,",geoserve,origin,phase-data,",-540.0,1539308385683,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271250 +,,1000h7c7,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h7c7&format=geojson,1.667,,59.0,",us1000h7c7,",4.9,mb,,us,,"70km W of Abra Pampa, Argentina",1.02,369,",us,",reviewed,1538695316590,"M 4.9 - 70km W of Abra Pampa, Argentina",0,earthquake,",geoserve,origin,phase-data,",-180.0,1538696094040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h7c7 +,,20271246,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271246&format=geojson,,,,",ak20271246,",2.5,ml,,ak,,"21km SSE of Cohoe, Alaska",0.69,96,",ak,",reviewed,1538695205220,"M 2.5 - 21km SSE of Cohoe, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539308384760,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271246 +,,61426362,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61426362&format=geojson,0.1976,,319.0,",uw61426362,",0.84,ml,,uw,4.0,"0km NNW of Bainbridge Island, Washington",0.07,11,",uw,",reviewed,1538695187270,"M 0.8 - 0km NNW of Bainbridge Island, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538763122850,https://earthquake.usgs.gov/earthquakes/eventpage/uw61426362 +,,60065523,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=se60065523&format=geojson,0.1691,,92.0,",se60065523,",1.88,md,,se,8.0,"12km E of Lenoir, North Carolina",0.2,54,",se,",reviewed,1538695108410,"M 1.9 - 12km E of Lenoir, North Carolina",0,earthquake,",geoserve,origin,phase-data,",-300.0,1538743984490,https://earthquake.usgs.gov/earthquakes/eventpage/se60065523 +,,20271244,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271244&format=geojson,,,,",ak20271244,",1.3,ml,,ak,,"32km NNE of North Pole, Alaska",0.33,26,",ak,",reviewed,1538694672159,"M 1.3 Explosion - 32km NNE of North Pole, Alaska",0,explosion,",geoserve,origin,phase-data,",-540.0,1539308384207,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271244 +,,1000h7bz,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h7bz&format=geojson,3.117,,93.0,",us1000h7bz,",4.8,mb,,us,,"90km WNW of Panguna, Papua New Guinea",1.06,354,",us,",reviewed,1538694472150,"M 4.8 - 90km WNW of Panguna, Papua New Guinea",0,earthquake,",geoserve,origin,phase-data,",660.0,1538695531040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h7bz +,,70632337,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70632337&format=geojson,0.02106,,87.0,",hv70632337,us1000h7bw,",2.29,ml,,hv,42.0,"6km SSW of Pahala, Hawaii",0.09,81,",hv,us,",reviewed,1538694259450,"M 2.3 - 6km SSW of Pahala, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538700029390,https://earthquake.usgs.gov/earthquakes/eventpage/hv70632337 +,,80312439,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80312439&format=geojson,0.209,,118.0,",mb80312439,",0.16,md,,mb,6.0,"24km NW of Three Forks, Montana",0.04,0,",mb,",reviewed,1538694093620,"M 0.2 - 24km NW of Three Forks, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538695794060,https://earthquake.usgs.gov/earthquakes/eventpage/mb80312439 +,,00659638,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659638&format=geojson,0.335,,88.36,",nn00659638,",1.4,ml,,nn,8.0,"51km N of Fort Irwin, California",0.2153,30,",nn,",reviewed,1538693246299,"M 1.4 - 51km N of Fort Irwin, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538694642477,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659638 +,,1000h7bt,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h7bt&format=geojson,1.068,,68.0,",us1000h7bt,",5.0,mww,,us,,"144km E of Nago, Japan",1.72,385,",us,",reviewed,1538693073410,"M 5.0 - 144km E of Nago, Japan",0,earthquake,",geoserve,origin,phase-data,",540.0,1538694501040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h7bt +,,20277929,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20277929&format=geojson,,,,",ak20277929,",1.6,ml,,ak,,"116km W of Talkeetna, Alaska",0.24,39,",ak,",reviewed,1538692956415,"M 1.6 - 116km W of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539308383651,https://earthquake.usgs.gov/earthquakes/eventpage/ak20277929 +,,20277928,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20277928&format=geojson,,,,",ak20277928,",3.3,ml,,ak,,Gulf of Alaska,0.63,168,",ak,",reviewed,1538692672444,M 3.3 - Gulf of Alaska,0,earthquake,",geoserve,origin,phase-data,",-600.0,1539308383016,https://earthquake.usgs.gov/earthquakes/eventpage/ak20277928 +,,20271240,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271240&format=geojson,,,,",ak20271240,",1.8,ml,,ak,,"70km WSW of Anchor Point, Alaska",0.12,50,",ak,",reviewed,1538692612781,"M 1.8 - 70km WSW of Anchor Point, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539308382484,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271240 +,,73093736,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093736&format=geojson,0.03456,,75.0,",nc73093736,",1.17,md,,nc,16.0,"4km N of Pinnacles, CA",0.09,21,",nc,",reviewed,1538691916070,"M 1.2 - 4km N of Pinnacles, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538701202876,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093736 +,,38315760,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38315760&format=geojson,0.016,,93.0,",ci38315760,",0.61,ml,,ci,11.0,"5km SSW of Lytle Creek, CA",0.11,6,",ci,",reviewed,1538691828000,"M 0.6 - 5km SSW of Lytle Creek, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538692427909,https://earthquake.usgs.gov/earthquakes/eventpage/ci38315760 +,,20271239,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271239&format=geojson,,,,",ak20271239,",1.1,ml,,ak,,"56km W of Anchor Point, Alaska",0.6,19,",ak,",reviewed,1538691759608,"M 1.1 - 56km W of Anchor Point, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539308381943,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271239 +,,00659628,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659628&format=geojson,0.155,,107.22,",nn00659628,",2.0,ml,,nn,23.0,"6km SSE of Enterprise, Nevada",0.5363,62,",nn,",reviewed,1538691457401,"M 2.0 Explosion - 6km SSE of Enterprise, Nevada",0,explosion,",geoserve,origin,phase-data,",-480.0,1538692797137,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659628 +,,20271238,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271238&format=geojson,,,,",ak20271238,",1.2,ml,,ak,,"13km WNW of Y, Alaska",0.63,22,",ak,",reviewed,1538691399155,"M 1.2 - 13km WNW of Y, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539308381352,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271238 +,,1000h7bb,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h7bb&format=geojson,2.411,,87.0,",us1000h7bb,",4.5,mb,,us,,"40km SSE of Palu, Indonesia",1.28,312,",us,",reviewed,1538690914870,"M 4.5 - 40km SSE of Palu, Indonesia",0,earthquake,",geoserve,origin,phase-data,",480.0,1538692359040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h7bb +,,20271232,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271232&format=geojson,,,,",ak20271232,",0.9,ml,,ak,,"46km NE of Healy, Alaska",0.65,12,",ak,",reviewed,1538690341529,"M 0.9 - 46km NE of Healy, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539308380731,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271232 +,,73093726,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093726&format=geojson,0.01183,,29.0,",nc73093726,",1.69,md,,nc,47.0,"6km W of Cobb, CA",0.07,44,",nc,",reviewed,1538690329540,"M 1.7 - 6km W of Cobb, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538712843017,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093726 +,,20271229,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271229&format=geojson,,,,",ak20271229,",1.2,ml,,ak,,"37km NNE of North Nenana, Alaska",0.62,22,",ak,",reviewed,1538690258860,"M 1.2 - 37km NNE of North Nenana, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539308380074,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271229 +,,20271230,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271230&format=geojson,,,,",ak20271230,",3.2,ml,,ak,,"257km SE of Kodiak, Alaska",0.67,158,",ak,",reviewed,1538690225832,"M 3.2 - 257km SE of Kodiak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539308379427,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271230 +,,20271225,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271225&format=geojson,,,,",ak20271225,",1.9,ml,,ak,,"102km NNW of Arctic Village, Alaska",0.69,56,",ak,",reviewed,1538689740884,"M 1.9 - 102km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539308378821,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271225 +,,80312414,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80312414&format=geojson,0.306,,202.0,",mb80312414,",1.1,ml,,mb,6.0,"0km W of Manhattan, Montana",0.12,19,",mb,",reviewed,1538689501160,"M 1.1 - 0km W of Manhattan, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538693386050,https://earthquake.usgs.gov/earthquakes/eventpage/mb80312414 +,,60241626,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nm60241626&format=geojson,0.03888,,58.0,",nm60241626,",1.98,md,,nm,21.0,"2km ESE of Ridgely, Tennessee",0.06,60,",nm,",reviewed,1538688582140,"M 2.0 - 2km ESE of Ridgely, Tennessee",0,earthquake,",geoserve,origin,phase-data,",-360.0,1539008619980,https://earthquake.usgs.gov/earthquakes/eventpage/nm60241626 +,,73093706,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093706&format=geojson,0.02771,,81.0,",nc73093706,",1.25,md,,nc,25.0,"2km NNE of Castro Valley, CA",0.08,24,",nc,",reviewed,1538688054620,"M 1.3 - 2km NNE of Castro Valley, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538711163848,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093706 +,,73093701,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093701&format=geojson,0.02175,,155.0,",nc73093701,",0.39,md,,nc,12.0,"9km ESE of Mammoth Lakes, CA",0.07,2,",nc,",reviewed,1538687858060,"M 0.4 - 9km ESE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538692923797,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093701 +,,70632172,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70632172&format=geojson,0.0309,,69.0,",hv70632172,",1.39,md,,hv,28.0,"22km ENE of Honaunau-Napoopoo, Hawaii",0.13,30,",hv,",reviewed,1538687794520,"M 1.4 - 22km ENE of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539393351670,https://earthquake.usgs.gov/earthquakes/eventpage/hv70632172 +,,00659625,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659625&format=geojson,0.164,,176.3,",nn00659625,",1.2,ml,,nn,7.0,"7km NE of Big Pine, California",0.1816,22,",nn,",reviewed,1538687765559,"M 1.2 - 7km NE of Big Pine, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538691499828,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659625 +,,73093696,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093696&format=geojson,0.0126,,53.0,",nc73093696,",1.68,md,,nc,29.0,"3km NW of Diablo, CA",0.06,43,",nc,",reviewed,1538687586950,"M 1.7 - 3km NW of Diablo, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538708102526,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093696 +,,73093691,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093691&format=geojson,0.01409,,63.0,",nc73093691,",1.26,md,,nc,26.0,"4km ENE of Mammoth Lakes, CA",0.05,24,",nc,",reviewed,1538687468310,"M 1.3 - 4km ENE of Mammoth Lakes, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538709663682,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093691 +,,20271222,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271222&format=geojson,,,,",ak20271222,",2.9,ml,,ak,,"259km SE of Kodiak, Alaska",0.81,129,",ak,",reviewed,1538687398471,"M 2.9 - 259km SE of Kodiak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539308378272,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271222 +,,20271221,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271221&format=geojson,,,,",ak20271221,",3.2,ml,,ak,,South of Alaska,0.96,158,",ak,",reviewed,1538687228918,M 3.2 - South of Alaska,0,earthquake,",geoserve,origin,phase-data,",-600.0,1539308377730,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271221 +,,70805929,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70805929&format=geojson,0.02307,,100.0,",av70805929,",-0.19,ml,,av,7.0,"16km W of Akutan, Alaska",0.12,0,",av,",reviewed,1538687225210,"M -0.2 - 16km W of Akutan, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538697884000,https://earthquake.usgs.gov/earthquakes/eventpage/av70805929 +,,38315728,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38315728&format=geojson,0.03297,,28.0,",ci38315728,",0.84,ml,,ci,30.0,"5km WSW of Anza, CA",0.09,11,",ci,",reviewed,1538687180120,"M 0.8 - 5km WSW of Anza, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1538688568000,https://earthquake.usgs.gov/earthquakes/eventpage/ci38315728 +,,20277918,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20277918&format=geojson,,,,",ak20277918,",2.7,ml,,ak,,"243km SE of Kodiak, Alaska",0.82,112,",ak,",reviewed,1538686798657,"M 2.7 - 243km SE of Kodiak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539308377203,https://earthquake.usgs.gov/earthquakes/eventpage/ak20277918 +,,70805924,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70805924&format=geojson,0.02237,,111.0,",av70805924,",-0.23,ml,,av,7.0,"17km W of Akutan, Alaska",0.09,0,",av,",reviewed,1538686739760,"M -0.2 - 17km W of Akutan, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538697722500,https://earthquake.usgs.gov/earthquakes/eventpage/av70805924 +,,61791686,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61791686&format=geojson,0.007691,,262.0,",av61791686,",0.67,ml,,av,5.0,"45km W of Tanaga Volcano, Alaska",0.21,7,",av,",reviewed,1538686616100,"M 0.7 - 45km W of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538693438540,https://earthquake.usgs.gov/earthquakes/eventpage/av61791686 +,,70805914,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70805914&format=geojson,0.02128,,112.0,",av70805914,",-0.34,ml,,av,6.0,"17km W of Akutan, Alaska",0.08,0,",av,",reviewed,1538686606390,"M -0.3 - 17km W of Akutan, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538696987580,https://earthquake.usgs.gov/earthquakes/eventpage/av70805914 +,,70805909,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70805909&format=geojson,0.01927,,177.0,",av70805909,",-0.51,ml,,av,4.0,"17km W of Akutan, Alaska",0.04,0,",av,",reviewed,1538686600720,"M -0.5 - 17km W of Akutan, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538696857390,https://earthquake.usgs.gov/earthquakes/eventpage/av70805909 +,,70805904,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70805904&format=geojson,0.02333,,168.0,",av70805904,",-0.71,ml,,av,5.0,"18km WSW of Akutan, Alaska",0.25,0,",av,",reviewed,1538686559640,"M -0.7 - 18km WSW of Akutan, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538698424340,https://earthquake.usgs.gov/earthquakes/eventpage/av70805904 +,,70805899,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70805899&format=geojson,0.0196,,111.0,",av70805899,",0.21,ml,,av,8.0,"17km W of Akutan, Alaska",0.12,1,",av,",reviewed,1538686541940,"M 0.2 - 17km W of Akutan, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538696284880,https://earthquake.usgs.gov/earthquakes/eventpage/av70805899 +,,20271219,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271219&format=geojson,,,,",ak20271219,",2.0,ml,,ak,,"72km SW of Tanana, Alaska",0.77,62,",ak,",reviewed,1538686035127,"M 2.0 - 72km SW of Tanana, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539308376578,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271219 +,,70632137,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70632137&format=geojson,0.01346,,33.0,",hv70632137,",1.94,md,,hv,21.0,"5km WSW of Volcano, Hawaii",0.11,58,",hv,",automatic,1538685950850,"M 1.9 - 5km WSW of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538686129240,https://earthquake.usgs.gov/earthquakes/eventpage/hv70632137 +,,20271218,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271218&format=geojson,,,,",ak20271218,",1.1,ml,,ak,,"73km SW of Tanana, Alaska",0.8,19,",ak,",reviewed,1538685747337,"M 1.1 - 73km SW of Tanana, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539308376016,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271218 +,,1000h79w,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h79w&format=geojson,2.195,,79.0,",us1000h79w,",4.4,mb,,us,,"31km NNW of Kasiguncu, Indonesia",0.79,298,",us,",reviewed,1538685631540,"M 4.4 - 31km NNW of Kasiguncu, Indonesia",0,earthquake,",geoserve,origin,phase-data,",480.0,1539359544040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h79w +,,00659658,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659658&format=geojson,0.363,,166.96,",nn00659658,",1.0,ml,,nn,4.0,"28km WSW of Hawthorne, Nevada",0.0782,15,",nn,",reviewed,1538685601187,"M 1.0 - 28km WSW of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538698345474,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659658 +,,20277915,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20277915&format=geojson,,,,",ak20277915,",1.4,ml,,ak,,"71km W of Cantwell, Alaska",0.27,30,",ak,",reviewed,1538684262408,"M 1.4 - 71km W of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539308375436,https://earthquake.usgs.gov/earthquakes/eventpage/ak20277915 +,,80312354,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80312354&format=geojson,0.071,,110.0,",mb80312354,",0.46,ml,,mb,6.0,"17km NE of Moose Wilson Road, Wyoming",0.14,3,",mb,",reviewed,1538684212750,"M 0.5 - 17km NE of Moose Wilson Road, Wyoming",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538772513330,https://earthquake.usgs.gov/earthquakes/eventpage/mb80312354 +,,20277914,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20277914&format=geojson,,,,",ak20277914,",0.9,ml,,ak,,"25km W of Healy, Alaska",0.65,12,",ak,",reviewed,1538684118731,"M 0.9 - 25km W of Healy, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539308374840,https://earthquake.usgs.gov/earthquakes/eventpage/ak20277914 +,,60299747,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60299747&format=geojson,0.3854,,138.0,",uu60299747,",1.36,md,,uu,8.0,"9km S of Soda Springs, Idaho",0.22,28,",uu,",reviewed,1538683859870,"M 1.4 - 9km S of Soda Springs, Idaho",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538759761220,https://earthquake.usgs.gov/earthquakes/eventpage/uu60299747 +,,00659657,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659657&format=geojson,0.329,,175.82,",nn00659657,",0.7,ml,,nn,4.0,"28km SW of Hawthorne, Nevada",0.0258,8,",nn,",reviewed,1538683707294,"M 0.7 - 28km SW of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538698160681,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659657 +,2.0,38315704,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38315704&format=geojson,0.3827,1.0,146.0,",ci38315704,",1.91,ml,,ci,21.0,"43km SE of Avalon, CA",0.32,56,",ci,",reviewed,1538683625000,"M 1.9 - 43km SE of Avalon, CA",0,earthquake,",dyfi,geoserve,nearby-cities,origin,phase-data,",-480.0,1538688418001,https://earthquake.usgs.gov/earthquakes/eventpage/ci38315704 +,,20271213,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271213&format=geojson,,,,",ak20271213,",1.9,ml,,ak,,"110km NNW of Arctic Village, Alaska",0.74,56,",ak,",reviewed,1538683618500,"M 1.9 - 110km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539308374218,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271213 +,,20277912,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20277912&format=geojson,,,,",ak20277912,",1.9,ml,,ak,,"19km SSE of Amatignak Island, Alaska",0.81,56,",ak,",reviewed,1538683460771,"M 1.9 - 19km SSE of Amatignak Island, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539308373670,https://earthquake.usgs.gov/earthquakes/eventpage/ak20277912 +,,70805889,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70805889&format=geojson,0.007495,,140.0,",av70805889,",-0.36,ml,,av,4.0,"40km ENE of Adak, Alaska",0.1,0,",av,",reviewed,1538683386900,"M -0.4 - 40km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538695422280,https://earthquake.usgs.gov/earthquakes/eventpage/av70805889 +,,70805894,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70805894&format=geojson,0.01158,,112.0,",av70805894,",-0.83,ml,,av,5.0,"40km ENE of Adak, Alaska",0.19,0,",av,",reviewed,1538683382650,"M -0.8 - 40km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538695522920,https://earthquake.usgs.gov/earthquakes/eventpage/av70805894 +,,73093656,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093656&format=geojson,0.02284,,54.0,",nc73093656,",1.14,md,,nc,13.0,"2km E of Aromas, CA",0.1,20,",nc,",reviewed,1538683351300,"M 1.1 Quarry Blast - 2km E of Aromas, CA",0,quarry blast,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538698563351,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093656 +,,1000h78n,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h78n&format=geojson,3.233,,43.0,",us1000h78n,",4.7,mb,,us,,"44km SE of Mountain, Colombia",0.65,340,",us,",reviewed,1538683180630,"M 4.7 - 44km SE of Mountain, Colombia",0,earthquake,",geoserve,origin,phase-data,",-300.0,1539359481040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h78n +,,38315680,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38315680&format=geojson,0.09458,,62.0,",ci38315680,",1.56,ml,,ci,41.0,"28km N of Yucca Valley, CA",0.16,37,",ci,",reviewed,1538682991680,"M 1.6 - 28km N of Yucca Valley, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538711946742,https://earthquake.usgs.gov/earthquakes/eventpage/ci38315680 +,,73093651,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093651&format=geojson,0.05647,,173.0,",nc73093651,",1.81,md,,nc,7.0,"11km N of Oroville, CA",0.06,50,",nc,",reviewed,1538682799030,"M 1.8 Quarry Blast - 11km N of Oroville, CA",0,quarry blast,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538692943749,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093651 +,,60299722,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60299722&format=geojson,0.1744,,115.0,",uu60299722,",1.61,ml,,uu,13.0,"25km N of Parowan, Utah",0.3,40,",uu,",reviewed,1538682601170,"M 1.6 - 25km N of Parowan, Utah",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538692365140,https://earthquake.usgs.gov/earthquakes/eventpage/uu60299722 +,,60299727,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60299727&format=geojson,0.1701,,67.0,",uu60299727,",1.04,md,,uu,14.0,"25km N of Parowan, Utah",0.16,17,",uu,",reviewed,1538682579540,"M 1.0 - 25km N of Parowan, Utah",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538770085340,https://earthquake.usgs.gov/earthquakes/eventpage/uu60299727 +,,38315672,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38315672&format=geojson,0.01865,,129.0,",ci38315672,",0.57,ml,,ci,9.0,"4km ESE of Lytle Creek, CA",0.09,5,",ci,",reviewed,1538682499090,"M 0.6 - 4km ESE of Lytle Creek, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538684079125,https://earthquake.usgs.gov/earthquakes/eventpage/ci38315672 +,,20277911,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20277911&format=geojson,,,,",ak20277911,",1.5,ml,,ak,,"129km ESE of Yakutat, Alaska",0.62,35,",ak,",reviewed,1538682327135,"M 1.5 - 129km ESE of Yakutat, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539308373133,https://earthquake.usgs.gov/earthquakes/eventpage/ak20277911 +,,73093646,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093646&format=geojson,0.02407,,101.0,",nc73093646,",0.78,md,,nc,14.0,"16km ESE of Alum Rock, CA",0.04,9,",nc,",reviewed,1538682142760,"M 0.8 - 16km ESE of Alum Rock, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538691564514,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093646 +,,1000hak0,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000hak0&format=geojson,3.125,,72.0,",us1000hak0,",4.6,mb,,us,,"250km SE of Lambasa, Fiji",1.03,326,",us,",reviewed,1538681878290,"M 4.6 - 250km SE of Lambasa, Fiji",0,earthquake,",geoserve,origin,phase-data,",-720.0,1539368890040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000hak0 +,,20271196,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271196&format=geojson,,,,",ak20271196,",1.1,ml,,ak,,"74km ENE of Cape Yakataga, Alaska",0.36,19,",ak,",reviewed,1538681351175,"M 1.1 - 74km ENE of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539308372564,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271196 +,,20271195,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271195&format=geojson,,,,",ak20271195,",1.1,ml,,ak,,"73km ENE of Cape Yakataga, Alaska",0.54,19,",ak,",reviewed,1538681314034,"M 1.1 - 73km ENE of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539308371972,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271195 +,,61791666,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61791666&format=geojson,0.0174,,114.0,",av61791666,",0.0,ml,,av,5.0,"41km ENE of Adak, Alaska",0.06,0,",av,",reviewed,1538681003670,"M 0.0 - 41km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538693706100,https://earthquake.usgs.gov/earthquakes/eventpage/av61791666 +,,38315656,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38315656&format=geojson,0.0528,,39.0,",ci38315656,",0.89,ml,,ci,34.0,"6km S of Palomar Observatory, CA",0.12,12,",ci,",reviewed,1538680975230,"M 0.9 - 6km S of Palomar Observatory, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538682060255,https://earthquake.usgs.gov/earthquakes/eventpage/ci38315656 +,,20271177,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271177&format=geojson,,,,",ak20271177,",1.0,ml,,ak,,"64km SW of Fort McPherson, Canada",0.58,15,",ak,",reviewed,1538680732878,"M 1.0 - 64km SW of Fort McPherson, Canada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539308371420,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271177 +,,61791661,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61791661&format=geojson,0.02264,,164.0,",av61791661,",0.36,ml,,av,5.0,"42km ENE of Adak, Alaska",0.14,2,",av,",reviewed,1538680720170,"M 0.4 - 42km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538693605440,https://earthquake.usgs.gov/earthquakes/eventpage/av61791661 +,,1000hajz,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000hajz&format=geojson,1.246,,107.0,",us1000hajz,",4.2,mb,,us,,"119km S of Kokopo, Papua New Guinea",0.5,271,",us,",reviewed,1538680341570,"M 4.2 - 119km S of Kokopo, Papua New Guinea",0,earthquake,",geoserve,origin,phase-data,",600.0,1539366801040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000hajz +,,20271174,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271174&format=geojson,,,,",ak20271174,",2.3,ml,,ak,,"24km ESE of Cohoe, Alaska",0.57,81,",ak,",reviewed,1538680304826,"M 2.3 - 24km ESE of Cohoe, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539308370634,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271174 +,,73093636,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093636&format=geojson,0.003363,,93.0,",nc73093636,",0.8,md,,nc,13.0,"4km E of Berkeley, CA",0.03,10,",nc,",reviewed,1538680228340,"M 0.8 - 4km E of Berkeley, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538693875723,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093636 +,,80312409,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80312409&format=geojson,0.086,,122.0,",mb80312409,",1.03,ml,,mb,7.0,"11km ESE of Lincoln, Montana",0.06,16,",mb,",reviewed,1538679984920,"M 1.0 - 11km ESE of Lincoln, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538693135750,https://earthquake.usgs.gov/earthquakes/eventpage/mb80312409 +,,38315648,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38315648&format=geojson,0.1178,,64.0,",ci38315648,",1.26,ml,,ci,13.0,"7km S of Mojave, CA",0.23,24,",ci,",reviewed,1538679946040,"M 1.3 Quarry Blast - 7km S of Mojave, CA",0,quarry blast,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538681313938,https://earthquake.usgs.gov/earthquakes/eventpage/ci38315648 +,,38315536,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38315536&format=geojson,0.06258,,61.0,",ci38315536,",1.46,ml,,ci,24.0,"5km SE of Bostonia, CA",0.25,33,",ci,",reviewed,1538679615880,"M 1.5 Quarry Blast - 5km SE of Bostonia, CA",0,quarry blast,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538681023717,https://earthquake.usgs.gov/earthquakes/eventpage/ci38315536 +,,70805884,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70805884&format=geojson,0.02564,,103.0,",av70805884,",-0.25,ml,,av,5.0,"42km ENE of Adak, Alaska",0.24,0,",av,",reviewed,1538679307990,"M -0.3 - 42km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538695290420,https://earthquake.usgs.gov/earthquakes/eventpage/av70805884 +,,20271173,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271173&format=geojson,,,,",ak20271173,",1.7,ml,,ak,,"51km W of Talkeetna, Alaska",0.38,44,",ak,",reviewed,1538678761990,"M 1.7 - 51km W of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539308369992,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271173 +,,73093631,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093631&format=geojson,0.0165,,59.0,",nc73093631,",0.36,md,,nc,15.0,"5km E of Mammoth Lakes, CA",0.06,2,",nc,",reviewed,1538678619280,"M 0.4 - 5km E of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538680590476,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093631 +,,73093626,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093626&format=geojson,0.02035,,258.0,",nc73093626,",1.26,md,,nc,7.0,"4km S of Loyola, CA",0.03,24,",nc,",reviewed,1538678515570,"M 1.3 Quarry Blast - 4km S of Loyola, CA",0,quarry blast,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538693604789,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093626 +,,73093616,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093616&format=geojson,0.01037,,55.0,",nc73093616,",1.29,md,,nc,30.0,"6km WNW of The Geysers, CA",0.04,26,",nc,",reviewed,1538678229280,"M 1.3 - 6km WNW of The Geysers, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538695383029,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093616 +,,20271171,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271171&format=geojson,,,,",ak20271171,",1.6,ml,,ak,,"110km NW of Talkeetna, Alaska",0.89,39,",ak,",reviewed,1538678109354,"M 1.6 - 110km NW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539308369408,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271171 +,,20277904,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20277904&format=geojson,,,,",ak20277904,",1.7,ml,,ak,,"66km SW of Atka, Alaska",0.14,44,",ak,",reviewed,1538678033528,"M 1.7 - 66km SW of Atka, Alaska",0,earthquake,",geoserve,origin,phase-data,",-720.0,1539308368888,https://earthquake.usgs.gov/earthquakes/eventpage/ak20277904 +,,1000hajy,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000hajy&format=geojson,1.876,,84.0,",us1000hajy,",4.4,mb,,us,,"42km NNE of Poso, Indonesia",0.89,298,",us,",reviewed,1538677816450,"M 4.4 - 42km NNE of Poso, Indonesia",0,earthquake,",geoserve,origin,phase-data,",480.0,1539364644040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000hajy +,,73093611,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093611&format=geojson,0.05059,,139.0,",nc73093611,",1.17,md,,nc,11.0,"4km NE of Pinnacles, CA",0.06,21,",nc,",reviewed,1538677664390,"M 1.2 - 4km NE of Pinnacles, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538706602381,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093611 +,,1000h777,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h777&format=geojson,3.347,,106.0,",us1000h777,",4.7,mb,,us,,"104km SSW of Bengkulu, Indonesia",0.83,340,",us,",reviewed,1538677660250,"M 4.7 - 104km SSW of Bengkulu, Indonesia",0,earthquake,",geoserve,origin,phase-data,",420.0,1539359413040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h777 +,,1000h774,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h774&format=geojson,2.475,,126.0,",us1000h774,",4.6,mb,,us,,"39km WNW of Kasiguncu, Indonesia",0.98,326,",us,",reviewed,1538677642260,"M 4.6 - 39km WNW of Kasiguncu, Indonesia",0,earthquake,",geoserve,origin,phase-data,",480.0,1539359338040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h774 +,,61434666,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61434666&format=geojson,0.1581,,138.0,",uw61434666,",2.2,ml,,uw,14.0,"16km NNW of Neah Bay, Washington",0.5,74,",uw,",reviewed,1538677621580,"M 2.2 - 16km NNW of Neah Bay, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538766350890,https://earthquake.usgs.gov/earthquakes/eventpage/uw61434666 +,,73093601,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093601&format=geojson,0.009396,,88.0,",nc73093601,",0.25,md,,nc,18.0,"6km NW of The Geysers, CA",0.04,1,",nc,",reviewed,1538677160130,"M 0.3 - 6km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538693582862,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093601 +,,1000hak9,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000hak9&format=geojson,7.972,,84.0,",us1000hak9,",4.3,mb,,us,,"136km ENE of Bristol Island, South Sandwich Islands",0.61,284,",us,",reviewed,1538677040770,"M 4.3 - 136km ENE of Bristol Island, South Sandwich Islands",0,earthquake,",geoserve,origin,phase-data,",-120.0,1539372121040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000hak9 +,2.2,38315504,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38315504&format=geojson,0.2389,1.0,218.0,",ci38315504,us1000h76s,",2.96,ml,,ci,28.0,"10km SSE of San Clemente Is. (SE tip), CA",0.21,135,",ci,us,",reviewed,1538676869530,"M 3.0 - 10km SSE of San Clemente Is. (SE tip), CA",0,earthquake,",dyfi,geoserve,nearby-cities,origin,phase-data,",-480.0,1539359167040,https://earthquake.usgs.gov/earthquakes/eventpage/ci38315504 +,,20271160,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271160&format=geojson,,,,",ak20271160,",1.2,ml,,ak,,"117km NW of Talkeetna, Alaska",0.61,22,",ak,",reviewed,1538676613795,"M 1.2 - 117km NW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539308368318,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271160 +,,20277902,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20277902&format=geojson,,,,",ak20277902,",1.4,ml,,ak,,"62km NW of Kodiak Station, Alaska",0.64,30,",ak,",reviewed,1538676387455,"M 1.4 - 62km NW of Kodiak Station, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539308367807,https://earthquake.usgs.gov/earthquakes/eventpage/ak20277902 +,,38315488,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38315488&format=geojson,0.05364,,108.0,",ci38315488,",0.93,ml,,ci,21.0,"19km ESE of Julian, CA",0.16,13,",ci,",reviewed,1538676324560,"M 0.9 - 19km ESE of Julian, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538677823116,https://earthquake.usgs.gov/earthquakes/eventpage/ci38315488 +,2.0,38315368,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38315368&format=geojson,0.2358,5.0,196.0,",ci38315368,us1000h76h,",3.27,ml,,ci,27.0,"10km SSE of San Clemente Is. (SE tip), CA",0.28,166,",ci,us,",reviewed,1538675906540,"M 3.3 - 10km SSE of San Clemente Is. (SE tip), CA",0,earthquake,",dyfi,geoserve,nearby-cities,origin,phase-data,",-480.0,1539359115040,https://earthquake.usgs.gov/earthquakes/eventpage/ci38315368 +,,38315360,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38315360&format=geojson,0.02311,,57.0,",ci38315360,",0.53,ml,,ci,19.0,"4km WNW of Anza, CA",0.07,4,",ci,",reviewed,1538675726210,"M 0.5 - 4km WNW of Anza, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538677123529,https://earthquake.usgs.gov/earthquakes/eventpage/ci38315360 +,,73093596,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093596&format=geojson,0.004798,,68.0,",nc73093596,",1.04,md,,nc,30.0,"10km WNW of The Geysers, CA",0.03,17,",nc,",reviewed,1538675193530,"M 1.0 - 10km WNW of The Geysers, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538692322726,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093596 +,,73093581,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093581&format=geojson,0.07745,,228.0,",nc73093581,",1.0,md,,nc,7.0,"12km N of Pinnacles, CA",0.04,15,",nc,",reviewed,1538675171000,"M 1.0 - 12km N of Pinnacles, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538697758480,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093581 +,,20270995,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270995&format=geojson,,,,",ak20270995,",1.6,ml,,ak,,"77km W of Big Lake, Alaska",0.37,39,",ak,",reviewed,1538674822851,"M 1.6 - 77km W of Big Lake, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539308367213,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270995 +,,70805989,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70805989&format=geojson,0.06501,,124.0,",av70805989,",0.38,ml,,av,6.0,"20km W of Dutch Harbor, Alaska",0.14,2,",av,",reviewed,1538674585850,"M 0.4 - 20km W of Dutch Harbor, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538764095650,https://earthquake.usgs.gov/earthquakes/eventpage/av70805989 +,,00659606,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659606&format=geojson,0.447,,83.47,",nn00659606,",1.5,ml,,nn,16.0,"72km W of Tonopah, Nevada",0.122,35,",nn,",reviewed,1538674412611,"M 1.5 - 72km W of Tonopah, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538676541837,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659606 +,,1000hajx,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000hajx&format=geojson,4.295,,99.0,",us1000hajx,",4.1,mb,,us,,"32km ESE of Kuh Sefid, Iran",1.22,259,",us,",reviewed,1538673967970,"M 4.1 - 32km ESE of Kuh Sefid, Iran",0,earthquake,",geoserve,origin,phase-data,",210.0,1539363880040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000hajx +,,1000hajw,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000hajw&format=geojson,1.539,,41.0,",us1000hajw,",4.0,mb,,us,,"51km WNW of Mikuni, Japan",0.95,246,",us,",reviewed,1538673414250,"M 4.0 - 51km WNW of Mikuni, Japan",0,earthquake,",geoserve,origin,phase-data,",540.0,1539363073040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000hajw +,,70805869,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70805869&format=geojson,0.0704,,146.0,",av70805869,",0.13,ml,,av,5.0,"22km W of Unalaska, Alaska",0.1,0,",av,",reviewed,1538673243400,"M 0.1 - 22km W of Unalaska, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538692996930,https://earthquake.usgs.gov/earthquakes/eventpage/av70805869 +,,80312404,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80312404&format=geojson,0.219,,143.0,",mb80312404,",0.52,md,,mb,5.0,"17km ESE of Dillon, Montana",0.14,4,",mb,",reviewed,1538672985650,"M 0.5 Quarry Blast - 17km ESE of Dillon, Montana",0,quarry blast,",geoserve,origin,phase-data,",-420.0,1538692558920,https://earthquake.usgs.gov/earthquakes/eventpage/mb80312404 +,,20270992,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270992&format=geojson,,,,",ak20270992,",1.4,ml,,ak,,"41km NNW of Valdez, Alaska",0.73,30,",ak,",reviewed,1538672823882,"M 1.4 Ice Quake - 41km NNW of Valdez, Alaska",0,ice quake,",geoserve,origin,phase-data,",-540.0,1539308366660,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270992 +,,61791621,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61791621&format=geojson,0.02205,,140.0,",av61791621,",0.27,ml,,av,6.0,"12km N of Atka, Alaska",0.3,1,",av,",reviewed,1538672760310,"M 0.3 - 12km N of Atka, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538691234040,https://earthquake.usgs.gov/earthquakes/eventpage/av61791621 +,,20270987,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270987&format=geojson,,,,",ak20270987,",1.8,ml,,ak,,"82km SSW of Kaktovik, Alaska",0.65,50,",ak,",reviewed,1538672309666,"M 1.8 - 82km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539308366077,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270987 +,,2018277011,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018277011&format=geojson,0.108,,234.0,",pr2018277011,",2.23,md,,pr,4.0,"6km WNW of Las Marias, Puerto Rico",0.18,77,",pr,",reviewed,1538671892470,"M 2.2 - 6km WNW of Las Marias, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538678177762,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018277011 +,,37379010,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37379010&format=geojson,0.003795,,58.0,",ci37379010,",0.58,ml,,ci,21.0,"10km NE of Aguanga, CA",0.13,5,",ci,",reviewed,1538671623440,"M 0.6 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538672193225,https://earthquake.usgs.gov/earthquakes/eventpage/ci37379010 +,,73093561,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093561&format=geojson,0.01461,,102.0,",nc73093561,",0.66,md,,nc,10.0,"3km NNW of The Geysers, CA",0.03,7,",nc,",automatic,1538671603610,"M 0.7 - 3km NNW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538675043760,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093561 +,,37379002,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37379002&format=geojson,0.006402,,83.0,",ci37379002,",0.16,ml,,ci,19.0,"10km NE of Aguanga, CA",0.1,0,",ci,",reviewed,1538671586120,"M 0.2 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538672613700,https://earthquake.usgs.gov/earthquakes/eventpage/ci37379002 +,,20270982,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270982&format=geojson,,,,",ak20270982,",2.2,ml,,ak,,"68km W of Anchor Point, Alaska",0.48,74,",ak,",reviewed,1538671437169,"M 2.2 - 68km W of Anchor Point, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539308365349,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270982 +,,20270981,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270981&format=geojson,,,,",ak20270981,",1.8,ml,,ak,,"82km SSW of Kaktovik, Alaska",0.54,50,",ak,",reviewed,1538671343272,"M 1.8 - 82km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539308364787,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270981 +,,37378986,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37378986&format=geojson,0.008279,,34.0,",ci37378986,",1.07,ml,,ci,38.0,"9km NE of Aguanga, CA",0.14,18,",ci,",reviewed,1538671227320,"M 1.1 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1538676748590,https://earthquake.usgs.gov/earthquakes/eventpage/ci37378986 +,,00659655,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659655&format=geojson,0.028,,145.61,",nn00659655,",-0.3,ml,,nn,12.0,"55km ENE of Beatty, Nevada",0.1481,0,",nn,",reviewed,1538670830171,"M -0.3 - 55km ENE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538697790429,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659655 +,,37378978,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37378978&format=geojson,0.08056,,69.0,",ci37378978,",0.76,ml,,ci,21.0,"15km WNW of Anza, CA",0.19,9,",ci,",reviewed,1538670492900,"M 0.8 - 15km WNW of Anza, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538672195662,https://earthquake.usgs.gov/earthquakes/eventpage/ci37378978 +,,20270979,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270979&format=geojson,,,,",ak20270979,",1.2,ml,,ak,,"160km E of Chitina, Alaska",0.44,22,",ak,",reviewed,1538670416538,"M 1.2 - 160km E of Chitina, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539308364094,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270979 +,,20270974,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270974&format=geojson,,,,",ak20270974,",2.4,ml,,ak,,"102km S of Old Iliamna, Alaska",0.49,89,",ak,",reviewed,1538669764947,"M 2.4 - 102km S of Old Iliamna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539308363336,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270974 +,,20270972,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270972&format=geojson,,,,",ak20270972,",1.5,ml,,ak,,"80km WSW of Cantwell, Alaska",0.39,35,",ak,",reviewed,1538669483809,"M 1.5 - 80km WSW of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539308362718,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270972 +,,20270969,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270969&format=geojson,,,,",ak20270969,",2.1,ml,,ak,,"92km W of Willow, Alaska",0.51,68,",ak,",reviewed,1538669222019,"M 2.1 - 92km W of Willow, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539308361959,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270969 +,,37378954,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37378954&format=geojson,0.008302,,39.0,",ci37378954,",0.49,ml,,ci,18.0,"10km NE of Aguanga, CA",0.15,4,",ci,",reviewed,1538669036420,"M 0.5 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538672212051,https://earthquake.usgs.gov/earthquakes/eventpage/ci37378954 +,,70805859,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70805859&format=geojson,0.05733,,209.0,",av70805859,",0.51,ml,,av,6.0,"51km ENE of Cold Bay, Alaska",0.14,4,",av,",reviewed,1538668940540,"M 0.5 - 51km ENE of Cold Bay, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538691938240,https://earthquake.usgs.gov/earthquakes/eventpage/av70805859 +,,37378946,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37378946&format=geojson,0.08817,,79.0,",ci37378946,",1.71,ml,,ci,24.0,"20km NW of Tehachapi, CA",0.21,45,",ci,",reviewed,1538668902120,"M 1.7 - 20km NW of Tehachapi, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1538672294530,https://earthquake.usgs.gov/earthquakes/eventpage/ci37378946 +,,61791601,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61791601&format=geojson,0.009143,,146.0,",av61791601,",-0.19,ml,,av,5.0,"40km ENE of Adak, Alaska",0.18,0,",av,",reviewed,1538668828330,"M -0.2 - 40km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538690877160,https://earthquake.usgs.gov/earthquakes/eventpage/av61791601 +,,37378938,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37378938&format=geojson,0.09527,,99.0,",ci37378938,",1.05,ml,,ci,32.0,"9km NE of Borrego Springs, CA",0.21,17,",ci,",reviewed,1538668785160,"M 1.1 - 9km NE of Borrego Springs, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538672214350,https://earthquake.usgs.gov/earthquakes/eventpage/ci37378938 +,,00659654,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659654&format=geojson,0.11,,132.15,",nn00659654,",1.1,ml,,nn,7.0,"22km NNW of Bridgeport, California",0.1402,19,",nn,",reviewed,1538668774324,"M 1.1 - 22km NNW of Bridgeport, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538697420886,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659654 +,,20270966,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270966&format=geojson,,,,",ak20270966,",1.5,ml,,ak,,"28km WNW of Willow, Alaska",0.46,35,",ak,",reviewed,1538668609746,"M 1.5 - 28km WNW of Willow, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539308361361,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270966 +,,70805854,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70805854&format=geojson,0.0179,,125.0,",av70805854,",-0.04,ml,,av,7.0,"17km W of Akutan, Alaska",0.06,0,",av,",reviewed,1538668158560,"M -0.0 - 17km W of Akutan, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538689926880,https://earthquake.usgs.gov/earthquakes/eventpage/av70805854 +,,70805849,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70805849&format=geojson,0.01911,,112.0,",av70805849,",0.16,ml,,av,8.0,"17km W of Akutan, Alaska",0.13,0,",av,",reviewed,1538668133790,"M 0.2 - 17km W of Akutan, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538689836460,https://earthquake.usgs.gov/earthquakes/eventpage/av70805849 +,,70805844,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70805844&format=geojson,0.02255,,106.0,",av70805844,",-0.19,ml,,av,6.0,"16km W of Akutan, Alaska",0.15,0,",av,",reviewed,1538668126570,"M -0.2 - 16km W of Akutan, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538689698520,https://earthquake.usgs.gov/earthquakes/eventpage/av70805844 +,,70631687,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70631687&format=geojson,0.005924,,89.0,",hv70631687,",2.41,ml,,hv,7.0,"4km WSW of Volcano, Hawaii",0.19,89,",hv,",automatic,1538668055110,"M 2.4 - 4km WSW of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538668396680,https://earthquake.usgs.gov/earthquakes/eventpage/hv70631687 +,,20270965,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270965&format=geojson,,,,",ak20270965,",0.6,ml,,ak,,"37km NNE of North Nenana, Alaska",0.43,6,",ak,",reviewed,1538667859122,"M 0.6 - 37km NNE of North Nenana, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539308360814,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270965 +,,20270963,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270963&format=geojson,,,,",ak20270963,",1.1,ml,,ak,,"36km ESE of Sutton-Alpine, Alaska",0.75,19,",ak,",reviewed,1538667636070,"M 1.1 - 36km ESE of Sutton-Alpine, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539308360245,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270963 +,,73093556,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093556&format=geojson,0.0261,,178.0,",nc73093556,",0.63,md,,nc,18.0,"5km N of Mammoth Lakes, CA",0.07,6,",nc,",reviewed,1538667596590,"M 0.6 - 5km N of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538677743482,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093556 +,,1000h6zu,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h6zu&format=geojson,5.204,,226.0,",us1000h6zu,",4.3,mb,,us,,"Off the coast of Michoacan, Mexico",0.74,284,",us,",reviewed,1538667473610,"M 4.3 - Off the coast of Michoacan, Mexico",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538750152040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h6zu +,,80312334,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80312334&format=geojson,0.111,,112.0,",mb80312334,",1.1,ml,,mb,9.0,"14km ESE of Lincoln, Montana",0.08,19,",mb,",reviewed,1538666602180,"M 1.1 - 14km ESE of Lincoln, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538674779400,https://earthquake.usgs.gov/earthquakes/eventpage/mb80312334 +,,73093551,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093551&format=geojson,0.04085,,126.0,",nc73093551,",0.95,md,,nc,11.0,"4km NNE of Pinnacles, CA",0.06,14,",nc,",reviewed,1538666144180,"M 1.0 - 4km NNE of Pinnacles, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538690403538,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093551 +,,80312394,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80312394&format=geojson,0.262,,114.0,",mb80312394,",0.6,ml,,mb,9.0,"28km SE of Virginia City, Montana",0.4,6,",mb,",reviewed,1538666063880,"M 0.6 Quarry Blast - 28km SE of Virginia City, Montana",0,quarry blast,",geoserve,origin,phase-data,",-420.0,1538692404540,https://earthquake.usgs.gov/earthquakes/eventpage/mb80312394 +,,20270961,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270961&format=geojson,,,,",ak20270961,",1.9,ml,,ak,,"64km S of Deltana, Alaska",0.68,56,",ak,",reviewed,1538665774337,"M 1.9 - 64km S of Deltana, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539308359608,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270961 +,,37378914,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37378914&format=geojson,0.01412,,50.0,",ci37378914,",0.59,ml,,ci,16.0,"9km NE of Aguanga, CA",0.14,5,",ci,",reviewed,1538665579380,"M 0.6 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538672248486,https://earthquake.usgs.gov/earthquakes/eventpage/ci37378914 +,,80312389,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80312389&format=geojson,0.087,,127.0,",mb80312389,",0.87,ml,,mb,7.0,"11km ESE of Lincoln, Montana",0.06,12,",mb,",reviewed,1538665253620,"M 0.9 - 11km ESE of Lincoln, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538691945000,https://earthquake.usgs.gov/earthquakes/eventpage/mb80312389 +,,70805834,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70805834&format=geojson,0.01823,,124.0,",av70805834,",-0.06,ml,,av,8.0,"17km W of Akutan, Alaska",0.07,0,",av,",reviewed,1538664776060,"M -0.1 - 17km W of Akutan, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538688773890,https://earthquake.usgs.gov/earthquakes/eventpage/av70805834 +,,70805824,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70805824&format=geojson,0.02372,,105.0,",av70805824,",-0.5,ml,,av,6.0,"16km W of Akutan, Alaska",0.18,0,",av,",reviewed,1538664727990,"M -0.5 - 16km W of Akutan, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538688353550,https://earthquake.usgs.gov/earthquakes/eventpage/av70805824 +,,70805819,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70805819&format=geojson,0.02471,,211.0,",av70805819,",-0.7,ml,,av,4.0,"16km W of Akutan, Alaska",0.02,0,",av,",reviewed,1538664722140,"M -0.7 - 16km W of Akutan, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538687937640,https://earthquake.usgs.gov/earthquakes/eventpage/av70805819 +,,70805814,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70805814&format=geojson,0.01764,,112.0,",av70805814,",-0.24,ml,,av,7.0,"17km W of Akutan, Alaska",0.12,0,",av,",reviewed,1538664717530,"M -0.2 - 17km W of Akutan, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538686832160,https://earthquake.usgs.gov/earthquakes/eventpage/av70805814 +,,20270959,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270959&format=geojson,,,,",ak20270959,",1.7,ml,,ak,,"153km ENE of McGrath, Alaska",0.68,44,",ak,",reviewed,1538664523705,"M 1.7 - 153km ENE of McGrath, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539308359025,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270959 +,,73093546,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093546&format=geojson,0.0337,,35.0,",nc73093546,",2.26,md,,nc,47.0,"4km N of Pinnacles, CA",0.07,79,",nc,",reviewed,1538663891350,"M 2.3 - 4km N of Pinnacles, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538699523449,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093546 +,,37378898,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37378898&format=geojson,0.008068,,65.0,",ci37378898,",1.08,ml,,ci,16.0,"15km NE of Little Lake, CA",0.09,18,",ci,",reviewed,1538663648340,"M 1.1 - 15km NE of Little Lake, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538673726226,https://earthquake.usgs.gov/earthquakes/eventpage/ci37378898 +,,37378874,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37378874&format=geojson,0.08947,,101.0,",ci37378874,",0.68,ml,,ci,16.0,"2km WNW of Cabazon, CA",0.09,7,",ci,",reviewed,1538663024980,"M 0.7 - 2km WNW of Cabazon, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538673268656,https://earthquake.usgs.gov/earthquakes/eventpage/ci37378874 +,,20270955,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270955&format=geojson,,,,",ak20270955,",2.3,ml,,ak,,"79km ESE of Old Iliamna, Alaska",0.66,81,",ak,",reviewed,1538662266867,"M 2.3 - 79km ESE of Old Iliamna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539308358287,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270955 +,,20270953,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270953&format=geojson,,,,",ak20270953,",2.2,ml,,ak,,"35km W of Whittier, Alaska",0.49,74,",ak,",reviewed,1538662030431,"M 2.2 - 35km W of Whittier, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539308357510,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270953 +,,61434591,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61434591&format=geojson,0.01918,,131.0,",uw61434591,",0.2,ml,,uw,12.0,"29km S of Morton, Washington",0.17,1,",uw,",reviewed,1538661930510,"M 0.2 - 29km S of Morton, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538673416540,https://earthquake.usgs.gov/earthquakes/eventpage/uw61434591 +,,20270949,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270949&format=geojson,,,,",ak20270949,us1000h6yg,",3.7,ml,2.34,ak,,"88km E of Chernabura Island, Alaska",0.7,211,",ak,us,",reviewed,1538661807121,"M 3.7 - 88km E of Chernabura Island, Alaska",0,earthquake,",geoserve,origin,phase-data,shakemap,",-660.0,1539309036113,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270949 +,,20270948,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270948&format=geojson,,,,",ak20270948,",1.6,ml,,ak,,"98km NW of Arctic Village, Alaska",0.63,39,",ak,",reviewed,1538661502490,"M 1.6 - 98km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539308355963,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270948 +,,1000h6yd,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h6yd&format=geojson,1.846,,161.0,",us1000h6yd,",4.5,mb,,us,,"80km NE of Tobelo, Indonesia",0.75,312,",us,",reviewed,1538661439880,"M 4.5 - 80km NE of Tobelo, Indonesia",0,earthquake,",geoserve,origin,phase-data,",540.0,1538668737040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h6yd +,,20270947,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270947&format=geojson,,,,",ak20270947,",1.6,ml,,ak,,"115km NNW of Arctic Village, Alaska",0.92,39,",ak,",reviewed,1538661031209,"M 1.6 - 115km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539308355226,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270947 +,,73093541,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093541&format=geojson,0.01375,,70.0,",nc73093541,",0.75,md,,nc,18.0,"4km ENE of Mammoth Lakes, CA",0.06,9,",nc,",reviewed,1538660573030,"M 0.8 - 4km ENE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538669102582,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093541 +,,20270945,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270945&format=geojson,,,,",ak20270945,",1.8,ml,,ak,,"120km NNW of Arctic Village, Alaska",0.63,50,",ak,",reviewed,1538660244230,"M 1.8 - 120km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539308354507,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270945 +,,20270943,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270943&format=geojson,,,,",ak20270943,",2.0,ml,,ak,,"77km SSW of Kaktovik, Alaska",0.53,62,",ak,",reviewed,1538660136060,"M 2.0 - 77km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539308353836,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270943 +,,00659652,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659652&format=geojson,0.026,,112.53,",nn00659652,",0.3,ml,,nn,7.0,"29km ENE of Beatty, Nevada",0.1534,1,",nn,",reviewed,1538660049836,"M 0.3 - 29km ENE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538697050693,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659652 +,,1000h6xu,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h6xu&format=geojson,1.432,,113.0,",us1000h6xu,",4.5,mb,,us,,"36km SSE of Pyinmana, Burma",0.73,312,",us,",reviewed,1538659758660,"M 4.5 - 36km SSE of Pyinmana, Burma",0,earthquake,",geoserve,origin,phase-data,",390.0,1538661167040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h6xu +,,73093536,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093536&format=geojson,0.03853,,111.0,",nc73093536,",0.48,md,,nc,5.0,"1km NNW of Dixon Lane-Meadow Creek, CA",0.04,4,",nc,",reviewed,1538659287270,"M 0.5 - 1km NNW of Dixon Lane-Meadow Creek, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538674246660,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093536 +,,37378850,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37378850&format=geojson,0.007416,,46.0,",ci37378850,",0.91,ml,,ci,29.0,"10km NE of Aguanga, CA",0.21,13,",ci,",reviewed,1538659276790,"M 0.9 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538660077247,https://earthquake.usgs.gov/earthquakes/eventpage/ci37378850 +,,20270868,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270868&format=geojson,,,,",ak20270868,",1.4,ml,,ak,,"41km NW of Willow, Alaska",0.4,30,",ak,",reviewed,1538659147812,"M 1.4 - 41km NW of Willow, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539308353143,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270868 +,,20277879,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20277879&format=geojson,,,,",ak20277879,",1.1,ml,,ak,,"58km WNW of Valdez, Alaska",0.21,19,",ak,",reviewed,1538658819953,"M 1.1 - 58km WNW of Valdez, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539308352583,https://earthquake.usgs.gov/earthquakes/eventpage/ak20277879 +green,,20270862,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270862&format=geojson,,,,",ak20270862,at00pg2spo,us1000h6xg,",4.0,ml,3.94,ak,,"67km SSW of Kaktovik, Alaska",0.7,246,",ak,at,us,",reviewed,1538658776412,"M 4.0 - 67km SSW of Kaktovik, Alaska",1,earthquake,",geoserve,impact-link,losspager,moment-tensor,origin,phase-data,shakemap,",-540.0,1539308895875,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270862 +,,00659590,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659590&format=geojson,0.065,,72.08,",nn00659590,us1000h6xb,",2.9,ml,2.84,nn,41.0,"14km ESE of Alamo, Nevada",0.1232,129,",nn,us,",reviewed,1538658274122,"M 2.9 - 14km ESE of Alamo, Nevada",0,earthquake,",geoserve,origin,phase-data,shakemap,",-480.0,1538672806495,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659590 +,,20277877,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20277877&format=geojson,,,,",ak20277877,",1.3,ml,,ak,,"98km NW of Arctic Village, Alaska",0.62,26,",ak,",reviewed,1538657969562,"M 1.3 - 98km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539308350914,https://earthquake.usgs.gov/earthquakes/eventpage/ak20277877 +,,37378834,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37378834&format=geojson,0.01203,,65.0,",ci37378834,",0.81,ml,,ci,16.0,"15km NE of Little Lake, CA",0.09,10,",ci,",reviewed,1538657835300,"M 0.8 - 15km NE of Little Lake, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538673861173,https://earthquake.usgs.gov/earthquakes/eventpage/ci37378834 +,,20270856,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270856&format=geojson,,,,",ak20270856,",3.7,ml,3.59,ak,,"81km SSW of Shishmaref, Alaska",0.75,211,",ak,",reviewed,1538657087626,"M 3.7 - 81km SSW of Shishmaref, Alaska",0,earthquake,",geoserve,origin,phase-data,shakemap,",-540.0,1539308672118,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270856 +,,73093521,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093521&format=geojson,0.0472,,194.0,",nc73093521,",0.81,md,,nc,12.0,"6km E of Pinnacles, CA",0.1,10,",nc,",reviewed,1538656884170,"M 0.8 - 6km E of Pinnacles, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538694183916,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093521 +,,20270855,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270855&format=geojson,,,,",ak20270855,",1.0,ml,,ak,,"58km WNW of Skagway, Alaska",0.6,15,",ak,",reviewed,1538656444412,"M 1.0 - 58km WNW of Skagway, Alaska",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539308349623,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270855 +,,61791556,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61791556&format=geojson,0.01705,,112.0,",av61791556,",-0.06,ml,,av,4.0,"41km ENE of Adak, Alaska",0.07,0,",av,",reviewed,1538656130670,"M -0.1 - 41km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538685472480,https://earthquake.usgs.gov/earthquakes/eventpage/av61791556 +,,20270851,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270851&format=geojson,,,,",ak20270851,",2.9,ml,,ak,,"44km ESE of Nikolski, Alaska",0.44,129,",ak,",reviewed,1538655783933,"M 2.9 - 44km ESE of Nikolski, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539308349059,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270851 +,,73093516,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093516&format=geojson,0.0146,,174.0,",nc73093516,",-0.07,md,,nc,8.0,"6km ENE of Mammoth Lakes, CA",0.05,0,",nc,",reviewed,1538655488920,"M -0.1 - 6km ENE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538674066529,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093516 +,,73093511,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093511&format=geojson,0.01009,,85.0,",nc73093511,",0.56,md,,nc,8.0,"7km NW of The Geysers, CA",0.01,5,",nc,",automatic,1538655474150,"M 0.6 - 7km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538656922421,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093511 +,,37378802,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37378802&format=geojson,0.007944,,127.0,",ci37378802,",-0.04,ml,,ci,10.0,"15km NE of Little Lake, CA",0.05,0,",ci,",reviewed,1538655376220,"M -0.0 - 15km NE of Little Lake, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538673023836,https://earthquake.usgs.gov/earthquakes/eventpage/ci37378802 +,,20270848,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270848&format=geojson,,,,",ak20270848,",1.4,ml,,ak,,"55km E of Cape Yakataga, Alaska",0.64,30,",ak,",reviewed,1538655261561,"M 1.4 Ice Quake - 55km E of Cape Yakataga, Alaska",0,ice quake,",geoserve,origin,phase-data,",-540.0,1539308348488,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270848 +,,73093506,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093506&format=geojson,0.01338,,73.0,",nc73093506,",0.8,md,,nc,21.0,"4km ENE of Mammoth Lakes, CA",0.06,10,",nc,",reviewed,1538655248490,"M 0.8 - 4km ENE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538673795849,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093506 +,,60299587,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60299587&format=geojson,0.0198,,98.0,",uu60299587,",1.22,ml,,uu,17.0,"13km NE of West Yellowstone, Montana",0.14,23,",uu,",reviewed,1538655152370,"M 1.2 - 13km NE of West Yellowstone, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538663338650,https://earthquake.usgs.gov/earthquakes/eventpage/uu60299587 +,,00659582,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659582&format=geojson,0.091,,154.99,",nn00659582,",1.1,ml,,nn,43.0,"31km NNE of Beatty, Nevada",0.1726,19,",nn,",reviewed,1538654950302,"M 1.1 - 31km NNE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538690576489,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659582 +,,70631407,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70631407&format=geojson,0.1942,,197.0,",hv70631407,",1.91,md,,hv,34.0,"21km WNW of Pepeekeo, Hawaii",0.12,56,",hv,",reviewed,1538654738200,"M 1.9 - 21km WNW of Pepeekeo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538691160580,https://earthquake.usgs.gov/earthquakes/eventpage/hv70631407 +,,73093501,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093501&format=geojson,0.08393,,62.0,",nc73093501,",2.26,md,,nc,71.0,"16km SSE of Livermore, CA",0.09,79,",nc,",reviewed,1538654622970,"M 2.3 - 16km SSE of Livermore, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538696943195,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093501 +,,00659579,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659579&format=geojson,0.37,,115.17,",nn00659579,",0.9,ml,,nn,10.0,"70km SE of Hawthorne, Nevada",0.1613,12,",nn,",reviewed,1538654371238,"M 0.9 - 70km SE of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538688912576,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659579 +,2.2,37378794,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37378794&format=geojson,0.008928,3.0,41.0,",ci37378794,",2.53,ml,,ci,41.0,"7km WSW of Holtville, CA",0.33,99,",ci,",reviewed,1538653454630,"M 2.5 - 7km WSW of Holtville, CA",0,earthquake,",dyfi,focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1538713248381,https://earthquake.usgs.gov/earthquakes/eventpage/ci37378794 +,,37378786,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37378786&format=geojson,0.007095,,40.0,",ci37378786,",2.23,ml,,ci,28.0,"7km W of Holtville, CA",0.26,77,",ci,",reviewed,1538653408010,"M 2.2 - 7km W of Holtville, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1538674408020,https://earthquake.usgs.gov/earthquakes/eventpage/ci37378786 +,,20270847,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270847&format=geojson,,,,",ak20270847,",2.8,ml,,ak,,"88km E of Chernabura Island, Alaska",0.65,121,",ak,",reviewed,1538653324216,"M 2.8 - 88km E of Chernabura Island, Alaska",0,earthquake,",geoserve,origin,phase-data,",-660.0,1539308347885,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270847 +,,37378770,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37378770&format=geojson,0.03854,,113.0,",ci37378770,",0.79,ml,,ci,17.0,"7km NE of Coso Junction, CA",0.09,10,",ci,",reviewed,1538653088140,"M 0.8 - 7km NE of Coso Junction, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538682226991,https://earthquake.usgs.gov/earthquakes/eventpage/ci37378770 +,,73093491,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093491&format=geojson,0.0356,,175.0,",nc73093491,",0.12,md,,nc,12.0,"3km ENE of Mammoth Lakes, CA",0.07,0,",nc,",reviewed,1538652938780,"M 0.1 - 3km ENE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538673314662,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093491 +,,61434536,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61434536&format=geojson,0.005484,,105.0,",uw61434536,",0.74,ml,,uw,7.0,"22km E of Mount Hood Village, Oregon",0.05,8,",uw,",reviewed,1538652721890,"M 0.7 - 22km E of Mount Hood Village, Oregon",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538675649710,https://earthquake.usgs.gov/earthquakes/eventpage/uw61434536 +,,73093486,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093486&format=geojson,0.007722,,191.0,",nc73093486,",0.08,md,,nc,7.0,"13km E of Mammoth Lakes, CA",0.02,0,",nc,",reviewed,1538651573040,"M 0.1 - 13km E of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538673013772,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093486 +,,73093481,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093481&format=geojson,0.09479,,139.0,",nc73093481,",1.02,md,,nc,12.0,"6km W of Round Valley, CA",0.13,16,",nc,",reviewed,1538651431730,"M 1.0 - 6km W of Round Valley, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538672381815,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093481 +,,73093476,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093476&format=geojson,0.005489,,105.0,",nc73093476,",0.96,md,,nc,13.0,"9km WNW of Cobb, CA",0.03,14,",nc,",automatic,1538651178590,"M 1.0 - 9km WNW of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538651274072,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093476 +,,37378762,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37378762&format=geojson,0.02895,,71.0,",ci37378762,",0.54,ml,,ci,25.0,"9km ENE of Aguanga, CA",0.13,4,",ci,",reviewed,1538650853640,"M 0.5 - 9km ENE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538674014009,https://earthquake.usgs.gov/earthquakes/eventpage/ci37378762 +,,73093466,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093466&format=geojson,0.01759,,87.0,",nc73093466,",0.08,md,,nc,10.0,"7km W of Mammoth Lakes, CA",0.03,0,",nc,",reviewed,1538650833110,"M 0.1 - 7km W of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538669942677,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093466 +,,73093461,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093461&format=geojson,0.006615,,72.0,",nc73093461,",0.8,md,,nc,34.0,"10km WNW of Cobb, CA",0.03,10,",nc,",reviewed,1538650831470,"M 0.8 - 10km WNW of Cobb, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538672463974,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093461 +,,70631332,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70631332&format=geojson,0.03369,,43.0,",hv70631332,",1.9,ml,,hv,51.0,"22km ENE of Honaunau-Napoopoo, Hawaii",0.18,56,",hv,",reviewed,1538650694720,"M 1.9 - 22km ENE of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538683969170,https://earthquake.usgs.gov/earthquakes/eventpage/hv70631332 +,,73093451,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093451&format=geojson,0.01054,,70.0,",nc73093451,",0.33,md,,nc,14.0,"6km W of Cobb, CA",0.02,2,",nc,",reviewed,1538650415960,"M 0.3 - 6km W of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538698682365,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093451 +,,73093446,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093446&format=geojson,0.01294,,90.0,",nc73093446,",0.78,md,,nc,22.0,"11km E of Mammoth Lakes, CA",0.05,9,",nc,",reviewed,1538650332890,"M 0.8 - 11km E of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538686203129,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093446 +,3.1,00659576,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659576&format=geojson,1.179,1.0,206.77,",nn00659576,",2.1,ml,,nn,7.0,"46km SSW of Goldfield, Nevada",0.21,68,",nn,",automatic,1538650310020,"M 2.1 - 46km SSW of Goldfield, Nevada",0,earthquake,",dyfi,geoserve,origin,phase-data,",-480.0,1538653091238,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659576 +,,2018277010,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018277010&format=geojson,0.0213,,231.0,",pr2018277010,",2.33,md,,pr,7.0,"4km E of Boqueron, Puerto Rico",0.26,84,",pr,",reviewed,1538650193590,"M 2.3 - 4km E of Boqueron, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538653328275,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018277010 +,,20270844,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270844&format=geojson,,,,",ak20270844,",2.1,ml,,ak,,"71km S of Manley Hot Springs, Alaska",0.87,68,",ak,",reviewed,1538649738816,"M 2.1 - 71km S of Manley Hot Springs, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539308347260,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270844 +,,73093441,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093441&format=geojson,0.008121,,152.0,",nc73093441,",0.59,md,,nc,9.0,"12km WNW of The Geysers, CA",0.2,5,",nc,",automatic,1538649536090,"M 0.6 - 12km WNW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538652843009,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093441 +,,37378754,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37378754&format=geojson,0.02888,,158.0,",ci37378754,",1.88,ml,,ci,14.0,"8km WSW of Holtville, CA",0.28,54,",ci,",reviewed,1538649360730,"M 1.9 - 8km WSW of Holtville, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538672810786,https://earthquake.usgs.gov/earthquakes/eventpage/ci37378754 +,,37378746,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37378746&format=geojson,0.01806,,57.0,",ci37378746,",2.04,ml,,ci,18.0,"8km W of Holtville, CA",0.25,64,",ci,",automatic,1538648817120,"M 2.0 - 8km W of Holtville, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538679448640,https://earthquake.usgs.gov/earthquakes/eventpage/ci37378746 +,,73093436,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093436&format=geojson,0.219,,163.0,",nc73093436,",1.21,md,,nc,8.0,"5km WNW of Almanor, CA",0.17,23,",nc,",reviewed,1538648660810,"M 1.2 - 5km WNW of Almanor, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538683502655,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093436 +,,73093431,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093431&format=geojson,0.01307,,71.0,",nc73093431,",0.82,md,,nc,21.0,"4km ENE of Mammoth Lakes, CA",0.08,10,",nc,",reviewed,1538648515550,"M 0.8 - 4km ENE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538681043128,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093431 +,,73093426,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093426&format=geojson,0.06128,,193.0,",nc73093426,",0.6,md,,nc,19.0,"13km SE of Mammoth Lakes, CA",0.04,6,",nc,",reviewed,1538648331820,"M 0.6 - 13km SE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538673723088,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093426 +,,73093421,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093421&format=geojson,0.007303,,99.0,",nc73093421,",0.67,md,,nc,12.0,"9km WNW of Cobb, CA",0.03,7,",nc,",automatic,1538648124920,"M 0.7 - 9km WNW of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538650863714,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093421 +,,73093406,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093406&format=geojson,0.007297,,61.0,",nc73093406,",1.86,md,,nc,42.0,"9km WNW of Cobb, CA",0.04,53,",nc,",reviewed,1538648079710,"M 1.9 - 9km WNW of Cobb, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538696042104,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093406 +,3.4,37378738,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37378738&format=geojson,0.008436,2.0,55.0,",ci37378738,",2.55,ml,,ci,30.0,"7km W of Holtville, CA",0.27,101,",ci,",automatic,1538648044710,"M 2.6 - 7km W of Holtville, CA",0,earthquake,",dyfi,geoserve,nearby-cities,origin,phase-data,",-480.0,1538679547380,https://earthquake.usgs.gov/earthquakes/eventpage/ci37378738 +,,73093411,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093411&format=geojson,0.06007,,194.0,",nc73093411,",0.66,md,,nc,20.0,"13km SE of Mammoth Lakes, CA",0.03,7,",nc,",reviewed,1538647919550,"M 0.7 - 13km SE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538679542976,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093411 +,,73093401,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093401&format=geojson,0.05792,,100.0,",nc73093401,",1.56,md,,nc,41.0,"3km WSW of San Francisco Zoo, CA",0.04,37,",nc,",reviewed,1538647625430,"M 1.6 - 3km WSW of San Francisco Zoo, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538683622669,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093401 +,,20270841,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270841&format=geojson,,,,",ak20270841,",2.7,ml,,ak,,"114km SSW of False Pass, Alaska",0.56,112,",ak,",reviewed,1538647451144,"M 2.7 - 114km SSW of False Pass, Alaska",0,earthquake,",geoserve,origin,phase-data,",-660.0,1539308346557,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270841 +,,00659569,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659569&format=geojson,0.182,,263.47,",nn00659569,",0.2,ml,,nn,19.0,"49km NNE of Pahrump, Nevada",0.1041,1,",nn,",reviewed,1538647327464,"M 0.2 - 49km NNE of Pahrump, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538687986260,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659569 +,,73093396,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093396&format=geojson,0.009257,,124.0,",nc73093396,",0.55,md,,nc,6.0,"5km NW of The Geysers, CA",0.02,5,",nc,",automatic,1538647219830,"M 0.6 - 5km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538656682395,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093396 +,,73093391,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093391&format=geojson,0.02285,,103.0,",nc73093391,",0.56,md,,nc,8.0,"10km WNW of The Geysers, CA",0.01,5,",nc,",automatic,1538646828890,"M 0.6 - 10km WNW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538655002223,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093391 +,,61434516,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61434516&format=geojson,0.06499,,136.0,",uw61434516,",0.32,ml,,uw,9.0,"13km SSE of Desert Aire, Washington",0.06,2,",uw,",reviewed,1538646180800,"M 0.3 - 13km SSE of Desert Aire, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538675635020,https://earthquake.usgs.gov/earthquakes/eventpage/uw61434516 +,,00659568,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659568&format=geojson,0.091,,108.11,",nn00659568,",-0.2,ml,,nn,13.0,"31km NNE of Beatty, Nevada",0.1045,0,",nn,",reviewed,1538645149845,"M -0.2 - 31km NNE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538686502549,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659568 +,,1000h6vz,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h6vz&format=geojson,2.299,,105.0,",us1000h6vz,",4.6,mb,,us,,"118km ENE of Amahai, Indonesia",1.12,326,",us,",reviewed,1538644821090,"M 4.6 - 118km ENE of Amahai, Indonesia",0,earthquake,",geoserve,origin,phase-data,",540.0,1538648309040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h6vz +,,20270838,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270838&format=geojson,,,,",ak20270838,",2.2,ml,,ak,,"89km SSW of Homer, Alaska",0.62,74,",ak,",reviewed,1538643976086,"M 2.2 - 89km SSW of Homer, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539308345852,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270838 +,,20270837,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270837&format=geojson,,,,",ak20270837,",0.8,ml,,ak,,"50km WNW of Cantwell, Alaska",0.66,10,",ak,",reviewed,1538643873648,"M 0.8 - 50km WNW of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539308345313,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270837 +,,73093386,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093386&format=geojson,0.003779,,62.0,",nc73093386,",0.84,md,,nc,15.0,"9km NW of The Geysers, CA",0.04,11,",nc,",automatic,1538643621660,"M 0.8 - 9km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538645163169,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093386 +,,73093381,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093381&format=geojson,0.006205,,92.0,",nc73093381,",0.99,md,,nc,11.0,"9km NW of The Geysers, CA",0.04,15,",nc,",automatic,1538643594940,"M 1.0 - 9km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538653262065,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093381 +,,60299487,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60299487&format=geojson,0.01661,,47.0,",uu60299487,",2.69,ml,,uu,30.0,"13km NE of West Yellowstone, Montana",0.18,111,",uu,",reviewed,1538642830890,"M 2.7 - 13km NE of West Yellowstone, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538663029270,https://earthquake.usgs.gov/earthquakes/eventpage/uu60299487 +,,20270836,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270836&format=geojson,,,,",ak20270836,",1.0,ml,,ak,,"75km SW of Delta Junction, Alaska",0.54,15,",ak,",reviewed,1538642661609,"M 1.0 - 75km SW of Delta Junction, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539308344779,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270836 +,,00659651,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659651&format=geojson,0.088,,188.06,",nn00659651,",-0.3,ml,,nn,10.0,"31km NNE of Beatty, Nevada",0.0913,0,",nn,",reviewed,1538642635324,"M -0.3 - 31km NNE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538696680840,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659651 +,,73093376,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093376&format=geojson,0.1131,,130.0,",nc73093376,",0.8,md,,nc,20.0,"17km WSW of Toms Place, CA",0.08,10,",nc,",reviewed,1538642587320,"M 0.8 - 17km WSW of Toms Place, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538669826089,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093376 +,,20270834,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270834&format=geojson,,,,",ak20270834,",1.0,ml,,ak,,"42km WSW of Willow, Alaska",0.57,15,",ak,",reviewed,1538642417244,"M 1.0 - 42km WSW of Willow, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539308344209,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270834 +,,2018277009,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018277009&format=geojson,1.0551,,173.0,",pr2018277009,",3.03,md,,pr,12.0,"58km SE of Road Town, British Virgin Islands",0.46,141,",pr,",reviewed,1538641990120,"M 3.0 - 58km SE of Road Town, British Virgin Islands",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538653301979,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018277009 +,,00659564,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659564&format=geojson,0.086,,169.51,",nn00659564,",0.1,ml,,nn,14.0,"29km NNE of Beatty, Nevada",0.158,0,",nn,",reviewed,1538641846162,"M 0.1 - 29km NNE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538685574556,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659564 +,,20270827,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270827&format=geojson,,,,",ak20270827,",1.8,ml,,ak,,"4km NNE of Glennallen, Alaska",0.64,50,",ak,",reviewed,1538641835030,"M 1.8 - 4km NNE of Glennallen, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539308343443,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270827 +,,37378730,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37378730&format=geojson,0.00846,,61.0,",ci37378730,",1.57,ml,,ci,15.0,"7km W of Holtville, CA",0.23,38,",ci,",automatic,1538641816780,"M 1.6 - 7km W of Holtville, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538679189673,https://earthquake.usgs.gov/earthquakes/eventpage/ci37378730 +,,20270825,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270825&format=geojson,,,,",ak20270825,",2.0,ml,,ak,,"109km W of Cantwell, Alaska",0.79,62,",ak,",reviewed,1538641799587,"M 2.0 - 109km W of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539308342849,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270825 +,,37378722,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37378722&format=geojson,0.0139,,68.0,",ci37378722,",0.85,ml,,ci,13.0,"16km E of Coso Junction, CA",0.1,11,",ci,",automatic,1538641468350,"M 0.9 - 16km E of Coso Junction, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538679050621,https://earthquake.usgs.gov/earthquakes/eventpage/ci37378722 +,,20270824,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270824&format=geojson,,,,",ak20270824,",2.5,ml,,ak,,"28km SW of Tanaga Volcano, Alaska",0.69,96,",ak,",reviewed,1538641371838,"M 2.5 - 28km SW of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539308342295,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270824 +,,20277862,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20277862&format=geojson,,,,",ak20277862,",2.0,ml,,ak,,"92km SSE of Old Iliamna, Alaska",0.44,62,",ak,",reviewed,1538641357911,"M 2.0 - 92km SSE of Old Iliamna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539308341686,https://earthquake.usgs.gov/earthquakes/eventpage/ak20277862 +,,1000h6vj,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h6vj&format=geojson,2.125,,131.0,",us1000h6vj,",4.4,mb,,us,,"51km SSE of Kushima, Japan",0.61,298,",us,",reviewed,1538641253520,"M 4.4 - 51km SSE of Kushima, Japan",0,earthquake,",geoserve,origin,phase-data,",540.0,1538642265040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h6vj +,,20277861,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20277861&format=geojson,,,,",ak20277861,",1.1,ml,,ak,,"29km NW of Willow, Alaska",0.55,19,",ak,",reviewed,1538641208479,"M 1.1 - 29km NW of Willow, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539308341125,https://earthquake.usgs.gov/earthquakes/eventpage/ak20277861 +,,73093371,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093371&format=geojson,0.002339,,47.0,",nc73093371,",1.41,md,,nc,40.0,"7km NW of The Geysers, CA",0.04,31,",nc,",reviewed,1538641021430,"M 1.4 - 7km NW of The Geysers, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538691123604,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093371 +,,00659562,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659562&format=geojson,0.093,,190.42,",nn00659562,",-0.1,ml,,nn,11.0,"32km NNE of Beatty, Nevada",0.1245,0,",nn,",reviewed,1538640919715,"M -0.1 - 32km NNE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538681523901,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659562 +,,73093366,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093366&format=geojson,0.005576,,128.0,",nc73093366,",0.56,md,,nc,8.0,"6km WNW of Cobb, CA",0.01,5,",nc,",automatic,1538640474430,"M 0.6 - 6km WNW of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538649843615,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093366 +,,20277860,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20277860&format=geojson,,,,",ak20277860,",1.3,ml,,ak,,"47km N of Nikiski, Alaska",0.26,26,",ak,",reviewed,1538640443559,"M 1.3 - 47km N of Nikiski, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539308340474,https://earthquake.usgs.gov/earthquakes/eventpage/ak20277860 +,,20270822,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270822&format=geojson,,,,",ak20270822,",1.6,ml,,ak,,"123km NNW of Arctic Village, Alaska",0.55,39,",ak,",reviewed,1538640400544,"M 1.6 - 123km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539308339877,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270822 +,,2018277006,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018277006&format=geojson,0.9155,,162.0,",pt18277050,pr2018277006,us1000h6v9,",4.11,md,,pr,25.0,"78km WNW of The Bottom, Bonaire, Saint Eustatius and Saba ",0.66,260,",pt,pr,us,",reviewed,1538639873680,"M 4.1 - 78km WNW of The Bottom, Bonaire, Saint Eustatius and Saba ",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538641803252,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018277006 +,,00659649,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659649&format=geojson,0.094,,191.96,",nn00659649,",-0.3,ml,,nn,8.0,"32km NNE of Beatty, Nevada",0.0737,0,",nn,",reviewed,1538639369080,"M -0.3 - 32km NNE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538695937958,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659649 +,,1000h6v4,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h6v4&format=geojson,0.729,,176.0,",ak20270816,us1000h6v4,",4.2,mb,,us,,"80km SE of Atka, Alaska",0.9,271,",ak,us,",reviewed,1538639226200,"M 4.2 - 80km SE of Atka, Alaska",0,earthquake,",geoserve,origin,phase-data,",-720.0,1539308339296,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h6v4 +,,20270817,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270817&format=geojson,,,,",ak20270817,",1.3,ml,,ak,,"67km SSW of Kobuk, Alaska",0.53,26,",ak,",reviewed,1538639207123,"M 1.3 - 67km SSW of Kobuk, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539308338727,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270817 +,,73093356,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093356&format=geojson,0.07641,,144.0,",nc73093356,",1.89,md,,nc,34.0,"6km SW of St. Helena, CA",0.05,55,",nc,",reviewed,1538638825490,"M 1.9 - 6km SW of St. Helena, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538689442449,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093356 +,,73093351,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093351&format=geojson,0.01483,,49.0,",nc73093351,",1.8,md,,nc,37.0,"3km ESE of The Geysers, CA",0.06,50,",nc,",reviewed,1538638795270,"M 1.8 - 3km ESE of The Geysers, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538687763279,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093351 +,,37378714,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37378714&format=geojson,0.01261,,111.0,",ci37378714,",1.59,ml,,ci,13.0,"8km W of Holtville, CA",0.22,39,",ci,",automatic,1538638385590,"M 1.6 - 8km W of Holtville, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538679067410,https://earthquake.usgs.gov/earthquakes/eventpage/ci37378714 +,,20270810,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270810&format=geojson,,,,",ak20270810,us1000h6uw,",2.6,ml,,ak,,"40km W of Anchorage, Alaska",0.56,104,",ak,us,",reviewed,1538638201176,"M 2.6 - 40km W of Anchorage, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539308337866,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270810 +,,73093346,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093346&format=geojson,0.008461,,109.0,",nc73093346,",0.57,md,,nc,9.0,"9km WNW of Cobb, CA",0.02,5,",nc,",automatic,1538638185530,"M 0.6 - 9km WNW of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538644803126,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093346 +,,37378706,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37378706&format=geojson,0.01052,,50.0,",ci37378706,",1.69,ml,,ci,20.0,"7km W of Holtville, CA",0.26,44,",ci,",reviewed,1538638036540,"M 1.7 - 7km W of Holtville, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1538678997700,https://earthquake.usgs.gov/earthquakes/eventpage/ci37378706 +,,37378698,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37378698&format=geojson,0.009014,,30.0,",ci37378698,",1.04,ml,,ci,50.0,"9km NE of Aguanga, CA",0.18,17,",ci,",reviewed,1538637653280,"M 1.0 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1538676149500,https://earthquake.usgs.gov/earthquakes/eventpage/ci37378698 +,,37378682,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37378682&format=geojson,0.01295,,34.0,",ci37378682,",2.41,ml,,ci,38.0,"7km W of Holtville, CA",0.28,89,",ci,",reviewed,1538637550970,"M 2.4 - 7km W of Holtville, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1538673135000,https://earthquake.usgs.gov/earthquakes/eventpage/ci37378682 +,,37378690,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37378690&format=geojson,0.01645,,61.0,",ci37378690,",1.3,ml,,ci,15.0,"8km W of Holtville, CA",0.21,26,",ci,",reviewed,1538637522400,"M 1.3 - 8km W of Holtville, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538672142699,https://earthquake.usgs.gov/earthquakes/eventpage/ci37378690 +,,20270807,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270807&format=geojson,,,,",ak20270807,",1.6,ml,,ak,,"110km NNW of Arctic Village, Alaska",0.94,39,",ak,",reviewed,1538637290950,"M 1.6 - 110km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539308337292,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270807 +,,2018277008,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018277008&format=geojson,0.535,,202.0,",pr2018277008,",3.11,md,,pr,8.0,"54km NE of Punta Cana, Dominican Republic",0.42,149,",pr,",reviewed,1538637268460,"M 3.1 - 54km NE of Punta Cana, Dominican Republic",0,earthquake,",geoserve,origin,phase-data,",-300.0,1538653274779,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018277008 +,,73093341,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093341&format=geojson,0.0305,,139.0,",nc73093341,",0.44,md,,nc,16.0,"11km ENE of Mammoth Lakes, CA",0.11,3,",nc,",reviewed,1538636903280,"M 0.4 - 11km ENE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538677923501,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093341 +,,1000h6uq,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h6uq&format=geojson,0.577,,73.0,",us1000h6uq,",4.4,mb,,us,,"26km N of Ishkashim, Tajikistan",0.5,298,",us,",reviewed,1538636897070,"M 4.4 - 26km N of Ishkashim, Tajikistan",0,earthquake,",geoserve,origin,phase-data,",300.0,1538637927040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h6uq +,,20277854,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20277854&format=geojson,,,,",ak20277854,",1.2,ml,,ak,,"19km W of Kalifornsky, Alaska",0.26,22,",ak,",reviewed,1538636586308,"M 1.2 - 19km W of Kalifornsky, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539308336705,https://earthquake.usgs.gov/earthquakes/eventpage/ak20277854 +,,73093336,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093336&format=geojson,0.05328,,148.0,",nc73093336,",0.73,md,,nc,9.0,"11km SE of Pinnacles, CA",0.02,8,",nc,",reviewed,1538636407600,"M 0.7 - 11km SE of Pinnacles, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538684942996,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093336 +,2.5,37378674,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37378674&format=geojson,0.01016,1.0,36.0,",ci37378674,",2.52,ml,,ci,38.0,"7km W of Holtville, CA",0.26,98,",ci,",reviewed,1538636336310,"M 2.5 - 7km W of Holtville, CA",0,earthquake,",dyfi,focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1538676405896,https://earthquake.usgs.gov/earthquakes/eventpage/ci37378674 +,,2018277007,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018277007&format=geojson,0.0681,,328.0,",pr2018277007,",1.86,md,,pr,3.0,"8km S of La Parguera, Puerto Rico",0.07,53,",pr,",reviewed,1538636201670,"M 1.9 - 8km S of La Parguera, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538645664231,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018277007 +,,80312384,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80312384&format=geojson,0.127,,112.0,",mb80312384,",0.85,ml,,mb,7.0,"25km SSE of Lincoln, Montana",0.09,11,",mb,",reviewed,1538635624500,"M 0.9 - 25km SSE of Lincoln, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538691089740,https://earthquake.usgs.gov/earthquakes/eventpage/mb80312384 +,,37378666,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37378666&format=geojson,0.1191,,43.0,",ci37378666,",1.82,ml,,ci,44.0,"21km SSW of Frazier Park, CA",0.23,51,",ci,",reviewed,1538635323900,"M 1.8 - 21km SSW of Frazier Park, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538671549020,https://earthquake.usgs.gov/earthquakes/eventpage/ci37378666 +,,37378658,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37378658&format=geojson,0.1379,,59.0,",ci37378658,",1.85,ml,,ci,25.0,"6km E of Puebla, B.C., MX",0.28,53,",ci,",reviewed,1538635281490,"M 1.9 - 6km E of Puebla, B.C., MX",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538670470235,https://earthquake.usgs.gov/earthquakes/eventpage/ci37378658 +,,70630972,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70630972&format=geojson,0.03265,,107.0,",hv70630972,",1.87,md,,hv,42.0,"13km SSE of Volcano, Hawaii",0.21,54,",hv,",automatic,1538635214700,"M 1.9 - 13km SSE of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538635418100,https://earthquake.usgs.gov/earthquakes/eventpage/hv70630972 +,,61791481,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61791481&format=geojson,0.03647,,270.0,",av61791481,",0.83,ml,,av,4.0,"48km W of Tanaga Volcano, Alaska",0.08,11,",av,",reviewed,1538635182550,"M 0.8 - 48km W of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538679447020,https://earthquake.usgs.gov/earthquakes/eventpage/av61791481 +,,20270804,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270804&format=geojson,,,,",ak20270804,",1.6,ml,,ak,,"117km NW of Arctic Village, Alaska",0.67,39,",ak,",reviewed,1538634958972,"M 1.6 - 117km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539308336068,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270804 +,,73093331,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093331&format=geojson,0.00561,,103.0,",nc73093331,",0.78,md,,nc,10.0,"9km NW of The Geysers, CA",0.04,9,",nc,",automatic,1538634725060,"M 0.8 - 9km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538636281910,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093331 +,,73093326,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093326&format=geojson,0.01079,,82.0,",nc73093326,",0.64,md,,nc,18.0,"6km NW of The Geysers, CA",0.04,6,",nc,",reviewed,1538634599740,"M 0.6 - 6km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538678403548,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093326 +,,00659560,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659560&format=geojson,0.352,,161.6,",nn00659560,",1.0,ml,,nn,4.0,"26km WSW of Hawthorne, Nevada",0.1498,15,",nn,",reviewed,1538634590103,"M 1.0 - 26km WSW of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538679129038,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659560 +,,1000h6ui,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h6ui&format=geojson,0.903,,116.0,",us1000h6ui,",4.3,mb,,us,,"32km WNW of Hengchun, Taiwan",0.87,284,",us,",reviewed,1538633850290,"M 4.3 - 32km WNW of Hengchun, Taiwan",0,earthquake,",geoserve,origin,phase-data,",480.0,1538636195040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h6ui +,,73093641,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093641&format=geojson,0.01608,,192.0,",nc73093641,",0.06,md,,nc,5.0,"15km NNE of Mineral, CA",0.08,0,",nc,",reviewed,1538633655390,"M 0.1 - 15km NNE of Mineral, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538682183429,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093641 +,,73093311,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093311&format=geojson,0.04194,,69.0,",nc73093311,nn00659554,",1.63,md,,nc,25.0,"6km WNW of West Bishop, CA",0.04,41,",nc,nn,",reviewed,1538632093750,"M 1.6 - 6km WNW of West Bishop, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538686023110,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093311 +,,73093306,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093306&format=geojson,0.01039,,57.0,",nc73093306,",1.14,md,,nc,19.0,"5km NW of The Geysers, CA",0.04,20,",nc,",automatic,1538632037890,"M 1.1 - 5km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538638862150,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093306 +,,73093301,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093301&format=geojson,0.06062,,179.0,",nc73093301,",0.96,md,,nc,21.0,"8km NW of San Francisco Zoo, CA",0.03,14,",nc,",reviewed,1538631831560,"M 1.0 - 8km NW of San Francisco Zoo, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538674277565,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093301 +,,00659647,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659647&format=geojson,0.041,,269.43,",nn00659647,",0.6,ml,,nn,4.0,"40km E of Hawthorne, Nevada",0.0251,6,",nn,",reviewed,1538631699849,"M 0.6 - 40km E of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538695382898,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659647 +,,37378642,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37378642&format=geojson,0.1129,,28.0,",ci37378642,",2.43,ml,,ci,78.0,"10km ENE of Ocotillo Wells, CA",0.19,91,",ci,",reviewed,1538631620780,"M 2.4 - 10km ENE of Ocotillo Wells, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1538669995690,https://earthquake.usgs.gov/earthquakes/eventpage/ci37378642 +,,73093296,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093296&format=geojson,0.05317,,137.0,",nc73093296,",0.46,md,,nc,5.0,"5km WNW of West Bishop, CA",0.05,3,",nc,",reviewed,1538631605960,"M 0.5 - 5km WNW of West Bishop, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538668502582,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093296 +,,73093291,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093291&format=geojson,0.05438,,148.0,",nc73093291,",0.94,md,,nc,10.0,"11km SE of Pinnacles, CA",0.01,14,",nc,",reviewed,1538631576010,"M 0.9 - 11km SE of Pinnacles, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538676422350,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093291 +,,73093286,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093286&format=geojson,0.05114,,134.0,",nc73093286,",0.58,md,,nc,5.0,"5km WNW of West Bishop, CA",0.03,5,",nc,",reviewed,1538631254360,"M 0.6 - 5km WNW of West Bishop, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538671202809,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093286 +,,61434496,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61434496&format=geojson,0.04447,,147.0,",uw61434496,",0.1,ml,,uw,10.0,"28km SSE of Morton, Washington",0.14,0,",uw,",reviewed,1538631087820,"M 0.1 - 28km SSE of Morton, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538675957540,https://earthquake.usgs.gov/earthquakes/eventpage/uw61434496 +,,20277852,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20277852&format=geojson,,,,",ak20277852,",1.2,ml,,ak,,"59km NW of Nikiski, Alaska",0.28,22,",ak,",reviewed,1538631029832,"M 1.2 - 59km NW of Nikiski, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539308335512,https://earthquake.usgs.gov/earthquakes/eventpage/ak20277852 +,,20270743,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270743&format=geojson,,,,",ak20270743,",1.4,ml,,ak,,"51km E of Cape Yakataga, Alaska",0.63,30,",ak,",reviewed,1538630649312,"M 1.4 Ice Quake - 51km E of Cape Yakataga, Alaska",0,ice quake,",geoserve,origin,phase-data,",-540.0,1539308334973,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270743 +,,20270740,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270740&format=geojson,,,,",ak20270740,",1.7,ml,,ak,,"123km NNW of Arctic Village, Alaska",0.84,44,",ak,",reviewed,1538630295589,"M 1.7 - 123km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539308334380,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270740 +,,37378634,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37378634&format=geojson,0.04737,,206.0,",ci37378634,",1.24,ml,,ci,10.0,"6km NW of Malibu, CA",0.13,24,",ci,",reviewed,1538630222830,"M 1.2 - 6km NW of Malibu, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538671896340,https://earthquake.usgs.gov/earthquakes/eventpage/ci37378634 +,,20277849,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20277849&format=geojson,,,,",ak20277849,",1.3,ml,,ak,,"114km NW of Arctic Village, Alaska",0.54,26,",ak,",reviewed,1538629825164,"M 1.3 - 114km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539308333834,https://earthquake.usgs.gov/earthquakes/eventpage/ak20277849 +,,1000h6u7,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h6u7&format=geojson,3.195,,74.0,",us1000h6u7,",4.2,mb,,us,,"280km SE of Lambasa, Fiji",0.88,271,",us,",reviewed,1538629640030,"M 4.2 - 280km SE of Lambasa, Fiji",0,earthquake,",geoserve,origin,phase-data,",-720.0,1538638002040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h6u7 +,,73093281,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093281&format=geojson,0.04845,,78.0,",nc73093281,",1.09,md,,nc,35.0,"7km W of Templeton, CA",0.04,18,",nc,",reviewed,1538629498490,"M 1.1 - 7km W of Templeton, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538673312196,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093281 +,,2018277005,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018277005&format=geojson,0.0622,,327.0,",pr2018277005,",1.71,md,,pr,3.0,"7km S of La Parguera, Puerto Rico",0.03,45,",pr,",reviewed,1538629410740,"M 1.7 - 7km S of La Parguera, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538645596566,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018277005 +,,73093276,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093276&format=geojson,0.03341,,44.0,",nc73093276,",2.03,md,,nc,46.0,"4km N of Pinnacles, CA",0.06,63,",nc,",reviewed,1538628515150,"M 2.0 - 4km N of Pinnacles, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538684402900,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093276 +,,37378618,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37378618&format=geojson,0.0113,,61.0,",ci37378618,",1.68,ml,,ci,24.0,"7km W of Holtville, CA",0.26,43,",ci,",reviewed,1538628138710,"M 1.7 - 7km W of Holtville, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538668495024,https://earthquake.usgs.gov/earthquakes/eventpage/ci37378618 +,,37378610,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37378610&format=geojson,0.1311,,58.0,",ci37378610,",2.18,ml,,ci,24.0,"6km E of Puebla, B.C., MX",0.24,73,",ci,",reviewed,1538628064240,"M 2.2 - 6km E of Puebla, B.C., MX",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538668294903,https://earthquake.usgs.gov/earthquakes/eventpage/ci37378610 +,,70630842,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70630842&format=geojson,0.03843,,95.0,",hv70630842,",1.88,md,,hv,13.0,"23km ENE of Honaunau-Napoopoo, Hawaii",0.17,54,",hv,",automatic,1538627968690,"M 1.9 - 23km ENE of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538628157830,https://earthquake.usgs.gov/earthquakes/eventpage/hv70630842 +,,20277848,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20277848&format=geojson,,,,",ak20277848,",1.5,ml,,ak,,"120km NW of Arctic Village, Alaska",0.78,35,",ak,",reviewed,1538627809816,"M 1.5 - 120km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539308333189,https://earthquake.usgs.gov/earthquakes/eventpage/ak20277848 +,,60299397,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60299397&format=geojson,0.03915,,84.0,",uu60299397,",1.43,ml,,uu,8.0,"19km NE of Price, Utah",0.08,31,",uu,",reviewed,1538627797450,"M 1.4 - 19km NE of Price, Utah",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538664852010,https://earthquake.usgs.gov/earthquakes/eventpage/uu60299397 +,,37378602,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37378602&format=geojson,0.06058,,44.0,",ci37378602,",0.65,ml,,ci,39.0,"9km SSW of Idyllwild, CA",0.14,6,",ci,",reviewed,1538627624110,"M 0.7 - 9km SSW of Idyllwild, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538667264039,https://earthquake.usgs.gov/earthquakes/eventpage/ci37378602 +,,37197668,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37197668&format=geojson,0.05368,,115.0,",ci37197668,",0.3,ml,,ci,19.0,"9km SSW of Idyllwild, CA",0.11,1,",ci,",reviewed,1538627619930,"M 0.3 - 9km SSW of Idyllwild, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538667659344,https://earthquake.usgs.gov/earthquakes/eventpage/ci37197668 +,,20270730,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270730&format=geojson,,,,",ak20270730,",2.2,ml,,ak,,"92km NNW of Arctic Village, Alaska",0.74,74,",ak,",reviewed,1538627455434,"M 2.2 - 92km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539308332580,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270730 +,,73093266,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093266&format=geojson,0.03244,,119.0,",nc73093266,",0.57,md,,nc,14.0,"18km NW of Parkfield, CA",0.05,5,",nc,",reviewed,1538627396010,"M 0.6 - 18km NW of Parkfield, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538673183033,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093266 +,,20270717,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270717&format=geojson,,,,",ak20270717,",1.5,ml,,ak,,"108km W of Fort Yukon, Alaska",0.84,35,",ak,",reviewed,1538626689999,"M 1.5 - 108km W of Fort Yukon, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539308331987,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270717 +green,,1000h6th,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h6th&format=geojson,3.249,,36.0,",us1000h6th,",5.5,mww,1.0,us,,"273km SE of Lambasa, Fiji",1.05,465,",us,",reviewed,1538626581000,"M 5.5 - 273km SE of Lambasa, Fiji",0,earthquake,",geoserve,losspager,moment-tensor,origin,phase-data,shakemap,",-720.0,1538681558040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h6th +,,20270716,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270716&format=geojson,,,,",ak20270716,",0.7,ml,,ak,,"25km S of Ester, Alaska",0.64,8,",ak,",reviewed,1538626332439,"M 0.7 - 25km S of Ester, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539308331469,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270716 +,,37378586,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37378586&format=geojson,0.01693,,63.0,",ci37378586,",0.67,ml,,ci,20.0,"2km ESE of Lake Henshaw, CA",0.17,7,",ci,",reviewed,1538625531070,"M 0.7 - 2km ESE of Lake Henshaw, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538660171312,https://earthquake.usgs.gov/earthquakes/eventpage/ci37378586 +,,1000h6ta,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h6ta&format=geojson,12.12,,86.0,",us1000h6ta,",4.8,mb,,us,,Southwest Indian Ridge,0.65,354,",us,",reviewed,1538625317520,M 4.8 - Southwest Indian Ridge,0,earthquake,",geoserve,origin,phase-data,",240.0,1538626266040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h6ta +,,20270711,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270711&format=geojson,,,,",ak20270711,",1.7,ml,,ak,,"77km SSW of Kaktovik, Alaska",0.66,44,",ak,",reviewed,1538625125952,"M 1.7 - 77km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539308330891,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270711 +,,2018277000,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018277000&format=geojson,1.3195,,235.0,",pr2018277000,",3.58,md,,pr,13.0,"83km NE of Road Town, British Virgin Islands",0.37,197,",pr,",reviewed,1538624817000,"M 3.6 - 83km NE of Road Town, British Virgin Islands",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538629029972,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018277000 +,,1000h6t5,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h6t5&format=geojson,4.291,,73.0,",us1000h6t5,",5.1,mb,,us,,"86km ESE of Ust'-Kamchatsk Staryy, Russia",1.0,400,",us,",reviewed,1538624493020,"M 5.1 - 86km ESE of Ust'-Kamchatsk Staryy, Russia",0,earthquake,",geoserve,origin,phase-data,",660.0,1538625902040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h6t5 +,,73093256,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093256&format=geojson,0.06292,,160.0,",nc73093256,",0.23,md,,nc,5.0,"7km NW of West Bishop, CA",0.01,1,",nc,",reviewed,1538623672280,"M 0.2 - 7km NW of West Bishop, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538670602737,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093256 +,,20270703,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270703&format=geojson,,,,",ak20270703,",1.1,ml,,ak,,"96km NW of Skagway, Alaska",0.55,19,",ak,",reviewed,1538623669176,"M 1.1 - 96km NW of Skagway, Alaska",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539308330344,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270703 +,,20270701,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270701&format=geojson,,,,",ak20270701,",1.3,ml,,ak,,"69km NE of Sutton-Alpine, Alaska",0.56,26,",ak,",reviewed,1538623325899,"M 1.3 - 69km NE of Sutton-Alpine, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539308329737,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270701 +,,73093251,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093251&format=geojson,0.009497,,94.0,",nc73093251,",0.89,md,,nc,8.0,"9km WNW of Cobb, CA",0.01,12,",nc,",automatic,1538622939550,"M 0.9 - 9km WNW of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538624463594,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093251 +,,73093246,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093246&format=geojson,0.008934,,112.0,",nc73093246,",0.57,md,,nc,7.0,"9km WNW of Cobb, CA",0.02,5,",nc,",automatic,1538622916230,"M 0.6 - 9km WNW of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538623863401,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093246 +,,20270640,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270640&format=geojson,,,,",ak20270640,us1000h6sr,",3.2,ml,,ak,,"66km SSW of Kaktovik, Alaska",0.58,158,",ak,us,",reviewed,1538622716563,"M 3.2 - 66km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539308328794,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270640 +,,73093241,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093241&format=geojson,0.04398,,81.0,",nc73093241,",0.95,md,,nc,17.0,"14km E of Seven Trees, CA",0.03,14,",nc,",reviewed,1538622410460,"M 1.0 - 14km E of Seven Trees, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538697488274,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093241 +,,00659645,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659645&format=geojson,0.036,,91.74,",nn00659645,",0.1,ml,,nn,5.0,"3km WSW of Tahoe Vista, California",0.045,0,",nn,",reviewed,1538622386665,"M 0.1 - 3km WSW of Tahoe Vista, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538694828894,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659645 +,,20270632,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270632&format=geojson,,,,",ak20270632,",2.7,ml,,ak,,"118km NW of Arctic Village, Alaska",0.58,112,",ak,",reviewed,1538622012544,"M 2.7 - 118km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539308327977,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270632 +,,73093236,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093236&format=geojson,0.03042,,239.0,",nc73093236,",-0.03,md,,nc,8.0,"18km NW of Parkfield, CA",0.03,0,",nc,",reviewed,1538621975660,"M -0.0 - 18km NW of Parkfield, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538697337019,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093236 +,,20270631,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270631&format=geojson,,,,",ak20270631,",1.5,ml,,ak,,"116km NW of Arctic Village, Alaska",0.45,35,",ak,",reviewed,1538621866013,"M 1.5 - 116km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539308327438,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270631 +,,20270630,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270630&format=geojson,,,,",av70805789,ak20270630,",1.7,ml,,ak,,"87km S of King Salmon, Alaska",0.49,44,",av,ak,",reviewed,1538621836014,"M 1.7 - 87km S of King Salmon, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539308326885,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270630 +,,20270626,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270626&format=geojson,,,,",ak20270626,",2.5,ml,,ak,,"75km SSW of Kaktovik, Alaska",0.65,96,",ak,",reviewed,1538621665116,"M 2.5 - 75km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539308326133,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270626 +,,20270624,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270624&format=geojson,,,,",ak20270624,",0.8,ml,,ak,,"80km ENE of Cape Yakataga, Alaska",0.49,10,",ak,",reviewed,1538621390586,"M 0.8 - 80km ENE of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539308325568,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270624 +,,37378562,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37378562&format=geojson,0.002513,,49.0,",ci37378562,",0.58,ml,,ci,31.0,"10km NE of Aguanga, CA",0.13,5,",ci,",reviewed,1538621121020,"M 0.6 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538666643666,https://earthquake.usgs.gov/earthquakes/eventpage/ci37378562 +,,20270456,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270456&format=geojson,,,,",ak20270456,",1.1,ml,,ak,,"76km S of Tanana, Alaska",0.73,19,",ak,",reviewed,1538620964283,"M 1.1 - 76km S of Tanana, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539308324973,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270456 +,,61434461,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61434461&format=geojson,0.1394,,111.0,",uw61434461,",1.37,ml,,uw,8.0,"19km ENE of Ucluelet, Canada",0.92,29,",uw,",reviewed,1538619462280,"M 1.4 - 19km ENE of Ucluelet, Canada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538676621230,https://earthquake.usgs.gov/earthquakes/eventpage/uw61434461 +,,20277834,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20277834&format=geojson,,,,",ak20277834,",1.8,ml,,ak,,"51km SE of Seward, Alaska",0.63,50,",ak,",reviewed,1538619370752,"M 1.8 - 51km SE of Seward, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539308324445,https://earthquake.usgs.gov/earthquakes/eventpage/ak20277834 +,,2018277004,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018277004&format=geojson,1.38,,213.0,",pr2018277004,",2.85,md,,pr,4.0,"75km NE of Punta Cana, Dominican Republic",0.44,125,",pr,",reviewed,1538618842310,"M 2.9 - 75km NE of Punta Cana, Dominican Republic",0,earthquake,",geoserve,origin,phase-data,",-300.0,1538645569670,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018277004 +,,20277833,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20277833&format=geojson,,,,",ak20277833,",1.2,ml,,ak,,"38km N of Valdez, Alaska",0.39,22,",ak,",reviewed,1538618578265,"M 1.2 - 38km N of Valdez, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539308323878,https://earthquake.usgs.gov/earthquakes/eventpage/ak20277833 +,,20270448,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270448&format=geojson,,,,",ak20270448,",2.2,ml,,ak,,"119km NW of Arctic Village, Alaska",0.63,74,",ak,",reviewed,1538617892256,"M 2.2 - 119km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539308323267,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270448 +,,20270446,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270446&format=geojson,,,,",ak20270446,",2.6,ml,,ak,,"76km SSW of Kaktovik, Alaska",0.6,104,",ak,",reviewed,1538617736579,"M 2.6 - 76km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539308322519,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270446 +,,20270442,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270442&format=geojson,,,,",ak20270442,",2.4,ml,,ak,,"120km NW of Arctic Village, Alaska",0.5,89,",ak,",reviewed,1538617543474,"M 2.4 - 120km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539308321773,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270442 +,,20270439,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270439&format=geojson,,,,",ak20270439,",2.8,ml,,ak,,"118km NW of Arctic Village, Alaska",0.98,121,",ak,",reviewed,1538617366129,"M 2.8 Other Event - 118km NW of Arctic Village, Alaska",0,other event,",geoserve,origin,phase-data,",-540.0,1539308321151,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270439 +,,73093226,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093226&format=geojson,0.05457,,65.0,",nc73093226,",2.18,md,,nc,55.0,"12km NW of Pinnacles, CA",0.06,73,",nc,",reviewed,1538617094580,"M 2.2 - 12km NW of Pinnacles, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538630464175,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093226 +,,70630557,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70630557&format=geojson,0.1604,,228.0,",hv70630557,",1.85,md,,hv,28.0,"23km S of Pahala, Hawaii",0.13,53,",hv,",reviewed,1538617065310,"M 1.9 - 23km S of Pahala, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538689384380,https://earthquake.usgs.gov/earthquakes/eventpage/hv70630557 +,,20270436,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270436&format=geojson,,,,",ak20270436,",1.6,ml,,ak,,"85km N of Kobuk, Alaska",0.74,39,",ak,",reviewed,1538617042403,"M 1.6 - 85km N of Kobuk, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539308320536,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270436 +,,20277827,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20277827&format=geojson,,,,",ak20277827,",2.1,ml,,ak,,"32km W of Chernabura Island, Alaska",0.51,68,",ak,",reviewed,1538616644694,"M 2.1 - 32km W of Chernabura Island, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539308319961,https://earthquake.usgs.gov/earthquakes/eventpage/ak20277827 +,,73093221,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093221&format=geojson,0.003725,,110.0,",nc73093221,",0.43,md,,nc,11.0,"11km E of Mammoth Lakes, CA",0.06,3,",nc,",reviewed,1538616185540,"M 0.4 - 11km E of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538618103789,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093221 +,,37378546,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37378546&format=geojson,0.1244,,95.0,",ci37378546,",0.9,ml,,ci,22.0,"2km ENE of San Dimas, CA",0.21,12,",ci,",reviewed,1538616051690,"M 0.9 - 2km ENE of San Dimas, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538666324213,https://earthquake.usgs.gov/earthquakes/eventpage/ci37378546 +,,00659641,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659641&format=geojson,0.338,,182.23,",nn00659641,",0.8,ml,,nn,7.0,"29km ENE of Bridgeport, California",0.1258,10,",nn,",reviewed,1538615775952,"M 0.8 - 29km ENE of Bridgeport, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538693534776,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659641 +,,20270433,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270433&format=geojson,,,,",ak20270433,",2.1,ml,,ak,,"120km NW of Arctic Village, Alaska",0.67,68,",ak,",reviewed,1538615647781,"M 2.1 - 120km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539308319352,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270433 +,,20277825,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20277825&format=geojson,,,,",ak20277825,",1.8,ml,,ak,,"38km WSW of Homer, Alaska",0.49,50,",ak,",reviewed,1538615580133,"M 1.8 - 38km WSW of Homer, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539308318816,https://earthquake.usgs.gov/earthquakes/eventpage/ak20277825 +,,20270427,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270427&format=geojson,,,,",ak20270427,",2.9,ml,,ak,,"118km NW of Arctic Village, Alaska",0.58,129,",ak,",reviewed,1538615497899,"M 2.9 - 118km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539308317979,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270427 +,,00659533,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659533&format=geojson,0.165,,119.17,",nn00659533,",1.7,ml,,nn,18.0,"74km NNE of Tonopah, Nevada",0.4438,44,",nn,",reviewed,1538615178743,"M 1.7 Explosion - 74km NNE of Tonopah, Nevada",0,explosion,",geoserve,origin,phase-data,",-480.0,1538675429320,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659533 +,,37378538,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37378538&format=geojson,0.01232,,38.0,",ci37378538,",0.45,ml,,ci,28.0,"10km NE of Aguanga, CA",0.12,3,",ci,",reviewed,1538614847250,"M 0.5 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538665869030,https://earthquake.usgs.gov/earthquakes/eventpage/ci37378538 +,,20277823,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20277823&format=geojson,,,,",ak20277823,",1.2,ml,,ak,,"63km NNW of Talkeetna, Alaska",0.56,22,",ak,",reviewed,1538614478916,"M 1.2 - 63km NNW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539308317358,https://earthquake.usgs.gov/earthquakes/eventpage/ak20277823 +,,20277822,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20277822&format=geojson,,,,",ak20277822,",1.0,ml,,ak,,"145km WNW of Haines Junction, Canada",0.66,15,",ak,",reviewed,1538614137308,"M 1.0 - 145km WNW of Haines Junction, Canada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539308316754,https://earthquake.usgs.gov/earthquakes/eventpage/ak20277822 +,,20270423,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270423&format=geojson,,,,",ak20270423,",1.7,ml,,ak,,"91km N of Kobuk, Alaska",0.56,44,",ak,",reviewed,1538613670335,"M 1.7 - 91km N of Kobuk, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539308316162,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270423 +,,1000h6q2,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h6q2&format=geojson,0.781,,157.0,",us1000h6q2,",2.4,mb_lg,,us,,"16km E of Marion, Kansas",0.17,89,",us,",reviewed,1538613645930,"M 2.4 - 16km E of Marion, Kansas",0,earthquake,",geoserve,origin,phase-data,",-360.0,1538621955040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h6q2 +,,20270420,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270420&format=geojson,,,,",ak20270420,",1.3,ml,,ak,,"22km NNE of Badger, Alaska",0.4,26,",ak,",reviewed,1538613370955,"M 1.3 Explosion - 22km NNE of Badger, Alaska",0,explosion,",geoserve,origin,phase-data,",-540.0,1539308315617,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270420 +,,37378522,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37378522&format=geojson,0.01005,,31.0,",ci37378522,",1.64,ml,,ci,52.0,"9km NE of Aguanga, CA",0.17,41,",ci,",reviewed,1538613110670,"M 1.6 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1538671041850,https://earthquake.usgs.gov/earthquakes/eventpage/ci37378522 +,,20270413,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270413&format=geojson,,,,",ak20270413,",2.4,ml,,ak,,"16km SW of Cohoe, Alaska",0.75,89,",ak,",reviewed,1538612784928,"M 2.4 - 16km SW of Cohoe, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539308314787,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270413 +,,37378506,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37378506&format=geojson,0.008702,,49.0,",ci37378506,",1.87,ml,,ci,27.0,"7km W of Holtville, CA",0.3,54,",ci,",reviewed,1538612757130,"M 1.9 - 7km W of Holtville, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538665534037,https://earthquake.usgs.gov/earthquakes/eventpage/ci37378506 +,,73093211,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093211&format=geojson,0.03812,,117.0,",nc73093211,",0.51,md,,nc,21.0,"21km NW of Parkfield, CA",0.07,4,",nc,",reviewed,1538612687030,"M 0.5 - 21km NW of Parkfield, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538615583766,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093211 +,,37378498,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37378498&format=geojson,0.02943,,85.0,",ci37378498,",1.27,ml,,ci,14.0,"9km WNW of Holtville, CA",0.31,25,",ci,",reviewed,1538612669180,"M 1.3 - 9km WNW of Holtville, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538665154702,https://earthquake.usgs.gov/earthquakes/eventpage/ci37378498 +,2.0,37378490,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37378490&format=geojson,0.1256,1.0,90.0,",ci37378490,",2.29,ml,,ci,25.0,"7km ESE of Puebla, B.C., MX",0.26,81,",ci,",reviewed,1538612587520,"M 2.3 - 7km ESE of Puebla, B.C., MX",0,earthquake,",dyfi,geoserve,nearby-cities,origin,phase-data,",-480.0,1538664807824,https://earthquake.usgs.gov/earthquakes/eventpage/ci37378490 +,,00659527,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659527&format=geojson,0.213,,111.19,",nn00659527,",0.9,ml,,nn,14.0,"19km S of Goldfield, Nevada",0.1353,12,",nn,",reviewed,1538612512777,"M 0.9 - 19km S of Goldfield, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538677651062,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659527 +,,2018277002,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018277002&format=geojson,0.1551,,211.0,",pr2018277002,",1.65,md,,pr,3.0,"4km SW of Coqui, Puerto Rico",0.12,42,",pr,",reviewed,1538612423480,"M 1.7 - 4km SW of Coqui, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538645440863,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018277002 +,,2018277003,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018277003&format=geojson,0.8394,,246.0,",pr2018277003,",2.72,md,,pr,8.0,"75km ENE of Miches, Dominican Republic",0.61,114,",pr,",reviewed,1538612365680,"M 2.7 - 75km ENE of Miches, Dominican Republic",0,earthquake,",geoserve,origin,phase-data,",-300.0,1538645529951,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018277003 +,,1000h6qd,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h6qd&format=geojson,2.531,,215.0,",ak20270410,us1000h6qd,",3.3,ml,,us,,"276km SE of Kodiak, Alaska",0.58,168,",ak,us,",reviewed,1538611698160,"M 3.3 - 276km SE of Kodiak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539496471040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h6qd +,,2018277001,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018277001&format=geojson,0.8342,,215.0,",pr2018277001,us1000h6w4,",2.82,md,,pr,10.0,"91km NE of Punta Cana, Dominican Republic",0.54,122,",pr,us,",reviewed,1538611346910,"M 2.8 - 91km NE of Punta Cana, Dominican Republic",0,earthquake,",geoserve,origin,phase-data,",-300.0,1539496059040,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018277001 +,,73093201,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093201&format=geojson,0.01374,,71.0,",nc73093201,",0.94,md,,nc,11.0,"9km NW of The Geysers, CA",0.03,14,",nc,",automatic,1538611345600,"M 0.9 - 9km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538612823504,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093201 +,,73093206,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093206&format=geojson,0.0645,,249.0,",nc73093206,",1.37,md,,nc,9.0,"11km ESE of Pinnacles, CA",0.07,29,",nc,",reviewed,1538611212960,"M 1.4 - 11km ESE of Pinnacles, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538614742682,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093206 +,,1000h6q0,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h6q0&format=geojson,18.64,,61.0,",us1000h6q0,",5.2,mb,,us,,"60km N of Visokoi Island, South Georgia and the South Sandwich Islands",0.79,416,",us,",reviewed,1538611182790,"M 5.2 - 60km N of Visokoi Island, South Georgia and the South Sandwich Islands",0,earthquake,",geoserve,origin,phase-data,",-120.0,1538614727040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h6q0 +,,20270407,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270407&format=geojson,,,,",ak20270407,",1.4,ml,,ak,,"12km SW of Knik-Fairview, Alaska",0.47,30,",ak,",reviewed,1538611090918,"M 1.4 - 12km SW of Knik-Fairview, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219868963,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270407 +,,20270406,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270406&format=geojson,,,,",ak20270406,",1.3,ml,,ak,,"39km NW of Willow, Alaska",0.43,26,",ak,",reviewed,1538611046239,"M 1.3 - 39km NW of Willow, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219868436,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270406 +,,1000h6pj,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h6pj&format=geojson,5.557,,82.0,",us1000h6pj,",4.3,mb,,us,,"51km NNE of Kerman, Iran",0.77,284,",us,",reviewed,1538610782460,"M 4.3 - 51km NNE of Kerman, Iran",0,earthquake,",geoserve,origin,phase-data,",210.0,1538612400040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h6pj +,2.0,1000h6pi,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h6pi&format=geojson,0.527,1.0,91.0,",us1000h6pi,",4.0,mb,,us,,"7km NW of San Andres Sajcabaja, Guatemala",1.11,246,",us,",reviewed,1538610677330,"M 4.0 - 7km NW of San Andres Sajcabaja, Guatemala",0,earthquake,",dyfi,geoserve,origin,phase-data,",-360.0,1539035401408,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h6pi +,2.2,60241516,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nm60241516&format=geojson,0.02757,2.0,35.0,",nm60241516,",2.12,md,,nm,40.0,"6km SSW of Lilbourn, Missouri",0.1,70,",nm,",reviewed,1538610608670,"M 2.1 - 6km SSW of Lilbourn, Missouri",0,earthquake,",dyfi,geoserve,origin,phase-data,",-360.0,1538655464452,https://earthquake.usgs.gov/earthquakes/eventpage/nm60241516 +,,20270404,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270404&format=geojson,,,,",ak20270404,",1.3,ml,,ak,,"52km NNE of Yakutat, Alaska",0.85,26,",ak,",reviewed,1538610195974,"M 1.3 Ice Quake - 52km NNE of Yakutat, Alaska",0,ice quake,",geoserve,origin,phase-data,",-540.0,1539219867909,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270404 +,,73093186,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093186&format=geojson,0.01019,,30.0,",nc73093186,",1.68,md,,nc,43.0,"2km W of Anderson Springs, CA",0.08,43,",nc,",reviewed,1538610078220,"M 1.7 - 2km W of Anderson Springs, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538624162431,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093186 +,,37378482,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37378482&format=geojson,0.06605,,85.0,",ci37378482,",1.02,ml,,ci,9.0,"7km E of Lebec, CA",0.26,16,",ci,",reviewed,1538609936120,"M 1.0 Quarry Blast - 7km E of Lebec, CA",0,quarry blast,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538672446073,https://earthquake.usgs.gov/earthquakes/eventpage/ci37378482 +,,73093176,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093176&format=geojson,0.01139,,40.0,",nc73093176,",1.68,md,,nc,49.0,"6km W of Cobb, CA",0.06,43,",nc,",reviewed,1538609684200,"M 1.7 - 6km W of Cobb, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538616182826,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093176 +,,73093171,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093171&format=geojson,0.05476,,153.0,",nc73093171,",1.26,md,,nc,11.0,"12km ESE of Pinnacles, CA",0.02,24,",nc,",reviewed,1538609344710,"M 1.3 - 12km ESE of Pinnacles, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538622482270,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093171 +,,20270398,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270398&format=geojson,,,,",ak20270398,",1.5,ml,,ak,,"56km WSW of Talkeetna, Alaska",0.24,35,",ak,",reviewed,1538609251764,"M 1.5 - 56km WSW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219867307,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270398 +,,20270397,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270397&format=geojson,,,,",ak20270397,",1.2,ml,,ak,,"55km NNE of Sutton-Alpine, Alaska",0.4,22,",ak,",reviewed,1538609103001,"M 1.2 - 55km NNE of Sutton-Alpine, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219866737,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270397 +,,20270396,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270396&format=geojson,,,,",ak20270396,",0.8,ml,,ak,,"61km E of Cantwell, Alaska",0.85,10,",ak,",reviewed,1538608912910,"M 0.8 - 61km E of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219866232,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270396 +,,20276447,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276447&format=geojson,,,,",ak20276447,",2.0,ml,,ak,,"103km NW of Arctic Village, Alaska",0.6,62,",ak,",reviewed,1538608794219,"M 2.0 - 103km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219865679,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276447 +,,20276446,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276446&format=geojson,,,,",ak20276446,",1.8,ml,,ak,,"53km WNW of Anchor Point, Alaska",0.31,50,",ak,",reviewed,1538608640102,"M 1.8 - 53km WNW of Anchor Point, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219865170,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276446 +,,37378458,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37378458&format=geojson,0.01771,,79.0,",ci37378458,",0.48,ml,,ci,26.0,"13km SSE of Anza, CA",0.1,4,",ci,",reviewed,1538608578060,"M 0.5 - 13km SSE of Anza, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538670272153,https://earthquake.usgs.gov/earthquakes/eventpage/ci37378458 +,,73093166,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093166&format=geojson,0.003894,,105.0,",nc73093166,",0.56,md,,nc,8.0,"8km WNW of The Geysers, CA",0.03,5,",nc,",automatic,1538608063670,"M 0.6 - 8km WNW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538608923139,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093166 +,,80312379,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80312379&format=geojson,0.3,,116.0,",mb80312379,",0.83,ml,,mb,6.0,"3km SSW of Manhattan, Montana",0.27,11,",mb,",reviewed,1538607554840,"M 0.8 - 3km SSW of Manhattan, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538690752470,https://earthquake.usgs.gov/earthquakes/eventpage/mb80312379 +,,20270395,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270395&format=geojson,,,,",ak20270395,",2.0,ml,,ak,,"121km WNW of Arctic Village, Alaska",0.85,62,",ak,",reviewed,1538606668810,"M 2.0 - 121km WNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219864591,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270395 +,,37378434,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37378434&format=geojson,0.01318,,21.0,",ci37378434,",1.43,ml,,ci,65.0,"2km SE of Lake Henshaw, CA",0.16,31,",ci,",reviewed,1538606538490,"M 1.4 - 2km SE of Lake Henshaw, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1538664435290,https://earthquake.usgs.gov/earthquakes/eventpage/ci37378434 +,,20270394,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270394&format=geojson,,,,",ak20270394,",1.1,ml,,ak,,"52km W of Willow, Alaska",0.18,19,",ak,",reviewed,1538606428536,"M 1.1 - 52km W of Willow, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219864058,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270394 +,,20276443,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276443&format=geojson,,,,",ak20276443,",1.6,ml,,ak,,"74km NNW of Arctic Village, Alaska",1.27,39,",ak,",reviewed,1538606302607,"M 1.6 - 74km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219863521,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276443 +,,70630262,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70630262&format=geojson,0.01145,,105.0,",hv70630262,",1.2,md,,hv,16.0,"12km S of Fern Acres, Hawaii",0.1,22,",hv,",reviewed,1538606233510,"M 1.2 - 12km S of Fern Acres, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538619376190,https://earthquake.usgs.gov/earthquakes/eventpage/hv70630262 +,,80312429,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80312429&format=geojson,0.315,,202.0,",mb80312429,",0.98,ml,,mb,5.0,"1km SW of Manhattan, Montana",0.08,15,",mb,",reviewed,1538606156670,"M 1.0 - 1km SW of Manhattan, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538695397340,https://earthquake.usgs.gov/earthquakes/eventpage/mb80312429 +,,73093161,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093161&format=geojson,0.02384,,167.0,",nc73093161,",1.33,md,,nc,20.0,"4km W of Daly City, CA",0.15,27,",nc,",reviewed,1538605950690,"M 1.3 - 4km W of Daly City, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538618103018,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093161 +,,20276442,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276442&format=geojson,,,,",ak20276442,",1.7,ml,,ak,,"93km NNW of Arctic Village, Alaska",0.86,44,",ak,",reviewed,1538605122596,"M 1.7 - 93km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219862948,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276442 +,,61434396,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61434396&format=geojson,0.1307,,75.0,",uw61434396,",1.79,ml,,uw,12.0,"11km SE of Molalla, Oregon",0.3,49,",uw,",reviewed,1538604357780,"M 1.8 Explosion - 11km SE of Molalla, Oregon",0,explosion,",geoserve,origin,phase-data,",-480.0,1538677098020,https://earthquake.usgs.gov/earthquakes/eventpage/uw61434396 +,,80312374,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80312374&format=geojson,0.083,,117.0,",mb80312374,",1.01,ml,,mb,11.0,"10km ESE of Lincoln, Montana",0.12,16,",mb,",reviewed,1538604248300,"M 1.0 - 10km ESE of Lincoln, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538690200980,https://earthquake.usgs.gov/earthquakes/eventpage/mb80312374 +,,61434391,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61434391&format=geojson,0.006567,,236.0,",uw61434391,",0.02,ml,,uw,8.0,"30km NNE of Amboy, Washington",0.11,0,",uw,",reviewed,1538603567830,"M 0.0 - 30km NNE of Amboy, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538775974150,https://earthquake.usgs.gov/earthquakes/eventpage/uw61434391 +,,61791371,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61791371&format=geojson,0.041,,238.0,",av61791371,",1.0,ml,,av,6.0,"95km SE of King Salmon, Alaska",0.14,15,",av,",reviewed,1538603381720,"M 1.0 - 95km SE of King Salmon, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538606122670,https://earthquake.usgs.gov/earthquakes/eventpage/av61791371 +,,1000h6lu,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h6lu&format=geojson,0.248,,122.0,",us1000h6lu,",4.4,mb,,us,,"5km ESE of Aumbay, Philippines",1.08,298,",us,",reviewed,1538603061970,"M 4.4 - 5km ESE of Aumbay, Philippines",0,earthquake,",geoserve,origin,phase-data,",480.0,1538606382040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h6lu +,,00659522,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659522&format=geojson,0.102,,267.51,",nn00659522,",0.3,ml,,nn,4.0,"14km N of Incline Village, Nevada",0.0619,1,",nn,",reviewed,1538603004066,"M 0.3 - 14km N of Incline Village, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538618720051,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659522 +,,37378426,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37378426&format=geojson,0.006818,,58.0,",ci37378426,",0.47,ml,,ci,25.0,"10km NE of Aguanga, CA",0.11,3,",ci,",reviewed,1538602974690,"M 0.5 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538663668223,https://earthquake.usgs.gov/earthquakes/eventpage/ci37378426 +,,37378410,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37378410&format=geojson,0.05631,,124.0,",ci37378410,",1.28,ml,,ci,13.0,"8km N of Big Bear Lake, CA",0.27,25,",ci,",reviewed,1538602394970,"M 1.3 Quarry Blast - 8km N of Big Bear Lake, CA",0,quarry blast,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538671663554,https://earthquake.usgs.gov/earthquakes/eventpage/ci37378410 +,,00659521,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659521&format=geojson,0.017,,110.51,",nn00659521,",-0.1,ml,,nn,7.0,"67km ENE of Beatty, Nevada",0.0894,0,",nn,",reviewed,1538602026744,"M -0.1 - 67km ENE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538618718610,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659521 +,,00659520,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659520&format=geojson,0.126,,234.77,",nn00659520,",-0.1,ml,,nn,4.0,"6km NW of Cold Springs, Nevada",0.077,0,",nn,",reviewed,1538601652012,"M -0.1 - 6km NW of Cold Springs, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538618717331,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659520 +,,61434381,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61434381&format=geojson,0.9168,,266.0,",uw61434381,",1.88,ml,,uw,8.0,"6km SW of Princeton, Canada",0.44,54,",uw,",reviewed,1538601529190,"M 1.9 Explosion - 6km SW of Princeton, Canada",0,explosion,",geoserve,origin,phase-data,",-480.0,1538682655940,https://earthquake.usgs.gov/earthquakes/eventpage/uw61434381 +,,20270390,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270390&format=geojson,,,,",ak20270390,",0.7,ml,,ak,,"15km S of Cantwell, Alaska",0.4,8,",ak,",reviewed,1538601135754,"M 0.7 - 15km S of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219862369,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270390 +,,70630042,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70630042&format=geojson,0.03022,,134.0,",hv70630042,",1.45,md,,hv,32.0,"22km ENE of Honaunau-Napoopoo, Hawaii",0.12,32,",hv,",reviewed,1538600380520,"M 1.5 - 22km ENE of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538683770930,https://earthquake.usgs.gov/earthquakes/eventpage/hv70630042 +,,73093136,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093136&format=geojson,0.008095,,88.0,",nc73093136,",0.28,md,,nc,14.0,"9km NW of The Geysers, CA",0.03,1,",nc,",reviewed,1538600372320,"M 0.3 - 9km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538607002875,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093136 +,,70806164,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70806164&format=geojson,0.02866,,137.0,",av70806164,",0.9,mh,,av,6.0,"44km ENE of Adak, Alaska",0.17,12,",av,",reviewed,1538600157380,"M 0.9 - 44km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538783486670,https://earthquake.usgs.gov/earthquakes/eventpage/av70806164 +,,20270389,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270389&format=geojson,,,,",ak20270389,",1.8,ml,,ak,,"77km SSW of Kaktovik, Alaska",0.44,50,",ak,",reviewed,1538600069059,"M 1.8 - 77km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219861826,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270389 +,,70805744,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70805744&format=geojson,0.01873,,152.0,",av70805744,",0.48,ml,,av,4.0,"40km ENE of Adak, Alaska",0.19,4,",av,",reviewed,1538600066560,"M 0.5 - 40km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538605156500,https://earthquake.usgs.gov/earthquakes/eventpage/av70805744 +,,70805739,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70805739&format=geojson,0.01477,,206.0,",av70805739,",0.37,ml,,av,4.0,"40km ENE of Adak, Alaska",0.15,2,",av,",reviewed,1538599904440,"M 0.4 - 40km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538604826930,https://earthquake.usgs.gov/earthquakes/eventpage/av70805739 +,,70805734,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70805734&format=geojson,0.004139,,235.0,",av70805734,",0.5,mh,,av,4.0,"40km ENE of Adak, Alaska",0.1,4,",av,",reviewed,1538599569020,"M 0.5 - 40km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538604860950,https://earthquake.usgs.gov/earthquakes/eventpage/av70805734 +,,37378362,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37378362&format=geojson,0.08022,,35.0,",ci37378362,",1.68,ml,,ci,51.0,"7km NNW of Lakeside, CA",0.29,43,",ci,",reviewed,1538599326590,"M 1.7 Quarry Blast - 7km NNW of Lakeside, CA",0,quarry blast,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538663379575,https://earthquake.usgs.gov/earthquakes/eventpage/ci37378362 +,,37378370,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37378370&format=geojson,0.05829,,143.0,",ci37378370,",1.34,ml,,ci,7.0,"5km E of Lebec, CA",0.12,28,",ci,",reviewed,1538599169870,"M 1.3 Quarry Blast - 5km E of Lebec, CA",0,quarry blast,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538672095620,https://earthquake.usgs.gov/earthquakes/eventpage/ci37378370 +,,70805729,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70805729&format=geojson,0.02408,,155.0,",av70805729,",0.8,mh,,av,5.0,"42km ENE of Adak, Alaska",0.23,10,",av,",reviewed,1538599161860,"M 0.8 - 42km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538604901600,https://earthquake.usgs.gov/earthquakes/eventpage/av70805729 +,,70805724,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70805724&format=geojson,0.01842,,127.0,",av70805724,",0.5,mh,,av,4.0,"42km ENE of Adak, Alaska",0.1,4,",av,",reviewed,1538599117360,"M 0.5 - 42km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538604907770,https://earthquake.usgs.gov/earthquakes/eventpage/av70805724 +,,20270386,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270386&format=geojson,,,,",ak20270386,",1.8,ml,,ak,,"111km NNW of Talkeetna, Alaska",0.83,50,",ak,",reviewed,1538599036871,"M 1.8 - 111km NNW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219861210,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270386 +,,37378354,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37378354&format=geojson,0.06999,,112.0,",ci37378354,",1.09,ml,,ci,20.0,"8km ENE of Vista, CA",0.26,18,",ci,",reviewed,1538598928280,"M 1.1 Quarry Blast - 8km ENE of Vista, CA",0,quarry blast,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538669377645,https://earthquake.usgs.gov/earthquakes/eventpage/ci37378354 +,,70805719,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70805719&format=geojson,0.02995,,121.0,",av70805719,",0.3,mh,,av,4.0,"43km ENE of Adak, Alaska",0.16,1,",av,",reviewed,1538598849450,"M 0.3 - 43km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538604940070,https://earthquake.usgs.gov/earthquakes/eventpage/av70805719 +,,70805714,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70805714&format=geojson,0.02672,,111.0,",av70805714,",0.5,mh,,av,4.0,"43km ENE of Adak, Alaska",0.14,4,",av,",reviewed,1538598827490,"M 0.5 - 43km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538604980190,https://earthquake.usgs.gov/earthquakes/eventpage/av70805714 +,,70805709,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70805709&format=geojson,0.02143,,101.0,",av70805709,",0.7,mh,,av,5.0,"42km ENE of Adak, Alaska",0.07,8,",av,",reviewed,1538598819870,"M 0.7 - 42km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538604985550,https://earthquake.usgs.gov/earthquakes/eventpage/av70805709 +,,70805704,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70805704&format=geojson,0.02204,,120.0,",av70805704,",0.6,mh,,av,4.0,"42km ENE of Adak, Alaska",0.12,6,",av,",reviewed,1538598784010,"M 0.6 - 42km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538605019000,https://earthquake.usgs.gov/earthquakes/eventpage/av70805704 +,,70806159,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70806159&format=geojson,0.02575,,130.0,",av70806159,",1.1,mh,,av,6.0,"44km ENE of Adak, Alaska",0.22,19,",av,",reviewed,1538598678970,"M 1.1 - 44km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538783194360,https://earthquake.usgs.gov/earthquakes/eventpage/av70806159 +,,1000ha1k,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000ha1k&format=geojson,2.006,,97.0,",us1000ha1k,",4.6,mb,,us,,"175km ESE of Tadine, New Caledonia",0.76,326,",us,",reviewed,1538598465430,"M 4.6 - 175km ESE of Tadine, New Caledonia",0,earthquake,",geoserve,origin,phase-data,",660.0,1539358103040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000ha1k +,,20270384,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270384&format=geojson,,,,",ak20270384,",1.5,ml,,ak,,"160km S of Kotzebue, Alaska",0.61,35,",ak,",reviewed,1538598287931,"M 1.5 - 160km S of Kotzebue, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219860677,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270384 +,,70629992,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70629992&format=geojson,0.01331,,38.0,",hv70629992,",1.8,md,,hv,21.0,"6km WSW of Volcano, Hawaii",0.34,50,",hv,",automatic,1538598126310,"M 1.8 - 6km WSW of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538598312030,https://earthquake.usgs.gov/earthquakes/eventpage/hv70629992 +,,70629987,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70629987&format=geojson,0.0127,,50.0,",hv70629987,",2.0,md,,hv,17.0,"6km WSW of Volcano, Hawaii",0.13,62,",hv,",automatic,1538598124950,"M 2.0 - 6km WSW of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538598305970,https://earthquake.usgs.gov/earthquakes/eventpage/hv70629987 +,,37378330,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37378330&format=geojson,0.05572,,66.0,",ci37378330,",0.99,ml,,ci,24.0,"9km N of Banning, CA",0.13,15,",ci,",reviewed,1538597116000,"M 1.0 - 9km N of Banning, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538662819082,https://earthquake.usgs.gov/earthquakes/eventpage/ci37378330 +,,73093131,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093131&format=geojson,0.008927,,26.0,",nc73093131,",1.94,md,,nc,58.0,"7km NW of The Geysers, CA",0.05,58,",nc,",reviewed,1538597039050,"M 1.9 - 7km NW of The Geysers, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538613783590,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093131 +,,37378322,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37378322&format=geojson,0.07515,,73.0,",ci37378322,",0.85,ml,,ci,18.0,"1km SE of Home Gardens, CA",0.22,11,",ci,",reviewed,1538596994670,"M 0.9 Quarry Blast - 1km SE of Home Gardens, CA",0,quarry blast,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538606317387,https://earthquake.usgs.gov/earthquakes/eventpage/ci37378322 +,,20276437,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276437&format=geojson,,,,",ak20276437,us1000haev,",2.5,ml,,ak,,"81km SSW of Shishmaref, Alaska",0.66,96,",ak,us,",reviewed,1538596955731,"M 2.5 - 81km SSW of Shishmaref, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539355088040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276437 +,,37378306,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37378306&format=geojson,0.04688,,74.0,",ci37378306,",1.42,ml,,ci,37.0,"5km SE of Home Gardens, CA",0.23,31,",ci,",reviewed,1538596354870,"M 1.4 Quarry Blast - 5km SE of Home Gardens, CA",0,quarry blast,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538668327557,https://earthquake.usgs.gov/earthquakes/eventpage/ci37378306 +,,20270336,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270336&format=geojson,,,,",ak20270336,",1.1,ml,,ak,,"79km SW of Delta Junction, Alaska",0.38,19,",ak,",reviewed,1538595999006,"M 1.1 - 79km SW of Delta Junction, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219859598,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270336 +,,61434351,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61434351&format=geojson,0.2706,,259.0,",uw61434351,",1.89,ml,,uw,6.0,"6km SSE of Port Ludlow, Washington",0.25,55,",uw,",reviewed,1538595879110,"M 1.9 Explosion - 6km SSE of Port Ludlow, Washington",0,explosion,",geoserve,origin,phase-data,",-480.0,1538677864300,https://earthquake.usgs.gov/earthquakes/eventpage/uw61434351 +,,20270334,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270334&format=geojson,,,,",ak20270334,",2.1,ml,,ak,,"58km W of Big Lake, Alaska",0.56,68,",ak,",reviewed,1538595690500,"M 2.1 - 58km W of Big Lake, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219858860,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270334 +,,1000haeu,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000haeu&format=geojson,0.792,,269.0,",ak20276434,us1000haeu,",2.6,ml,,us,,"84km SSE of Nikolski, Alaska",0.38,104,",ak,us,",reviewed,1538595182870,"M 2.6 - 84km SSE of Nikolski, Alaska",0,earthquake,",geoserve,origin,phase-data,",-660.0,1539358821040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000haeu +,,60241501,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nm60241501&format=geojson,0.03128,,48.0,",nm60241501,",1.92,md,,nm,16.0,"3km E of Ridgely, Tennessee",0.04,57,",nm,",reviewed,1538595147890,"M 1.9 - 3km E of Ridgely, Tennessee",0,earthquake,",geoserve,origin,phase-data,",-360.0,1538659615100,https://earthquake.usgs.gov/earthquakes/eventpage/nm60241501 +,,20270331,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270331&format=geojson,,,,",ak20270331,",0.9,ml,,ak,,"62km WNW of Healy, Alaska",0.4,12,",ak,",reviewed,1538593939460,"M 0.9 - 62km WNW of Healy, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219857637,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270331 +,,80312269,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80312269&format=geojson,0.058,,112.0,",mb80312269,",1.44,ml,,mb,10.0,"4km E of Butte, Montana",0.08,32,",mb,",reviewed,1538593469970,"M 1.4 Quarry Blast - 4km E of Butte, Montana",0,quarry blast,",geoserve,origin,phase-data,",-420.0,1538682485490,https://earthquake.usgs.gov/earthquakes/eventpage/mb80312269 +,,73093126,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093126&format=geojson,0.005896,,83.0,",nc73093126,",0.88,md,,nc,8.0,"5km NW of The Geysers, CA",0.1,12,",nc,",automatic,1538592910700,"M 0.9 - 5km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538595243365,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093126 +,,80312264,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80312264&format=geojson,0.057,,91.0,",mb80312264,",0.97,ml,,mb,13.0,"51km W of West Yellowstone, Montana",0.19,14,",mb,",reviewed,1538592507740,"M 1.0 - 51km W of West Yellowstone, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538675582010,https://earthquake.usgs.gov/earthquakes/eventpage/mb80312264 +,,1000h6ge,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h6ge&format=geojson,2.767,,84.0,",us1000h6ge,",4.2,mb,,us,,"52km S of Nggongi Satu, Indonesia",0.6,271,",us,",reviewed,1538592400160,"M 4.2 - 52km S of Nggongi Satu, Indonesia",0,earthquake,",geoserve,origin,phase-data,",480.0,1539358243040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h6ge +,,61791271,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61791271&format=geojson,0.01095,,107.0,",av61791271,",-0.03,ml,,av,5.0,"41km ENE of Adak, Alaska",0.18,0,",av,",reviewed,1538592073270,"M -0.0 - 41km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538599301670,https://earthquake.usgs.gov/earthquakes/eventpage/av61791271 +,,20270329,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270329&format=geojson,,,,",ak20270329,",1.6,ml,,ak,,"127km NNW of Arctic Village, Alaska",0.83,39,",ak,",reviewed,1538591563233,"M 1.6 - 127km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219857036,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270329 +,,1000h6g6,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h6g6&format=geojson,2.763,,80.0,",us1000h6g6,",4.3,mb,,us,,"45km S of Nggongi, Indonesia",0.69,284,",us,",reviewed,1538591340580,"M 4.3 - 45km S of Nggongi, Indonesia",0,earthquake,",geoserve,origin,phase-data,",480.0,1539358181040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h6g6 +,,20270323,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270323&format=geojson,,,,",ak20270323,",1.3,ml,,ak,,"44km NW of Fort McPherson, Canada",0.53,26,",ak,",reviewed,1538590673595,"M 1.3 - 44km NW of Fort McPherson, Canada",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539219856508,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270323 +,,20270330,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270330&format=geojson,,,,",ak20270330,",0.7,ml,,ak,,"87km SW of Haines Junction, Canada",0.69,8,",ak,",reviewed,1538590646731,"M 0.7 - 87km SW of Haines Junction, Canada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538591780913,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270330 +,,20276429,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276429&format=geojson,,,,",ak20276429,",2.0,ml,,ak,,"71km WSW of Anchor Point, Alaska",0.16,62,",ak,",reviewed,1538590286787,"M 2.0 - 71km WSW of Anchor Point, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219855979,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276429 +,,20270321,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270321&format=geojson,,,,",ak20270321,",1.5,ml,,ak,,"43km NW of Fort McPherson, Canada",0.68,35,",ak,",reviewed,1538590189212,"M 1.5 - 43km NW of Fort McPherson, Canada",0,earthquake,",geoserve,origin,phase-data,",-420.0,1539219855445,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270321 +,,1000h6f3,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h6f3&format=geojson,4.207,,121.0,",us1000h6f3,",4.9,mb,,us,,"58km NNW of Ust'-Kamchatsk Staryy, Russia",0.99,369,",us,",reviewed,1538589168370,"M 4.9 - 58km NNW of Ust'-Kamchatsk Staryy, Russia",0,earthquake,",geoserve,origin,phase-data,",720.0,1539288157040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h6f3 +,,20270261,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270261&format=geojson,,,,",ak20270261,us1000h6ev,",3.6,ml,3.52,ak,,"79km SW of Kaktovik, Alaska",0.65,199,",ak,us,",reviewed,1538589023693,"M 3.6 - 79km SW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,shakemap,",-540.0,1539357056040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270261 +,,37378258,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37378258&format=geojson,0.08211,,62.0,",ci37378258,",1.24,ml,,ci,59.0,"3km ESE of Loma Linda, CA",0.2,24,",ci,",reviewed,1538588812960,"M 1.2 - 3km ESE of Loma Linda, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538594487820,https://earthquake.usgs.gov/earthquakes/eventpage/ci37378258 +,,20270256,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270256&format=geojson,,,,",ak20270256,",1.4,ml,,ak,,"81km WSW of Cantwell, Alaska",0.38,30,",ak,",reviewed,1538588379779,"M 1.4 - 81km WSW of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219854032,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270256 +,2.0,1000h6el,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h6el&format=geojson,8.17,1.0,156.0,",us1000h6el,",4.4,mb,,us,,"53km E of Uthal, Pakistan",0.93,298,",us,",reviewed,1538588378590,"M 4.4 - 53km E of Uthal, Pakistan",0,earthquake,",dyfi,geoserve,origin,phase-data,",300.0,1539287823319,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h6el +,,00659488,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659488&format=geojson,0.084,,150.5,",nn00659488,",-0.3,ml,,nn,5.0,"14km ENE of Hawthorne, Nevada",0.0913,0,",nn,",reviewed,1538588186285,"M -0.3 - 14km ENE of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538618715742,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659488 +,,20270254,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270254&format=geojson,,,,",ak20270254,",0.6,ml,,ak,,"62km N of College, Alaska",0.37,6,",ak,",reviewed,1538588140033,"M 0.6 - 62km N of College, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219853505,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270254 +,,73093111,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093111&format=geojson,0.007405,,53.0,",nc73093111,",1.07,md,,nc,22.0,"7km NW of The Geysers, CA",0.03,18,",nc,",automatic,1538588041870,"M 1.1 - 7km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538591403027,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093111 +,,73093106,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093106&format=geojson,0.01495,,83.0,",nc73093106,",0.81,md,,nc,13.0,"7km WNW of The Geysers, CA",0.02,10,",nc,",automatic,1538587470440,"M 0.8 - 7km WNW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538587568681,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093106 +,,73093101,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093101&format=geojson,0.009153,,23.0,",nc73093101,",2.11,md,,nc,62.0,"7km NW of The Geysers, CA",0.05,68,",nc,",reviewed,1538587442660,"M 2.1 - 7km NW of The Geysers, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538610364270,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093101 +,,37378242,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37378242&format=geojson,0.1076,,61.0,",ci37378242,",0.95,ml,,ci,27.0,"14km SSW of Twentynine Palms, CA",0.12,14,",ci,",reviewed,1538587248980,"M 1.0 - 14km SSW of Twentynine Palms, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538590579355,https://earthquake.usgs.gov/earthquakes/eventpage/ci37378242 +,,73093096,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093096&format=geojson,0.008917,,97.0,",nc73093096,",0.48,md,,nc,7.0,"2km E of The Geysers, CA",0.01,4,",nc,",automatic,1538587218710,"M 0.5 - 2km E of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538590742924,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093096 +,,1000h6fx,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h6fx&format=geojson,2.532,,216.0,",ak20270249,us1000h6fx,",3.6,ml,,us,,"273km SE of Kodiak, Alaska",0.56,199,",ak,us,",reviewed,1538587009370,"M 3.6 - 273km SE of Kodiak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539347971040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h6fx +,,37378234,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37378234&format=geojson,0.01369,,59.0,",ci37378234,",0.49,ml,,ci,25.0,"9km NE of Aguanga, CA",0.12,4,",ci,",reviewed,1538586984080,"M 0.5 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538590305740,https://earthquake.usgs.gov/earthquakes/eventpage/ci37378234 +,,1000h6cs,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h6cs&format=geojson,2.526,,147.0,",ak20270242,us1000h6cs,",3.9,mb,,us,,"272km SE of Kodiak, Alaska",0.95,234,",ak,us,",reviewed,1538586831400,"M 3.9 - 272km SE of Kodiak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539288938040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h6cs +,,73093091,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093091&format=geojson,0.0101,,78.0,",nc73093091,",0.24,md,,nc,7.0,"6km W of Mammoth Lakes, CA",0.08,1,",nc,",reviewed,1538586342270,"M 0.2 - 6km W of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538588060129,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093091 +,,73093086,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093086&format=geojson,0.02145,,77.0,",nc73093086,",0.21,md,,nc,12.0,"15km NW of Parkfield, CA",0.03,1,",nc,",reviewed,1538586301410,"M 0.2 - 15km NW of Parkfield, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538604123299,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093086 +,,00659487,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659487&format=geojson,0.855,,153.69,",nn00659487,",1.4,ml,,nn,6.0,"16km NE of Austin, Nevada",0.1977,30,",nn,",reviewed,1538585787099,"M 1.4 - 16km NE of Austin, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538618714425,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659487 +,,73093081,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093081&format=geojson,0.01078,,78.0,",nc73093081,",0.88,md,,nc,9.0,"7km NW of The Geysers, CA",0.04,12,",nc,",automatic,1538585347540,"M 0.9 - 7km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538589363788,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093081 +,,73093076,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093076&format=geojson,0.01077,,67.0,",nc73093076,",0.94,md,,nc,16.0,"7km NW of The Geysers, CA",0.03,14,",nc,",automatic,1538584939930,"M 0.9 - 7km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538588042659,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093076 +,,20270241,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270241&format=geojson,,,,",ak20270241,",1.4,ml,,ak,,"115km NNW of Arctic Village, Alaska",0.71,30,",ak,",reviewed,1538584539975,"M 1.4 - 115km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219851446,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270241 +,,73093071,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093071&format=geojson,0.02253,,127.0,",nc73093071,",1.07,md,,nc,7.0,"5km SSE of Loyola, CA",0.03,18,",nc,",reviewed,1538584484320,"M 1.1 Quarry Blast - 5km SSE of Loyola, CA",0,quarry blast,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538607236210,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093071 +,,37378226,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37378226&format=geojson,0.07672,,230.0,",ci37378226,",0.58,ml,,ci,13.0,"11km ENE of Aguanga, CA",0.09,5,",ci,",reviewed,1538584234620,"M 0.6 - 11km ENE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538584958944,https://earthquake.usgs.gov/earthquakes/eventpage/ci37378226 +,,1000ha11,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000ha11&format=geojson,4.554,,190.0,",us1000ha11,",4.4,mb,,us,,"45km SSE of Ndoi Island, Fiji",0.54,298,",us,",reviewed,1538583754980,"M 4.4 - 45km SSE of Ndoi Island, Fiji",0,earthquake,",geoserve,origin,phase-data,",-720.0,1539234427040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000ha11 +,,37378202,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37378202&format=geojson,0.04718,,79.0,",ci37378202,",0.87,ml,,ci,29.0,"14km ESE of Anza, CA",0.14,12,",ci,",reviewed,1538583473720,"M 0.9 - 14km ESE of Anza, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538587030251,https://earthquake.usgs.gov/earthquakes/eventpage/ci37378202 +,,20270240,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270240&format=geojson,,,,",ak20270240,",1.2,ml,,ak,,"53km E of Cape Yakataga, Alaska",0.62,22,",ak,",reviewed,1538583358733,"M 1.2 Ice Quake - 53km E of Cape Yakataga, Alaska",0,ice quake,",geoserve,origin,phase-data,",-540.0,1539219850895,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270240 +,,20276420,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276420&format=geojson,,,,",ak20276420,",1.3,ml,,ak,,"35km NE of Fritz Creek, Alaska",0.56,26,",ak,",reviewed,1538582813363,"M 1.3 - 35km NE of Fritz Creek, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219850385,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276420 +,,20276419,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276419&format=geojson,,,,",ak20276419,",1.0,ml,,ak,,"51km W of Haines, Alaska",0.74,15,",ak,",reviewed,1538582731576,"M 1.0 - 51km W of Haines, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219849872,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276419 +,,37378170,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37378170&format=geojson,0.01889,,66.0,",ci37378170,",0.84,ml,,ci,31.0,"9km NE of Aguanga, CA",0.18,11,",ci,",reviewed,1538582543130,"M 0.8 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1538587091820,https://earthquake.usgs.gov/earthquakes/eventpage/ci37378170 +,,20270236,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270236&format=geojson,,,,",ak20270236,",1.5,ml,,ak,,"93km NNW of Nikiski, Alaska",0.56,35,",ak,",reviewed,1538582225468,"M 1.5 - 93km NNW of Nikiski, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219849289,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270236 +,,20270235,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270235&format=geojson,,,,",ak20270235,",1.2,ml,,ak,,"28km SE of Anchorage, Alaska",0.25,22,",ak,",reviewed,1538582040789,"M 1.2 - 28km SE of Anchorage, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219848743,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270235 +,,1000h6b5,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h6b5&format=geojson,2.747,,84.0,",us1000h6b5,",4.5,mb,,us,,"25km S of Lailunggi, Indonesia",1.03,312,",us,",reviewed,1538582006140,"M 4.5 - 25km S of Lailunggi, Indonesia",0,earthquake,",geoserve,origin,phase-data,",480.0,1539234017040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h6b5 +,,73093066,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093066&format=geojson,0.1494,,213.0,",nc73093066,",1.3,md,,nc,9.0,"31km NE of Viola, CA",0.02,26,",nc,",reviewed,1538581883440,"M 1.3 - 31km NE of Viola, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538602025021,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093066 +,,00659433,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659433&format=geojson,0.26,,115.05,",nn00659433,",1.9,ml,,nn,25.0,"13km ESE of Fernley, Nevada",0.1391,56,",nn,",reviewed,1538581796017,"M 1.9 - 13km ESE of Fernley, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538618689786,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659433 +,,1000ha10,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000ha10&format=geojson,10.905,,117.0,",us1000ha10,",4.5,mb,,us,,"2km NE of Bulusan, Philippines",0.75,312,",us,",reviewed,1538581570230,"M 4.5 - 2km NE of Bulusan, Philippines",0,earthquake,",geoserve,origin,phase-data,",480.0,1539233131040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000ha10 +,,20270233,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270233&format=geojson,,,,",ak20270233,",1.8,ml,,ak,,"161km S of Kotzebue, Alaska",0.73,50,",ak,",reviewed,1538580717519,"M 1.8 - 161km S of Kotzebue, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219848200,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270233 +,,37378146,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37378146&format=geojson,0.008981,,126.0,",ci37378146,",0.57,ml,,ci,10.0,"15km NE of Little Lake, CA",0.07,5,",ci,",reviewed,1538580505400,"M 0.6 - 15km NE of Little Lake, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538584774974,https://earthquake.usgs.gov/earthquakes/eventpage/ci37378146 +,3.1,1000h6ac,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h6ac&format=geojson,2.082,15.0,118.0,",us1000h6ac,",4.9,mb,,us,,"15km ENE of Hasaki, Japan",1.35,374,",us,",reviewed,1538579732490,"M 4.9 - 15km ENE of Hasaki, Japan",0,earthquake,",dyfi,geoserve,origin,phase-data,",540.0,1539230846942,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h6ac +,,20276415,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276415&format=geojson,,,,",ak20276415,us1000haes,",2.5,ml,,ak,,"87km S of Chignik Lake, Alaska",0.67,96,",ak,us,",reviewed,1538579563044,"M 2.5 - 87km S of Chignik Lake, Alaska",0,earthquake,",geoserve,origin,phase-data,",-660.0,1539228596040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276415 +,,73093061,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093061&format=geojson,0.008124,,153.0,",nc73093061,",0.44,md,,nc,6.0,"3km NW of The Geysers, CA",0.01,3,",nc,",automatic,1538579545370,"M 0.4 - 3km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538581442022,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093061 +,,20276414,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276414&format=geojson,,,,",ak20276414,",2.4,ml,,ak,,"33km SSE of Adak, Alaska",0.26,89,",ak,",reviewed,1538579388916,"M 2.4 - 33km SSE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539219847102,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276414 +,,73093056,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093056&format=geojson,0.005359,,97.0,",nc73093056,",1.09,md,,nc,17.0,"9km NW of The Geysers, CA",0.04,18,",nc,",automatic,1538579050740,"M 1.1 - 9km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538580783959,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093056 +,,20270232,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270232&format=geojson,,,,",ak20270232,",0.6,ml,,ak,,"153km WNW of Haines Junction, Canada",0.38,6,",ak,",reviewed,1538579038554,"M 0.6 - 153km WNW of Haines Junction, Canada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539219846576,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270232 +,,73093051,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093051&format=geojson,0.002218,,38.0,",nc73093051,",0.61,md,,nc,27.0,"7km NW of The Geysers, CA",0.04,6,",nc,",reviewed,1538578915420,"M 0.6 - 7km NW of The Geysers, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538603402169,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093051 +,,20270230,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270230&format=geojson,,,,",ak20270230,",1.1,ml,,ak,,"66km E of Cape Yakataga, Alaska",0.5,19,",ak,",reviewed,1538578657075,"M 1.1 - 66km E of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219845965,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270230 +,,73093046,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093046&format=geojson,0.03968,,68.0,",nc73093046,",0.86,md,,nc,12.0,"15km E of Seven Trees, CA",0.02,11,",nc,",reviewed,1538578626070,"M 0.9 - 15km E of Seven Trees, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538594643309,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093046 +,,20276411,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276411&format=geojson,,,,",ak20276411,",2.1,ml,,ak,,"72km SSE of Tanaga Volcano, Alaska",0.46,68,",ak,",reviewed,1538578094107,"M 2.1 - 72km SSE of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-720.0,1539219845434,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276411 +,,61791226,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61791226&format=geojson,0.02572,,124.0,",av61791226,",-0.11,ml,,av,4.0,"42km ENE of Adak, Alaska",0.09,0,",av,",reviewed,1538578053790,"M -0.1 - 42km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538598355090,https://earthquake.usgs.gov/earthquakes/eventpage/av61791226 +,,70629392,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70629392&format=geojson,0.03468,,131.0,",hv70629392,",1.73,md,,hv,37.0,"3km ESE of Pahala, Hawaii",0.1,46,",hv,",reviewed,1538577818230,"M 1.7 - 3km ESE of Pahala, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538602293860,https://earthquake.usgs.gov/earthquakes/eventpage/hv70629392 +,,37378122,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37378122&format=geojson,0.01389,,63.0,",ci37378122,",0.17,ml,,ci,21.0,"9km NE of Aguanga, CA",0.16,0,",ci,",reviewed,1538577414560,"M 0.2 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538589986808,https://earthquake.usgs.gov/earthquakes/eventpage/ci37378122 +,,73093041,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093041&format=geojson,0.0188,,72.0,",nc73093041,",1.07,md,,nc,10.0,"2km ENE of The Geysers, CA",0.02,18,",nc,",automatic,1538577245880,"M 1.1 - 2km ENE of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538586123467,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093041 +,,20270229,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270229&format=geojson,,,,",ak20270229,",1.3,ml,,ak,,"103km NW of Arctic Village, Alaska",0.52,26,",ak,",reviewed,1538576837020,"M 1.3 - 103km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219844870,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270229 +,,20270227,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270227&format=geojson,,,,",ak20270227,",1.0,ml,,ak,,"3km E of Big Lake, Alaska",0.49,15,",ak,",reviewed,1538576596199,"M 1.0 - 3km E of Big Lake, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219844202,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270227 +,,73093036,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093036&format=geojson,0.008117,,72.0,",nc73093036,",1.13,md,,nc,18.0,"7km NW of The Geysers, CA",0.04,20,",nc,",automatic,1538576397270,"M 1.1 - 7km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538584442307,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093036 +,,20270223,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270223&format=geojson,,,,",ak20270223,",1.9,ml,,ak,,"121km NNW of Arctic Village, Alaska",0.88,56,",ak,",reviewed,1538575463502,"M 1.9 - 121km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219843614,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270223 +,,70629297,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70629297&format=geojson,0.0952,,206.0,",hv70629297,",1.92,md,,hv,29.0,"27km S of Volcano, Hawaii",0.12,57,",hv,",reviewed,1538575409160,"M 1.9 - 27km S of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538621650610,https://earthquake.usgs.gov/earthquakes/eventpage/hv70629297 +,,73093031,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093031&format=geojson,0.05096,,178.0,",nc73093031,",0.94,md,,nc,23.0,"13km W of Toms Place, CA",0.06,14,",nc,",reviewed,1538575291340,"M 0.9 - 13km W of Toms Place, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538588704711,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093031 +,,00659475,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659475&format=geojson,0.362,,103.64,",nn00659475,",0.7,ml,,nn,11.0,"39km SE of Bridgeport, California",0.1712,8,",nn,",reviewed,1538574761534,"M 0.7 - 39km SE of Bridgeport, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538618713024,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659475 +,,00659469,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659469&format=geojson,0.295,,225.2,",nn00659469,",0.9,ml,,nn,9.0,"23km SSW of Alamo, Nevada",0.2234,12,",nn,",reviewed,1538574740434,"M 0.9 - 23km SSW of Alamo, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538618706122,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659469 +,,73093026,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093026&format=geojson,0.2165,,334.0,",nc73093026,",1.22,md,,nc,12.0,"24km ESE of Yosemite Valley, CA",0.04,23,",nc,",reviewed,1538574533610,"M 1.2 - 24km ESE of Yosemite Valley, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538600522880,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093026 +,,20270218,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270218&format=geojson,,,,",ak20270218,",1.8,ml,,ak,,"30km W of Anchorage, Alaska",0.76,50,",ak,",reviewed,1538574337169,"M 1.8 - 30km W of Anchorage, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219843003,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270218 +,,73093021,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093021&format=geojson,0.2154,,251.0,",nc73093021,",1.39,md,,nc,18.0,"25km SE of Yosemite Valley, CA",0.07,30,",nc,",reviewed,1538574334860,"M 1.4 - 25km SE of Yosemite Valley, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538598962731,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093021 +,,20270215,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270215&format=geojson,,,,",ak20270215,",1.3,ml,,ak,,"144km NNE of Cape Yakataga, Alaska",0.34,26,",ak,",reviewed,1538574218617,"M 1.3 - 144km NNE of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219842417,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270215 +,,20270213,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270213&format=geojson,,,,",ak20270213,",0.5,ml,,ak,,"36km NNE of Healy, Alaska",0.63,4,",ak,",reviewed,1538573568872,"M 0.5 - 36km NNE of Healy, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219841863,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270213 +,,73093016,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093016&format=geojson,0.01115,,84.0,",nc73093016,",0.43,md,,nc,14.0,"2km WNW of Anderson Springs, CA",0.04,3,",nc,",reviewed,1538573550410,"M 0.4 - 2km WNW of Anderson Springs, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538604844165,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093016 +,,37378090,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37378090&format=geojson,0.08297,,66.0,",ci37378090,",0.75,ml,,ci,33.0,"9km NE of Cabazon, CA",0.13,9,",ci,",reviewed,1538573511420,"M 0.8 - 9km NE of Cabazon, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538589698089,https://earthquake.usgs.gov/earthquakes/eventpage/ci37378090 +,,70629247,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70629247&format=geojson,0.03079,,44.0,",hv70629247,",2.38,ml,,hv,51.0,"22km ENE of Honaunau-Napoopoo, Hawaii",0.13,87,",hv,",reviewed,1538573399160,"M 2.4 - 22km ENE of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538605016800,https://earthquake.usgs.gov/earthquakes/eventpage/hv70629247 +,,70629242,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70629242&format=geojson,0.04346,,115.0,",hv70629242,",0.81,md,,hv,16.0,"14km SE of Volcano, Hawaii",0.08,10,",hv,",reviewed,1538573389800,"M 0.8 - 14km SE of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538620600450,https://earthquake.usgs.gov/earthquakes/eventpage/hv70629242 +,,20270212,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270212&format=geojson,,,,",ak20270212,",2.4,ml,,ak,,"70km SW of Unalaska, Alaska",0.88,89,",ak,",reviewed,1538573258613,"M 2.4 - 70km SW of Unalaska, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219841324,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270212 +,,73093011,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093011&format=geojson,0.21,,279.0,",nc73093011,",1.32,md,,nc,20.0,"24km ESE of Yosemite Valley, CA",0.04,27,",nc,",reviewed,1538573119270,"M 1.3 - 24km ESE of Yosemite Valley, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538595782422,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093011 +,,73093006,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093006&format=geojson,0.2064,,277.0,",nc73093006,",1.35,md,,nc,20.0,"25km ESE of Yosemite Valley, CA",0.03,28,",nc,",reviewed,1538573061020,"M 1.4 - 25km ESE of Yosemite Valley, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538594224253,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093006 +,,37378082,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37378082&format=geojson,0.02932,,39.0,",ci37378082,",0.11,ml,,ci,23.0,"9km ENE of Aguanga, CA",0.11,0,",ci,",reviewed,1538573014140,"M 0.1 - 9km ENE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538589167529,https://earthquake.usgs.gov/earthquakes/eventpage/ci37378082 +,,37378074,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37378074&format=geojson,0.01651,,184.0,",ci37378074,",0.7,ml,,ci,26.0,"9km NNE of Borrego Springs, CA",0.18,8,",ci,",reviewed,1538572278110,"M 0.7 - 9km NNE of Borrego Springs, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538684760552,https://earthquake.usgs.gov/earthquakes/eventpage/ci37378074 +,,73093001,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73093001&format=geojson,0.08987,,121.0,",nc73093001,",1.59,md,,nc,30.0,"16km WSW of Toms Place, CA",0.05,39,",nc,",reviewed,1538572159320,"M 1.6 - 16km WSW of Toms Place, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538604602349,https://earthquake.usgs.gov/earthquakes/eventpage/nc73093001 +,,20270210,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270210&format=geojson,,,,",ak20270210,",1.1,ml,,ak,,"3km E of Big Lake, Alaska",0.42,19,",ak,",reviewed,1538571769005,"M 1.1 - 3km E of Big Lake, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219840779,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270210 +,,37378058,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37378058&format=geojson,0.08213,,93.0,",ci37378058,",1.28,ml,,ci,45.0,"9km N of Borrego Springs, CA",0.21,25,",ci,",reviewed,1538570880560,"M 1.3 - 9km N of Borrego Springs, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1538573438750,https://earthquake.usgs.gov/earthquakes/eventpage/ci37378058 +,,00659421,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659421&format=geojson,0.245,,178.7,",nn00659421,",0.7,ml,,nn,15.0,"40km ESE of Big Pine, California",0.1522,8,",nn,",reviewed,1538570777195,"M 0.7 - 40km ESE of Big Pine, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538618681740,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659421 +,,1000h68e,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h68e&format=geojson,2.745,,80.0,",us1000h68e,",5.3,mb,,us,,"29km SSW of Nggongi, Indonesia",1.2,432,",us,",reviewed,1538570285120,"M 5.3 - 29km SSW of Nggongi, Indonesia",1,earthquake,",geoserve,moment-tensor,origin,phase-data,",480.0,1538688306040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h68e +,,20270208,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270208&format=geojson,,,,",ak20270208,",1.4,ml,,ak,,"102km NNW of Arctic Village, Alaska",0.49,30,",ak,",reviewed,1538569838755,"M 1.4 - 102km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219840241,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270208 +,,37378042,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37378042&format=geojson,0.004418,,59.0,",ci37378042,",0.48,ml,,ci,19.0,"10km NE of Aguanga, CA",0.12,4,",ci,",reviewed,1538569382170,"M 0.5 - 10km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1538573446460,https://earthquake.usgs.gov/earthquakes/eventpage/ci37378042 +,,37378034,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37378034&format=geojson,0.009848,,32.0,",ci37378034,",1.13,ml,,ci,45.0,"9km NE of Aguanga, CA",0.2,20,",ci,",reviewed,1538569151320,"M 1.1 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1538573510030,https://earthquake.usgs.gov/earthquakes/eventpage/ci37378034 +,,37378002,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37378002&format=geojson,0.08853,,41.0,",ci37378002,",1.04,ml,,ci,27.0,"5km SSE of Wrightwood, CA",0.22,17,",ci,",reviewed,1538568827440,"M 1.0 - 5km SSE of Wrightwood, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538573416776,https://earthquake.usgs.gov/earthquakes/eventpage/ci37378002 +,,73092996,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092996&format=geojson,0.01448,,55.0,",nc73092996,",0.56,md,,nc,27.0,"6km NW of The Geysers, CA",0.04,5,",nc,",reviewed,1538568266910,"M 0.6 - 6km NW of The Geysers, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538592122057,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092996 +,,1000h681,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h681&format=geojson,2.045,,184.0,",ak20270202,us1000h681,",3.6,ml,,us,,"223km SE of Kodiak, Alaska",0.53,199,",ak,us,",reviewed,1538568198540,"M 3.6 - 223km SE of Kodiak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539219839372,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h681 +,,70629097,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70629097&format=geojson,0.0421,,94.0,",hv70629097,",1.32,md,,hv,47.0,"12km S of Volcano, Hawaii",0.09,27,",hv,",reviewed,1538567941830,"M 1.3 - 12km S of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538689399860,https://earthquake.usgs.gov/earthquakes/eventpage/hv70629097 +,,20270200,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270200&format=geojson,,,,",ak20270200,",1.6,ml,,ak,,"168km NNW of Kobuk, Alaska",0.44,39,",ak,",reviewed,1538567817361,"M 1.6 - 168km NNW of Kobuk, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219838839,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270200 +,,1000h67z,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h67z&format=geojson,2.702,,79.0,",us1000h67z,",4.6,mb,,us,,"43km SSE of Nggongi, Indonesia",0.92,326,",us,",reviewed,1538567638690,"M 4.6 - 43km SSE of Nggongi, Indonesia",0,earthquake,",geoserve,origin,phase-data,",480.0,1538569027040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h67z +,,37377994,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37377994&format=geojson,0.02782,,57.0,",ci37377994,",0.49,ml,,ci,21.0,"8km NE of Aguanga, CA",0.15,4,",ci,",reviewed,1538567561820,"M 0.5 - 8km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538573435771,https://earthquake.usgs.gov/earthquakes/eventpage/ci37377994 +,,20270198,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270198&format=geojson,,,,",ak20270198,",1.2,ml,,ak,,"42km NNE of Nikiski, Alaska",0.54,22,",ak,",reviewed,1538567383926,"M 1.2 - 42km NNE of Nikiski, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219838267,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270198 +,,2018276006,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018276006&format=geojson,0.4445,,263.0,",pr2018276006,",2.78,md,,pr,14.0,"40km N of Dorado, Puerto Rico",0.19,119,",pr,",reviewed,1538567159360,"M 2.8 - 40km N of Dorado, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538569015385,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018276006 +,,73092991,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092991&format=geojson,0.006131,,72.0,",nc73092991,",0.88,md,,nc,12.0,"6km NW of The Geysers, CA",0.02,12,",nc,",automatic,1538567085310,"M 0.9 - 6km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538569623891,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092991 +,,73092986,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092986&format=geojson,0.005333,,100.0,",nc73092986,",0.57,md,,nc,7.0,"9km NW of The Geysers, CA",0.01,5,",nc,",automatic,1538566791690,"M 0.6 - 9km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538576042487,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092986 +,,73092976,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092976&format=geojson,0.007019,,227.0,",nc73092976,",0.74,md,,nc,6.0,"9km NW of The Geysers, CA",0.02,8,",nc,",automatic,1538566723160,"M 0.7 - 9km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538572623167,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092976 +,,00659419,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659419&format=geojson,0.128,,156.69,",nn00659419,",1.0,ml,,nn,16.0,"27km WSW of Truckee, California",0.1751,15,",nn,",reviewed,1538566702771,"M 1.0 - 27km WSW of Truckee, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538618677911,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659419 +,,37377970,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37377970&format=geojson,0.01291,,45.0,",ci37377970,",0.29,ml,,ci,17.0,"11km NE of Aguanga, CA",0.13,1,",ci,",reviewed,1538566592440,"M 0.3 - 11km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538573432976,https://earthquake.usgs.gov/earthquakes/eventpage/ci37377970 +,,37377962,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37377962&format=geojson,0.02979,,120.0,",ci37377962,",0.24,ml,,ci,11.0,"8km ENE of Aguanga, CA",0.1,1,",ci,",reviewed,1538566418760,"M 0.2 - 8km ENE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538573450341,https://earthquake.usgs.gov/earthquakes/eventpage/ci37377962 +,,20270195,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270195&format=geojson,,,,",ak20270195,",1.6,ml,,ak,,"122km NW of Arctic Village, Alaska",0.46,39,",ak,",reviewed,1538566283103,"M 1.6 - 122km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219837720,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270195 +,,37377954,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37377954&format=geojson,0.00718,,38.0,",ci37377954,",0.44,ml,,ci,20.0,"10km NE of Aguanga, CA",0.16,3,",ci,",reviewed,1538566004630,"M 0.4 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538573466847,https://earthquake.usgs.gov/earthquakes/eventpage/ci37377954 +,,00659416,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659416&format=geojson,0.036,,121.19,",nn00659416,",-0.4,ml,,nn,8.0,"44km E of Beatty, Nevada",0.1498,0,",nn,",reviewed,1538565864376,"M -0.4 - 44km E of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538618672209,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659416 +,,73092971,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092971&format=geojson,0.05849,,232.0,",nc73092971,",0.62,md,,nc,22.0,"14km WSW of Toms Place, CA",0.06,6,",nc,",reviewed,1538565832740,"M 0.6 - 14km WSW of Toms Place, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538592602104,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092971 +,,37377946,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37377946&format=geojson,0.01938,,31.0,",ci37377946,",0.97,ml,,ci,46.0,"8km NE of Aguanga, CA",0.13,14,",ci,",reviewed,1538565458710,"M 1.0 - 8km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1538584680650,https://earthquake.usgs.gov/earthquakes/eventpage/ci37377946 +,,37377938,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37377938&format=geojson,0.01487,,40.0,",ci37377938,",0.56,ml,,ci,23.0,"9km NE of Aguanga, CA",0.15,5,",ci,",reviewed,1538564744890,"M 0.6 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1538573581230,https://earthquake.usgs.gov/earthquakes/eventpage/ci37377938 +,,20270193,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270193&format=geojson,,,,",ak20270193,",1.5,ml,,ak,,"166km S of Kotzebue, Alaska",0.54,35,",ak,",reviewed,1538564702133,"M 1.5 - 166km S of Kotzebue, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219837188,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270193 +,,20270190,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270190&format=geojson,,,,",ak20270190,",1.3,ml,,ak,,"31km WSW of Kobuk, Alaska",0.47,26,",ak,",reviewed,1538564510240,"M 1.3 - 31km WSW of Kobuk, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219836621,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270190 +,,37377930,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37377930&format=geojson,0.08452,,100.0,",ci37377930,",1.02,ml,,ci,34.0,"9km NNE of Borrego Springs, CA",0.21,16,",ci,",reviewed,1538564299000,"M 1.0 - 9km NNE of Borrego Springs, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538573500979,https://earthquake.usgs.gov/earthquakes/eventpage/ci37377930 +,,20270188,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270188&format=geojson,,,,",ak20270188,",1.3,ml,,ak,,"51km ENE of Cantwell, Alaska",0.81,26,",ak,",reviewed,1538564099612,"M 1.3 - 51km ENE of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219836025,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270188 +,,37377922,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37377922&format=geojson,0.09309,,28.0,",ci37377922,",1.94,ml,,ci,61.0,"10km NE of Ocotillo Wells, CA",0.22,58,",ci,",reviewed,1538563083660,"M 1.9 - 10km NE of Ocotillo Wells, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538586986654,https://earthquake.usgs.gov/earthquakes/eventpage/ci37377922 +,,37377914,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37377914&format=geojson,0.09465,,27.0,",ci37377914,",2.34,ml,,ci,79.0,"10km NE of Ocotillo Wells, CA",0.26,84,",ci,",reviewed,1538563040200,"M 2.3 - 10km NE of Ocotillo Wells, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1538585228730,https://earthquake.usgs.gov/earthquakes/eventpage/ci37377914 +,,37377906,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37377906&format=geojson,0.094,,27.0,",ci37377906,",1.78,ml,,ci,67.0,"10km NE of Ocotillo Wells, CA",0.22,49,",ci,",reviewed,1538562959980,"M 1.8 - 10km NE of Ocotillo Wells, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538583239561,https://earthquake.usgs.gov/earthquakes/eventpage/ci37377906 +,,73092961,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092961&format=geojson,0.004242,,126.0,",nc73092961,",1.15,md,,nc,10.0,"6km WNW of Cobb, CA",0.02,20,",nc,",automatic,1538562680900,"M 1.2 - 6km WNW of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538568363760,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092961 +,,37377898,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37377898&format=geojson,0.01832,,31.0,",ci37377898,",0.76,ml,,ci,39.0,"9km NE of Aguanga, CA",0.16,9,",ci,",reviewed,1538562382740,"M 0.8 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1538582607230,https://earthquake.usgs.gov/earthquakes/eventpage/ci37377898 +,,00659461,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659461&format=geojson,0.34,,186.53,",nn00659461,",0.8,ml,,nn,8.0,"28km ENE of Bridgeport, California",0.0931,10,",nn,",reviewed,1538561761206,"M 0.8 - 28km ENE of Bridgeport, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538618704640,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659461 +,,20270186,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270186&format=geojson,,,,",ak20270186,",2.2,ml,,ak,,"105km NW of Arctic Village, Alaska",0.87,74,",ak,",reviewed,1538561689800,"M 2.2 - 105km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219835429,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270186 +,,61434186,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61434186&format=geojson,0.006638,,135.0,",uw61434186,",0.31,ml,,uw,7.0,"38km NNE of Amboy, Washington",0.08,1,",uw,",reviewed,1538561636440,"M 0.3 - 38km NNE of Amboy, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538588847790,https://earthquake.usgs.gov/earthquakes/eventpage/uw61434186 +,,70628872,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70628872&format=geojson,0.006512,,40.0,",hv70628872,",1.75,ml,,hv,21.0,"5km SW of Volcano, Hawaii",0.15,47,",hv,",automatic,1538561036050,"M 1.8 - 5km SW of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538561377830,https://earthquake.usgs.gov/earthquakes/eventpage/hv70628872 +,,1000h66t,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h66t&format=geojson,2.71,,79.0,",us1000h66t,",5.0,mww,,us,,"38km S of Nggongi Satu, Indonesia",1.04,385,",us,",reviewed,1538560686080,"M 5.0 - 38km S of Nggongi Satu, Indonesia",1,earthquake,",geoserve,origin,phase-data,",480.0,1538561863040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h66t +,2.0,37377890,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37377890&format=geojson,0.03043,1.0,71.0,",ci37377890,",1.18,ml,,ci,22.0,"13km NE of Little Lake, CA",0.1,22,",ci,",reviewed,1538560617210,"M 1.2 - 13km NE of Little Lake, CA",0,earthquake,",dyfi,geoserve,nearby-cities,origin,phase-data,",-480.0,1538581845862,https://earthquake.usgs.gov/earthquakes/eventpage/ci37377890 +,,61434181,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61434181&format=geojson,0.02085,,108.0,",uw61434181,",0.67,ml,,uw,10.0,"28km NNW of Packwood, Washington",0.08,7,",uw,",reviewed,1538559503220,"M 0.7 - 28km NNW of Packwood, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538588174570,https://earthquake.usgs.gov/earthquakes/eventpage/uw61434181 +,,20270182,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270182&format=geojson,,,,",ak20270182,",2.6,ml,,ak,,"120km NW of Talkeetna, Alaska",0.93,104,",ak,",reviewed,1538559488456,"M 2.6 - 120km NW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219834683,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270182 +,,70628842,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70628842&format=geojson,0.004374,,59.0,",hv70628842,",1.85,ml,,hv,27.0,"4km WSW of Volcano, Hawaii",0.08,53,",hv,",reviewed,1538559377350,"M 1.9 - 4km WSW of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538687146580,https://earthquake.usgs.gov/earthquakes/eventpage/hv70628842 +,,70628837,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70628837&format=geojson,0.01458,,164.0,",hv70628837,",0.62,md,,hv,17.0,"5km W of Volcano, Hawaii",0.12,6,",hv,",reviewed,1538559339820,"M 0.6 - 5km W of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538616230820,https://earthquake.usgs.gov/earthquakes/eventpage/hv70628837 +,,61434176,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61434176&format=geojson,0.1558,,175.0,",uw61434176,",0.82,ml,,uw,7.0,"16km SSE of Buckley, Washington",0.08,10,",uw,",reviewed,1538559095420,"M 0.8 - 16km SSE of Buckley, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538682821860,https://earthquake.usgs.gov/earthquakes/eventpage/uw61434176 +,,20270180,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270180&format=geojson,,,,",ak20270180,",1.6,ml,,ak,,"115km NNW of Arctic Village, Alaska",0.86,39,",ak,",reviewed,1538558958918,"M 1.6 - 115km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219834118,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270180 +,,1000h66f,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h66f&format=geojson,0.312,,114.0,",us1000h66f,",2.9,mb_lg,,us,,"19km N of Taloga, Oklahoma",0.25,129,",us,",reviewed,1538558884880,"M 2.9 - 19km N of Taloga, Oklahoma",0,earthquake,",geoserve,origin,phase-data,",-360.0,1538559797040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h66f +,,20270179,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270179&format=geojson,,,,",ak20270179,",1.0,ml,,ak,,"11km NNW of Tanaina, Alaska",0.3,15,",ak,",reviewed,1538558821889,"M 1.0 - 11km NNW of Tanaina, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219833568,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270179 +,,73092946,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092946&format=geojson,0.006818,,73.0,",nc73092946,",0.57,md,,nc,10.0,"9km NW of The Geysers, CA",0.05,5,",nc,",automatic,1538558755460,"M 0.6 - 9km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538559662934,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092946 +,,20270175,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270175&format=geojson,,,,",ak20270175,",2.6,ml,,ak,,"103km NW of Arctic Village, Alaska",0.54,104,",ak,",reviewed,1538558574044,"M 2.6 - 103km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219832914,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270175 +,,20270171,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270171&format=geojson,,,,",ak20270171,",2.1,ml,,ak,,"41km S of Redoubt Volcano, Alaska",0.42,68,",ak,",reviewed,1538558164302,"M 2.1 - 41km S of Redoubt Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219832261,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270171 +,,2018276005,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018276005&format=geojson,0.0814,,284.0,",pr2018276005,",1.4,md,,pr,3.0,"2km WSW of Boqueron, Puerto Rico",0.34,30,",pr,",reviewed,1538558155600,"M 1.4 - 2km WSW of Boqueron, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538566163160,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018276005 +,,60299117,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60299117&format=geojson,0.08193,,87.0,",uu60299117,",1.31,ml,,uu,13.0,"13km NNE of Old Faithful Geyser, Wyoming",0.19,26,",uu,",reviewed,1538558129440,"M 1.3 - 13km NNE of Old Faithful Geyser, Wyoming",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538579928250,https://earthquake.usgs.gov/earthquakes/eventpage/uu60299117 +,,20270129,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270129&format=geojson,,,,",ak20270129,",1.8,ml,,ak,,"120km NNW of Arctic Village, Alaska",0.8,50,",ak,",reviewed,1538558079783,"M 1.8 - 120km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219831705,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270129 +,,60299122,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60299122&format=geojson,0.08853,,148.0,",uu60299122,",0.8,md,,uu,5.0,"12km NNE of Old Faithful Geyser, Wyoming",0.12,10,",uu,",reviewed,1538558069590,"M 0.8 - 12km NNE of Old Faithful Geyser, Wyoming",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538585969400,https://earthquake.usgs.gov/earthquakes/eventpage/uu60299122 +,,20270126,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270126&format=geojson,,,,",ak20270126,",2.5,ml,,ak,,"102km NW of Arctic Village, Alaska",0.55,96,",ak,",reviewed,1538557769953,"M 2.5 - 102km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219831045,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270126 +,,73092931,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092931&format=geojson,0.005899,,105.0,",nc73092931,",0.57,md,,nc,7.0,"9km NW of The Geysers, CA",0.01,5,",nc,",automatic,1538557390650,"M 0.6 - 9km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538564943447,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092931 +,,70805694,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70805694&format=geojson,0.01304,,228.0,",av70805694,",-0.07,ml,,av,5.0,"100km ESE of King Salmon, Alaska",0.06,0,",av,",reviewed,1538557361760,"M -0.1 - 100km ESE of King Salmon, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538596993940,https://earthquake.usgs.gov/earthquakes/eventpage/av70805694 +,,80312369,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80312369&format=geojson,0.437,,140.0,",mb80312369,",0.65,md,,mb,13.0,"29km SW of Anaconda, Montana",0.15,6,",mb,",reviewed,1538557361080,"M 0.7 - 29km SW of Anaconda, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538689860790,https://earthquake.usgs.gov/earthquakes/eventpage/mb80312369 +,,20276386,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276386&format=geojson,,,,",ak20276386,",1.0,ml,,ak,,"62km SSW of Cantwell, Alaska",0.4,15,",ak,",reviewed,1538556330433,"M 1.0 - 62km SSW of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219830500,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276386 +,,73092926,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092926&format=geojson,0.03172,,178.0,",nc73092926,",0.87,md,,nc,9.0,"7km ENE of Pinnacles, CA",0.02,12,",nc,",reviewed,1538556246920,"M 0.9 - 7km ENE of Pinnacles, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538592783125,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092926 +,,20276385,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276385&format=geojson,,,,",ak20276385,",1.9,ml,,ak,,"77km SSW of Kaktovik, Alaska",0.37,56,",ak,",reviewed,1538555992947,"M 1.9 - 77km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219829953,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276385 +,,37377882,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37377882&format=geojson,0.1028,,134.0,",ci37377882,",0.59,ml,,ci,12.0,"11km SSW of Borrego Springs, CA",0.21,5,",ci,",reviewed,1538555942720,"M 0.6 - 11km SSW of Borrego Springs, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538573535588,https://earthquake.usgs.gov/earthquakes/eventpage/ci37377882 +,,37377874,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37377874&format=geojson,0.1005,,28.0,",ci37377874,",1.7,ml,,ci,56.0,"11km SSW of Borrego Springs, CA",0.18,44,",ci,",reviewed,1538555875880,"M 1.7 - 11km SSW of Borrego Springs, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538573533021,https://earthquake.usgs.gov/earthquakes/eventpage/ci37377874 +,,20276384,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276384&format=geojson,,,,",ak20276384,",2.2,ml,,ak,,"70km NE of Kodiak, Alaska",0.56,74,",ak,",reviewed,1538555699976,"M 2.2 - 70km NE of Kodiak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539219829396,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276384 +,,20270124,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270124&format=geojson,,,,",ak20270124,",0.3,ml,,ak,,"38km NNE of North Nenana, Alaska",0.51,1,",ak,",reviewed,1538555393647,"M 0.3 - 38km NNE of North Nenana, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219828864,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270124 +,,20270122,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270122&format=geojson,,,,",ak20270122,",0.5,ml,,ak,,"39km NNE of North Nenana, Alaska",0.41,4,",ak,",reviewed,1538554633668,"M 0.5 - 39km NNE of North Nenana, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219828313,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270122 +,,73092906,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092906&format=geojson,0.03056,,92.0,",nc73092906,",0.78,md,,nc,21.0,"17km NW of Parkfield, CA",0.1,9,",nc,",reviewed,1538554618060,"M 0.8 - 17km NW of Parkfield, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538608504103,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092906 +,,73092911,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092911&format=geojson,0.03006,,113.0,",nc73092911,",0.4,md,,nc,17.0,"17km NW of Parkfield, CA",0.08,2,",nc,",reviewed,1538554602450,"M 0.4 - 17km NW of Parkfield, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538602683095,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092911 +,,20270118,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270118&format=geojson,,,,",ak20270118,",2.2,ml,,ak,,"25km E of Redoubt Volcano, Alaska",0.83,74,",ak,",reviewed,1538554306787,"M 2.2 - 25km E of Redoubt Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219827620,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270118 +,,20270115,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270115&format=geojson,,,,",ak20270115,",0.9,ml,,ak,,"60km NW of Healy, Alaska",0.78,12,",ak,",reviewed,1538553569894,"M 0.9 - 60km NW of Healy, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219827002,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270115 +,,20270113,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270113&format=geojson,,,,",ak20270113,",1.3,ml,,ak,,"33km W of Nikiski, Alaska",0.38,26,",ak,",reviewed,1538553302507,"M 1.3 - 33km W of Nikiski, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219826359,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270113 +,,20270112,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270112&format=geojson,,,,",ak20270112,",0.8,ml,,ak,,"126km E of Circle, Alaska",0.93,10,",ak,",reviewed,1538553117624,"M 0.8 - 126km E of Circle, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219825794,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270112 +,,37377866,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37377866&format=geojson,0.06757,,126.0,",ci37377866,",0.48,ml,,ci,19.0,"9km SW of Idyllwild, CA",0.08,4,",ci,",reviewed,1538552764600,"M 0.5 - 9km SW of Idyllwild, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538583546019,https://earthquake.usgs.gov/earthquakes/eventpage/ci37377866 +,,20270111,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270111&format=geojson,,,,",ak20270111,",1.3,ml,,ak,,"65km S of Cantwell, Alaska",0.53,26,",ak,",reviewed,1538552692503,"M 1.3 - 65km S of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219825231,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270111 +,,37377858,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37377858&format=geojson,0.004475,,48.0,",ci37377858,",0.2,ml,,ci,27.0,"10km NE of Aguanga, CA",0.15,1,",ci,",reviewed,1538552507920,"M 0.2 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538581288218,https://earthquake.usgs.gov/earthquakes/eventpage/ci37377858 +,,37377850,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37377850&format=geojson,0.04029,,80.0,",ci37377850,",0.6,ml,,ci,25.0,"14km WNW of Anza, CA",0.13,6,",ci,",reviewed,1538552347990,"M 0.6 - 14km WNW of Anza, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538573566378,https://earthquake.usgs.gov/earthquakes/eventpage/ci37377850 +,,73092891,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092891&format=geojson,0.01401,,79.0,",nc73092891,",0.25,md,,nc,15.0,"6km E of Mammoth Lakes, CA",0.03,1,",nc,",reviewed,1538552313610,"M 0.3 - 6km E of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538583542225,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092891 +,2.9,1000h656,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h656&format=geojson,0.067,7.0,90.0,",us1000h656,",3.5,mb_lg,3.49,us,,"9km NNE of Harper, Kansas",0.3,190,",us,",reviewed,1538552201480,"M 3.5 - 9km NNE of Harper, Kansas",0,earthquake,",dyfi,geoserve,origin,phase-data,shakemap,",-360.0,1538788135872,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h656 +,,20270105,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270105&format=geojson,,,,",ak20270105,",1.4,ml,,ak,,"72km ESE of Cape Yakataga, Alaska",0.43,30,",ak,",reviewed,1538551900798,"M 1.4 - 72km ESE of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219824568,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270105 +,,20270096,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270096&format=geojson,,,,",ak20270096,",1.8,ml,,ak,,"97km NW of Arctic Village, Alaska",0.58,50,",ak,",reviewed,1538551646601,"M 1.8 - 97km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219823970,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270096 +,,20270093,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270093&format=geojson,,,,",ak20270093,",1.1,ml,,ak,,"32km NNW of Whittier, Alaska",0.42,19,",ak,",reviewed,1538551596131,"M 1.1 - 32km NNW of Whittier, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219823374,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270093 +,,20270092,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270092&format=geojson,,,,",ak20270092,",1.8,ml,,ak,,"129km NNW of Arctic Village, Alaska",0.76,50,",ak,",reviewed,1538551565825,"M 1.8 - 129km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219822804,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270092 +,,61434141,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61434141&format=geojson,0.3324,,274.0,",uw61434141,",1.09,ml,,uw,9.0,"2km SSW of Lake Shore, Washington",0.15,18,",uw,",reviewed,1538551474730,"M 1.1 - 2km SSW of Lake Shore, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538590501540,https://earthquake.usgs.gov/earthquakes/eventpage/uw61434141 +,,20270089,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270089&format=geojson,,,,",ak20270089,",1.3,ml,,ak,,"90km NW of Cape Yakataga, Alaska",0.59,26,",ak,",reviewed,1538551461625,"M 1.3 - 90km NW of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219822187,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270089 +,,73092886,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092886&format=geojson,0.01563,,72.0,",nc73092886,",0.91,md,,nc,18.0,"8km E of Gilroy, CA",0.05,13,",nc,",reviewed,1538551439430,"M 0.9 - 8km E of Gilroy, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538593384180,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092886 +,,1000h651,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h651&format=geojson,0.53,,115.0,",us1000h651,",4.6,mb,,us,,"52km NE of Yelizovo, Russia",0.64,326,",us,",reviewed,1538551288370,"M 4.6 - 52km NE of Yelizovo, Russia",0,earthquake,",geoserve,origin,phase-data,",720.0,1538553527040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h651 +,,60299067,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60299067&format=geojson,0.09737,,164.0,",uu60299067,",1.14,ml,,uu,6.0,"12km E of Kanab, Utah",0.09,20,",uu,",reviewed,1538550957050,"M 1.1 - 12km E of Kanab, Utah",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538588218400,https://earthquake.usgs.gov/earthquakes/eventpage/uu60299067 +,,37377842,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37377842&format=geojson,0.06822,,118.0,",ci37377842,nc73092881,",2.05,ml,,ci,30.0,"15km N of Simmler, CA",0.25,65,",ci,nc,",reviewed,1538550127580,"M 2.1 - 15km N of Simmler, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538614682679,https://earthquake.usgs.gov/earthquakes/eventpage/ci37377842 +,,2018276004,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018276004&format=geojson,0.4189,,287.0,",pr2018276004,",2.65,md,,pr,16.0,"46km W of Pole Ojea, Puerto Rico",0.39,108,",pr,",reviewed,1538550116870,"M 2.7 - 46km W of Pole Ojea, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-300.0,1538566088984,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018276004 +,,73092876,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092876&format=geojson,0.005931,,54.0,",nc73092876,",0.95,md,,nc,14.0,"9km NW of The Geysers, CA",0.03,14,",nc,",automatic,1538550057960,"M 1.0 - 9km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538553363325,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092876 +,,20270087,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270087&format=geojson,,,,",ak20270087,",0.5,ml,,ak,,"37km NNE of North Nenana, Alaska",0.53,4,",ak,",reviewed,1538549847009,"M 0.5 - 37km NNE of North Nenana, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219821652,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270087 +,,20270086,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270086&format=geojson,,,,",ak20270086,",1.5,ml,,ak,,"89km NNE of Nome, Alaska",0.83,35,",ak,",reviewed,1538549579823,"M 1.5 - 89km NNE of Nome, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219821127,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270086 +,,20270082,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270082&format=geojson,,,,",ak20270082,",2.3,ml,,ak,,"36km NNE of North Nenana, Alaska",0.65,81,",ak,",reviewed,1538549190142,"M 2.3 - 36km NNE of North Nenana, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219820511,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270082 +,,00659459,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659459&format=geojson,0.121,,101.57,",nn00659459,",0.0,ml,,nn,8.0,"13km S of Verdi, Nevada",0.1331,0,",nn,",reviewed,1538548416519,"M 0.0 - 13km S of Verdi, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538618702817,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659459 +,,37377834,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37377834&format=geojson,0.04056,,52.0,",ci37377834,",1.41,ml,,ci,65.0,"5km ENE of Yucaipa, CA",0.19,31,",ci,",reviewed,1538548044910,"M 1.4 - 5km ENE of Yucaipa, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1538573694290,https://earthquake.usgs.gov/earthquakes/eventpage/ci37377834 +,,80312159,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80312159&format=geojson,0.131,,112.0,",mb80312159,",1.17,ml,,mb,9.0,"24km SSE of Lincoln, Montana",0.1,21,",mb,",reviewed,1538547378270,"M 1.2 - 24km SSE of Lincoln, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538574023400,https://earthquake.usgs.gov/earthquakes/eventpage/mb80312159 +,,20270076,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270076&format=geojson,,,,",ak20270076,",1.7,ml,,ak,,"63km ENE of Cape Yakataga, Alaska",1.0,44,",ak,",reviewed,1538547368466,"M 1.7 Ice Quake - 63km ENE of Cape Yakataga, Alaska",0,ice quake,",geoserve,origin,phase-data,",-540.0,1539219819890,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270076 +,,20270075,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270075&format=geojson,,,,",ak20270075,",1.2,ml,,ak,,"60km ENE of Cape Yakataga, Alaska",0.55,22,",ak,",reviewed,1538547279382,"M 1.2 Ice Quake - 60km ENE of Cape Yakataga, Alaska",0,ice quake,",geoserve,origin,phase-data,",-540.0,1539219819348,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270075 +,,61791161,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61791161&format=geojson,0.03766,,123.0,",av61791161,",0.64,ml,,av,4.0,"29km W of Chignik Lake, Alaska",0.07,6,",av,",reviewed,1538547151490,"M 0.6 - 29km W of Chignik Lake, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538596023220,https://earthquake.usgs.gov/earthquakes/eventpage/av61791161 +,,37377826,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37377826&format=geojson,0.1139,,102.0,",nn00659412,ci37377826,",1.05,ml,,ci,17.0,"43km SW of Stovepipe Wells, CA",0.13,17,",nn,ci,",reviewed,1538546823440,"M 1.1 - 43km SW of Stovepipe Wells, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538580389814,https://earthquake.usgs.gov/earthquakes/eventpage/ci37377826 +,,00659457,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659457&format=geojson,0.854,,213.55,",nn00659457,",1.2,ml,,nn,7.0,"27km NE of Austin, Nevada",0.2024,22,",nn,",reviewed,1538546738359,"M 1.2 - 27km NE of Austin, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538618701201,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659457 +,,20270071,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270071&format=geojson,,,,",ak20270071,",1.2,ml,,ak,,"62km WNW of Skagway, Alaska",0.78,22,",ak,",reviewed,1538546475769,"M 1.2 - 62km WNW of Skagway, Alaska",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539219818790,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270071 +,,37377802,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37377802&format=geojson,0.01834,,95.0,",ci37377802,",0.8,ml,,ci,43.0,"2km WNW of Borrego Springs, CA",0.19,10,",ci,",reviewed,1538546377770,"M 0.8 - 2km WNW of Borrego Springs, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538580130449,https://earthquake.usgs.gov/earthquakes/eventpage/ci37377802 +,,20270068,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270068&format=geojson,,,,",ak20270068,",2.2,ml,,ak,,"80km SSW of Kaktovik, Alaska",0.54,74,",ak,",reviewed,1538546320524,"M 2.2 - 80km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219818175,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270068 +,,20270066,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270066&format=geojson,,,,",ak20270066,",2.1,ml,,ak,,"32km WNW of Redoubt Volcano, Alaska",0.58,68,",ak,",reviewed,1538546251812,"M 2.1 - 32km WNW of Redoubt Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219817563,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270066 +,,70628507,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70628507&format=geojson,0.01474,,137.0,",hv70628507,",0.83,md,,hv,9.0,"15km ESE of Volcano, Hawaii",0.15,11,",hv,",reviewed,1538546208140,"M 0.8 - 15km ESE of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538617415970,https://earthquake.usgs.gov/earthquakes/eventpage/hv70628507 +,,2018276003,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018276003&format=geojson,0.9916,,256.0,",pr2018276003,",2.34,md,,pr,9.0,"51km NNE of Miches, Dominican Republic",0.53,84,",pr,",reviewed,1538546180070,"M 2.3 - 51km NNE of Miches, Dominican Republic",0,earthquake,",geoserve,origin,phase-data,",-300.0,1538554144584,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018276003 +,,20270064,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270064&format=geojson,,,,",ak20270064,",2.0,ml,,ak,,"20km NNW of Fritz Creek, Alaska",0.48,62,",ak,",reviewed,1538546059080,"M 2.0 - 20km NNW of Fritz Creek, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219816916,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270064 +,,1000h63l,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h63l&format=geojson,1.896,,112.0,",us1000h63l,",4.9,mb,,us,,"210km NE of Raoul Island, New Zealand",1.59,369,",us,",reviewed,1538545578690,"M 4.9 - 210km NE of Raoul Island, New Zealand",0,earthquake,",geoserve,origin,phase-data,",-720.0,1538547476040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h63l +,,20270058,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270058&format=geojson,,,,",ak20270058,",1.6,ml,,ak,,"45km SW of Cantwell, Alaska",0.42,39,",ak,",reviewed,1538545298732,"M 1.6 - 45km SW of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219816266,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270058 +,,00659411,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659411&format=geojson,0.271,,164.79,",nn00659411,",0.8,ml,,nn,20.0,"23km NE of Goldfield, Nevada",0.1597,10,",nn,",reviewed,1538545144512,"M 0.8 - 23km NE of Goldfield, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538618670922,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659411 +,,20270051,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270051&format=geojson,,,,",ak20270051,",1.2,ml,,ak,,"62km SSW of Tok, Alaska",0.62,22,",ak,",reviewed,1538544750605,"M 1.2 - 62km SSW of Tok, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219815717,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270051 +,,70628472,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70628472&format=geojson,0.009784,,42.0,",hv70628472,",1.92,ml,,hv,28.0,"4km WSW of Volcano, Hawaii",0.06,57,",hv,",reviewed,1538544719450,"M 1.9 - 4km WSW of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538699107210,https://earthquake.usgs.gov/earthquakes/eventpage/hv70628472 +,,2018276002,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018276002&format=geojson,0.2255,,217.0,",pr2018276002,",2.04,md,,pr,11.0,"18km SSE of Tallaboa, Puerto Rico",0.38,64,",pr,",reviewed,1538544669760,"M 2.0 - 18km SSE of Tallaboa, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538554134336,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018276002 +,,20270057,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270057&format=geojson,,,,",ak20270057,",0.7,ml,,ak,,"56km NW of Cape Yakataga, Alaska",0.2,8,",ak,",reviewed,1538544521310,"M 0.7 - 56km NW of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219815177,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270057 +,,73092866,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092866&format=geojson,0.01529,,156.0,",nc73092866,",0.56,md,,nc,7.0,"6km WNW of The Geysers, CA",0.02,5,",nc,",automatic,1538544440730,"M 0.6 - 6km WNW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538549702965,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092866 +,,37377794,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37377794&format=geojson,0.01062,,45.0,",ci37377794,",0.62,ml,,ci,25.0,"10km NE of Aguanga, CA",0.1,6,",ci,",reviewed,1538544424180,"M 0.6 - 10km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1538573701590,https://earthquake.usgs.gov/earthquakes/eventpage/ci37377794 +,2.6,1000h639,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h639&format=geojson,1.169,2.0,64.0,",us1000h639,",5.3,mb,,us,,"130km SE of Honiara, Solomon Islands",1.13,433,",us,",reviewed,1538544204570,"M 5.3 - 130km SE of Honiara, Solomon Islands",0,earthquake,",dyfi,geoserve,moment-tensor,origin,phase-data,",660.0,1538679946040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h639 +,,00659454,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659454&format=geojson,0.153,,147.38,",nn00659454,",0.3,ml,,nn,14.0,"60km WNW of Beatty, Nevada",0.1965,1,",nn,",reviewed,1538544139029,"M 0.3 - 60km WNW of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538618699245,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659454 +,,37377786,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37377786&format=geojson,0.1351,,150.0,",ci37377786,",0.81,ml,,ci,18.0,"19km ESE of Julian, CA",0.16,10,",ci,",reviewed,1538543915870,"M 0.8 - 19km ESE of Julian, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538573616790,https://earthquake.usgs.gov/earthquakes/eventpage/ci37377786 +,,20270047,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270047&format=geojson,,,,",ak20270047,",1.3,ml,,ak,,"73km NNW of Talkeetna, Alaska",0.43,26,",ak,",reviewed,1538543249269,"M 1.3 - 73km NNW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219814628,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270047 +,,20270044,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270044&format=geojson,,,,",ak20270044,",1.8,ml,,ak,,"125km NNW of Arctic Village, Alaska",0.91,50,",ak,",reviewed,1538543054153,"M 1.8 - 125km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219814025,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270044 +,,20270042,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270042&format=geojson,,,,",ak20270042,",1.7,ml,,ak,,"25km ENE of Nikiski, Alaska",0.46,44,",ak,",reviewed,1538543045491,"M 1.7 - 25km ENE of Nikiski, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219813394,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270042 +,,73092861,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092861&format=geojson,0.1044,,330.0,",nc73092861,",0.81,md,,nc,9.0,"16km WSW of Toms Place, CA",0.05,10,",nc,",reviewed,1538542755840,"M 0.8 - 16km WSW of Toms Place, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538582944164,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092861 +,,20276356,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276356&format=geojson,,,,",ak20276356,",1.3,ml,,ak,,"68km NNW of Talkeetna, Alaska",0.59,26,",ak,",reviewed,1538541979038,"M 1.3 - 68km NNW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219812829,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276356 +,,73092856,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092856&format=geojson,0.02467,,68.0,",nc73092856,",0.12,md,,nc,20.0,"3km E of Mammoth Lakes, CA",0.04,0,",nc,",reviewed,1538541820800,"M 0.1 - 3km E of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538590981978,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092856 +,,37197660,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37197660&format=geojson,0.02882,,67.0,",ci37197660,",0.32,ml,,ci,24.0,"9km ENE of Aguanga, CA",0.13,2,",ci,",reviewed,1538541170910,"M 0.3 - 9km ENE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538579583924,https://earthquake.usgs.gov/earthquakes/eventpage/ci37197660 +,,70628347,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70628347&format=geojson,0.005901,,68.0,",hv70628347,",1.75,ml,,hv,17.0,"4km W of Volcano, Hawaii",0.21,47,",hv,",automatic,1538541145380,"M 1.8 - 4km W of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538541488670,https://earthquake.usgs.gov/earthquakes/eventpage/hv70628347 +,,37377762,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37377762&format=geojson,0.02246,,40.0,",ci37377762,",0.44,ml,,ci,32.0,"10km NE of Aguanga, CA",0.17,3,",ci,",reviewed,1538541142690,"M 0.4 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538579067799,https://earthquake.usgs.gov/earthquakes/eventpage/ci37377762 +,,20270040,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270040&format=geojson,,,,",ak20270040,",1.0,ml,,ak,,"72km E of Cape Yakataga, Alaska",0.53,15,",ak,",reviewed,1538541022048,"M 1.0 Ice Quake - 72km E of Cape Yakataga, Alaska",0,ice quake,",geoserve,origin,phase-data,",-540.0,1539219812308,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270040 +,,20270039,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270039&format=geojson,,,,",ak20270039,",1.0,ml,,ak,,"94km SSW of McGrath, Alaska",0.54,15,",ak,",reviewed,1538540961659,"M 1.0 - 94km SSW of McGrath, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219811727,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270039 +,,00659452,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659452&format=geojson,0.135,,131.81,",nn00659452,",-0.2,ml,,nn,11.0,"37km SSE of Goldfield, Nevada",0.1116,0,",nn,",reviewed,1538540647188,"M -0.2 - 37km SSE of Goldfield, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538618697118,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659452 +,,1000h62f,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h62f&format=geojson,1.83,,98.0,",ak20270011,us1000h62f,",4.6,mb,,us,,"31km NNE of Nikolski, Alaska",0.86,326,",ak,us,",reviewed,1538539978530,"M 4.6 - 31km NNE of Nikolski, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219810976,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h62f +,,20270007,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270007&format=geojson,,,,",ak20270007,",1.1,ml,,ak,,"39km NNE of North Nenana, Alaska",0.51,19,",ak,",reviewed,1538539905700,"M 1.1 - 39km NNE of North Nenana, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219810380,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270007 +,,20270012,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270012&format=geojson,,,,",ak20270012,",0.4,ml,,ak,,"40km NNE of North Nenana, Alaska",0.56,2,",ak,",reviewed,1538539877706,"M 0.4 - 40km NNE of North Nenana, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219809868,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270012 +,,20276350,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276350&format=geojson,,,,",ak20276350,",2.5,ml,,ak,,"101km S of False Pass, Alaska",0.55,96,",ak,",reviewed,1538539713152,"M 2.5 - 101km S of False Pass, Alaska",0,earthquake,",geoserve,origin,phase-data,",-660.0,1539219809316,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276350 +,,00659448,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659448&format=geojson,0.34,,182.03,",nn00659448,",0.4,ml,,nn,10.0,"40km SW of Alamo, Nevada",0.1697,2,",nn,",reviewed,1538539657424,"M 0.4 - 40km SW of Alamo, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538618695204,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659448 +,,20270009,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270009&format=geojson,,,,",ak20270009,",1.8,ml,,ak,,"117km NNW of Arctic Village, Alaska",0.63,50,",ak,",reviewed,1538539475985,"M 1.8 - 117km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219808764,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270009 +,,20270000,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270000&format=geojson,,,,",ak20270000,",2.1,ml,,ak,,"37km NNE of North Nenana, Alaska",0.42,68,",ak,",reviewed,1538539452411,"M 2.1 - 37km NNE of North Nenana, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219808115,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270000 +,,20269999,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20269999&format=geojson,,,,",ak20269999,",1.2,ml,,ak,,"66km W of Valdez, Alaska",0.79,22,",ak,",reviewed,1538539384413,"M 1.2 Ice Quake - 66km W of Valdez, Alaska",0,ice quake,",geoserve,origin,phase-data,",-540.0,1539219807489,https://earthquake.usgs.gov/earthquakes/eventpage/ak20269999 +,,80312154,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80312154&format=geojson,0.096,,111.0,",mb80312154,",1.13,ml,,mb,10.0,"12km SE of Lincoln, Montana",0.07,20,",mb,",reviewed,1538538968970,"M 1.1 - 12km SE of Lincoln, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538574295910,https://earthquake.usgs.gov/earthquakes/eventpage/mb80312154 +,,20276346,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276346&format=geojson,,,,",ak20276346,",2.0,ml,,ak,,"95km NW of Arctic Village, Alaska",0.52,62,",ak,",reviewed,1538538745714,"M 2.0 - 95km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219806977,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276346 +,,20269996,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20269996&format=geojson,,,,",ak20269996,",1.9,ml,,ak,,"96km NW of Arctic Village, Alaska",0.84,56,",ak,",reviewed,1538538707999,"M 1.9 - 96km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219806320,https://earthquake.usgs.gov/earthquakes/eventpage/ak20269996 +,,20269992,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20269992&format=geojson,,,,",ak20269992,",0.8,ml,,ak,,"34km NNE of North Nenana, Alaska",0.52,10,",ak,",reviewed,1538538560206,"M 0.8 - 34km NNE of North Nenana, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219805717,https://earthquake.usgs.gov/earthquakes/eventpage/ak20269992 +,,20269991,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20269991&format=geojson,,,,",ak20269991,",0.6,ml,,ak,,"39km NNE of North Nenana, Alaska",0.75,6,",ak,",reviewed,1538538485100,"M 0.6 - 39km NNE of North Nenana, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219805146,https://earthquake.usgs.gov/earthquakes/eventpage/ak20269991 +,,20269988,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20269988&format=geojson,,,,",ak20269988,",0.6,ml,,ak,,"36km NNE of North Nenana, Alaska",0.37,6,",ak,",reviewed,1538537957280,"M 0.6 - 36km NNE of North Nenana, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219804565,https://earthquake.usgs.gov/earthquakes/eventpage/ak20269988 +,,20269985,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20269985&format=geojson,,,,",ak20269985,",1.1,ml,,ak,,"37km NNE of North Nenana, Alaska",0.44,19,",ak,",reviewed,1538537921650,"M 1.1 - 37km NNE of North Nenana, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219803980,https://earthquake.usgs.gov/earthquakes/eventpage/ak20269985 +green,3.1,20269968,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20269968&format=geojson,,19.0,,",ak20269968,us1000h61r,",3.9,ml,5.1,ak,,"44km N of North Nenana, Alaska",0.91,240,",ak,us,",reviewed,1538537377544,"M 3.9 - 44km N of North Nenana, Alaska",0,earthquake,",dyfi,geoserve,losspager,moment-tensor,origin,phase-data,shakemap,",-540.0,1539220210901,https://earthquake.usgs.gov/earthquakes/eventpage/ak20269968 +,,20276339,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276339&format=geojson,,,,",ak20276339,",1.7,ml,,ak,,"117km NNW of Arctic Village, Alaska",0.66,44,",ak,",reviewed,1538537263695,"M 1.7 - 117km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219802358,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276339 +,,20269965,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20269965&format=geojson,,,,",ak20269965,",0.5,ml,,ak,,"20km WSW of Salcha, Alaska",0.42,4,",ak,",reviewed,1538537213260,"M 0.5 - 20km WSW of Salcha, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219801744,https://earthquake.usgs.gov/earthquakes/eventpage/ak20269965 +,,20269964,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20269964&format=geojson,,,,",ak20269964,",1.9,ml,,ak,,"123km N of Larsen Bay, Alaska",0.38,56,",ak,",reviewed,1538537009486,"M 1.9 - 123km N of Larsen Bay, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219801174,https://earthquake.usgs.gov/earthquakes/eventpage/ak20269964 +,,00659404,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659404&format=geojson,0.08,,115.54,",nn00659404,",0.8,ml,,nn,12.0,"38km SE of Bridgeport, California",0.1634,10,",nn,",reviewed,1538536738369,"M 0.8 - 38km SE of Bridgeport, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538618667377,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659404 +,,20276336,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276336&format=geojson,,,,",ak20276336,",2.3,ml,,ak,,"42km SW of Nikolski, Alaska",0.41,81,",ak,",reviewed,1538535634195,"M 2.3 - 42km SW of Nikolski, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539219800643,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276336 +,,1000h61k,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h61k&format=geojson,2.787,,26.0,",us1000h61k,",4.6,mb,,us,,"14km ESE of Tupiza, Bolivia",1.09,326,",us,",reviewed,1538535290950,"M 4.6 - 14km ESE of Tupiza, Bolivia",0,earthquake,",geoserve,origin,phase-data,",-240.0,1539228335040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h61k +,,20269962,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20269962&format=geojson,,,,",ak20269962,",1.3,ml,,ak,,"75km NNW of Valdez, Alaska",0.45,26,",ak,",reviewed,1538534733711,"M 1.3 - 75km NNW of Valdez, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219800034,https://earthquake.usgs.gov/earthquakes/eventpage/ak20269962 +,,61791026,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61791026&format=geojson,0.0343,,225.0,",av61791026,",-0.16,ml,,av,6.0,"94km SE of King Salmon, Alaska",0.11,0,",av,",reviewed,1538534439750,"M -0.2 - 94km SE of King Salmon, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538593445940,https://earthquake.usgs.gov/earthquakes/eventpage/av61791026 +,,37377730,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37377730&format=geojson,0.03315,,90.0,",ci37377730,",1.3,ml,,ci,34.0,"11km SSW of Valencia, CA",0.25,26,",ci,",reviewed,1538533784770,"M 1.3 - 11km SSW of Valencia, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538577751658,https://earthquake.usgs.gov/earthquakes/eventpage/ci37377730 +,,61434021,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61434021&format=geojson,0.02126,,106.0,",uw61434021,",0.81,ml,,uw,10.0,"28km NNW of Packwood, Washington",0.05,10,",uw,",reviewed,1538533769010,"M 0.8 - 28km NNW of Packwood, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538775691380,https://earthquake.usgs.gov/earthquakes/eventpage/uw61434021 +,,2018276001,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018276001&format=geojson,1.1715,,259.0,",pr2018276001,us1000h62w,",3.1,md,,pr,5.0,"86km NE of Miches, Dominican Republic",0.08,148,",pr,us,",reviewed,1538533448210,"M 3.1 - 86km NE of Miches, Dominican Republic",0,earthquake,",geoserve,origin,phase-data,",-300.0,1539227300040,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018276001 +,,61434016,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61434016&format=geojson,0.0245,,175.0,",uw61434016,",0.65,ml,,uw,6.0,"27km NNW of Packwood, Washington",0.03,6,",uw,",reviewed,1538533186990,"M 0.7 - 27km NNW of Packwood, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538594073400,https://earthquake.usgs.gov/earthquakes/eventpage/uw61434016 +,,73092836,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092836&format=geojson,0.007785,,121.0,",nc73092836,",1.02,md,,nc,14.0,"2km SE of The Geysers, CA",0.02,16,",nc,",automatic,1538532878340,"M 1.0 - 2km SE of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538533803225,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092836 +,,20269960,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20269960&format=geojson,,,,",ak20269960,",0.8,ml,,ak,,"153km E of Chitina, Alaska",0.47,10,",ak,",reviewed,1538532279285,"M 0.8 - 153km E of Chitina, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219799452,https://earthquake.usgs.gov/earthquakes/eventpage/ak20269960 +,,73092831,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092831&format=geojson,0.01459,,62.0,",nc73092831,",1.31,md,,nc,38.0,"6km WNW of The Geysers, CA",0.04,26,",nc,",reviewed,1538532074160,"M 1.3 - 6km WNW of The Geysers, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538612043426,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092831 +,,60298952,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60298952&format=geojson,0.1922,,103.0,",uu60298952,",1.1,md,,uu,11.0,"7km WNW of Enoch, Utah",0.11,19,",uu,",reviewed,1538532053110,"M 1.1 - 7km WNW of Enoch, Utah",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538588713440,https://earthquake.usgs.gov/earthquakes/eventpage/uu60298952 +,,37377722,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37377722&format=geojson,0.01327,,95.0,",ci37377722,",0.5,ml,,ci,18.0,"9km NE of Aguanga, CA",0.1,4,",ci,",reviewed,1538532039500,"M 0.5 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538573634692,https://earthquake.usgs.gov/earthquakes/eventpage/ci37377722 +,,20269959,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20269959&format=geojson,,,,",ak20269959,",0.7,ml,,ak,,"78km NW of Yakutat, Alaska",0.49,8,",ak,",reviewed,1538531944923,"M 0.7 - 78km NW of Yakutat, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219798927,https://earthquake.usgs.gov/earthquakes/eventpage/ak20269959 +,,20269957,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20269957&format=geojson,,,,",ak20269957,",1.3,ml,,ak,,"53km W of Talkeetna, Alaska",0.13,26,",ak,",reviewed,1538531093094,"M 1.3 - 53km W of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219798387,https://earthquake.usgs.gov/earthquakes/eventpage/ak20269957 +,,60298947,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60298947&format=geojson,0.1886,,104.0,",uu60298947,",1.16,ml,,uu,10.0,"8km W of Enoch, Utah",0.08,21,",uu,",reviewed,1538531033940,"M 1.2 - 8km W of Enoch, Utah",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538588962250,https://earthquake.usgs.gov/earthquakes/eventpage/uu60298947 +,,00659400,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659400&format=geojson,0.07,,66.38,",nn00659400,",0.9,ml,,nn,17.0,"37km ESE of Bridgeport, California",0.145,12,",nn,",reviewed,1538530771559,"M 0.9 - 37km ESE of Bridgeport, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538618665875,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659400 +,,37377706,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37377706&format=geojson,0.007134,,56.0,",ci37377706,",0.66,ml,,ci,26.0,"10km NE of Aguanga, CA",0.16,7,",ci,",reviewed,1538530686650,"M 0.7 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538573636782,https://earthquake.usgs.gov/earthquakes/eventpage/ci37377706 +,,60298942,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60298942&format=geojson,0.1958,,105.0,",uu60298942,",1.36,ml,,uu,7.0,"7km WNW of Enoch, Utah",0.06,28,",uu,",reviewed,1538530652100,"M 1.4 - 7km WNW of Enoch, Utah",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538589118650,https://earthquake.usgs.gov/earthquakes/eventpage/uu60298942 +,,20269953,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20269953&format=geojson,,,,",ak20269953,",0.9,ml,,ak,,"152km E of Chitina, Alaska",0.64,12,",ak,",reviewed,1538530565013,"M 0.9 - 152km E of Chitina, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219797776,https://earthquake.usgs.gov/earthquakes/eventpage/ak20269953 +,,20269952,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20269952&format=geojson,,,,",ak20269952,",1.2,ml,,ak,,"54km SSE of Cantwell, Alaska",0.36,22,",ak,",reviewed,1538530481141,"M 1.2 - 54km SSE of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219797222,https://earthquake.usgs.gov/earthquakes/eventpage/ak20269952 +,,37377698,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37377698&format=geojson,0.06716,,21.0,",ci37377698,",2.01,ml,,ci,69.0,"10km NNW of Big Bear Lake, CA",0.17,62,",ci,",reviewed,1538530393370,"M 2.0 - 10km NNW of Big Bear Lake, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538577189601,https://earthquake.usgs.gov/earthquakes/eventpage/ci37377698 +,,70627997,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70627997&format=geojson,0.01203,,164.0,",hv70627997,",1.73,ml,,hv,14.0,"5km W of Volcano, Hawaii",0.29,46,",hv,",automatic,1538530111390,"M 1.7 - 5km W of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538530452590,https://earthquake.usgs.gov/earthquakes/eventpage/hv70627997 +,,20269790,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20269790&format=geojson,,,,",ak20269790,",1.6,ml,,ak,,"113km NW of Arctic Village, Alaska",0.69,39,",ak,",reviewed,1538529705345,"M 1.6 - 113km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219796570,https://earthquake.usgs.gov/earthquakes/eventpage/ak20269790 +,,20269788,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20269788&format=geojson,,,,",ak20269788,",1.6,ml,,ak,,"9km WNW of Kalifornsky, Alaska",0.45,39,",ak,",reviewed,1538529592158,"M 1.6 - 9km WNW of Kalifornsky, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219795917,https://earthquake.usgs.gov/earthquakes/eventpage/ak20269788 +,,20269786,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20269786&format=geojson,,,,",ak20269786,",0.5,ml,,ak,,"56km NW of Cape Yakataga, Alaska",0.2,4,",ak,",reviewed,1538529189942,"M 0.5 - 56km NW of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219795399,https://earthquake.usgs.gov/earthquakes/eventpage/ak20269786 +,,20276326,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20276326&format=geojson,,,,",ak20276326,",1.7,ml,,ak,,"47km W of Anchor Point, Alaska",0.24,44,",ak,",reviewed,1538529124799,"M 1.7 - 47km W of Anchor Point, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219794883,https://earthquake.usgs.gov/earthquakes/eventpage/ak20276326 +,,1000h9zu,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h9zu&format=geojson,3.656,,141.0,",us1000h9zu,",4.2,mb,,us,,"275km NNE of Ndoi Island, Fiji",0.6,271,",us,",reviewed,1538528612970,"M 4.2 - 275km NNE of Ndoi Island, Fiji",0,earthquake,",geoserve,origin,phase-data,",-720.0,1539226350040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h9zu +,,20269783,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20269783&format=geojson,,,,",ak20269783,",1.9,ml,,ak,,"33km SW of Redoubt Volcano, Alaska",0.42,56,",ak,",reviewed,1538528412502,"M 1.9 - 33km SW of Redoubt Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219794315,https://earthquake.usgs.gov/earthquakes/eventpage/ak20269783 +,,20269781,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20269781&format=geojson,,,,",ak20269781,",1.1,ml,,ak,,"110km W of Cantwell, Alaska",0.93,19,",ak,",reviewed,1538528274583,"M 1.1 - 110km W of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219793769,https://earthquake.usgs.gov/earthquakes/eventpage/ak20269781 +,,37377666,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37377666&format=geojson,0.09159,,68.0,",ci37377666,",0.79,ml,,ci,32.0,"6km NNW of San Jacinto, CA",0.14,10,",ci,",reviewed,1538528220690,"M 0.8 - 6km NNW of San Jacinto, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538576191094,https://earthquake.usgs.gov/earthquakes/eventpage/ci37377666 +,,70805689,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70805689&format=geojson,0.04736,,180.0,",av70805689,",-0.32,ml,,av,6.0,"95km SE of King Salmon, Alaska",0.07,0,",av,",reviewed,1538528189820,"M -0.3 - 95km SE of King Salmon, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538592816160,https://earthquake.usgs.gov/earthquakes/eventpage/av70805689 +,,20269745,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20269745&format=geojson,,,,",ak20269745,",1.2,ml,,ak,,"45km WNW of Valdez, Alaska",0.21,22,",ak,",reviewed,1538527950124,"M 1.2 - 45km WNW of Valdez, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219793202,https://earthquake.usgs.gov/earthquakes/eventpage/ak20269745 +,,2018276000,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018276000&format=geojson,0.1344,,323.0,",pr2018276000,",1.71,md,,pr,3.0,"11km SSE of Pole Ojea, Puerto Rico",0.06,45,",pr,",reviewed,1538527864980,"M 1.7 - 11km SSE of Pole Ojea, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538541922977,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018276000 +,,73092826,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092826&format=geojson,0.01335,,68.0,",nc73092826,",1.06,md,,nc,24.0,"8km E of Gilroy, CA",0.05,17,",nc,",reviewed,1538527501600,"M 1.1 - 8km E of Gilroy, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538531402986,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092826 +,,37377658,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37377658&format=geojson,0.07333,,72.0,",ci37377658,",1.17,ml,,ci,39.0,"26km NNE of North Shore, CA",0.17,21,",ci,",reviewed,1538527460070,"M 1.2 - 26km NNE of North Shore, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538575721197,https://earthquake.usgs.gov/earthquakes/eventpage/ci37377658 +,,70251708,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ismpkansas70251708&format=geojson,0.1383,,244.0,",ismpkansas70251708,",1.53,ml,,ismpkansas,6.0,"11km SW of Wellington, Kansas",0.03,36,",ismpkansas,",reviewed,1538527368310,"M 1.5 - 11km SW of Wellington, Kansas",0,earthquake,",geoserve,origin,phase-data,",-360.0,1538529356110,https://earthquake.usgs.gov/earthquakes/eventpage/ismpkansas70251708 +,,61433991,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61433991&format=geojson,0.02167,,104.0,",uw61433991,",1.23,ml,,uw,12.0,"28km NNW of Packwood, Washington",0.07,23,",uw,",reviewed,1538527244270,"M 1.2 - 28km NNW of Packwood, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538691451350,https://earthquake.usgs.gov/earthquakes/eventpage/uw61433991 +,,00659445,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659445&format=geojson,0.057,,62.91,",nn00659445,",-0.2,ml,,nn,20.0,"47km ESE of Beatty, Nevada",0.1454,0,",nn,",reviewed,1538527221870,"M -0.2 - 47km ESE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538618693630,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659445 +,,1000h9zt,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h9zt&format=geojson,5.709,,196.0,",us1000h9zt,",4.5,mb,,us,,South of the Fiji Islands,0.78,312,",us,",reviewed,1538527050650,M 4.5 - South of the Fiji Islands,0,earthquake,",geoserve,origin,phase-data,",720.0,1539220099040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h9zt +,,20269742,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20269742&format=geojson,,,,",ak20269742,",1.7,ml,,ak,,"41km WSW of Valdez, Alaska",0.52,44,",ak,",reviewed,1538526513042,"M 1.7 - 41km WSW of Valdez, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219792589,https://earthquake.usgs.gov/earthquakes/eventpage/ak20269742 +,,70627912,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70627912&format=geojson,0.0106,,37.0,",hv70627912,",1.78,ml,,hv,21.0,"5km SW of Volcano, Hawaii",0.14,49,",hv,",automatic,1538526472380,"M 1.8 - 5km SW of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538526813980,https://earthquake.usgs.gov/earthquakes/eventpage/hv70627912 +,,20269740,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20269740&format=geojson,,,,",ak20269740,",1.0,ml,,ak,,"36km E of Lazy Mountain, Alaska",0.36,15,",ak,",reviewed,1538526299542,"M 1.0 - 36km E of Lazy Mountain, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539219792017,https://earthquake.usgs.gov/earthquakes/eventpage/ak20269740 +,,70627902,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70627902&format=geojson,0.01011,,46.0,",hv70627902,",1.78,ml,,hv,20.0,"4km WSW of Volcano, Hawaii",0.07,49,",hv,",reviewed,1538526235880,"M 1.8 - 4km WSW of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538690919980,https://earthquake.usgs.gov/earthquakes/eventpage/hv70627902 +,,1000h60l,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h60l&format=geojson,1.714,,57.0,",us1000h60l,",4.2,mb,,us,,"75km W of San Antonio de los Cobres, Argentina",0.5,271,",us,",reviewed,1538526184130,"M 4.2 - 75km W of San Antonio de los Cobres, Argentina",0,earthquake,",geoserve,origin,phase-data,",-180.0,1539219764040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h60l +,,73092816,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092816&format=geojson,0.08327,,81.0,",nc73092816,",2.27,md,,nc,42.0,"13km WSW of Toms Place, CA",0.05,79,",nc,",reviewed,1538525820270,"M 2.3 - 13km WSW of Toms Place, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538543583356,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092816 +,,73092811,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092811&format=geojson,0.0055,,84.0,",nc73092811,",0.73,md,,nc,9.0,"7km WNW of Cobb, CA",0.08,8,",nc,",automatic,1538525407930,"M 0.7 - 7km WNW of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538525503816,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092811 +,,60298937,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60298937&format=geojson,0.05246,,122.0,",uu60298937,",0.85,md,,uu,10.0,"33km SE of Old Faithful Geyser, Wyoming",0.17,11,",uu,",reviewed,1538525341340,"M 0.9 - 33km SE of Old Faithful Geyser, Wyoming",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538583410320,https://earthquake.usgs.gov/earthquakes/eventpage/uu60298937 +,,20279975,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20279975&format=geojson,,,,",ak20279975,",1.6,ml,,ak,,"79km SSW of Kaktovik, Alaska",0.73,39,",ak,",reviewed,1538523753944,"M 1.6 - 79km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390110150,https://earthquake.usgs.gov/earthquakes/eventpage/ak20279975 +,,20269737,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20269737&format=geojson,,,,",ak20269737,",2.1,ml,,ak,,"82km E of Cape Yakataga, Alaska",0.8,68,",ak,",reviewed,1538523574907,"M 2.1 - 82km E of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390109508,https://earthquake.usgs.gov/earthquakes/eventpage/ak20269737 +,,73092786,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092786&format=geojson,0.01173,,119.0,",nc73092786,",0.47,md,,nc,8.0,"4km W of Cobb, CA",0.01,3,",nc,",automatic,1538523271910,"M 0.5 - 4km W of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538523368607,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092786 +,,1000h9gx,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h9gx&format=geojson,3.697,,159.0,",us1000h9gx,",4.4,mb,,us,,"271km NNE of Ndoi Island, Fiji",1.03,298,",us,",reviewed,1538522888910,"M 4.4 - 271km NNE of Ndoi Island, Fiji",0,earthquake,",geoserve,origin,phase-data,",-720.0,1539219140040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h9gx +,,80312114,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80312114&format=geojson,0.099,,183.0,",mb80312114,",0.93,ml,,mb,6.0,"4km ENE of Driggs, Idaho",0.08,13,",mb,",reviewed,1538522628370,"M 0.9 - 4km ENE of Driggs, Idaho",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538686114120,https://earthquake.usgs.gov/earthquakes/eventpage/mb80312114 +,,20269733,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20269733&format=geojson,,,,",ak20269733,",1.3,ml,,ak,,"19km NNW of Sutton-Alpine, Alaska",0.76,26,",ak,",reviewed,1538521780733,"M 1.3 - 19km NNW of Sutton-Alpine, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390108926,https://earthquake.usgs.gov/earthquakes/eventpage/ak20269733 +,,73092771,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092771&format=geojson,0.008323,,94.0,",nc73092771,",0.56,md,,nc,7.0,"9km WNW of Cobb, CA",0.01,5,",nc,",automatic,1538521626110,"M 0.6 - 9km WNW of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538521724056,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092771 +,,37377586,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37377586&format=geojson,0.03469,,35.0,",ci37377586,",0.58,ml,,ci,30.0,"8km ENE of Aguanga, CA",0.17,5,",ci,",reviewed,1538521248330,"M 0.6 - 8km ENE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538575115012,https://earthquake.usgs.gov/earthquakes/eventpage/ci37377586 +,,80312104,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80312104&format=geojson,0.101,,166.0,",mb80312104,",1.45,ml,,mb,8.0,"4km ENE of Driggs, Idaho",0.09,32,",mb,",reviewed,1538520531430,"M 1.5 - 4km ENE of Driggs, Idaho",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538685869160,https://earthquake.usgs.gov/earthquakes/eventpage/mb80312104 +,,73092751,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092751&format=geojson,0.05912,,108.0,",nc73092751,",1.33,md,,nc,32.0,"14km SE of Mammoth Lakes, CA",0.04,27,",nc,",reviewed,1538520488320,"M 1.3 - 14km SE of Mammoth Lakes, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538525942636,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092751 +,,73092746,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092746&format=geojson,0.005065,,113.0,",nc73092746,",0.55,md,,nc,9.0,"7km NW of The Geysers, CA",0.03,5,",nc,",automatic,1538520484460,"M 0.6 - 7km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538520583646,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092746 +,,60298917,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60298917&format=geojson,0.3163,,123.0,",uu60298917,",1.06,md,,uu,9.0,"20km SE of Soda Springs, Idaho",0.19,17,",uu,",reviewed,1538520321160,"M 1.1 - 20km SE of Soda Springs, Idaho",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538581961510,https://earthquake.usgs.gov/earthquakes/eventpage/uu60298917 +,,73092741,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092741&format=geojson,0.002089,,152.0,",nc73092741,",0.57,md,,nc,6.0,"10km NW of The Geysers, CA",0.01,5,",nc,",automatic,1538520307540,"M 0.6 - 10km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538520403357,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092741 +,,20269553,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20269553&format=geojson,,,,",ak20269553,",1.2,ml,,ak,,"71km E of Sutton-Alpine, Alaska",0.6,22,",ak,",reviewed,1538520159264,"M 1.2 - 71km E of Sutton-Alpine, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390108358,https://earthquake.usgs.gov/earthquakes/eventpage/ak20269553 +,,73092736,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092736&format=geojson,0.005847,,52.0,",nc73092736,",0.52,md,,nc,21.0,"5km NW of The Geysers, CA",0.04,4,",nc,",reviewed,1538520114300,"M 0.5 - 5km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538528865598,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092736 +,,20269551,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20269551&format=geojson,,,,",ak20269551,",1.8,ml,,ak,,"104km NNW of Arctic Village, Alaska",0.62,50,",ak,",reviewed,1538520054986,"M 1.8 - 104km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390107813,https://earthquake.usgs.gov/earthquakes/eventpage/ak20269551 +,,37377562,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37377562&format=geojson,0.004735,,36.0,",ci37377562,",0.91,ml,,ci,40.0,"10km NE of Aguanga, CA",0.15,13,",ci,",reviewed,1538519861500,"M 0.9 - 10km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1538520526630,https://earthquake.usgs.gov/earthquakes/eventpage/ci37377562 +,,60298912,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60298912&format=geojson,0.03436,,91.0,",uu60298912,",0.56,md,,uu,9.0,"12km NNW of West Yellowstone, Montana",0.15,5,",uu,",reviewed,1538519483760,"M 0.6 - 12km NNW of West Yellowstone, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538578879480,https://earthquake.usgs.gov/earthquakes/eventpage/uu60298912 +,,37377546,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37377546&format=geojson,0.00561,,46.0,",ci37377546,",0.99,ml,,ci,43.0,"10km NE of Aguanga, CA",0.17,15,",ci,",reviewed,1538519357490,"M 1.0 - 10km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1538583390910,https://earthquake.usgs.gov/earthquakes/eventpage/ci37377546 +,,20279970,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20279970&format=geojson,,,,",ak20279970,",0.8,ml,,ak,,"57km NE of Sutton-Alpine, Alaska",0.2,10,",ak,",reviewed,1538519348336,"M 0.8 - 57km NE of Sutton-Alpine, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390107287,https://earthquake.usgs.gov/earthquakes/eventpage/ak20279970 +,,00659386,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659386&format=geojson,0.124,,160.43,",nn00659386,",1.0,ml,,nn,9.0,"26km WSW of Truckee, California",0.2006,15,",nn,",reviewed,1538518679471,"M 1.0 - 26km WSW of Truckee, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538532401167,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659386 +,,70805594,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70805594&format=geojson,0.1093,,104.0,",av70805594,",0.05,ml,,av,6.0,"105km ESE of King Salmon, Alaska",0.17,0,",av,",reviewed,1538518636960,"M 0.1 - 105km ESE of King Salmon, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538522356950,https://earthquake.usgs.gov/earthquakes/eventpage/av70805594 +,,73092731,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092731&format=geojson,0.0699,,143.0,",nc73092731,",2.07,md,,nc,21.0,"17km SSE of Cantua Creek, CA",0.03,66,",nc,",reviewed,1538518433370,"M 2.1 - 17km SSE of Cantua Creek, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538526602983,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092731 +,,20269550,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20269550&format=geojson,,,,",ak20269550,",1.6,ml,,ak,,"108km NNW of Arctic Village, Alaska",0.85,39,",ak,",reviewed,1538518357356,"M 1.6 - 108km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390106736,https://earthquake.usgs.gov/earthquakes/eventpage/ak20269550 +,,73092726,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092726&format=geojson,0.1309,,294.0,",nc73092726,",0.83,md,,nc,17.0,"20km SSE of Mammoth Lakes, CA",0.04,11,",nc,",reviewed,1538518264290,"M 0.8 - 20km SSE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538523303385,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092726 +,,61433961,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61433961&format=geojson,0.1243,,203.0,",uw61433961,",0.1,md,,uw,7.0,"22km N of Amboy, Washington",0.14,0,",uw,",reviewed,1538518103640,"M 0.1 - 22km N of Amboy, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538523725240,https://earthquake.usgs.gov/earthquakes/eventpage/uw61433961 +,,20269547,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20269547&format=geojson,,,,",ak20269547,",1.1,ml,,ak,,"80km NW of Yakutat, Alaska",0.76,19,",ak,",reviewed,1538518076428,"M 1.1 - 80km NW of Yakutat, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390106161,https://earthquake.usgs.gov/earthquakes/eventpage/ak20269547 +,,00659385,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659385&format=geojson,0.589,,284.01,",nn00659385,",1.8,ml,,nn,4.0,"27km WNW of Gerlach-Empire, Nevada",0.1724,50,",nn,",reviewed,1538518069068,"M 1.8 - 27km WNW of Gerlach-Empire, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538532399454,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659385 +,,73092721,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092721&format=geojson,0.007287,,93.0,",nc73092721,",0.69,md,,nc,9.0,"9km WNW of Cobb, CA",0.02,7,",nc,",automatic,1538518048080,"M 0.7 - 9km WNW of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538518143577,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092721 +,,73092716,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092716&format=geojson,0.0226,,133.0,",nc73092716,",0.57,md,,nc,8.0,"9km NW of The Geysers, CA",0.05,5,",nc,",automatic,1538517971960,"M 0.6 - 9km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538522042600,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092716 +,,00659357,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659357&format=geojson,0.097,,157.46,",nc73092706,nn00659357,",0.6,ml,,nn,9.0,"50km S of Hawthorne, Nevada",0.0971,6,",nc,nn,",reviewed,1538517554779,"M 0.6 - 50km S of Hawthorne, Nevada",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538532378161,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659357 +,,37377514,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37377514&format=geojson,0.1216,,176.0,",ci37377514,",0.51,ml,,ci,11.0,"1km ESE of Banning, CA",0.12,4,",ci,",reviewed,1538517508260,"M 0.5 - 1km ESE of Banning, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538520093664,https://earthquake.usgs.gov/earthquakes/eventpage/ci37377514 +,,20269508,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20269508&format=geojson,,,,",ak20269508,",1.3,ml,,ak,,"23km NNE of Badger, Alaska",0.86,26,",ak,",reviewed,1538517272956,"M 1.3 Explosion - 23km NNE of Badger, Alaska",0,explosion,",geoserve,origin,phase-data,",-540.0,1539390105597,https://earthquake.usgs.gov/earthquakes/eventpage/ak20269508 +,,70805589,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70805589&format=geojson,0.0786,,200.0,",av70805589,",0.38,ml,,av,5.0,"102km NW of Larsen Bay, Alaska",0.09,2,",av,",reviewed,1538517086190,"M 0.4 - 102km NW of Larsen Bay, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538522163120,https://earthquake.usgs.gov/earthquakes/eventpage/av70805589 +,,37377506,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37377506&format=geojson,0.2814,,222.0,",ci37377506,",1.36,ml,,ci,17.0,"9km WSW of Salton City, CA",0.19,28,",ci,",reviewed,1538517064360,"M 1.4 - 9km WSW of Salton City, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538519740505,https://earthquake.usgs.gov/earthquakes/eventpage/ci37377506 +,,1000h5xr,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h5xr&format=geojson,3.099,,169.0,",us1000h5xr,",4.5,mb,,us,,"South of Java, Indonesia",0.67,312,",us,",reviewed,1538516320640,"M 4.5 - South of Java, Indonesia",0,earthquake,",geoserve,origin,phase-data,",420.0,1538517878040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h5xr +,2.2,00659351,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659351&format=geojson,0.493,3.0,192.16,",nn00659351,",2.8,ml,,nn,18.0,"30km W of Gerlach-Empire, Nevada",0.2092,121,",nn,",reviewed,1538516255155,"M 2.8 - 30km W of Gerlach-Empire, Nevada",0,earthquake,",dyfi,geoserve,origin,phase-data,",-480.0,1538532368748,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659351 +,,00659382,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659382&format=geojson,0.279,,278.04,",nn00659382,",0.8,ml,,nn,4.0,"16km E of Fernley, Nevada",0.0536,10,",nn,",reviewed,1538515993011,"M 0.8 - 16km E of Fernley, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538532398130,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659382 +,,73092691,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092691&format=geojson,0.007011,,71.0,",nc73092691,",0.89,md,,nc,19.0,"7km NW of The Geysers, CA",0.04,12,",nc,",automatic,1538515698340,"M 0.9 - 7km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538518144181,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092691 +,,20279965,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20279965&format=geojson,,,,",ak20279965,",1.1,ml,,ak,,"115km ESE of Holy Cross, Alaska",0.57,19,",ak,",reviewed,1538515311403,"M 1.1 - 115km ESE of Holy Cross, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390105076,https://earthquake.usgs.gov/earthquakes/eventpage/ak20279965 +,,00659369,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659369&format=geojson,0.126,,157.78,",nn00659369,",0.8,ml,,nn,14.0,"27km WSW of Truckee, California",0.2269,10,",nn,",reviewed,1538515287318,"M 0.8 - 27km WSW of Truckee, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538532391508,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659369 +,,1000h9gr,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h9gr&format=geojson,2.714,,80.0,",us1000h9gr,",4.2,mb,,us,,"39km S of Nggongi, Indonesia",1.04,271,",us,",reviewed,1538515255490,"M 4.2 - 39km S of Nggongi, Indonesia",0,earthquake,",geoserve,origin,phase-data,",480.0,1539493890040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h9gr +,,20269502,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20269502&format=geojson,,,,",ak20269502,",1.5,ml,,ak,,"132km NNW of Arctic Village, Alaska",0.66,35,",ak,",reviewed,1538514804848,"M 1.5 - 132km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390104538,https://earthquake.usgs.gov/earthquakes/eventpage/ak20269502 +,,20269501,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20269501&format=geojson,,,,",ak20269501,",1.9,ml,,ak,,"104km NNW of Nikiski, Alaska",0.73,56,",ak,",reviewed,1538514804597,"M 1.9 - 104km NNW of Nikiski, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390103884,https://earthquake.usgs.gov/earthquakes/eventpage/ak20269501 +,,1000h5x5,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h5x5&format=geojson,2.292,,69.0,",us1000h5x5,",4.8,mb,,us,,"18km SSE of Palu, Indonesia",0.84,354,",us,",reviewed,1538514416540,"M 4.8 - 18km SSE of Palu, Indonesia",0,earthquake,",geoserve,origin,phase-data,",480.0,1539493066040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h5x5 +,,20269500,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20269500&format=geojson,,,,",ak20269500,",1.9,ml,,ak,,"94km SW of Anchor Point, Alaska",0.43,56,",ak,",reviewed,1538513799131,"M 1.9 - 94km SW of Anchor Point, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390103322,https://earthquake.usgs.gov/earthquakes/eventpage/ak20269500 +,,37377450,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37377450&format=geojson,0.1109,,200.0,",ci37377450,",0.69,ml,,ci,13.0,"7km NNE of Lake Henshaw, CA",0.23,7,",ci,",reviewed,1538513127710,"M 0.7 - 7km NNE of Lake Henshaw, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538517178796,https://earthquake.usgs.gov/earthquakes/eventpage/ci37377450 +,,00659336,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659336&format=geojson,0.494,,197.58,",nn00659336,",1.9,ml,,nn,8.0,"29km W of Gerlach-Empire, Nevada",0.1375,56,",nn,",reviewed,1538513036555,"M 1.9 - 29km W of Gerlach-Empire, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538532355431,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659336 +,,73092681,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092681&format=geojson,0.1045,,116.0,",nc73092681,",0.25,md,,nc,4.0,"1km ENE of Dixon Lane-Meadow Creek, CA",0.07,1,",nc,",reviewed,1538513028250,"M 0.3 - 1km ENE of Dixon Lane-Meadow Creek, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538516822058,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092681 +,,20269498,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20269498&format=geojson,,,,",ak20269498,us1000h5wb,",2.2,ml,,ak,,"159km SSE of Kotzebue, Alaska",0.77,74,",ak,us,",reviewed,1538512527367,"M 2.2 - 159km SSE of Kotzebue, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390102729,https://earthquake.usgs.gov/earthquakes/eventpage/ak20269498 +,,70627507,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70627507&format=geojson,0.02625,,143.0,",hv70627507,",1.78,md,,hv,35.0,"4km SE of Pahala, Hawaii",0.16,49,",hv,",automatic,1538512472960,"M 1.8 - 4km SE of Pahala, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538512659140,https://earthquake.usgs.gov/earthquakes/eventpage/hv70627507 +,,37377442,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37377442&format=geojson,0.07724,,151.0,",ci37377442,",0.1,ml,,ci,13.0,"10km NE of Aguanga, CA",0.12,0,",ci,",reviewed,1538512463320,"M 0.1 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538516831595,https://earthquake.usgs.gov/earthquakes/eventpage/ci37377442 +,,20269491,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20269491&format=geojson,,,,",ak20269491,us1000h5w6,",2.4,ml,,ak,,"128km SSE of Prudhoe Bay, Alaska",0.68,89,",ak,us,",reviewed,1538511884333,"M 2.4 - 128km SSE of Prudhoe Bay, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390102117,https://earthquake.usgs.gov/earthquakes/eventpage/ak20269491 +,,37377418,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37377418&format=geojson,0.01014,,45.0,",ci37377418,",0.69,ml,,ci,28.0,"10km NE of Aguanga, CA",0.21,7,",ci,",reviewed,1538511863430,"M 0.7 - 10km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538513493100,https://earthquake.usgs.gov/earthquakes/eventpage/ci37377418 +,,20269496,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20269496&format=geojson,,,,",ak20269496,",1.7,ml,,ak,,"102km NW of Arctic Village, Alaska",0.79,44,",ak,",reviewed,1538511778450,"M 1.7 - 102km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390101519,https://earthquake.usgs.gov/earthquakes/eventpage/ak20269496 +,,00659378,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659378&format=geojson,0.619,,332.07,",nn00659378,",1.5,ml,,nn,3.0,"19km WSW of Gerlach-Empire, Nevada",0.0758,35,",nn,",reviewed,1538511750210,"M 1.5 - 19km WSW of Gerlach-Empire, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538532396733,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659378 +,,20269484,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20269484&format=geojson,,,,",ak20269484,us1000h5vt,",3.5,ml,4.42,ak,,"114km ESE of Holy Cross, Alaska",0.75,188,",ak,us,",reviewed,1538511631214,"M 3.5 - 114km ESE of Holy Cross, Alaska",0,earthquake,",geoserve,origin,phase-data,shakemap,",-540.0,1539390588328,https://earthquake.usgs.gov/earthquakes/eventpage/ak20269484 +,,70627472,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70627472&format=geojson,0.04943,,105.0,",hv70627472,",2.27,ml,,hv,53.0,"14km SE of Volcano, Hawaii",0.12,79,",hv,",reviewed,1538511449640,"M 2.3 - 14km SE of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538516199380,https://earthquake.usgs.gov/earthquakes/eventpage/hv70627472 +,,20269483,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20269483&format=geojson,,,,",ak20269483,",1.7,ml,,ak,,"122km NNW of Arctic Village, Alaska",0.87,44,",ak,",reviewed,1538511262229,"M 1.7 - 122km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390100177,https://earthquake.usgs.gov/earthquakes/eventpage/ak20269483 +,,37377394,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37377394&format=geojson,0.04561,,86.0,",ci37377394,",1.27,ml,,ci,17.0,"2km SE of Frazier Park, CA",0.11,25,",ci,",reviewed,1538511219840,"M 1.3 - 2km SE of Frazier Park, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538516308067,https://earthquake.usgs.gov/earthquakes/eventpage/ci37377394 +,,37377386,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37377386&format=geojson,0.01853,,67.0,",ci37377386,",0.4,ml,,ci,14.0,"9km NE of Aguanga, CA",0.09,2,",ci,",reviewed,1538511022550,"M 0.4 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538516476368,https://earthquake.usgs.gov/earthquakes/eventpage/ci37377386 +,,70627447,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70627447&format=geojson,0.02925,,140.0,",hv70627447,",1.03,md,,hv,19.0,"22km ENE of Honaunau-Napoopoo, Hawaii",0.1,16,",hv,",reviewed,1538510658200,"M 1.0 - 22km ENE of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538517082640,https://earthquake.usgs.gov/earthquakes/eventpage/hv70627447 +,,00659324,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659324&format=geojson,0.127,,155.61,",nn00659324,",1.1,ml,,nn,15.0,"27km WSW of Truckee, California",0.1668,19,",nn,",reviewed,1538509866106,"M 1.1 - 27km WSW of Truckee, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538532348372,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659324 +,,20269482,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20269482&format=geojson,,,,",ak20269482,us1000h5xs,",2.7,ml,,ak,,"123km W of Craig, Alaska",0.63,112,",ak,us,",reviewed,1538509848036,"M 2.7 - 123km W of Craig, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390099613,https://earthquake.usgs.gov/earthquakes/eventpage/ak20269482 +,,37377338,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37377338&format=geojson,0.01352,,46.0,",ci37377338,",0.6,ml,,ci,30.0,"9km NE of Aguanga, CA",0.13,6,",ci,",reviewed,1538509449330,"M 0.6 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538513866538,https://earthquake.usgs.gov/earthquakes/eventpage/ci37377338 +,,37377346,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37377346&format=geojson,0.07492,,220.0,",ci37377346,",1.67,ml,,ci,8.0,"12km W of Mojave, CA",0.1,43,",ci,",reviewed,1538509370020,"M 1.7 Quarry Blast - 12km W of Mojave, CA",0,quarry blast,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538515129019,https://earthquake.usgs.gov/earthquakes/eventpage/ci37377346 +,,73092676,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092676&format=geojson,0.09092,,112.0,",nc73092676,",1.63,md,,nc,27.0,"9km SSW of Tres Pinos, CA",0.08,41,",nc,",reviewed,1538509342440,"M 1.6 - 9km SSW of Tres Pinos, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538525882632,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092676 +,,73092671,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092671&format=geojson,0.002401,,80.0,",nc73092671,",1.69,md,,nc,35.0,"10km NW of The Geysers, CA",0.04,44,",nc,",reviewed,1538509233480,"M 1.7 - 10km NW of The Geysers, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538524625145,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092671 +,,00659377,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659377&format=geojson,0.608,,331.69,",nn00659377,",1.3,ml,,nn,3.0,"26km W of Gerlach-Empire, Nevada",0.1753,26,",nn,",reviewed,1538508895090,"M 1.3 - 26km W of Gerlach-Empire, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538532395303,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659377 +,,00659322,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659322&format=geojson,0.355,,105.35,",nn00659322,",1.1,ml,,nn,14.0,"38km SSW of Caliente, Nevada",0.1123,19,",nn,",reviewed,1538508836087,"M 1.1 - 38km SSW of Caliente, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538532346136,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659322 +,,00659368,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659368&format=geojson,0.546,,333.4,",nn00659368,",0.2,ml,,nn,4.0,"17km SSE of Goldfield, Nevada",0.0999,1,",nn,",reviewed,1538508475113,"M 0.2 - 17km SSE of Goldfield, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538532389253,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659368 +,,00659318,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659318&format=geojson,0.498,,199.67,",nn00659318,",2.0,ml,,nn,11.0,"29km W of Gerlach-Empire, Nevada",0.1429,62,",nn,",reviewed,1538508386646,"M 2.0 - 29km W of Gerlach-Empire, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538532344368,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659318 +,,71109659,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc71109659&format=geojson,0.02398,,86.0,",nc71109659,",1.51,md,,nc,13.0,"8km E of Chualar, CA",0.17,35,",nc,",reviewed,1538508198030,"M 1.5 Quarry Blast - 8km E of Chualar, CA",0,quarry blast,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538521859402,https://earthquake.usgs.gov/earthquakes/eventpage/nc71109659 +,,73092666,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092666&format=geojson,0.02694,,60.0,",nc73092666,",1.35,md,,nc,17.0,"8km E of Chualar, CA",0.09,28,",nc,",reviewed,1538508190830,"M 1.4 Quarry Blast - 8km E of Chualar, CA",0,quarry blast,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538521678239,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092666 +,,1000h5ud,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h5ud&format=geojson,3.343,,114.0,",us1000h5ud,",4.8,mb,,us,,"286km N of Ndoi Island, Fiji",0.93,354,",us,",reviewed,1538508159210,"M 4.8 - 286km N of Ndoi Island, Fiji",0,earthquake,",geoserve,origin,phase-data,",-720.0,1538575217040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h5ud +,,00659367,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659367&format=geojson,0.696,,334.34,",nn00659367,",1.5,ml,,nn,3.0,"17km WNW of Gerlach-Empire, Nevada",0.2148,35,",nn,",reviewed,1538507972343,"M 1.5 - 17km WNW of Gerlach-Empire, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538532387671,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659367 +,,00659313,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659313&format=geojson,0.139,,161.36,",nn00659313,",1.4,ml,,nn,8.0,"77km NNE of Tonopah, Nevada",0.2895,30,",nn,",reviewed,1538507779061,"M 1.4 Explosion - 77km NNE of Tonopah, Nevada",0,explosion,",geoserve,origin,phase-data,",-480.0,1538532342658,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659313 +,,20279955,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20279955&format=geojson,,,,",ak20279955,",1.1,ml,,ak,,"96km WNW of Cantwell, Alaska",0.78,19,",ak,",reviewed,1538507585096,"M 1.1 - 96km WNW of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390099039,https://earthquake.usgs.gov/earthquakes/eventpage/ak20279955 +,2.2,00659308,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659308&format=geojson,0.488,1.0,84.75,",nn00659308,",2.6,ml,,nn,19.0,"30km W of Gerlach-Empire, Nevada",0.2293,104,",nn,",reviewed,1538507584888,"M 2.6 - 30km W of Gerlach-Empire, Nevada",0,earthquake,",dyfi,geoserve,origin,phase-data,",-480.0,1538532341238,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659308 +,,20269481,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20269481&format=geojson,,,,",ak20269481,",1.3,ml,,ak,,"31km NNW of Whittier, Alaska",0.51,26,",ak,",reviewed,1538507157259,"M 1.3 - 31km NNW of Whittier, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390098508,https://earthquake.usgs.gov/earthquakes/eventpage/ak20269481 +,,37377274,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37377274&format=geojson,0.1269,,59.0,",ci37377274,",1.29,ml,,ci,17.0,"6km S of Mojave, CA",0.17,26,",ci,",reviewed,1538507140740,"M 1.3 Quarry Blast - 6km S of Mojave, CA",0,quarry blast,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538523128790,https://earthquake.usgs.gov/earthquakes/eventpage/ci37377274 +,,37377250,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37377250&format=geojson,0.02014,,74.0,",nn00659301,ci37377250,",2.22,ml,,ci,13.0,"21km SW of Primm, NV",0.13,76,",nn,ci,",reviewed,1538506812100,"M 2.2 Quarry Blast - 21km SW of Primm, NV",0,quarry blast,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538532338670,https://earthquake.usgs.gov/earthquakes/eventpage/ci37377250 +,,73092646,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092646&format=geojson,0.01212,,101.0,",nc73092646,",0.36,md,,nc,15.0,"12km E of Mammoth Lakes, CA",0.1,2,",nc,",reviewed,1538506441490,"M 0.4 - 12km E of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538512922671,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092646 +,2.0,00659292,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659292&format=geojson,0.508,1.0,200.63,",nn00659292,us1000h5tu,",2.6,ml,,nn,12.0,"28km W of Gerlach-Empire, Nevada",0.1332,104,",nn,us,",reviewed,1538506312585,"M 2.6 - 28km W of Gerlach-Empire, Nevada",0,earthquake,",dyfi,geoserve,origin,phase-data,",-480.0,1538575092040,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659292 +,,20269475,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20269475&format=geojson,,,,",ak20269475,us1000h5tm,",3.1,ml,,ak,,"158km SSE of Kotzebue, Alaska",0.73,148,",ak,us,",reviewed,1538505196626,"M 3.1 - 158km SSE of Kotzebue, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390097811,https://earthquake.usgs.gov/earthquakes/eventpage/ak20269475 +,,00659283,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659283&format=geojson,0.255,,100.12,",nn00659283,",1.7,ml,,nn,8.0,"11km W of Ely, Nevada",0.4087,44,",nn,",reviewed,1538504762865,"M 1.7 Explosion - 11km W of Ely, Nevada",0,explosion,",geoserve,origin,phase-data,",-480.0,1538532328880,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659283 +,,20269469,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20269469&format=geojson,,,,",ak20269469,",1.5,ml,,ak,,"18km W of Anchorage, Alaska",0.62,35,",ak,",reviewed,1538504360467,"M 1.5 - 18km W of Anchorage, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390097208,https://earthquake.usgs.gov/earthquakes/eventpage/ak20269469 +,,20269468,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20269468&format=geojson,,,,",ak20269468,",2.0,ml,,ak,,"78km SSW of Kaktovik, Alaska",0.55,62,",ak,",reviewed,1538504259115,"M 2.0 - 78km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390096635,https://earthquake.usgs.gov/earthquakes/eventpage/ak20269468 +,,80312064,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80312064&format=geojson,0.309,,201.0,",mb80312064,",1.12,ml,,mb,7.0,"0km W of Manhattan, Montana",0.07,19,",mb,",reviewed,1538503978240,"M 1.1 - 0km W of Manhattan, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538510436700,https://earthquake.usgs.gov/earthquakes/eventpage/mb80312064 +,,20269457,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20269457&format=geojson,,,,",ak20269457,",1.6,ml,,ak,,"90km WNW of Cantwell, Alaska",0.74,39,",ak,",reviewed,1538503484417,"M 1.6 - 90km WNW of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390096068,https://earthquake.usgs.gov/earthquakes/eventpage/ak20269457 +,,20269456,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20269456&format=geojson,,,,",ak20269456,",1.5,ml,,ak,,"137km NE of Cape Yakataga, Alaska",0.44,35,",ak,",reviewed,1538503484078,"M 1.5 - 137km NE of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539390095431,https://earthquake.usgs.gov/earthquakes/eventpage/ak20269456 +,,37377202,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37377202&format=geojson,0.005494,,43.0,",ci37377202,",0.4,ml,,ci,24.0,"10km NE of Aguanga, CA",0.11,2,",ci,",reviewed,1538503087020,"M 0.4 - 10km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538509752970,https://earthquake.usgs.gov/earthquakes/eventpage/ci37377202 +,,73092626,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092626&format=geojson,0.07811,,285.0,",nc73092626,",0.56,md,,nc,10.0,"14km SE of Mammoth Lakes, CA",0.03,5,",nc,",reviewed,1538502680050,"M 0.6 - 14km SE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538506803062,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092626 +,,1000h5sq,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h5sq&format=geojson,2.858,,153.0,",us1000h5sq,",4.4,mb,,us,,"13km SE of Salina Cruz, Mexico",1.36,298,",us,",reviewed,1538502304210,"M 4.4 - 13km SE of Salina Cruz, Mexico",0,earthquake,",geoserve,origin,phase-data,",-360.0,1538574712040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h5sq +,,20269455,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20269455&format=geojson,,,,",ak20269455,",1.6,ml,,ak,,"118km NNW of Arctic Village, Alaska",0.54,39,",ak,",reviewed,1538501776341,"M 1.6 - 118km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390094846,https://earthquake.usgs.gov/earthquakes/eventpage/ak20269455 +,,20279947,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20279947&format=geojson,,,,",ak20279947,",2.4,ml,,ak,,"64km ESE of Amatignak Island, Alaska",0.55,89,",ak,",reviewed,1538501701158,"M 2.4 - 64km ESE of Amatignak Island, Alaska",0,earthquake,",geoserve,origin,phase-data,",-720.0,1539390094309,https://earthquake.usgs.gov/earthquakes/eventpage/ak20279947 +,,37377194,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37377194&format=geojson,0.01135,,36.0,",ci37377194,",1.94,ml,,ci,46.0,"10km SW of Niland, CA",0.21,58,",ci,",reviewed,1538501143990,"M 1.9 - 10km SW of Niland, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538509561150,https://earthquake.usgs.gov/earthquakes/eventpage/ci37377194 +,,20269451,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20269451&format=geojson,,,,",ak20269451,",1.7,ml,,ak,,"72km NW of Yakutat, Alaska",0.66,44,",ak,",reviewed,1538501079335,"M 1.7 - 72km NW of Yakutat, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390093715,https://earthquake.usgs.gov/earthquakes/eventpage/ak20269451 +,,61790796,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61790796&format=geojson,0.09718,,207.0,",av61790796,",1.08,ml,,av,13.0,"103km NNW of Larsen Bay, Alaska",0.18,18,",av,",reviewed,1538501019290,"M 1.1 - 103km NNW of Larsen Bay, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538518816800,https://earthquake.usgs.gov/earthquakes/eventpage/av61790796 +,,20269447,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20269447&format=geojson,,,,",ak20269447,",2.2,ml,,ak,,"117km NNW of Arctic Village, Alaska",0.69,74,",ak,",reviewed,1538500777411,"M 2.2 - 117km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390093078,https://earthquake.usgs.gov/earthquakes/eventpage/ak20269447 +,,20269445,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20269445&format=geojson,,,,",ak20269445,",1.7,ml,,ak,,"121km NNW of Arctic Village, Alaska",0.57,44,",ak,",reviewed,1538500638175,"M 1.7 - 121km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390092514,https://earthquake.usgs.gov/earthquakes/eventpage/ak20269445 +,,20269443,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20269443&format=geojson,,,,",ak20269443,",1.8,ml,,ak,,"125km NNW of Arctic Village, Alaska",0.97,50,",ak,",reviewed,1538500551990,"M 1.8 - 125km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390091933,https://earthquake.usgs.gov/earthquakes/eventpage/ak20269443 +,,73092621,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092621&format=geojson,0.08448,,142.0,",nc73092621,",1.24,md,,nc,17.0,"15km WSW of Toms Place, CA",0.06,24,",nc,",reviewed,1538500389210,"M 1.2 - 15km WSW of Toms Place, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538516883064,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092621 +,,37377178,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37377178&format=geojson,0.06524,,89.0,",ci37377178,",1.1,ml,,ci,32.0,"6km NNW of Cabazon, CA",0.11,19,",ci,",reviewed,1538499670480,"M 1.1 - 6km NNW of Cabazon, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538510415185,https://earthquake.usgs.gov/earthquakes/eventpage/ci37377178 +,,73092611,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092611&format=geojson,0.01041,,86.0,",nc73092611,",1.18,md,,nc,15.0,"3km W of Cobb, CA",0.03,21,",nc,",automatic,1538499493750,"M 1.2 - 3km W of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538510283412,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092611 +,,71109664,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc71109664&format=geojson,0.01039,,133.0,",nc71109664,",0.95,md,,nc,13.0,"2km W of Cobb, CA",0.02,14,",nc,",reviewed,1538499471480,"M 1.0 - 2km W of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538530744203,https://earthquake.usgs.gov/earthquakes/eventpage/nc71109664 +,,73092616,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092616&format=geojson,0.01094,,80.0,",nc73092616,",0.31,md,,nc,17.0,"3km WNW of Cobb, CA",0.04,1,",nc,",reviewed,1538499468880,"M 0.3 - 3km WNW of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538530023850,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092616 +,,20279942,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20279942&format=geojson,,,,",ak20279942,",1.9,ml,,ak,,"90km ESE of Adak, Alaska",0.48,56,",ak,",reviewed,1538499418990,"M 1.9 - 90km ESE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-720.0,1539390091426,https://earthquake.usgs.gov/earthquakes/eventpage/ak20279942 +,2.2,73092606,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092606&format=geojson,0.007948,3.0,59.0,",nc73092606,",2.22,md,,nc,59.0,"2km W of Cobb, CA",0.07,76,",nc,",reviewed,1538499333530,"M 2.2 - 2km W of Cobb, CA",0,earthquake,",dyfi,focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538544482448,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092606 +,,37377162,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37377162&format=geojson,0.1447,,148.0,",ci37377162,",2.83,ml,,ci,35.0,"24km SSW of Puebla, B.C., MX",0.26,123,",ci,",reviewed,1538499145260,"M 2.8 - 24km SSW of Puebla, B.C., MX",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538507937521,https://earthquake.usgs.gov/earthquakes/eventpage/ci37377162 +,,37377154,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37377154&format=geojson,0.1365,,145.0,",ci37377154,",2.65,ml,,ci,23.0,"22km SSW of Puebla, B.C., MX",0.28,108,",ci,",reviewed,1538499113180,"M 2.7 - 22km SSW of Puebla, B.C., MX",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538508486540,https://earthquake.usgs.gov/earthquakes/eventpage/ci37377154 +,,00659365,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659365&format=geojson,0.624,,332.21,",nn00659365,",1.3,ml,,nn,3.0,"19km WSW of Gerlach-Empire, Nevada",0.1135,26,",nn,",reviewed,1538498942001,"M 1.3 - 19km WSW of Gerlach-Empire, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538532385119,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659365 +,,00659249,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659249&format=geojson,0.185,,72.16,",nn00659249,",1.5,ml,,nn,11.0,"13km ESE of Sparks, Nevada",0.21,35,",nn,",reviewed,1538497750248,"M 1.5 Explosion - 13km ESE of Sparks, Nevada",0,explosion,",geoserve,origin,phase-data,",-480.0,1538532306031,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659249 +,,80312054,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80312054&format=geojson,0.105,,121.0,",mb80312054,",1.25,ml,,mb,12.0,"13km ESE of Lincoln, Montana",0.14,24,",mb,",reviewed,1538497736830,"M 1.3 - 13km ESE of Lincoln, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538502787350,https://earthquake.usgs.gov/earthquakes/eventpage/mb80312054 +,,20279941,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20279941&format=geojson,,,,",ak20279941,",2.8,ml,,ak,,"238km SE of Kodiak, Alaska",0.6,121,",ak,",reviewed,1538497367218,"M 2.8 - 238km SE of Kodiak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539390090899,https://earthquake.usgs.gov/earthquakes/eventpage/ak20279941 +,,20279940,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20279940&format=geojson,,,,",ak20279940,",2.8,ml,,ak,,"24km SE of Provideniya, Russia",0.69,121,",ak,",reviewed,1538496975470,"M 2.8 - 24km SE of Provideniya, Russia",0,earthquake,",geoserve,origin,phase-data,",720.0,1539390090401,https://earthquake.usgs.gov/earthquakes/eventpage/ak20279940 +,,73092601,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092601&format=geojson,0.03603,,127.0,",nc73092601,",1.14,md,,nc,17.0,"9km NNW of Pinnacles, CA",0.08,20,",nc,",reviewed,1538496900370,"M 1.1 - 9km NNW of Pinnacles, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538528642713,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092601 +,,00659244,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659244&format=geojson,0.129,,155.53,",nn00659244,",1.0,ml,,nn,15.0,"27km WSW of Truckee, California",0.1534,15,",nn,",reviewed,1538496507636,"M 1.0 - 27km WSW of Truckee, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538532304474,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659244 +,,73092596,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092596&format=geojson,0.1066,,69.0,",nc73092596,",1.72,md,,nc,19.0,"15km WSW of Shingletown, CA",0.09,46,",nc,",reviewed,1538496177800,"M 1.7 - 15km WSW of Shingletown, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538518443209,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092596 +,,1000h5np,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h5np&format=geojson,4.974,,138.0,",us1000h5np,",4.9,mb,,us,,South of Tonga,0.39,369,",us,",reviewed,1538496117990,M 4.9 - South of Tonga,0,earthquake,",geoserve,origin,phase-data,",-720.0,1539196920040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h5np +,,2018275011,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018275011&format=geojson,1.3755,,214.0,",pr2018275011,us1000h5wj,",3.35,md,,pr,7.0,"36km ENE of Road Town, British Virgin Islands",0.37,173,",pr,us,",reviewed,1538496079460,"M 3.4 - 36km ENE of Road Town, British Virgin Islands",0,earthquake,",geoserve,origin,phase-data,",-240.0,1539196400040,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018275011 +,,20268976,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268976&format=geojson,,,,",ak20268976,",1.3,ml,,ak,,"21km NE of Talkeetna, Alaska",0.58,26,",ak,",reviewed,1538495864205,"M 1.3 - 21km NE of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390089809,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268976 +,,1000h9gj,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h9gj&format=geojson,6.414,,153.0,",us1000h9gj,",4.4,mb,,us,,South of the Fiji Islands,0.49,298,",us,",reviewed,1538495794840,M 4.4 - South of the Fiji Islands,0,earthquake,",geoserve,origin,phase-data,",-720.0,1539195991040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h9gj +,,73092591,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092591&format=geojson,0.01526,,60.0,",nc73092591,",1.39,md,,nc,34.0,"9km NW of The Geysers, CA",0.04,30,",nc,",reviewed,1538495705590,"M 1.4 - 9km NW of The Geysers, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538527983530,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092591 +,,20279938,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20279938&format=geojson,,,,",ak20279938,",2.5,ml,,ak,,"45km ESE of Chignik Lake, Alaska",0.6,96,",ak,",reviewed,1538495645548,"M 2.5 - 45km ESE of Chignik Lake, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390089282,https://earthquake.usgs.gov/earthquakes/eventpage/ak20279938 +,,20268972,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268972&format=geojson,,,,",ak20268972,",2.0,ml,,ak,,"75km SSW of Kaktovik, Alaska",0.53,62,",ak,",reviewed,1538495579665,"M 2.0 - 75km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390088710,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268972 +,,20268970,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268970&format=geojson,,,,",ak20268970,",1.5,ml,,ak,,"88km WNW of Skagway, Alaska",0.71,35,",ak,",reviewed,1538495495380,"M 1.5 - 88km WNW of Skagway, Alaska",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539390088153,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268970 +,,73092586,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092586&format=geojson,0.004969,,99.0,",nc73092586,",0.57,md,,nc,9.0,"9km NW of The Geysers, CA",0.05,5,",nc,",automatic,1538495022250,"M 0.6 - 9km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538501882575,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092586 +,,37377050,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37377050&format=geojson,0.04254,,65.0,",ci37377050,",0.81,ml,,ci,29.0,"9km S of Idyllwild, CA",0.07,10,",ci,",reviewed,1538494660860,"M 0.8 - 9km S of Idyllwild, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538512325172,https://earthquake.usgs.gov/earthquakes/eventpage/ci37377050 +,,20268967,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268967&format=geojson,,,,",ak20268967,",1.3,ml,,ak,,"34km SSE of Anchorage, Alaska",0.53,26,",ak,",reviewed,1538494424364,"M 1.3 - 34km SSE of Anchorage, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390087568,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268967 +,,20268966,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268966&format=geojson,,,,",ak20268966,",1.2,ml,,ak,,"127km NW of Talkeetna, Alaska",0.91,22,",ak,",reviewed,1538494321207,"M 1.2 - 127km NW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390087008,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268966 +,,1000h5mr,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h5mr&format=geojson,0.518,,46.0,",us1000h5mr,",4.6,mb,,us,,"12km SE of Caglayancerit, Turkey",1.08,326,",us,",reviewed,1538494145160,"M 4.6 - 12km SE of Caglayancerit, Turkey",0,earthquake,",geoserve,origin,phase-data,",120.0,1539190296040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h5mr +,,00659340,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659340&format=geojson,0.035,,212.07,",nn00659340,",-0.4,ml,,nn,3.0,"68km ENE of Beatty, Nevada",0.0224,0,",nn,",reviewed,1538493893235,"M -0.4 - 68km ENE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538532357961,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659340 +,,00659339,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659339&format=geojson,0.031,,167.17,",nn00659339,",-0.4,ml,,nn,7.0,"69km ENE of Beatty, Nevada",0.0569,0,",nn,",reviewed,1538493686500,"M -0.4 - 69km ENE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538532356733,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659339 +,,73092581,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092581&format=geojson,0.003,,148.0,",nc73092581,",0.88,md,,nc,6.0,"7km NW of The Geysers, CA",0.03,12,",nc,",automatic,1538493657630,"M 0.9 - 7km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538500143234,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092581 +,,1000h9gf,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h9gf&format=geojson,8.078,,81.0,",us1000h9gf,",4.5,mb,,us,,Indian Ocean Triple Junction,0.45,312,",us,",reviewed,1538493310890,M 4.5 - Indian Ocean Triple Junction,0,earthquake,",geoserve,origin,phase-data,",240.0,1539190174040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h9gf +,,20268964,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268964&format=geojson,,,,",ak20268964,",1.3,ml,,ak,,"97km W of Cantwell, Alaska",0.8,26,",ak,",reviewed,1538493294436,"M 1.3 - 97km W of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390086453,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268964 +,,20279932,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20279932&format=geojson,,,,",ak20279932,",1.0,ml,,ak,,"66km NE of Talkeetna, Alaska",0.58,15,",ak,",reviewed,1538492381215,"M 1.0 - 66km NE of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390085898,https://earthquake.usgs.gov/earthquakes/eventpage/ak20279932 +,,20268960,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268960&format=geojson,,,,",ak20268960,",1.6,ml,,ak,,"77km NNW of Nikiski, Alaska",0.59,39,",ak,",reviewed,1538491710945,"M 1.6 - 77km NNW of Nikiski, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390085282,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268960 +,,20279930,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20279930&format=geojson,,,,",ak20279930,",2.1,ml,,ak,,"85km S of False Pass, Alaska",0.28,68,",ak,",reviewed,1538491524002,"M 2.1 - 85km S of False Pass, Alaska",0,earthquake,",geoserve,origin,phase-data,",-660.0,1539390084768,https://earthquake.usgs.gov/earthquakes/eventpage/ak20279930 +,,20268957,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268957&format=geojson,,,,",ak20268957,",1.6,ml,,ak,,"26km NW of Nikiski, Alaska",0.32,39,",ak,",reviewed,1538491449289,"M 1.6 - 26km NW of Nikiski, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390084153,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268957 +,,73092571,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092571&format=geojson,0.03207,,57.0,",nc73092571,",1.97,md,,nc,31.0,"4km N of Pinnacles, CA",0.07,60,",nc,",reviewed,1538491183080,"M 2.0 - 4km N of Pinnacles, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538516161993,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092571 +,,73092566,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092566&format=geojson,0.002582,,66.0,",nc73092566,",0.54,md,,nc,14.0,"7km WNW of The Geysers, CA",0.04,4,",nc,",reviewed,1538491097460,"M 0.5 - 7km WNW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538503999880,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092566 +,,00659334,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659334&format=geojson,0.082,,109.69,",nn00659334,",-0.1,ml,,nn,4.0,"7km S of Dayton, Nevada",0.0954,0,",nn,",reviewed,1538490750068,"M -0.1 - 7km S of Dayton, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538532353794,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659334 +,,00659333,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659333&format=geojson,0.091,,217.35,",nn00659333,",0.2,ml,,nn,3.0,"6km S of Dayton, Nevada",0.004,1,",nn,",reviewed,1538490702492,"M 0.2 - 6km S of Dayton, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538532352417,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659333 +,,20268956,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268956&format=geojson,,,,",ak20268956,",1.8,ml,,ak,,"90km NNW of Arctic Village, Alaska",0.59,50,",ak,",reviewed,1538490103834,"M 1.8 - 90km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390083602,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268956 +,,1000h9ga,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h9ga&format=geojson,4.805,,79.0,",us1000h9ga,",4.6,mb,,us,,"87km E of Ndoi Island, Fiji",0.84,326,",us,",reviewed,1538489878400,"M 4.6 - 87km E of Ndoi Island, Fiji",0,earthquake,",geoserve,origin,phase-data,",-720.0,1539182855040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h9ga +,,70626937,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70626937&format=geojson,0.01282,,40.0,",hv70626937,",1.81,ml,,hv,37.0,"7km W of Volcano, Hawaii",0.22,50,",hv,",automatic,1538489859000,"M 1.8 - 7km W of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538490204140,https://earthquake.usgs.gov/earthquakes/eventpage/hv70626937 +,,20268955,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268955&format=geojson,,,,",ak20268955,",1.7,ml,,ak,,"78km SSW of Kaktovik, Alaska",0.69,44,",ak,",reviewed,1538489757048,"M 1.7 - 78km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390083043,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268955 +,,00659332,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659332&format=geojson,0.248,,182.8,",nn00659332,",0.9,ml,,nn,3.0,"5km S of Smith Valley, Nevada",0.0188,12,",nn,",reviewed,1538489410487,"M 0.9 - 5km S of Smith Valley, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538532351127,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659332 +,,00659300,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659300&format=geojson,0.058,,183.13,",nn00659300,",0.1,ml,,nn,4.0,"36km ESE of Hawthorne, Nevada",0.1219,0,",nn,",reviewed,1538488811553,"M 0.1 - 36km ESE of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538532335344,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659300 +,,37377010,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37377010&format=geojson,0.1494,,138.0,",ci37377010,",2.02,ml,,ci,26.0,"21km SW of Puebla, B.C., MX",0.27,63,",ci,",reviewed,1538487727570,"M 2.0 - 21km SW of Puebla, B.C., MX",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538512145084,https://earthquake.usgs.gov/earthquakes/eventpage/ci37377010 +,,20268950,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268950&format=geojson,,,,",ak20268950,",1.6,ml,,ak,,"93km WSW of Cantwell, Alaska",0.46,39,",ak,",reviewed,1538487400240,"M 1.6 - 93km WSW of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390082398,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268950 +,,20268948,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268948&format=geojson,,,,",ak20268948,",2.0,ml,,ak,,"77km SSW of Kaktovik, Alaska",0.6,62,",ak,",reviewed,1538487192294,"M 2.0 - 77km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390081769,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268948 +,,80312029,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80312029&format=geojson,0.309,,145.0,",mb80312029,",1.23,ml,,mb,10.0,"0km SW of Manhattan, Montana",0.17,23,",mb,",reviewed,1538486946090,"M 1.2 - 0km SW of Manhattan, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538488909960,https://earthquake.usgs.gov/earthquakes/eventpage/mb80312029 +,,20268946,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268946&format=geojson,,,,",ak20268946,us1000h5lx,",2.4,ml,,ak,,"66km SSW of Kaktovik, Alaska",0.52,89,",ak,us,",reviewed,1538486843614,"M 2.4 - 66km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390081179,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268946 +,,37376978,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37376978&format=geojson,0.01124,,69.0,",ci37376978,",0.2,ml,,ci,20.0,"9km NE of Aguanga, CA",0.11,1,",ci,",reviewed,1538486723860,"M 0.2 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538501254939,https://earthquake.usgs.gov/earthquakes/eventpage/ci37376978 +,,00659291,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659291&format=geojson,0.182,,215.21,",nn00659291,",0.0,ml,,nn,11.0,"35km SSE of Goldfield, Nevada",0.1648,0,",nn,",reviewed,1538486627977,"M 0.0 - 35km SSE of Goldfield, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538532330545,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659291 +,,73092561,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092561&format=geojson,0.03453,,136.0,",nc73092561,",0.59,md,,nc,21.0,"6km SSE of Mammoth Lakes, CA",0.13,5,",nc,",reviewed,1538486285100,"M 0.6 - 6km SSE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538503458126,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092561 +,,37376962,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37376962&format=geojson,0.005862,,70.0,",ci37376962,",0.33,ml,,ci,19.0,"10km NE of Aguanga, CA",0.11,2,",ci,",reviewed,1538486154750,"M 0.3 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538511006404,https://earthquake.usgs.gov/earthquakes/eventpage/ci37376962 +,,20268942,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268942&format=geojson,,,,",ak20268942,",1.8,ml,,ak,,"77km SSW of Kaktovik, Alaska",0.67,50,",ak,",reviewed,1538485151977,"M 1.8 - 77km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390080584,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268942 +,,20268939,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268939&format=geojson,,,,",ak20268939,",1.6,ml,,ak,,"89km NW of Arctic Village, Alaska",0.64,39,",ak,",reviewed,1538484636261,"M 1.6 - 89km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390080015,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268939 +,,20268936,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268936&format=geojson,,,,",ak20268936,",2.3,ml,,ak,,"78km W of Anchor Point, Alaska",0.52,81,",ak,",reviewed,1538484573463,"M 2.3 - 78km W of Anchor Point, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390079321,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268936 +,,60298817,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60298817&format=geojson,0.03105,,111.0,",uu60298817,",1.42,ml,,uu,17.0,"27km NE of West Yellowstone, Montana",0.17,31,",uu,",reviewed,1538484541320,"M 1.4 - 27km NE of West Yellowstone, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538493099270,https://earthquake.usgs.gov/earthquakes/eventpage/uu60298817 +,,2018275010,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018275010&format=geojson,0.2884,,229.0,",pr2018275010,",2.35,md,,pr,10.0,"8km NNE of Dorado, Puerto Rico",0.32,85,",pr,",reviewed,1538484208050,"M 2.4 - 8km NNE of Dorado, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538500617297,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018275010 +,,2018275008,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018275008&format=geojson,0.0601,,330.0,",pr2018275008,",1.5,md,,pr,3.0,"7km SSE of La Parguera, Puerto Rico",0.03,35,",pr,",reviewed,1538483404310,"M 1.5 - 7km SSE of La Parguera, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538496219561,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018275008 +,,60241356,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nm60241356&format=geojson,0.03019,,59.0,",nm60241356,",1.4,md,,nm,10.0,"3km ENE of Ridgely, Tennessee",0.05,30,",nm,",reviewed,1538483356430,"M 1.4 - 3km ENE of Ridgely, Tennessee",0,earthquake,",geoserve,origin,phase-data,",-360.0,1538489279430,https://earthquake.usgs.gov/earthquakes/eventpage/nm60241356 +,,2018275007,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018275007&format=geojson,0.1058,,77.0,",pr2018275007,",2.18,md,,pr,9.0,"6km NW of Sabana Grande, Puerto Rico",0.26,73,",pr,",reviewed,1538483212540,"M 2.2 - 6km NW of Sabana Grande, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538496142729,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018275007 +,,37376930,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37376930&format=geojson,0.08173,,60.0,",ci37376930,",1.24,ml,,ci,37.0,"6km N of Big Bear City, CA",0.2,24,",ci,",reviewed,1538482996770,"M 1.2 - 6km N of Big Bear City, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538488275610,https://earthquake.usgs.gov/earthquakes/eventpage/ci37376930 +,,20279920,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20279920&format=geojson,,,,",ak20279920,",2.4,ml,,ak,,"100km NNW of Arctic Village, Alaska",0.69,89,",ak,",reviewed,1538482886227,"M 2.4 - 100km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390078773,https://earthquake.usgs.gov/earthquakes/eventpage/ak20279920 +,,20268911,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268911&format=geojson,,,,",ak20268911,",1.9,ml,,ak,,"104km NNW of Arctic Village, Alaska",0.51,56,",ak,",reviewed,1538482876602,"M 1.9 - 104km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390078219,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268911 +,,37376922,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37376922&format=geojson,0.06179,,54.0,",ci37376922,",1.82,ml,,ci,66.0,"9km NNW of Ocotillo Wells, CA",0.2,51,",ci,",reviewed,1538482572470,"M 1.8 - 9km NNW of Ocotillo Wells, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538488212220,https://earthquake.usgs.gov/earthquakes/eventpage/ci37376922 +,2.9,1000h5ld,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h5ld&format=geojson,0.523,1.0,52.0,",us1000h5ld,",4.3,mwr,,us,,"85km E of Iquique, Chile",1.43,285,",us,",reviewed,1538482302520,"M 4.3 - 85km E of Iquique, Chile",0,earthquake,",dyfi,geoserve,origin,phase-data,",-240.0,1538516761619,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h5ld +,,20268909,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268909&format=geojson,,,,",ak20268909,",0.8,ml,,ak,,"90km WSW of Haines Junction, Canada",0.4,10,",ak,",reviewed,1538482018461,"M 0.8 - 90km WSW of Haines Junction, Canada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539390077673,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268909 +,,37376914,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37376914&format=geojson,0.02115,,58.0,",ci37376914,",0.27,ml,,ci,17.0,"8km NE of Aguanga, CA",0.09,1,",ci,",reviewed,1538481935480,"M 0.3 - 8km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538510552414,https://earthquake.usgs.gov/earthquakes/eventpage/ci37376914 +,,20268905,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268905&format=geojson,,,,",ak20268905,",2.0,ml,,ak,,"95km NW of Arctic Village, Alaska",0.81,62,",ak,",reviewed,1538481876203,"M 2.0 - 95km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390077095,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268905 +,,37376906,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37376906&format=geojson,0.1413,,67.0,",ci37376906,",1.0,ml,,ci,40.0,"16km ESE of Julian, CA",0.16,15,",ci,",reviewed,1538481845190,"M 1.0 - 16km ESE of Julian, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538594732230,https://earthquake.usgs.gov/earthquakes/eventpage/ci37376906 +,,73092556,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092556&format=geojson,0.01031,,78.0,",nc73092556,",0.89,md,,nc,11.0,"6km NW of The Geysers, CA",0.03,12,",nc,",automatic,1538481829460,"M 0.9 - 6km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538483102281,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092556 +,,37376898,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37376898&format=geojson,0.03553,,105.0,",ci37376898,",0.81,ml,,ci,14.0,"8km S of Pearblossum, CA",0.11,10,",ci,",reviewed,1538481765730,"M 0.8 - 8km S of Pearblossum, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538511175710,https://earthquake.usgs.gov/earthquakes/eventpage/ci37376898 +,,73092551,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092551&format=geojson,0.01047,,33.0,",nc73092551,",1.19,md,,nc,39.0,"6km NW of The Geysers, CA",0.05,22,",nc,",reviewed,1538481495750,"M 1.2 - 6km NW of The Geysers, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538527264186,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092551 +,,61425222,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61425222&format=geojson,0.204,,107.0,",uw61425222,",1.48,ml,,uw,10.0,"19km NW of Rockport, Washington",0.32,34,",uw,",reviewed,1538480986710,"M 1.5 - 19km NW of Rockport, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538499575470,https://earthquake.usgs.gov/earthquakes/eventpage/uw61425222 +,,73092546,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092546&format=geojson,0.01814,,60.0,",nc73092546,",0.97,md,,nc,22.0,"3km ESE of Aromas, CA",0.07,14,",nc,",reviewed,1538480414960,"M 1.0 - 3km ESE of Aromas, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538502615627,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092546 +,4.1,1000h5l2,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h5l2&format=geojson,4.338,1.0,71.0,",us1000h5l2,",4.9,mb,,us,,"51km W of Port-Vila, Vanuatu",0.87,370,",us,",reviewed,1538480141210,"M 4.9 - 51km W of Port-Vila, Vanuatu",0,earthquake,",dyfi,geoserve,origin,phase-data,",660.0,1538532555273,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h5l2 +,,37376882,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37376882&format=geojson,0.02832,,83.0,",ci37376882,",0.06,ml,,ci,21.0,"8km NE of Aguanga, CA",0.09,0,",ci,",reviewed,1538479943180,"M 0.1 - 8km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538511498206,https://earthquake.usgs.gov/earthquakes/eventpage/ci37376882 +,,20268901,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268901&format=geojson,,,,",ak20268901,",1.3,ml,,ak,,"46km WNW of Nikiski, Alaska",0.34,26,",ak,",reviewed,1538479894150,"M 1.3 - 46km WNW of Nikiski, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390076542,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268901 +,,2018275009,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018275009&format=geojson,0.1495,,208.0,",pr2018275009,",1.8,md,,pr,12.0,"5km SSW of Central Aguirre, Puerto Rico",0.22,50,",pr,",reviewed,1538479426340,"M 1.8 - 5km SSW of Central Aguirre, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538498193100,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018275009 +,,73092541,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092541&format=geojson,0.01489,,106.0,",nc73092541,",0.69,md,,nc,22.0,"11km NW of Parkfield, CA",0.04,7,",nc,",reviewed,1538479390670,"M 0.7 - 11km NW of Parkfield, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538510944479,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092541 +,,60298792,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60298792&format=geojson,0.155,,56.0,",uu60298792,",1.6,ml,,uu,21.0,"17km SSE of Beaver, Utah",0.29,39,",uu,",reviewed,1538479289070,"M 1.6 - 17km SSE of Beaver, Utah",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538518168330,https://earthquake.usgs.gov/earthquakes/eventpage/uu60298792 +,,00659281,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659281&format=geojson,0.185,,185.15,",nn00659281,",-0.2,ml,,nn,6.0,"44km WNW of Beatty, Nevada",0.0596,0,",nn,",reviewed,1538479224172,"M -0.2 - 44km WNW of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538532326040,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659281 +,,00659278,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659278&format=geojson,0.021,,163.03,",nn00659278,",0.1,ml,,nn,4.0,"27km NW of Gabbs, Nevada",0.0694,0,",nn,",reviewed,1538478962193,"M 0.1 - 27km NW of Gabbs, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538532322978,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659278 +,,70805539,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70805539&format=geojson,,,266.0,",av70805539,",-0.01,ml,,av,6.0,"12km NNE of Redoubt Volcano, Alaska",0.18,0,",av,",reviewed,1538478456590,"M -0.0 - 12km NNE of Redoubt Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538515971030,https://earthquake.usgs.gov/earthquakes/eventpage/av70805539 +,,20279914,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20279914&format=geojson,,,,",ak20279914,",1.1,ml,,ak,,"54km WSW of Willow, Alaska",0.36,19,",ak,",reviewed,1538478450679,"M 1.1 - 54km WSW of Willow, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390076005,https://earthquake.usgs.gov/earthquakes/eventpage/ak20279914 +,,73092536,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092536&format=geojson,0.016,,70.0,",nc73092536,",0.95,md,,nc,9.0,"5km WNW of The Geysers, CA",0.05,14,",nc,",automatic,1538478373820,"M 1.0 - 5km WNW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538486702593,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092536 +,,73092531,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092531&format=geojson,0.019,,34.0,",nc73092531,",1.62,md,,nc,65.0,"4km NNW of San Leandro, CA",0.09,40,",nc,",reviewed,1538477546420,"M 1.6 - 4km NNW of San Leandro, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538519462303,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092531 +,,37376874,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37376874&format=geojson,0.1114,,52.0,",ci37376874,",2.04,ml,,ci,58.0,"30km N of Yucca Valley, CA",0.13,64,",ci,",reviewed,1538477423570,"M 2.0 - 30km N of Yucca Valley, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538507502340,https://earthquake.usgs.gov/earthquakes/eventpage/ci37376874 +,,80312014,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80312014&format=geojson,0.267,,183.0,",mb80312014,",1.67,ml,,mb,15.0,"36km ENE of Ronan, Montana",0.2,43,",mb,",reviewed,1538477309400,"M 1.7 - 36km ENE of Ronan, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538489217450,https://earthquake.usgs.gov/earthquakes/eventpage/mb80312014 +,,73092526,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092526&format=geojson,0.06014,,198.0,",nc73092526,",0.66,md,,nc,21.0,"14km SE of Mammoth Lakes, CA",0.03,7,",nc,",reviewed,1538477287940,"M 0.7 - 14km SE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538502856170,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092526 +,,1000h5kk,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h5kk&format=geojson,6.229,,145.0,",us1000h5kk,",4.7,mb,,us,,"79km W of Morrope, Peru",0.7,340,",us,",reviewed,1538476813410,"M 4.7 - 79km W of Morrope, Peru",0,earthquake,",geoserve,origin,phase-data,",-300.0,1538478237040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h5kk +,,2018275006,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018275006&format=geojson,0.094,,142.0,",pr2018275006,",1.99,md,,pr,3.0,"1km SW of Maricao, Puerto Rico",0.25,61,",pr,",reviewed,1538476809420,"M 2.0 - 1km SW of Maricao, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538480649272,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018275006 +,,37376866,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37376866&format=geojson,0.09542,,75.0,",ci37376866,",1.2,ml,,ci,20.0,"7km S of Lamont, CA",0.15,22,",ci,",reviewed,1538476639500,"M 1.2 - 7km S of Lamont, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538511774632,https://earthquake.usgs.gov/earthquakes/eventpage/ci37376866 +,,1000h5kf,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h5kf&format=geojson,0.277,,70.0,",us1000h5kf,",3.0,mb_lg,,us,,"21km NNE of Taloga, Oklahoma",0.52,138,",us,",reviewed,1538476156550,"M 3.0 - 21km NNE of Taloga, Oklahoma",0,earthquake,",geoserve,origin,phase-data,",-360.0,1538477002040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h5kf +,,20268890,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268890&format=geojson,,,,",ak20268890,",1.7,ml,,ak,,"86km WNW of Fort McPherson, Canada",0.63,44,",ak,",reviewed,1538475753129,"M 1.7 - 86km WNW of Fort McPherson, Canada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539390075426,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268890 +,,2018275005,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018275005&format=geojson,1.408,,330.0,",pr2018275005,us1000h5ks,",3.6,md,,pr,12.0,"120km NNW of Charlotte Amalie, U.S. Virgin Islands",0.29,199,",pr,us,",reviewed,1538475246330,"M 3.6 - 120km NNW of Charlotte Amalie, U.S. Virgin Islands",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538487643040,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018275005 +,,00659237,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659237&format=geojson,0.332,,84.92,",nn00659237,",1.1,ml,,nn,15.0,"30km E of Yerington, Nevada",0.1898,19,",nn,",reviewed,1538475186674,"M 1.1 - 30km E of Yerington, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538532300586,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659237 +,,70626432,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70626432&format=geojson,0.1702,,208.0,",hv70626432,",1.79,md,,hv,38.0,"1km SW of Honaunau-Napoopoo, Hawaii",0.22,49,",hv,",automatic,1538475101550,"M 1.8 - 1km SW of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538475292630,https://earthquake.usgs.gov/earthquakes/eventpage/hv70626432 +,,20268886,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268886&format=geojson,,,,",ak20268886,",1.4,ml,,ak,,"172km S of Fort McPherson, Canada",0.74,30,",ak,",reviewed,1538475086354,"M 1.4 - 172km S of Fort McPherson, Canada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539390074905,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268886 +green,3.7,1000h5k9,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h5k9&format=geojson,4.324,8.0,48.0,",us1000h5k9,",5.6,mww,4.51,us,,"50km WSW of Port-Vila, Vanuatu",0.76,485,",us,",reviewed,1538474917460,"M 5.6 - 50km WSW of Port-Vila, Vanuatu",0,earthquake,",dyfi,geoserve,losspager,moment-tensor,origin,phase-data,shakemap,",660.0,1538600278040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h5k9 +,,37376850,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37376850&format=geojson,0.01895,,31.0,",ci37376850,",1.46,ml,,ci,57.0,"3km ESE of Lake Henshaw, CA",0.2,33,",ci,",reviewed,1538474629470,"M 1.5 - 3km ESE of Lake Henshaw, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538488344870,https://earthquake.usgs.gov/earthquakes/eventpage/ci37376850 +,,20279911,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20279911&format=geojson,,,,",ak20279911,",1.3,ml,,ak,,"106km NNW of Arctic Village, Alaska",0.73,26,",ak,",reviewed,1538474444281,"M 1.3 - 106km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390074386,https://earthquake.usgs.gov/earthquakes/eventpage/ak20279911 +,,20268884,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268884&format=geojson,,,,",ak20268884,",1.6,ml,,ak,,"116km NNW of Arctic Village, Alaska",0.78,39,",ak,",reviewed,1538474380888,"M 1.6 - 116km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390073857,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268884 +,,00659276,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659276&format=geojson,0.273,,248.22,",nn00659276,",0.8,ml,,nn,5.0,"15km ESE of Fernley, Nevada",0.1923,10,",nn,",reviewed,1538473606678,"M 0.8 - 15km ESE of Fernley, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538532321687,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659276 +,,20268881,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268881&format=geojson,,,,",ak20268881,",1.8,ml,,ak,,"80km NNW of Talkeetna, Alaska",0.47,50,",ak,",reviewed,1538473563738,"M 1.8 - 80km NNW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390073227,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268881 +,,37376842,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37376842&format=geojson,0.07994,,39.0,",ci37376842,",1.25,ml,,ci,53.0,"4km ENE of Calimesa, CA",0.15,24,",ci,",reviewed,1538473407070,"M 1.3 - 4km ENE of Calimesa, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538514282620,https://earthquake.usgs.gov/earthquakes/eventpage/ci37376842 +,,20268879,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268879&format=geojson,,,,",ak20268879,",1.3,ml,,ak,,"109km SSE of Prudhoe Bay, Alaska",0.69,26,",ak,",reviewed,1538473281890,"M 1.3 - 109km SSE of Prudhoe Bay, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390072655,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268879 +,,20268877,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268877&format=geojson,,,,",ak20268877,",1.8,ml,,ak,,"66km SSW of Cantwell, Alaska",0.64,50,",ak,",reviewed,1538473275001,"M 1.8 - 66km SSW of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390072001,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268877 +,,73092511,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092511&format=geojson,0.01892,,119.0,",nc73092511,",0.55,md,,nc,10.0,"7km NW of The Geysers, CA",0.03,5,",nc,",automatic,1538473030720,"M 0.6 - 7km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538473923403,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092511 +,,73092506,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092506&format=geojson,0.0319,,207.0,",nc73092506,",0.42,md,,nc,12.0,"7km SSW of Mammoth Lakes, CA",0.04,3,",nc,",reviewed,1538472677490,"M 0.4 - 7km SSW of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538502795983,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092506 +,,20268873,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268873&format=geojson,,,,",ak20268873,",2.0,ml,,ak,,"116km NNW of Arctic Village, Alaska",0.56,62,",ak,",reviewed,1538472028259,"M 2.0 - 116km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390071421,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268873 +,,20268869,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268869&format=geojson,,,,",ak20268869,",1.2,ml,,ak,,"60km SSW of Cantwell, Alaska",0.59,22,",ak,",reviewed,1538471529279,"M 1.2 - 60km SSW of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390070879,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268869 +,,20268867,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268867&format=geojson,,,,",ak20268867,",2.1,ml,,ak,,"74km SSW of Kaktovik, Alaska",0.61,68,",ak,",reviewed,1538471491599,"M 2.1 - 74km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390070303,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268867 +,,20268864,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268864&format=geojson,,,,",ak20268864,",1.7,ml,,ak,,"121km NNW of Arctic Village, Alaska",0.69,44,",ak,",reviewed,1538471182059,"M 1.7 - 121km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390069742,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268864 +,,61790541,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61790541&format=geojson,0.009237,,158.0,",av61790541,",0.8,ml,,av,7.0,"94km ESE of Old Iliamna, Alaska",0.08,10,",av,",reviewed,1538470932140,"M 0.8 - 94km ESE of Old Iliamna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538513655610,https://earthquake.usgs.gov/earthquakes/eventpage/av61790541 +,,73092496,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092496&format=geojson,0.01036,,46.0,",nc73092496,",1.38,md,,nc,40.0,"6km NW of The Geysers, CA",0.06,29,",nc,",reviewed,1538470913950,"M 1.4 - 6km NW of The Geysers, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538522704317,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092496 +,,37376834,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37376834&format=geojson,0.01672,,34.0,",ci37376834,",0.9,ml,,ci,36.0,"5km SE of Lytle Creek, CA",0.13,12,",ci,",reviewed,1538470912140,"M 0.9 - 5km SE of Lytle Creek, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538513857380,https://earthquake.usgs.gov/earthquakes/eventpage/ci37376834 +,,73092501,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092501&format=geojson,0.00383,,65.0,",nc73092501,",0.64,md,,nc,14.0,"10km WNW of The Geysers, CA",0.02,6,",nc,",reviewed,1538470847690,"M 0.6 - 10km WNW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538505002880,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092501 +,,70805509,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70805509&format=geojson,0.07352,,275.0,",av70805509,",0.84,ml,,av,5.0,"47km ENE of Cold Bay, Alaska",0.28,11,",av,",reviewed,1538470703890,"M 0.8 - 47km ENE of Cold Bay, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538514414170,https://earthquake.usgs.gov/earthquakes/eventpage/av70805509 +,,80312049,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80312049&format=geojson,0.082,,194.0,",mb80312049,",0.99,ml,,mb,7.0,"24km NW of Helena Valley Northwest, Montana",0.07,15,",mb,",reviewed,1538470647530,"M 1.0 - 24km NW of Helena Valley Northwest, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538496422620,https://earthquake.usgs.gov/earthquakes/eventpage/mb80312049 +,,80312044,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80312044&format=geojson,0.326,,181.0,",mb80312044,",0.56,md,,mb,14.0,"39km NE of Seeley Lake, Montana",0.14,5,",mb,",reviewed,1538470352140,"M 0.6 - 39km NE of Seeley Lake, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538496207610,https://earthquake.usgs.gov/earthquakes/eventpage/mb80312044 +,,73092491,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092491&format=geojson,0.2217,,105.0,",nc73092491,",1.31,md,,nc,13.0,"12km WSW of Durham, CA",0.1,26,",nc,",reviewed,1538470000510,"M 1.3 - 12km WSW of Durham, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538521984398,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092491 +,,00659268,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659268&format=geojson,0.212,,118.75,",nn00659268,",0.7,ml,,nn,7.0,"35km SSW of Hawthorne, Nevada",0.2145,8,",nn,",reviewed,1538469712406,"M 0.7 - 35km SSW of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538532314539,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659268 +,2.2,73092486,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092486&format=geojson,0.1023,6.0,244.0,",nc73092486,",2.61,md,,nc,17.0,"16km NW of Petrolia, CA",0.08,106,",nc,",reviewed,1538469693740,"M 2.6 - 16km NW of Petrolia, CA",0,earthquake,",dyfi,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538521024942,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092486 +,,1000h9fl,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h9fl&format=geojson,2.644,,93.0,",us1000h9fl,",4.3,mb,,us,,"40km SSW of Mbulung, Indonesia",0.99,284,",us,",reviewed,1538469317070,"M 4.3 - 40km SSW of Mbulung, Indonesia",0,earthquake,",geoserve,origin,phase-data,",480.0,1539414904040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h9fl +,,20268860,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268860&format=geojson,,,,",ak20268860,",1.7,ml,,ak,,"63km SSE of Cantwell, Alaska",0.67,44,",ak,",reviewed,1538469275223,"M 1.7 - 63km SSE of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390069122,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268860 +,,37376826,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37376826&format=geojson,0.0836,,86.0,",ci37376826,",0.31,ml,,ci,12.0,"9km NE of Aguanga, CA",0.09,1,",ci,",reviewed,1538468497850,"M 0.3 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538488256909,https://earthquake.usgs.gov/earthquakes/eventpage/ci37376826 +,,20268858,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268858&format=geojson,,,,",ak20268858,",1.3,ml,,ak,,"49km E of Cape Yakataga, Alaska",0.79,26,",ak,",reviewed,1538468478684,"M 1.3 Ice Quake - 49km E of Cape Yakataga, Alaska",0,ice quake,",geoserve,origin,phase-data,",-540.0,1539390068592,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268858 +,,1000h9fm,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h9fm&format=geojson,2.098,,194.0,",us1000h9fm,",4.2,mb,,us,,"107km NNE of Tobelo, Indonesia",0.53,271,",us,",reviewed,1538468241200,"M 4.2 - 107km NNE of Tobelo, Indonesia",0,earthquake,",geoserve,origin,phase-data,",540.0,1539414439040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h9fm +,,37376818,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37376818&format=geojson,0.09692,,108.0,",ci37376818,",1.04,ml,,ci,45.0,"3km NNW of La Verne, CA",0.19,17,",ci,",reviewed,1538468030410,"M 1.0 - 3km NNW of La Verne, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538513126300,https://earthquake.usgs.gov/earthquakes/eventpage/ci37376818 +,,20279900,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20279900&format=geojson,,,,",ak20279900,",1.1,ml,,ak,,"64km E of Cape Yakataga, Alaska",0.91,19,",ak,",reviewed,1538467919786,"M 1.1 Ice Quake - 64km E of Cape Yakataga, Alaska",0,ice quake,",geoserve,origin,phase-data,",-540.0,1539390068084,https://earthquake.usgs.gov/earthquakes/eventpage/ak20279900 +,,60298737,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60298737&format=geojson,0.1621,,64.0,",uu60298737,",1.83,ml,,uu,24.0,"18km SSE of Beaver, Utah",0.26,52,",uu,",reviewed,1538467652800,"M 1.8 - 18km SSE of Beaver, Utah",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538495932510,https://earthquake.usgs.gov/earthquakes/eventpage/uu60298737 +,,00659361,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659361&format=geojson,0.194,,317.18,",nn00659361,",0.0,ml,,nn,13.0,"59km W of Alamo, Nevada",0.1576,0,",nn,",reviewed,1538467369370,"M 0.0 - 59km W of Alamo, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538532380912,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659361 +,,1000h5j0,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h5j0&format=geojson,2.726,,80.0,",us1000h5j0,",4.5,mb,,us,,"38km S of Nggongi, Indonesia",0.96,312,",us,",reviewed,1538466876810,"M 4.5 - 38km S of Nggongi, Indonesia",0,earthquake,",geoserve,origin,phase-data,",480.0,1539413075040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h5j0 +,,73092481,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092481&format=geojson,0.02498,,154.0,",nc73092481,",1.43,md,,nc,18.0,"6km NE of Boyes Hot Springs, CA",0.05,31,",nc,",reviewed,1538466620810,"M 1.4 - 6km NE of Boyes Hot Springs, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538520182369,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092481 +,,20268852,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268852&format=geojson,,,,",ak20268852,",1.4,ml,,ak,,"53km W of Willow, Alaska",0.46,30,",ak,",reviewed,1538466481953,"M 1.4 - 53km W of Willow, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390067477,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268852 +,,20268851,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268851&format=geojson,,,,",ak20268851,",1.6,ml,,ak,,"28km SE of Cape Yakataga, Alaska",0.67,39,",ak,",reviewed,1538466332738,"M 1.6 Ice Quake - 28km SE of Cape Yakataga, Alaska",0,ice quake,",geoserve,origin,phase-data,",-540.0,1539390066953,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268851 +,,20268846,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268846&format=geojson,,,,",ak20268846,",1.7,ml,,ak,,"163km SSE of Kotzebue, Alaska",0.85,44,",ak,",reviewed,1538466068308,"M 1.7 - 163km SSE of Kotzebue, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390066389,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268846 +,,00659350,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659350&format=geojson,0.063,,107.21,",nn00659350,",-0.4,ml,,nn,7.0,"51km NW of Pahrump, Nevada",0.1121,0,",nn,",reviewed,1538465748301,"M -0.4 - 51km NW of Pahrump, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538532366562,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659350 +,,73092471,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092471&format=geojson,0.01446,,179.0,",nc73092471,",0.57,md,,nc,7.0,"10km WNW of The Geysers, CA",0.04,5,",nc,",automatic,1538465643450,"M 0.6 - 10km WNW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538466603664,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092471 +,,20279896,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20279896&format=geojson,,,,",ak20279896,",0.8,ml,,ak,,"35km SE of Anchorage, Alaska",0.36,10,",ak,",reviewed,1538465571457,"M 0.8 - 35km SE of Anchorage, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390065879,https://earthquake.usgs.gov/earthquakes/eventpage/ak20279896 +,,20268845,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268845&format=geojson,,,,",ak20268845,",1.3,ml,,ak,,"28km W of Kenai, Alaska",0.28,26,",ak,",reviewed,1538465554186,"M 1.3 - 28km W of Kenai, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390065348,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268845 +,,37376810,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37376810&format=geojson,0.02329,,128.0,",ci37376810,",0.27,ml,,ci,15.0,"9km S of Idyllwild, CA",0.04,1,",ci,",reviewed,1538465531850,"M 0.3 - 9km S of Idyllwild, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538507040794,https://earthquake.usgs.gov/earthquakes/eventpage/ci37376810 +,,20268840,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268840&format=geojson,,,,",ak20268840,us1000h5is,",2.9,ml,,ak,,"77km SSW of Kaktovik, Alaska",0.77,129,",ak,us,",reviewed,1538465464885,"M 2.9 - 77km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539413016040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268840 +,,1000h9g3,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h9g3&format=geojson,2.621,,83.0,",us1000h9g3,",4.0,mb,,us,,"24km S of Nggongi, Indonesia",1.16,246,",us,",reviewed,1538465257410,"M 4.0 - 24km S of Nggongi, Indonesia",0,earthquake,",geoserve,origin,phase-data,",480.0,1539412745040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h9g3 +,,37376802,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37376802&format=geojson,0.0337,,50.0,",ci37376802,",0.89,ml,,ci,22.0,"20km E of Little Lake, CA",0.08,12,",ci,",reviewed,1538464784400,"M 0.9 - 20km E of Little Lake, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538513237398,https://earthquake.usgs.gov/earthquakes/eventpage/ci37376802 +,,20268839,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268839&format=geojson,,,,",ak20268839,",1.5,ml,,ak,,"102km NW of Arctic Village, Alaska",0.47,35,",ak,",reviewed,1538464751822,"M 1.5 - 102km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390064104,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268839 +,,00659348,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659348&format=geojson,0.267,,249.63,",nn00659348,",0.9,ml,,nn,4.0,"15km E of Fernley, Nevada",0.0603,12,",nn,",reviewed,1538464155727,"M 0.9 - 15km E of Fernley, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538532364386,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659348 +,,1000h5ih,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h5ih&format=geojson,2.657,,79.0,",us1000h5ih,",4.8,mb,,us,,"34km SSE of Nggongi, Indonesia",0.97,354,",us,",reviewed,1538463669490,"M 4.8 - 34km SSE of Nggongi, Indonesia",0,earthquake,",geoserve,origin,phase-data,",480.0,1539412247040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h5ih +,,20268836,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268836&format=geojson,,,,",ak20268836,us1000hbft,",2.8,ml,,ak,,"70km NE of Chernabura Island, Alaska",0.64,121,",ak,us,",reviewed,1538463621164,"M 2.8 - 70km NE of Chernabura Island, Alaska",0,earthquake,",geoserve,origin,phase-data,",-660.0,1539412194040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268836 +,,00659229,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659229&format=geojson,0.253,,164.12,",nn00659229,",1.1,ml,,nn,13.0,"12km ESE of Fernley, Nevada",0.0827,19,",nn,",reviewed,1538463609887,"M 1.1 - 12km ESE of Fernley, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538532298337,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659229 +,,20268835,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268835&format=geojson,,,,",ak20268835,",1.4,ml,,ak,,"52km W of Willow, Alaska",0.57,30,",ak,",reviewed,1538463591671,"M 1.4 - 52km W of Willow, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390062784,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268835 +,,73092456,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092456&format=geojson,0.008425,,59.0,",nc73092456,",1.51,md,,nc,24.0,"7km NW of Pinnacles, CA",0.07,35,",nc,",reviewed,1538462963580,"M 1.5 - 7km NW of Pinnacles, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538520063353,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092456 +,,73092461,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092461&format=geojson,0.03612,,149.0,",nc73092461,",0.93,md,,nc,20.0,"11km ENE of Mammoth Lakes, CA",0.06,13,",nc,",reviewed,1538462960360,"M 0.9 - 11km ENE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538505602938,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092461 +,,37376786,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37376786&format=geojson,0.02391,,143.0,",ci37376786,nn00659346,",0.9,ml,,ci,20.0,"4km SE of Coso Junction, CA",0.09,12,",ci,nn,",reviewed,1538462848410,"M 0.9 - 4km SE of Coso Junction, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538532362829,https://earthquake.usgs.gov/earthquakes/eventpage/ci37376786 +,,20268834,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268834&format=geojson,,,,",ak20268834,",1.1,ml,,ak,,"28km NNW of Cordova, Alaska",0.6,19,",ak,",reviewed,1538462797841,"M 1.1 - 28km NNW of Cordova, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390062187,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268834 +,,80312059,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80312059&format=geojson,0.241,,303.0,",mb80312059,",-0.21,md,,mb,4.0,"38km SE of Bigfork, Montana",0.1,0,",mb,",reviewed,1538462774750,"M -0.2 - 38km SE of Bigfork, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538499221630,https://earthquake.usgs.gov/earthquakes/eventpage/mb80312059 +,,00659220,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659220&format=geojson,0.093,,178.01,",nn00659220,",0.8,ml,,nn,45.0,"31km NNE of Beatty, Nevada",0.2129,10,",nn,",reviewed,1538462399417,"M 0.8 - 31km NNE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538532296201,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659220 +,,00659345,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659345&format=geojson,0.045,,334.23,",nn00659345,",0.2,ml,,nn,4.0,"56km ESE of Fallon, Nevada",0.0167,1,",nn,",reviewed,1538462098539,"M 0.2 - 56km ESE of Fallon, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538532361119,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659345 +,,73092446,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092446&format=geojson,0.002646,,88.0,",nc73092446,",1.75,md,,nc,37.0,"10km NW of The Geysers, CA",0.04,47,",nc,",reviewed,1538462041790,"M 1.8 - 10km NW of The Geysers, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538533984243,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092446 +,,73092441,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092441&format=geojson,0.001907,,93.0,",nc73092441,",1.05,md,,nc,15.0,"10km NW of The Geysers, CA",0.04,17,",nc,",automatic,1538461795290,"M 1.1 - 10km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538463902398,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092441 +,,1000h5ib,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h5ib&format=geojson,2.157,,123.0,",us1000h5ib,",4.7,mb,,us,,"55km S of Sarangani, Philippines",0.7,340,",us,",reviewed,1538461584840,"M 4.7 - 55km S of Sarangani, Philippines",0,earthquake,",geoserve,origin,phase-data,",480.0,1538473261040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h5ib +,,00659209,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659209&format=geojson,0.066,,97.38,",nn00659209,",2.0,ml,,nn,27.0,"56km NNW of Gabbs, Nevada",0.1683,62,",nn,",reviewed,1538461414113,"M 2.0 - 56km NNW of Gabbs, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538532293512,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659209 +,,00659342,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659342&format=geojson,0.37,,210.69,",nn00659342,",-0.2,ml,,nn,6.0,"38km SSE of Goldfield, Nevada",0.1196,0,",nn,",reviewed,1538461348131,"M -0.2 - 38km SSE of Goldfield, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538532359571,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659342 +,,20268833,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268833&format=geojson,,,,",ak20268833,",2.2,ml,,ak,,"87km SSW of Kaktovik, Alaska",0.99,74,",ak,",reviewed,1538460573748,"M 2.2 - 87km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390061566,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268833 +,,1000h5i1,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h5i1&format=geojson,2.67,,79.0,",us1000h5i1,",4.5,mb,,us,,"34km S of Nggongi Satu, Indonesia",1.27,312,",us,",reviewed,1538460558360,"M 4.5 - 34km S of Nggongi Satu, Indonesia",0,earthquake,",geoserve,origin,phase-data,",480.0,1538473611040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h5i1 +,,00659208,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659208&format=geojson,0.148,,116.02,",nn00659208,",0.1,ml,,nn,39.0,"64km W of Alamo, Nevada",0.1719,0,",nn,",reviewed,1538460109864,"M 0.1 - 64km W of Alamo, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538532289333,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659208 +,,73092431,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092431&format=geojson,0.01072,,36.0,",nc73092431,",1.35,md,,nc,41.0,"6km W of Cobb, CA",0.08,28,",nc,",reviewed,1538460096740,"M 1.4 - 6km W of Cobb, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538546162633,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092431 +,,00659366,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659366&format=geojson,0.148,,307.4,",nn00659366,",-0.2,ml,,nn,11.0,"64km W of Alamo, Nevada",0.1403,0,",nn,",reviewed,1538459952531,"M -0.2 - 64km W of Alamo, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538532386359,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659366 +,,20268827,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268827&format=geojson,,,,",ak20268827,",2.2,ml,,ak,,"58km SSE of Cantwell, Alaska",0.48,74,",ak,",reviewed,1538459662367,"M 2.2 - 58km SSE of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390060834,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268827 +,,73092426,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092426&format=geojson,0.03747,,152.0,",nc73092426,",0.96,md,,nc,22.0,"11km ENE of Mammoth Lakes, CA",0.05,14,",nc,",reviewed,1538459563240,"M 1.0 - 11km ENE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538501323298,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092426 +,,00659364,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659364&format=geojson,0.055,,222.62,",nn00659364,",-0.3,ml,,nn,8.0,"46km ESE of Beatty, Nevada",0.1136,0,",nn,",reviewed,1538459269418,"M -0.3 - 46km ESE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538532383785,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659364 +,,73092421,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092421&format=geojson,0.02415,,127.0,",nc73092421,",0.43,md,,nc,20.0,"6km SE of Mammoth Lakes, CA",0.03,3,",nc,",reviewed,1538459260730,"M 0.4 - 6km SE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538500690674,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092421 +,,20268826,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268826&format=geojson,,,,",ak20268826,",1.2,ml,,ak,,"76km WNW of Arctic Village, Alaska",0.98,22,",ak,",reviewed,1538459130011,"M 1.2 - 76km WNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390060258,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268826 +,,73092416,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092416&format=geojson,0.02236,,157.0,",nc73092416,",0.47,md,,nc,11.0,"9km ESE of Mammoth Lakes, CA",0.05,3,",nc,",reviewed,1538458704130,"M 0.5 - 9km ESE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538500119321,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092416 +,,20268824,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268824&format=geojson,,,,",ak20268824,",1.4,ml,,ak,,"59km WNW of Valdez, Alaska",0.68,30,",ak,",reviewed,1538458451857,"M 1.4 - 59km WNW of Valdez, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390059622,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268824 +,,73092411,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092411&format=geojson,0.02243,,157.0,",nc73092411,",0.37,md,,nc,17.0,"9km ESE of Mammoth Lakes, CA",0.03,2,",nc,",reviewed,1538457965300,"M 0.4 - 9km ESE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538499908544,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092411 +,,20268821,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268821&format=geojson,,,,",ak20268821,",1.4,ml,,ak,,"122km NNW of Arctic Village, Alaska",0.8,30,",ak,",reviewed,1538457500694,"M 1.4 - 122km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390059006,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268821 +,,1000h5hp,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h5hp&format=geojson,1.211,,51.0,",us1000h5hp,",5.1,mb,,us,,"135km WSW of Kota Ternate, Indonesia",0.78,400,",us,",reviewed,1538457333750,"M 5.1 - 135km WSW of Kota Ternate, Indonesia",0,earthquake,",geoserve,origin,phase-data,",480.0,1538458253040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h5hp +,,37376754,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37376754&format=geojson,0.1335,,66.0,",ci37376754,",1.35,ml,,ci,48.0,"26km ENE of Pine Valley, CA",0.2,28,",ci,",reviewed,1538457236550,"M 1.4 - 26km ENE of Pine Valley, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538513299978,https://earthquake.usgs.gov/earthquakes/eventpage/ci37376754 +,,20268819,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268819&format=geojson,,,,",ak20268819,",1.4,ml,,ak,,"163km S of Kotzebue, Alaska",0.59,30,",ak,",reviewed,1538457042285,"M 1.4 - 163km S of Kotzebue, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390058465,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268819 +,,1000h5he,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h5he&format=geojson,0.097,,60.0,",us1000h5he,",2.9,mb_lg,,us,,"1km NE of Langston, Oklahoma",0.12,129,",us,",reviewed,1538456780370,"M 2.9 - 1km NE of Langston, Oklahoma",0,earthquake,",geoserve,origin,phase-data,",-360.0,1538459119040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h5he +,,73092406,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092406&format=geojson,0.111,,110.0,",nc73092406,",1.99,md,,nc,20.0,"8km NE of Clearlake, CA",0.06,61,",nc,",reviewed,1538456607610,"M 2.0 - 8km NE of Clearlake, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538526603548,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092406 +,,00659200,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659200&format=geojson,0.164,,138.61,",nn00659200,",1.1,ml,,nn,36.0,"59km WNW of Beatty, Nevada",0.1661,19,",nn,",reviewed,1538456547997,"M 1.1 - 59km WNW of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538532287016,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659200 +,,00659362,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659362&format=geojson,0.162,,163.54,",nn00659362,",0.4,ml,,nn,7.0,"60km WNW of Beatty, Nevada",0.1694,2,",nn,",reviewed,1538456520907,"M 0.4 - 60km WNW of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538532382364,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659362 +,,1000h5hb,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h5hb&format=geojson,2.596,,90.0,",us1000h5hb,",5.0,mb,,us,,"50km WSW of Kasiguncu, Indonesia",0.71,385,",us,",reviewed,1538456366290,"M 5.0 - 50km WSW of Kasiguncu, Indonesia",1,earthquake,",geoserve,origin,phase-data,",480.0,1538457427040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h5hb +,,20268813,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268813&format=geojson,,,,",ak20268813,",1.9,ml,,ak,,"116km NNW of Arctic Village, Alaska",0.76,56,",ak,",reviewed,1538456139386,"M 1.9 - 116km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390057887,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268813 +,,70625847,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70625847&format=geojson,0.05613,,199.0,",hv70625847,",1.91,ml,,hv,50.0,"10km SSW of Leilani Estates, Hawaii",0.19,56,",hv,",reviewed,1538455965060,"M 1.9 - 10km SSW of Leilani Estates, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538514625500,https://earthquake.usgs.gov/earthquakes/eventpage/hv70625847 +,,20268812,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268812&format=geojson,,,,",ak20268812,",1.6,ml,,ak,,"87km N of Kobuk, Alaska",0.9,39,",ak,",reviewed,1538455911964,"M 1.6 - 87km N of Kobuk, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390057286,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268812 +green,,1000h5h5,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h5h5&format=geojson,2.774,,37.0,",us1000h5h5,",5.6,mww,4.67,us,,"33km SSW of Nggongi Satu, Indonesia",1.22,482,",us,",reviewed,1538455771470,"M 5.6 - 33km SSW of Nggongi Satu, Indonesia",1,earthquake,",geoserve,losspager,moment-tensor,origin,phase-data,shakemap,",480.0,1538600570040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h5h5 +,,37376746,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37376746&format=geojson,0.0972,,101.0,",ci37376746,",0.57,ml,,ci,12.0,"8km ENE of Aguanga, CA",0.23,5,",ci,",automatic,1538455660740,"M 0.6 - 8km ENE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538512644032,https://earthquake.usgs.gov/earthquakes/eventpage/ci37376746 +,2.7,37376738,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37376738&format=geojson,0.0006476,1.0,42.0,",ci37376738,",1.91,ml,,ci,46.0,"11km WNW of Calipatria, CA",0.24,56,",ci,",reviewed,1538455584720,"M 1.9 - 11km WNW of Calipatria, CA",0,earthquake,",dyfi,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538512239172,https://earthquake.usgs.gov/earthquakes/eventpage/ci37376738 +,,61790491,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61790491&format=geojson,0.08352,,209.0,",av61790491,",0.62,ml,,av,8.0,"101km NW of Larsen Bay, Alaska",0.17,6,",av,",reviewed,1538455237680,"M 0.6 - 101km NW of Larsen Bay, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538511942280,https://earthquake.usgs.gov/earthquakes/eventpage/av61790491 +,,00659196,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659196&format=geojson,0.242,,160.37,",nn00659196,",1.0,ml,,nn,14.0,"11km ESE of Fernley, Nevada",0.1919,15,",nn,",reviewed,1538454929488,"M 1.0 - 11km ESE of Fernley, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538532283759,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659196 +,,73092401,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092401&format=geojson,0.122,,125.0,",nc73092401,",1.44,md,,nc,21.0,"5km NNE of Windsor, CA",0.05,32,",nc,",reviewed,1538454866610,"M 1.4 - 5km NNE of Windsor, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538521384536,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092401 +,,00659360,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659360&format=geojson,0.032,,150.45,",nn00659360,",-0.5,ml,,nn,17.0,"54km ENE of Beatty, Nevada",0.1741,0,",nn,",reviewed,1538454634818,"M -0.5 - 54km ENE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538532379568,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659360 +,,00659188,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659188&format=geojson,0.167,,139.25,",nn00659188,",1.4,ml,,nn,48.0,"59km WNW of Beatty, Nevada",0.1979,30,",nn,",reviewed,1538454362617,"M 1.4 - 59km WNW of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538532280053,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659188 +,,1000h5gv,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h5gv&format=geojson,2.666,,83.0,",us1000h5gv,",4.2,mb,,us,,"33km S of Nggongi, Indonesia",1.43,271,",us,",reviewed,1538453507600,"M 4.2 - 33km S of Nggongi, Indonesia",0,earthquake,",geoserve,origin,phase-data,",480.0,1538455282040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h5gv +,,20268808,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268808&format=geojson,,,,",ak20268808,",1.8,ml,,ak,,"134km NW of Arctic Village, Alaska",0.76,50,",ak,",reviewed,1538453239936,"M 1.8 - 134km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390056683,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268808 +,,20279880,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20279880&format=geojson,,,,",ak20279880,",2.7,ml,,ak,,"252km SE of Kodiak, Alaska",0.9,112,",ak,",reviewed,1538453109322,"M 2.7 - 252km SE of Kodiak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539390056079,https://earthquake.usgs.gov/earthquakes/eventpage/ak20279880 +,,73092396,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092396&format=geojson,0.06461,,98.0,",nc73092396,",0.86,md,,nc,14.0,"6km SSW of San Ardo, CA",0.06,11,",nc,",reviewed,1538452712960,"M 0.9 - 6km SSW of San Ardo, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538503744748,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092396 +,,00659354,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659354&format=geojson,0.039,,54.08,",nn00659354,",-0.2,ml,,nn,19.0,"56km E of Beatty, Nevada",0.1101,0,",nn,",reviewed,1538452633453,"M -0.2 - 56km E of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538532376293,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659354 +,,73092391,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092391&format=geojson,0.02199,,91.0,",nc73092391,",1.42,md,,nc,34.0,"16km NW of Parkfield, CA",0.06,31,",nc,",reviewed,1538452547980,"M 1.4 - 16km NW of Parkfield, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538522222699,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092391 +,,73092386,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092386&format=geojson,0.02318,,97.0,",nc73092386,",0.85,md,,nc,13.0,"3km SE of San Ardo, CA",0.02,11,",nc,",reviewed,1538452505200,"M 0.9 - 3km SE of San Ardo, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538507704158,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092386 +,,73092381,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092381&format=geojson,0.0312,,58.0,",nc73092381,",1.77,md,,nc,54.0,"6km ESE of San Ramon, CA",0.06,48,",nc,",reviewed,1538452138790,"M 1.8 - 6km ESE of San Ramon, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538535662407,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092381 +,,20268806,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268806&format=geojson,,,,",ak20268806,",1.2,ml,,ak,,"50km N of Yakutat, Alaska",0.68,22,",ak,",reviewed,1538451739685,"M 1.2 Ice Quake - 50km N of Yakutat, Alaska",0,ice quake,",geoserve,origin,phase-data,",-540.0,1539390055497,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268806 +,,20268805,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268805&format=geojson,,,,",ak20268805,",1.7,ml,,ak,,"163km S of Kotzebue, Alaska",0.48,44,",ak,",reviewed,1538451728477,"M 1.7 - 163km S of Kotzebue, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390054952,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268805 +,,37376730,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37376730&format=geojson,0.02286,,48.0,",ci37376730,",0.53,ml,,ci,27.0,"8km NE of Aguanga, CA",0.13,4,",ci,",reviewed,1538451456150,"M 0.5 - 8km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538502238807,https://earthquake.usgs.gov/earthquakes/eventpage/ci37376730 +,,00659328,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659328&format=geojson,0.042,,180.77,",nn00659328,",-0.3,ml,,nn,9.0,"58km ENE of Beatty, Nevada",0.1306,0,",nn,",reviewed,1538451271595,"M -0.3 - 58km ENE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538532349797,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659328 +,,20268804,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268804&format=geojson,,,,",ak20268804,",1.4,ml,,ak,,"73km E of Cape Yakataga, Alaska",0.7,30,",ak,",reviewed,1538451235514,"M 1.4 Ice Quake - 73km E of Cape Yakataga, Alaska",0,ice quake,",geoserve,origin,phase-data,",-540.0,1539390054382,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268804 +,,00659294,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659294&format=geojson,0.014,,147.46,",nn00659294,",-0.1,ml,,nn,22.0,"49km ENE of Beatty, Nevada",0.1689,0,",nn,",reviewed,1538451229013,"M -0.1 - 49km ENE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538532333989,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659294 +,,61425122,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61425122&format=geojson,0.02567,,188.0,",uw61425122,",0.9,ml,,uw,8.0,"26km E of Eatonville, Washington",0.08,12,",uw,",reviewed,1538451102110,"M 0.9 - 26km E of Eatonville, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538683047560,https://earthquake.usgs.gov/earthquakes/eventpage/uw61425122 +,3.1,1000h5gh,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h5gh&format=geojson,1.449,19.0,117.0,",us1000h5gh,",4.9,mb,,us,,"53km ESE of Hitachi, Japan",1.1,375,",us,",reviewed,1538450871260,"M 4.9 - 53km ESE of Hitachi, Japan",0,earthquake,",dyfi,geoserve,origin,phase-data,",540.0,1538581746455,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h5gh +,,20268801,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268801&format=geojson,,,,",ak20268801,",0.9,ml,,ak,,"37km S of Cantwell, Alaska",0.68,12,",ak,",reviewed,1538450847353,"M 0.9 - 37km S of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390053849,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268801 +,,2018275004,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018275004&format=geojson,0.501,,214.0,",pr2018275004,",2.82,md,,pr,7.0,"48km NNE of Punta Cana, Dominican Republic",0.56,122,",pr,",reviewed,1538450437130,"M 2.8 - 48km NNE of Punta Cana, Dominican Republic",0,earthquake,",geoserve,origin,phase-data,",-300.0,1538464990798,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018275004 +,,73092376,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092376&format=geojson,0.03669,,201.0,",nc73092376,",0.61,md,,nc,16.0,"22km NW of Parkfield, CA",0.07,6,",nc,",reviewed,1538450193490,"M 0.6 - 22km NW of Parkfield, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538503578767,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092376 +,,00659280,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659280&format=geojson,0.021,,93.22,",nn00659280,",-0.3,ml,,nn,20.0,"49km ENE of Beatty, Nevada",0.1989,0,",nn,",reviewed,1538450022724,"M -0.3 - 49km ENE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538532324526,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659280 +,,20268798,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268798&format=geojson,,,,",ak20268798,",1.2,ml,,ak,,"60km WNW of Valdez, Alaska",0.86,22,",ak,",reviewed,1538449609236,"M 1.2 - 60km WNW of Valdez, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390053268,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268798 +,,20268795,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268795&format=geojson,,,,",ak20268795,",1.6,ml,,ak,,"118km NNW of Arctic Village, Alaska",0.47,39,",ak,",reviewed,1538449506661,"M 1.6 - 118km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390052735,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268795 +,,20268791,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268791&format=geojson,,,,",ak20268791,",1.4,ml,,ak,,"42km N of North Nenana, Alaska",0.78,30,",ak,",reviewed,1538449449854,"M 1.4 - 42km N of North Nenana, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390052121,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268791 +,,20268789,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268789&format=geojson,,,,",ak20268789,",1.1,ml,,ak,,"1km S of Big Lake, Alaska",0.66,19,",ak,",reviewed,1538449353196,"M 1.1 - 1km S of Big Lake, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390051546,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268789 +,,37376714,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37376714&format=geojson,0.01014,,28.0,",ci37376714,",1.1,ml,,ci,50.0,"1km SW of Lake Henshaw, CA",0.17,19,",ci,",reviewed,1538449168000,"M 1.1 - 1km SW of Lake Henshaw, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538511623142,https://earthquake.usgs.gov/earthquakes/eventpage/ci37376714 +,,73092686,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092686&format=geojson,0.1703,,284.0,",nn00659274,nc73092686,",1.12,md,,nc,6.0,"1km NNE of Chester, CA",0.06,19,",nn,nc,",reviewed,1538448988260,"M 1.1 - 1km NNE of Chester, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538532320147,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092686 +,,73092371,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092371&format=geojson,0.009694,,112.0,",nc73092371,",0.74,md,,nc,16.0,"6km ENE of Mammoth Lakes, CA",0.04,8,",nc,",reviewed,1538448426760,"M 0.7 - 6km ENE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538505323650,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092371 +,,20268781,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268781&format=geojson,,,,",ak20268781,",1.2,ml,,ak,,"53km NNE of Yakutat, Alaska",0.5,22,",ak,",reviewed,1538448387877,"M 1.2 Ice Quake - 53km NNE of Yakutat, Alaska",0,ice quake,",geoserve,origin,phase-data,",-540.0,1539390051039,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268781 +,,60241346,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nm60241346&format=geojson,0.02767,,54.0,",nm60241346,",1.73,md,,nm,13.0,"3km ENE of Ridgely, Tennessee",0.02,46,",nm,",reviewed,1538448369840,"M 1.7 - 3km ENE of Ridgely, Tennessee",0,earthquake,",geoserve,origin,phase-data,",-360.0,1538488964750,https://earthquake.usgs.gov/earthquakes/eventpage/nm60241346 +,,20268779,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268779&format=geojson,,,,",ak20268779,us1000h5g5,",3.0,ml,,ak,,"66km SSW of Kaktovik, Alaska",0.82,138,",ak,us,",reviewed,1538448339980,"M 3.0 - 66km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390050183,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268779 +,,2018275003,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018275003&format=geojson,0.9725,,336.0,",pr2018275003,",2.51,md,,pr,6.0,"60km NNW of Charlotte Amalie, U.S. Virgin Islands",0.2,97,",pr,",reviewed,1538448307160,"M 2.5 - 60km NNW of Charlotte Amalie, U.S. Virgin Islands",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538461265332,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018275003 +,,1000h5g4,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h5g4&format=geojson,5.165,,59.0,",us1000h5g4,",4.9,mb,,us,,"44km S of Farsan, Iran",0.87,369,",us,",reviewed,1538448169180,"M 4.9 - 44km S of Farsan, Iran",0,earthquake,",geoserve,origin,phase-data,",210.0,1538449469040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h5g4 +,,20268775,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268775&format=geojson,,,,",ak20268775,",1.8,ml,,ak,,"126km WNW of Arctic Village, Alaska",0.78,50,",ak,",reviewed,1538447852819,"M 1.8 - 126km WNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390049580,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268775 +,,2018275002,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018275002&format=geojson,1.0026,,331.0,",pr2018275002,",2.98,md,,pr,8.0,"62km NNW of Charlotte Amalie, U.S. Virgin Islands",0.32,137,",pr,",reviewed,1538447792670,"M 3.0 - 62km NNW of Charlotte Amalie, U.S. Virgin Islands",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538461251812,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018275002 +,,00659178,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659178&format=geojson,0.018,,110.6,",nn00659178,",1.3,ml,,nn,6.0,"38km NW of Carlin, Nevada",0.2083,26,",nn,",reviewed,1538447679088,"M 1.3 Explosion - 38km NW of Carlin, Nevada",0,explosion,",geoserve,origin,phase-data,",-480.0,1538490639220,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659178 +,,20279868,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20279868&format=geojson,,,,",ak20279868,",1.1,ml,,ak,,"29km NNW of Nikiski, Alaska",0.36,19,",ak,",reviewed,1538447665143,"M 1.1 - 29km NNW of Nikiski, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390049044,https://earthquake.usgs.gov/earthquakes/eventpage/ak20279868 +,,61425107,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61425107&format=geojson,0.1067,,269.0,",uw61425107,",0.61,ml,,uw,5.0,"10km WNW of Belfair, Washington",0.08,6,",uw,",reviewed,1538447648220,"M 0.6 - 10km WNW of Belfair, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538450018160,https://earthquake.usgs.gov/earthquakes/eventpage/uw61425107 +,,20268771,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268771&format=geojson,,,,",ak20268771,",1.1,ml,,ak,,"77km ENE of Talkeetna, Alaska",0.51,19,",ak,",reviewed,1538447632388,"M 1.1 - 77km ENE of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390048499,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268771 +,,20268767,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268767&format=geojson,,,,",ak20268767,",1.7,ml,,ak,,"64km ENE of Cape Yakataga, Alaska",0.91,44,",ak,",reviewed,1538447561817,"M 1.7 Ice Quake - 64km ENE of Cape Yakataga, Alaska",0,ice quake,",geoserve,origin,phase-data,",-540.0,1539390047953,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268767 +,,73092366,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092366&format=geojson,0.02554,,116.0,",nc73092366,",1.21,md,,nc,26.0,"12km ENE of Mammoth Lakes, CA",0.05,23,",nc,",reviewed,1538447559630,"M 1.2 - 12km ENE of Mammoth Lakes, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538529002751,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092366 +,,2018275001,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018275001&format=geojson,1.0023,,332.0,",pr2018275001,",2.31,md,,pr,8.0,"61km NNW of Charlotte Amalie, U.S. Virgin Islands",0.26,82,",pr,",reviewed,1538447494970,"M 2.3 - 61km NNW of Charlotte Amalie, U.S. Virgin Islands",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538461238116,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018275001 +,,20268766,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268766&format=geojson,,,,",ak20268766,",2.2,ml,,ak,,"76km SSW of Kaktovik, Alaska",0.56,74,",ak,",reviewed,1538447367732,"M 2.2 - 76km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390047326,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268766 +,,73092361,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092361&format=geojson,0.02683,,84.0,",nc73092361,",1.58,md,,nc,34.0,"12km ENE of Mammoth Lakes, CA",0.06,38,",nc,",reviewed,1538447287350,"M 1.6 - 12km ENE of Mammoth Lakes, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538537223553,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092361 +,,73092356,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092356&format=geojson,0.02593,,118.0,",nc73092356,",0.52,md,,nc,22.0,"12km ENE of Mammoth Lakes, CA",0.06,4,",nc,",reviewed,1538447196710,"M 0.5 - 12km ENE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538506203001,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092356 +,,80312009,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80312009&format=geojson,0.126,,103.0,",mb80312009,",0.96,ml,,mb,9.0,"15km SE of Lincoln, Montana",0.13,14,",mb,",reviewed,1538447039640,"M 1.0 - 15km SE of Lincoln, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538489467820,https://earthquake.usgs.gov/earthquakes/eventpage/mb80312009 +,,20268760,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268760&format=geojson,,,,",ak20268760,",2.0,ml,,ak,,"134km NW of Arctic Village, Alaska",0.66,62,",ak,",reviewed,1538446924542,"M 2.0 - 134km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390046742,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268760 +,,20268759,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268759&format=geojson,,,,",ak20268759,",1.9,ml,,ak,,"77km E of Old Iliamna, Alaska",0.62,56,",ak,",reviewed,1538446893945,"M 1.9 - 77km E of Old Iliamna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390046131,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268759 +,,20268756,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268756&format=geojson,,,,",ak20268756,",1.5,ml,,ak,,"51km NNE of Yakutat, Alaska",0.76,35,",ak,",reviewed,1538446582749,"M 1.5 Ice Quake - 51km NNE of Yakutat, Alaska",0,ice quake,",geoserve,origin,phase-data,",-540.0,1539390045580,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268756 +,,37376690,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37376690&format=geojson,0.02947,,56.0,",ci37376690,",0.64,ml,,ci,37.0,"9km ENE of Aguanga, CA",0.13,6,",ci,",reviewed,1538445958200,"M 0.6 - 9km ENE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538511269127,https://earthquake.usgs.gov/earthquakes/eventpage/ci37376690 +,,73092351,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092351&format=geojson,0.04291,,113.0,",nc73092351,",0.27,md,,nc,5.0,"1km ENE of Dixon Lane-Meadow Creek, CA",0.03,1,",nc,",reviewed,1538445922060,"M 0.3 - 1km ENE of Dixon Lane-Meadow Creek, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538499122022,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092351 +,,20268755,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268755&format=geojson,,,,",ak20268755,",1.4,ml,,ak,,"61km E of Cape Yakataga, Alaska",0.38,30,",ak,",reviewed,1538445543794,"M 1.4 Ice Quake - 61km E of Cape Yakataga, Alaska",0,ice quake,",geoserve,origin,phase-data,",-540.0,1539390045009,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268755 +,,20268753,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268753&format=geojson,,,,",ak20268753,",1.9,ml,,ak,,"75km SSW of Kaktovik, Alaska",0.6,56,",ak,",reviewed,1538444478567,"M 1.9 - 75km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390044468,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268753 +,,73092346,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092346&format=geojson,0.02145,,160.0,",nc73092346,",0.38,md,,nc,10.0,"9km ESE of Mammoth Lakes, CA",0.04,2,",nc,",reviewed,1538444292150,"M 0.4 - 9km ESE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538445040190,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092346 +,,37376666,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37376666&format=geojson,0.05381,,59.0,",ci37376666,",0.69,ml,,ci,31.0,"6km E of Cabazon, CA",0.15,7,",ci,",reviewed,1538444230790,"M 0.7 - 6km E of Cabazon, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538509458502,https://earthquake.usgs.gov/earthquakes/eventpage/ci37376666 +,,61790406,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61790406&format=geojson,0.00974,,161.0,",av61790406,",0.75,ml,,av,7.0,"94km ESE of Old Iliamna, Alaska",0.08,9,",av,",reviewed,1538443947580,"M 0.8 - 94km ESE of Old Iliamna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538507013790,https://earthquake.usgs.gov/earthquakes/eventpage/av61790406 +,,20279859,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20279859&format=geojson,,,,",ak20279859,",1.1,ml,,ak,,"53km SSE of Sterling, Alaska",0.45,19,",ak,",reviewed,1538443719131,"M 1.1 - 53km SSE of Sterling, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390043921,https://earthquake.usgs.gov/earthquakes/eventpage/ak20279859 +,,20268749,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268749&format=geojson,,,,",ak20268749,",1.7,ml,,ak,,"99km NW of Arctic Village, Alaska",0.74,44,",ak,",reviewed,1538443510611,"M 1.7 - 99km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390043334,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268749 +,,00659273,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659273&format=geojson,0.107,,234.91,",nn00659273,",-0.3,ml,,nn,8.0,"37km N of Beatty, Nevada",0.1504,0,",nn,",reviewed,1538443216341,"M -0.3 - 37km N of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538532318616,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659273 +,,37376650,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37376650&format=geojson,0.009978,,61.0,",ci37376650,",0.4,ml,,ci,23.0,"9km NE of Aguanga, CA",0.13,2,",ci,",reviewed,1538443170210,"M 0.4 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538509202070,https://earthquake.usgs.gov/earthquakes/eventpage/ci37376650 +,,00659272,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659272&format=geojson,0.075,,209.07,",nn00659272,",-0.1,ml,,nn,12.0,"33km N of Beatty, Nevada",0.1535,0,",nn,",reviewed,1538443101072,"M -0.1 - 33km N of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538532316778,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659272 +,,70805449,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70805449&format=geojson,0.03245,,138.0,",av70805449,",0.56,ml,,av,8.0,"54km SSW of Redoubt Volcano, Alaska",0.19,5,",av,",reviewed,1538443000010,"M 0.6 - 54km SSW of Redoubt Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538508406610,https://earthquake.usgs.gov/earthquakes/eventpage/av70805449 +,,20279857,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20279857&format=geojson,,,,",ak20279857,",1.6,ml,,ak,,"99km NW of Arctic Village, Alaska",0.4,39,",ak,",reviewed,1538442973877,"M 1.6 - 99km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390042806,https://earthquake.usgs.gov/earthquakes/eventpage/ak20279857 +,,20268746,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268746&format=geojson,,,,",ak20268746,",1.7,ml,,ak,,"64km NW of Talkeetna, Alaska",0.71,44,",ak,",reviewed,1538442953239,"M 1.7 - 64km NW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390042141,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268746 +,,80311999,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80311999&format=geojson,0.195,,318.0,",mb80311999,",1.0,ml,,mb,5.0,"12km E of Hoback, Wyoming",0.11,15,",mb,",reviewed,1538442492730,"M 1.0 - 12km E of Hoback, Wyoming",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538489926710,https://earthquake.usgs.gov/earthquakes/eventpage/mb80311999 +,,37376642,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37376642&format=geojson,0.1129,,61.0,",ci37376642,",0.82,ml,,ci,35.0,"6km E of Cabazon, CA",0.1,10,",ci,",reviewed,1538442389420,"M 0.8 - 6km E of Cabazon, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538509000107,https://earthquake.usgs.gov/earthquakes/eventpage/ci37376642 +,,20268744,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268744&format=geojson,,,,",ak20268744,",1.9,ml,,ak,,"50km SE of Tanaga Volcano, Alaska",0.37,56,",ak,",reviewed,1538441674331,"M 1.9 - 50km SE of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539390041626,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268744 +,,20268742,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268742&format=geojson,,,,",ak20268742,",1.3,ml,,ak,,"54km NNW of Nikiski, Alaska",0.38,26,",ak,",reviewed,1538441348001,"M 1.3 - 54km NNW of Nikiski, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390041016,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268742 +,,73092336,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092336&format=geojson,0.01912,,113.0,",nc73092336,",0.68,md,,nc,15.0,"9km ESE of Mammoth Lakes, CA",0.03,7,",nc,",reviewed,1538441039450,"M 0.7 - 9km ESE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538445342053,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092336 +,,20279853,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20279853&format=geojson,,,,",ak20279853,",2.0,ml,,ak,,"116km NNW of Arctic Village, Alaska",0.75,62,",ak,",reviewed,1538440702008,"M 2.0 - 116km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390040455,https://earthquake.usgs.gov/earthquakes/eventpage/ak20279853 +,,20268737,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268737&format=geojson,,,,",ak20268737,",1.0,ml,,ak,,"20km N of Meadow Lakes, Alaska",0.54,15,",ak,",reviewed,1538440610527,"M 1.0 - 20km N of Meadow Lakes, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390039924,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268737 +,,20268736,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268736&format=geojson,,,,",ak20268736,",2.0,ml,,ak,,"122km NNW of Arctic Village, Alaska",0.87,62,",ak,",reviewed,1538440584052,"M 2.0 - 122km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390039345,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268736 +,,2018275000,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018275000&format=geojson,0.051,,88.0,",pr2018275000,",2.04,md,,pr,8.0,"1km NW of Palomas, Puerto Rico",0.33,64,",pr,",reviewed,1538440024070,"M 2.0 - 1km NW of Palomas, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538461221844,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018275000 +,,20268730,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268730&format=geojson,,,,",ak20268730,",1.5,ml,,ak,,"56km WNW of Anchor Point, Alaska",0.5,35,",ak,",reviewed,1538439777061,"M 1.5 - 56km WNW of Anchor Point, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390038746,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268730 +,,73092326,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092326&format=geojson,0.01175,,128.0,",nc73092326,",0.94,md,,nc,8.0,"3km WNW of Anderson Springs, CA",0.03,14,",nc,",automatic,1538439714750,"M 0.9 - 3km WNW of Anderson Springs, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538439810267,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092326 +,,37376602,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37376602&format=geojson,0.02003,,99.0,",ci37376602,",0.52,ml,,ci,24.0,"9km NE of Aguanga, CA",0.11,4,",ci,",reviewed,1538439446540,"M 0.5 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538508257975,https://earthquake.usgs.gov/earthquakes/eventpage/ci37376602 +green,,1000h5el,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h5el&format=geojson,2.738,,49.0,",us1000h5el,",5.9,mww,5.27,us,,"30km SSW of Nggongi, Indonesia",1.25,536,",us,",reviewed,1538439405760,"M 5.9 - 30km SSW of Nggongi, Indonesia",1,earthquake,",geoserve,ground-failure,losspager,moment-tensor,origin,phase-data,shakemap,",480.0,1538457687574,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h5el +,,20268723,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268723&format=geojson,,,,",ak20268723,",1.6,ml,,ak,,"90km WNW of Skagway, Alaska",0.79,39,",ak,",reviewed,1538439298909,"M 1.6 - 90km WNW of Skagway, Alaska",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539390038146,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268723 +,,20279848,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20279848&format=geojson,,,,",ak20279848,",1.2,ml,,ak,,"68km ENE of Cape Yakataga, Alaska",0.48,22,",ak,",reviewed,1538439192299,"M 1.2 - 68km ENE of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390037606,https://earthquake.usgs.gov/earthquakes/eventpage/ak20279848 +,,20268716,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268716&format=geojson,,,,",ak20268716,",1.5,ml,,ak,,"71km ENE of Cape Yakataga, Alaska",0.72,35,",ak,",reviewed,1538439170675,"M 1.5 - 71km ENE of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390036950,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268716 +,,20268717,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268717&format=geojson,,,,",ak20268717,",0.9,ml,,ak,,"23km SW of Y, Alaska",0.59,12,",ak,",reviewed,1538438978424,"M 0.9 - 23km SW of Y, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539390036408,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268717 +,,37376586,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37376586&format=geojson,0.00583,,36.0,",ci37376586,",0.61,ml,,ci,29.0,"10km NE of Aguanga, CA",0.11,6,",ci,",reviewed,1538438448100,"M 0.6 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538507925294,https://earthquake.usgs.gov/earthquakes/eventpage/ci37376586 +,,37376578,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37376578&format=geojson,0.04189,,124.0,",ci37376578,",0.98,ml,,ci,33.0,"7km WNW of Morongo Valley, CA",0.15,15,",ci,",reviewed,1538438424890,"M 1.0 - 7km WNW of Morongo Valley, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538507709031,https://earthquake.usgs.gov/earthquakes/eventpage/ci37376578 +green,,1000h5eg,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h5eg&format=geojson,2.715,,46.0,",us1000h5eg,",6.0,mww,5.2,us,,"33km S of Nggongi Satu, Indonesia",1.19,554,",us,",reviewed,1538438383070,"M 6.0 - 33km S of Nggongi Satu, Indonesia",1,earthquake,",geoserve,ground-failure,losspager,moment-tensor,origin,phase-data,shakemap,",480.0,1538457423108,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h5eg +,,73092321,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092321&format=geojson,0.06351,,40.0,",nc73092321,",1.91,md,,nc,60.0,"18km SSE of Livermore, CA",0.1,56,",nc,",reviewed,1538438361400,"M 1.9 - 18km SSE of Livermore, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538454902842,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092321 +,,20268709,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268709&format=geojson,,,,",ak20268709,",1.6,ml,,ak,,"125km NNW of Arctic Village, Alaska",0.76,39,",ak,",reviewed,1538438270336,"M 1.6 - 125km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036759175,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268709 +,,80312034,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80312034&format=geojson,0.452,,203.0,",mb80312034,",1.49,ml,,mb,9.0,"41km NW of Big Timber, Montana",0.09,34,",mb,",reviewed,1538438191260,"M 1.5 - 41km NW of Big Timber, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538495778760,https://earthquake.usgs.gov/earthquakes/eventpage/mb80312034 +,,20268706,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268706&format=geojson,,,,",ak20268706,",1.9,ml,,ak,,"120km NNW of Arctic Village, Alaska",0.83,56,",ak,",reviewed,1538438098156,"M 1.9 - 120km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036758577,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268706 +,,20268704,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268704&format=geojson,,,,",ak20268704,",1.4,ml,,ak,,"52km SSW of Manley Hot Springs, Alaska",0.53,30,",ak,",reviewed,1538438024061,"M 1.4 - 52km SSW of Manley Hot Springs, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036757985,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268704 +,,37376554,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37376554&format=geojson,0.1207,,104.0,",ci37376554,",0.89,ml,,ci,15.0,"11km ESE of Olancha, CA",0.08,12,",ci,",reviewed,1538437950920,"M 0.9 - 11km ESE of Olancha, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538520015412,https://earthquake.usgs.gov/earthquakes/eventpage/ci37376554 +,,00659166,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659166&format=geojson,0.128,,155.22,",nn00659166,",1.1,ml,,nn,14.0,"27km WSW of Truckee, California",0.202,19,",nn,",reviewed,1538437648473,"M 1.1 - 27km WSW of Truckee, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538450146226,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659166 +,,1000h5eb,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h5eb&format=geojson,1.975,,50.0,",us1000h5eb,",5.2,mww,,us,,"25km N of Palu, Indonesia",0.94,416,",us,",reviewed,1538437599550,"M 5.2 - 25km N of Palu, Indonesia",1,earthquake,",geoserve,moment-tensor,origin,phase-data,",480.0,1538499097040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h5eb +,,20268689,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268689&format=geojson,,,,",ak20268689,us1000h5e9,",2.8,ml,,ak,,"130km NNW of Arctic Village, Alaska",0.7,121,",ak,us,",reviewed,1538437416451,"M 2.8 - 130km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036757313,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268689 +,,1000h5e3,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h5e3&format=geojson,2.714,,59.0,",us1000h5e3,",5.4,mb,,us,,"31km S of Nggongi Satu, Indonesia",0.93,449,",us,",reviewed,1538436426090,"M 5.4 - 31km S of Nggongi Satu, Indonesia",1,earthquake,",geoserve,moment-tensor,origin,phase-data,",480.0,1538695468040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h5e3 +,,2018274012,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018274012&format=geojson,0.2106,,238.0,",pr2018274012,",1.94,md,,pr,3.0,"3km SE of Maricao, Puerto Rico",0.29,58,",pr,",reviewed,1538436242820,"M 1.9 - 3km SE of Maricao, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538461203852,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018274012 +,,20268679,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268679&format=geojson,,,,",ak20268679,",1.0,ml,,ak,,"149km WNW of Haines Junction, Canada",0.45,15,",ak,",reviewed,1538436049770,"M 1.0 - 149km WNW of Haines Junction, Canada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539036756752,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268679 +,,20268678,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268678&format=geojson,,,,",ak20268678,",1.2,ml,,ak,,"121km NNW of Talkeetna, Alaska",0.56,22,",ak,",reviewed,1538435916598,"M 1.2 - 121km NNW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036756228,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268678 +,,37376522,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37376522&format=geojson,0.07919,,45.0,",ci37376522,",0.63,ml,,ci,29.0,"9km NE of Aguanga, CA",0.19,6,",ci,",reviewed,1538435654740,"M 0.6 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538488364489,https://earthquake.usgs.gov/earthquakes/eventpage/ci37376522 +,,1000h5du,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h5du&format=geojson,2.761,,46.0,",us1000h5du,",5.0,mww,,us,,"33km SSW of Nggongi Satu, Indonesia",1.48,385,",us,",reviewed,1538435522580,"M 5.0 - 33km SSW of Nggongi Satu, Indonesia",1,earthquake,",geoserve,origin,phase-data,",480.0,1538437120040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h5du +,,20268677,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268677&format=geojson,,,,",ak20268677,",0.8,ml,,ak,,"21km NNE of Badger, Alaska",0.26,10,",ak,",reviewed,1538435400260,"M 0.8 Explosion - 21km NNE of Badger, Alaska",0,explosion,",geoserve,origin,phase-data,",-540.0,1539036755725,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268677 +,,37376514,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37376514&format=geojson,0.02496,,101.0,",ci37376514,",0.64,ml,,ci,17.0,"17km SSW of La Quinta, CA",0.11,6,",ci,",reviewed,1538435365300,"M 0.6 - 17km SSW of La Quinta, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538503721920,https://earthquake.usgs.gov/earthquakes/eventpage/ci37376514 +,,20268675,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268675&format=geojson,,,,",ak20268675,",1.3,ml,,ak,,"45km NNE of Yakutat, Alaska",0.9,26,",ak,",reviewed,1538435202790,"M 1.3 Ice Quake - 45km NNE of Yakutat, Alaska",0,ice quake,",geoserve,origin,phase-data,",-540.0,1539036755247,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268675 +,,1000h7n4,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h7n4&format=geojson,7.095,,184.0,",us1000h7n4,",4.4,mb,,us,,Kuril Islands,0.71,298,",us,",reviewed,1538434264750,M 4.4 - Kuril Islands,0,earthquake,",geoserve,origin,phase-data,",600.0,1539218547040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h7n4 +,,37376490,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37376490&format=geojson,0.06276,,93.0,",ci37376490,",1.49,ml,,ci,26.0,"3km ESE of Home Gardens, CA",0.2,34,",ci,",reviewed,1538434234670,"M 1.5 Quarry Blast - 3km ESE of Home Gardens, CA",0,quarry blast,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538514658178,https://earthquake.usgs.gov/earthquakes/eventpage/ci37376490 +,,37376482,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37376482&format=geojson,0.02609,,94.0,",ci37376482,",0.49,ml,,ci,20.0,"9km NE of Aguanga, CA",0.08,4,",ci,",reviewed,1538434159590,"M 0.5 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538506420639,https://earthquake.usgs.gov/earthquakes/eventpage/ci37376482 +,,1000h90u,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h90u&format=geojson,,,,",ak20273643,us1000h90u,",2.5,ml,,us,,"91km SSW of Unalaska, Alaska",0.59,96,",ak,us,",reviewed,1538433908240,"M 2.5 - 91km SSW of Unalaska, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539215839040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h90u +,,20268674,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268674&format=geojson,,,,",ak20268674,",1.6,ml,,ak,,"17km SE of Redoubt Volcano, Alaska",0.53,39,",ak,",reviewed,1538433859389,"M 1.6 - 17km SE of Redoubt Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036754167,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268674 +,,1000h7na,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h7na&format=geojson,4.749,,187.0,",us1000h7na,",4.2,mb,,us,,"173km SSW of Ndoi Island, Fiji",0.98,271,",us,",reviewed,1538433562120,"M 4.2 - 173km SSW of Ndoi Island, Fiji",0,earthquake,",geoserve,origin,phase-data,",-720.0,1539147591040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h7na +,,73092311,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092311&format=geojson,0.01919,,169.0,",nc73092311,",0.0,md,,nc,8.0,"9km ESE of Mammoth Lakes, CA",0.02,0,",nc,",reviewed,1538432367260,"M 0.0 - 9km ESE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538444343509,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092311 +,,37376474,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37376474&format=geojson,0.07662,,142.0,",ci37376474,",0.82,ml,,ci,23.0,"4km SE of Yucaipa, CA",0.11,10,",ci,",reviewed,1538431770060,"M 0.8 - 4km SE of Yucaipa, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538514460453,https://earthquake.usgs.gov/earthquakes/eventpage/ci37376474 +,3.8,70625142,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70625142&format=geojson,0.0703,8.0,85.0,",hv70625142,us1000h5cp,",3.08,ml,,hv,32.0,"28km W of Pepeekeo, Hawaii",0.17,149,",hv,us,",reviewed,1538431548760,"M 3.1 - 28km W of Pepeekeo, Hawaii",0,earthquake,",dyfi,geoserve,origin,phase-data,",-600.0,1539147124040,https://earthquake.usgs.gov/earthquakes/eventpage/hv70625142 +,,00659151,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659151&format=geojson,0.146,,76.46,",nn00659151,",1.5,ml,,nn,11.0,"74km NNE of Tonopah, Nevada",0.5019,35,",nn,",reviewed,1538431409477,"M 1.5 Explosion - 74km NNE of Tonopah, Nevada",0,explosion,",geoserve,origin,phase-data,",-480.0,1538432457769,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659151 +,,1000h7nb,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h7nb&format=geojson,7.946,,77.0,",us1000h7nb,",4.7,mb,,us,,Indian Ocean Triple Junction,0.98,340,",us,",reviewed,1538431281220,M 4.7 - Indian Ocean Triple Junction,0,earthquake,",geoserve,origin,phase-data,",300.0,1539142494040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h7nb +,,70625132,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70625132&format=geojson,0.03163,,102.0,",hv70625132,",1.83,md,,hv,22.0,"13km S of Volcano, Hawaii",0.16,52,",hv,",automatic,1538431243990,"M 1.8 - 13km S of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538460195461,https://earthquake.usgs.gov/earthquakes/eventpage/hv70625132 +,,70625127,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70625127&format=geojson,0.02369,,126.0,",hv70625127,",0.96,md,,hv,24.0,"9km S of Fern Acres, Hawaii",0.12,14,",hv,",reviewed,1538431193740,"M 1.0 - 9km S of Fern Acres, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538454223350,https://earthquake.usgs.gov/earthquakes/eventpage/hv70625127 +,,20268661,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268661&format=geojson,,,,",ak20268661,",2.3,ml,,ak,,"126km NNW of Arctic Village, Alaska",0.88,81,",ak,",reviewed,1538430990064,"M 2.3 - 126km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036753586,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268661 +,,70625107,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70625107&format=geojson,0.03544,,66.0,",hv70625107,",1.93,ml,,hv,34.0,"22km ENE of Honaunau-Napoopoo, Hawaii",0.13,57,",hv,",reviewed,1538430715350,"M 1.9 - 22km ENE of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538459673352,https://earthquake.usgs.gov/earthquakes/eventpage/hv70625107 +,,20268651,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268651&format=geojson,,,,",ak20268651,",1.0,ml,,ak,,"74km WNW of Valdez, Alaska",0.8,15,",ak,",reviewed,1538430601584,"M 1.0 Ice Quake - 74km WNW of Valdez, Alaska",0,ice quake,",geoserve,origin,phase-data,",-540.0,1539036753044,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268651 +,,20268643,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268643&format=geojson,,,,",ak20268643,",1.5,ml,,ak,,"125km NNW of Arctic Village, Alaska",0.96,35,",ak,",reviewed,1538430392719,"M 1.5 - 125km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036752496,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268643 +,5.4,1000h5c4,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h5c4&format=geojson,0.923,18.0,68.0,",us1000h5c4,",5.3,mww,,us,,"28km W of Cintalapa de Figueroa, Mexico",1.18,442,",us,",reviewed,1538430182780,"M 5.3 - 28km W of Cintalapa de Figueroa, Mexico",0,earthquake,",dyfi,geoserve,moment-tensor,origin,phase-data,",-360.0,1539142366752,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h5c4 +,,20268639,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268639&format=geojson,,,,",ak20268639,",1.1,ml,,ak,,"52km NNE of Yakutat, Alaska",0.93,19,",ak,",reviewed,1538430125573,"M 1.1 Ice Quake - 52km NNE of Yakutat, Alaska",0,ice quake,",geoserve,origin,phase-data,",-540.0,1539036751935,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268639 +,,20268638,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268638&format=geojson,,,,",ak20268638,",1.1,ml,,ak,,"11km NNW of Sterling, Alaska",0.62,19,",ak,",reviewed,1538430026883,"M 1.1 - 11km NNW of Sterling, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036751410,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268638 +,,37376426,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37376426&format=geojson,0.08225,,201.0,",ci37376426,",0.48,ml,,ci,10.0,"10km ENE of Coso Junction, CA",0.04,4,",ci,",reviewed,1538429344170,"M 0.5 - 10km ENE of Coso Junction, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538505654116,https://earthquake.usgs.gov/earthquakes/eventpage/ci37376426 +,,1000h5be,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h5be&format=geojson,,,76.0,",us1000h5be,",2.9,ml,,us,,"22km ENE of Mooreland, Oklahoma",0.31,129,",us,",reviewed,1538428850600,"M 2.9 - 22km ENE of Mooreland, Oklahoma",0,earthquake,",geoserve,origin,phase-data,",-360.0,1539141899040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h5be +,,20268630,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268630&format=geojson,,,,",ak20268630,us1000h5b8,",3.0,ml,,ak,,"77km SSW of Kaktovik, Alaska",0.59,138,",ak,us,",reviewed,1538428216276,"M 3.0 - 77km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539141764040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268630 +,,20268627,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268627&format=geojson,,,,",ak20268627,",1.8,ml,,ak,,"115km SW of Anchor Point, Alaska",0.48,50,",ak,",reviewed,1538428090686,"M 1.8 - 115km SW of Anchor Point, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036750231,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268627 +,,20268625,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268625&format=geojson,,,,",ak20268625,",1.3,ml,,ak,,"131km SSE of Prudhoe Bay, Alaska",0.69,26,",ak,",reviewed,1538427774274,"M 1.3 - 131km SSE of Prudhoe Bay, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036749712,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268625 +,,20268623,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268623&format=geojson,,,,",ak20268623,",1.5,ml,,ak,,"118km NNW of Arctic Village, Alaska",0.75,35,",ak,",reviewed,1538427663083,"M 1.5 - 118km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036749210,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268623 +,,73092301,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092301&format=geojson,0.003495,,57.0,",nc73092301,",1.24,md,,nc,41.0,"10km WNW of The Geysers, CA",0.04,24,",nc,",reviewed,1538427513250,"M 1.2 - 10km WNW of The Geysers, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538450583275,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092301 +,,1000h5am,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h5am&format=geojson,,,104.0,",us1000h5am,",2.7,ml,,us,,"20km N of Taloga, Oklahoma",0.4,112,",us,",reviewed,1538427038000,"M 2.7 - 20km N of Taloga, Oklahoma",0,earthquake,",geoserve,origin,phase-data,",-360.0,1538759408040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h5am +,,20268619,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268619&format=geojson,,,,",ak20268619,",1.1,ml,,ak,,"60km WNW of Valdez, Alaska",0.39,19,",ak,",reviewed,1538426644302,"M 1.1 - 60km WNW of Valdez, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036748643,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268619 +,,1000h7n0,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h7n0&format=geojson,53.737,,153.0,",us1000h7n0,",4.5,mb,,us,,Indian Ocean Triple Junction,0.57,312,",us,",reviewed,1538426583300,M 4.5 - Indian Ocean Triple Junction,0,earthquake,",geoserve,origin,phase-data,",240.0,1539020293040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h7n0 +,,20268609,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268609&format=geojson,,,,",ak20268609,us1000h5a8,",2.7,ml,,ak,,"111km SW of Anchor Point, Alaska",0.55,112,",ak,us,",reviewed,1538426019961,"M 2.7 - 111km SW of Anchor Point, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036748007,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268609 +,,00659111,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659111&format=geojson,0.055,,70.01,",nn00659111,",1.5,ml,,nn,24.0,"7km N of Incline Village, Nevada",0.1986,35,",nn,",reviewed,1538425893066,"M 1.5 - 7km N of Incline Village, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538428372843,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659111 +,,20268605,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268605&format=geojson,,,,",ak20268605,us1000h5a0,",2.3,ml,,ak,,"60km WNW of Valdez, Alaska",0.64,81,",ak,us,",reviewed,1538425691983,"M 2.3 - 60km WNW of Valdez, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036747393,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268605 +,,20268600,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268600&format=geojson,,,,",ak20268600,",2.0,ml,,ak,,"70km ENE of Cantwell, Alaska",0.77,62,",ak,",reviewed,1538425510640,"M 2.0 - 70km ENE of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036746812,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268600 +,,73092291,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092291&format=geojson,0.008106,,63.0,",nc73092291,",0.81,md,,nc,13.0,"4km NNW of The Geysers, CA",0.04,10,",nc,",automatic,1538425376940,"M 0.8 - 4km NNW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538425474536,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092291 +,,20268596,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268596&format=geojson,,,,",ak20268596,",2.0,ml,,ak,,"115km NNW of Arctic Village, Alaska",0.73,62,",ak,",reviewed,1538425148790,"M 2.0 - 115km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036746269,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268596 +,,20268593,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268593&format=geojson,,,,",ak20268593,",1.4,ml,,ak,,"61km WNW of Talkeetna, Alaska",0.6,30,",ak,",reviewed,1538424833767,"M 1.4 - 61km WNW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036745739,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268593 +,,00659149,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659149&format=geojson,0.502,,168.65,",nn00659149,",1.0,ml,,nn,4.0,"49km SE of Warm Springs, Nevada",0.1734,15,",nn,",reviewed,1538424703064,"M 1.0 - 49km SE of Warm Springs, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538432261142,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659149 +,,73092286,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092286&format=geojson,0.009831,,63.0,",nc73092286,",1.19,md,,nc,24.0,"2km SSW of Anderson Springs, CA",0.08,22,",nc,",reviewed,1538424590050,"M 1.2 - 2km SSW of Anderson Springs, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538449383119,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092286 +,,37376330,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37376330&format=geojson,0.01128,,46.0,",ci37376330,",0.52,ml,,ci,28.0,"10km NE of Aguanga, CA",0.13,4,",ci,",reviewed,1538424568160,"M 0.5 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538425819889,https://earthquake.usgs.gov/earthquakes/eventpage/ci37376330 +,,20268589,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268589&format=geojson,,,,",ak20268589,",1.9,ml,,ak,,"62km SE of Cantwell, Alaska",0.45,56,",ak,",reviewed,1538424344502,"M 1.9 - 62km SE of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036745109,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268589 +,,00659097,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659097&format=geojson,0.124,,56.17,",nn00659097,",2.4,ml,,nn,34.0,"28km WSW of Hawthorne, Nevada",0.2236,89,",nn,",reviewed,1538424079287,"M 2.4 - 28km WSW of Hawthorne, Nevada",0,earthquake,",focal-mechanism,geoserve,origin,phase-data,",-480.0,1538584637658,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659097 +,,73092276,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092276&format=geojson,0.0694,,247.0,",nc73092276,",0.88,md,,nc,8.0,"13km WSW of Toms Place, CA",0.03,12,",nc,",reviewed,1538423854750,"M 0.9 - 13km WSW of Toms Place, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538436182681,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092276 +,,20268585,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268585&format=geojson,,,,",ak20268585,",2.0,ml,,ak,,"78km SSW of Kaktovik, Alaska",0.51,62,",ak,",reviewed,1538423725142,"M 2.0 - 78km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036744554,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268585 +,,37376290,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37376290&format=geojson,0.01483,,32.0,",ci37376290,",1.42,ml,,ci,53.0,"9km NE of Aguanga, CA",0.19,31,",ci,",reviewed,1538423593760,"M 1.4 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538488470320,https://earthquake.usgs.gov/earthquakes/eventpage/ci37376290 +,,20268576,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268576&format=geojson,,,,",ak20268576,",0.9,ml,,ak,,"58km WNW of Valdez, Alaska",0.42,12,",ak,",reviewed,1538423491792,"M 0.9 - 58km WNW of Valdez, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036744049,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268576 +,,20268574,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268574&format=geojson,,,,",ak20268574,",1.5,ml,,ak,,"59km WNW of Valdez, Alaska",0.37,35,",ak,",reviewed,1538423344162,"M 1.5 - 59km WNW of Valdez, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036743552,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268574 +,3.1,20268557,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268557&format=geojson,,13.0,,",ak20268557,us1000h58d,",3.7,ml,4.56,ak,,"59km WNW of Valdez, Alaska",0.72,215,",ak,us,",reviewed,1538423131351,"M 3.7 - 59km WNW of Valdez, Alaska",0,earthquake,",dyfi,geoserve,origin,phase-data,shakemap,",-540.0,1539037574989,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268557 +,,20268562,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268562&format=geojson,,,,",av61790301,ak20268562,",1.4,ml,,ak,,"27km SW of Adak, Alaska",0.71,30,",av,ak,",reviewed,1538423117671,"M 1.4 - 27km SW of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539036742119,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268562 +,,37376266,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37376266&format=geojson,0.1514,,117.0,",ci37376266,",1.75,ml,,ci,22.0,"16km ESE of Lake Isabella, CA",0.18,47,",ci,",reviewed,1538423055440,"M 1.8 - 16km ESE of Lake Isabella, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538488473730,https://earthquake.usgs.gov/earthquakes/eventpage/ci37376266 +,,00659146,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659146&format=geojson,0.309,,213.85,",nn00659146,",0.9,ml,,nn,4.0,"23km S of Gardnerville Ranchos, Nevada",0.1966,12,",nn,",reviewed,1538423014002,"M 0.9 - 23km S of Gardnerville Ranchos, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538430965880,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659146 +,,00659145,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659145&format=geojson,0.375,,250.45,",nn00659145,",1.0,ml,,nn,4.0,"34km SSW of Gardnerville Ranchos, Nevada",0.2839,15,",nn,",reviewed,1538422991202,"M 1.0 - 34km SSW of Gardnerville Ranchos, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538430965058,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659145 +,,20268553,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268553&format=geojson,,,,",ak20268553,",1.8,ml,,ak,,"64km SSW of Kaktovik, Alaska",0.45,50,",ak,",reviewed,1538422782587,"M 1.8 - 64km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036741611,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268553 +,,1000h7n9,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h7n9&format=geojson,1.925,,167.0,",us1000h7n9,",4.5,mb,,us,,"87km ESE of Kamaishi, Japan",1.03,312,",us,",reviewed,1538422163330,"M 4.5 - 87km ESE of Kamaishi, Japan",0,earthquake,",geoserve,origin,phase-data,",600.0,1539026579040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h7n9 +,,37376258,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37376258&format=geojson,0.05213,,77.0,",ci37376258,",1.42,ml,,ci,40.0,"4km SE of Home Gardens, CA",0.19,31,",ci,",reviewed,1538421971180,"M 1.4 Quarry Blast - 4km SE of Home Gardens, CA",0,quarry blast,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538518518546,https://earthquake.usgs.gov/earthquakes/eventpage/ci37376258 +,,1000h57s,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h57s&format=geojson,2.48,,69.0,",us1000h57s,",4.4,mb,,us,,"53km SSE of Palu, Indonesia",0.74,298,",us,",reviewed,1538421732010,"M 4.4 - 53km SSE of Palu, Indonesia",0,earthquake,",geoserve,origin,phase-data,",480.0,1539015434040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h57s +,,73092256,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092256&format=geojson,0.0959,,237.0,",nc73092256,",0.62,md,,nc,14.0,"17km WSW of Toms Place, CA",0.04,6,",nc,",reviewed,1538421259820,"M 0.6 - 17km WSW of Toms Place, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538426283717,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092256 +,,37376250,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37376250&format=geojson,0.1087,,234.0,",ci37376250,",0.58,ml,,ci,9.0,"11km NE of Coso Junction, CA",0.08,5,",ci,",reviewed,1538421169430,"M 0.6 - 11km NE of Coso Junction, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538422936929,https://earthquake.usgs.gov/earthquakes/eventpage/ci37376250 +,,1000h7mx,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h7mx&format=geojson,14.594,,103.0,",us1000h7mx,",4.6,mb,,us,,Mid-Indian Ridge,0.86,326,",us,",reviewed,1538421072110,M 4.6 - Mid-Indian Ridge,0,earthquake,",geoserve,origin,phase-data,",300.0,1539019230040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h7mx +,,37376226,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37376226&format=geojson,0.07393,,120.0,",ci37376226,",0.67,ml,,ci,20.0,"18km SE of Anza, CA",0.18,7,",ci,",reviewed,1538421028390,"M 0.7 - 18km SE of Anza, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538488415210,https://earthquake.usgs.gov/earthquakes/eventpage/ci37376226 +,,60298677,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60298677&format=geojson,0.2423,,204.0,",uu60298677,",1.19,md,,uu,7.0,"61km SE of Old Faithful Geyser, Wyoming",0.17,22,",uu,",reviewed,1538420533280,"M 1.2 - 61km SE of Old Faithful Geyser, Wyoming",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538769559650,https://earthquake.usgs.gov/earthquakes/eventpage/uu60298677 +,,20268548,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268548&format=geojson,,,,",ak20268548,",2.3,ml,,ak,,"35km SW of Redoubt Volcano, Alaska",0.63,81,",ak,",reviewed,1538420489061,"M 2.3 - 35km SW of Redoubt Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036740942,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268548 +,,20268544,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268544&format=geojson,,,,",ak20268544,",1.4,ml,,ak,,"63km WNW of Talkeetna, Alaska",0.34,30,",ak,",reviewed,1538420198033,"M 1.4 - 63km WNW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036740389,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268544 +,,20268542,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268542&format=geojson,,,,",ak20268542,",2.1,ml,,ak,,"78km SSW of Kaktovik, Alaska",0.59,68,",ak,",reviewed,1538420109155,"M 2.1 - 78km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036739831,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268542 +,,1000h56y,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h56y&format=geojson,1.675,,106.0,",us1000h56y,",4.4,mb,,us,,"87km NNW of Tobelo, Indonesia",0.66,298,",us,",reviewed,1538420090610,"M 4.4 - 87km NNW of Tobelo, Indonesia",0,earthquake,",geoserve,origin,phase-data,",540.0,1539014677040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h56y +,,80311864,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80311864&format=geojson,0.213,,265.0,",mb80311864,",0.83,ml,,mb,5.0,"60km SSE of Old Faithful Geyser, Wyoming",0.07,11,",mb,",reviewed,1538420079360,"M 0.8 - 60km SSE of Old Faithful Geyser, Wyoming",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538436631520,https://earthquake.usgs.gov/earthquakes/eventpage/mb80311864 +,,61790271,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61790271&format=geojson,0.02723,,136.0,",av61790271,",-0.23,ml,,av,5.0,"42km ENE of Adak, Alaska",0.12,0,",av,",reviewed,1538419788410,"M -0.2 - 42km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538500703400,https://earthquake.usgs.gov/earthquakes/eventpage/av61790271 +,,70624782,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70624782&format=geojson,0.08917,,151.0,",hv70624782,",1.87,md,,hv,45.0,"1km S of Pahala, Hawaii",0.15,54,",hv,",automatic,1538419665460,"M 1.9 - 1km S of Pahala, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538419861850,https://earthquake.usgs.gov/earthquakes/eventpage/hv70624782 +,,37376194,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37376194&format=geojson,0.07963,,32.0,",ci37376194,",1.71,ml,,ci,72.0,"4km ENE of Calimesa, CA",0.15,45,",ci,",reviewed,1538419598350,"M 1.7 - 4km ENE of Calimesa, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538518564480,https://earthquake.usgs.gov/earthquakes/eventpage/ci37376194 +,,00659156,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659156&format=geojson,0.144,,170.23,",nn00659156,",0.1,ml,,nn,16.0,"64km W of Alamo, Nevada",0.1497,0,",nn,",reviewed,1538418865911,"M 0.1 - 64km W of Alamo, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538432264012,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659156 +,,20268528,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268528&format=geojson,,,,",ak20268528,us1000h562,",3.4,ml,4.38,ak,,"124km NNW of Arctic Village, Alaska",0.82,178,",ak,us,",reviewed,1538418761138,"M 3.4 - 124km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,shakemap,",-540.0,1539037245072,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268528 +,,37376162,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37376162&format=geojson,0.07303,,86.0,",ci37376162,",0.79,ml,,ci,20.0,"4km ENE of Calimesa, CA",0.12,10,",ci,",reviewed,1538418755000,"M 0.8 - 4km ENE of Calimesa, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538517680334,https://earthquake.usgs.gov/earthquakes/eventpage/ci37376162 +,,73092236,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092236&format=geojson,0.01901,,113.0,",nc73092236,",0.74,md,,nc,16.0,"9km ESE of Mammoth Lakes, CA",0.02,8,",nc,",reviewed,1538418581370,"M 0.7 - 9km ESE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538446184297,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092236 +,,80311859,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80311859&format=geojson,0.222,,266.0,",mb80311859,",0.46,ml,,mb,5.0,"61km SSE of Old Faithful Geyser, Wyoming",0.09,3,",mb,",reviewed,1538418400810,"M 0.5 - 61km SSE of Old Faithful Geyser, Wyoming",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538436385710,https://earthquake.usgs.gov/earthquakes/eventpage/mb80311859 +,,20268524,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268524&format=geojson,,,,",ak20268524,",1.2,ml,,ak,,"53km NNE of Yakutat, Alaska",0.41,22,",ak,",reviewed,1538418194983,"M 1.2 Ice Quake - 53km NNE of Yakutat, Alaska",0,ice quake,",geoserve,origin,phase-data,",-540.0,1539036738610,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268524 +,,37376154,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37376154&format=geojson,0.086,,98.0,",ci37376154,",0.98,ml,,ci,31.0,"7km ESE of Valle Vista, CA",0.2,15,",ci,",reviewed,1538418165840,"M 1.0 - 7km ESE of Valle Vista, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538419112630,https://earthquake.usgs.gov/earthquakes/eventpage/ci37376154 +,,00659153,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659153&format=geojson,0.039,,80.41,",nn00659153,",0.2,ml,,nn,10.0,"3km W of Tahoe Vista, California",0.1107,1,",nn,",reviewed,1538418084840,"M 0.2 - 3km W of Tahoe Vista, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538431705714,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659153 +,,37376146,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37376146&format=geojson,0.03883,,122.0,",ci37376146,",0.71,ml,,ci,18.0,"22km SSW of La Quinta, CA",0.19,8,",ci,",reviewed,1538417867090,"M 0.7 - 22km SSW of La Quinta, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538419128892,https://earthquake.usgs.gov/earthquakes/eventpage/ci37376146 +,,20273613,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273613&format=geojson,,,,",ak20273613,",2.2,ml,,ak,,"53km SSE of Atka, Alaska",0.37,74,",ak,",reviewed,1538417862098,"M 2.2 - 53km SSE of Atka, Alaska",0,earthquake,",geoserve,origin,phase-data,",-720.0,1539036738094,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273613 +green,,1000h55w,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h55w&format=geojson,14.004,,41.0,",us1000h55w,",5.3,mww,0.0,us,,Indian Ocean Triple Junction,0.87,432,",us,",reviewed,1538417802100,M 5.3 - Indian Ocean Triple Junction,0,earthquake,",geoserve,losspager,moment-tensor,origin,phase-data,shakemap,",300.0,1539011297765,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h55w +,,73092231,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092231&format=geojson,0.01115,,104.0,",nc73092231,",0.75,md,,nc,9.0,"3km WNW of Cobb, CA",0.02,9,",nc,",automatic,1538417618350,"M 0.8 - 3km WNW of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538417715817,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092231 +,,1000h55v,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h55v&format=geojson,37.401,,50.0,",us1000h55v,",5.2,mb,,us,,Indian Ocean Triple Junction,0.7,416,",us,",reviewed,1538417579950,M 5.2 - Indian Ocean Triple Junction,0,earthquake,",geoserve,origin,phase-data,",300.0,1539029643040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h55v +,,00659064,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659064&format=geojson,0.158,,66.24,",nn00659064,",1.8,ml,,nn,51.0,"62km W of Alamo, Nevada",0.2338,50,",nn,",reviewed,1538417149187,"M 1.8 - 62km W of Alamo, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538446109282,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659064 +,,20268523,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268523&format=geojson,,,,",ak20268523,",1.4,ml,,ak,,"112km NNW of Arctic Village, Alaska",0.77,30,",ak,",reviewed,1538417116746,"M 1.4 - 112km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036737602,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268523 +,,1000h55a,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h55a&format=geojson,1.71,,54.0,",us1000h55a,",4.7,mwr,,us,,"49km WNW of San Antonio de los Cobres, Argentina",0.72,340,",us,",reviewed,1538417034390,"M 4.7 - 49km WNW of San Antonio de los Cobres, Argentina",0,earthquake,",geoserve,origin,phase-data,",-180.0,1539010685040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h55a +,,1000h7mt,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h7mt&format=geojson,37.392,,77.0,",us1000h7mt,",4.8,mb,,us,,Indian Ocean Triple Junction,0.6,354,",us,",reviewed,1538416982490,M 4.8 - Indian Ocean Triple Junction,0,earthquake,",geoserve,origin,phase-data,",300.0,1539018728040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h7mt +,,37376122,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37376122&format=geojson,0.004144,,72.0,",ci37376122,",0.4,ml,,ci,23.0,"10km NE of Aguanga, CA",0.11,2,",ci,",reviewed,1538416805420,"M 0.4 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538421715444,https://earthquake.usgs.gov/earthquakes/eventpage/ci37376122 +,3.4,1000h5aj,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h5aj&format=geojson,6.036,1.0,50.0,",us1000h5aj,",4.5,mb,,us,,"3km SSW of Mamoudzou, Mayotte",0.94,312,",us,",reviewed,1538416710670,"M 4.5 - 3km SSW of Mamoudzou, Mayotte",0,earthquake,",dyfi,geoserve,origin,phase-data,",180.0,1539011417709,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h5aj +,,20268519,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268519&format=geojson,,,,",ak20268519,",0.8,ml,,ak,,"53km NNE of Yakutat, Alaska",0.49,10,",ak,",reviewed,1538416607646,"M 0.8 Ice Quake - 53km NNE of Yakutat, Alaska",0,ice quake,",geoserve,origin,phase-data,",-540.0,1539036737093,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268519 +,3.8,37376114,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37376114&format=geojson,0.06715,198.0,25.0,",ci37376114,us1000h553,",3.48,ml,4.17,ci,143.0,"4km ENE of Calimesa, CA",0.18,262,",ci,us,",reviewed,1538416579620,"M 3.5 - 4km ENE of Calimesa, CA",0,earthquake,",dyfi,focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,shakemap,",-480.0,1539017034040,https://earthquake.usgs.gov/earthquakes/eventpage/ci37376114 +,,20268518,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268518&format=geojson,,,,",ak20268518,",1.6,ml,,ak,,"120km NNW of Arctic Village, Alaska",0.78,39,",ak,",reviewed,1538416576343,"M 1.6 - 120km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036736577,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268518 +,,37376106,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37376106&format=geojson,0.04369,,116.0,",ci37376106,",0.99,ml,,ci,36.0,"10km N of Cabazon, CA",0.13,15,",ci,",reviewed,1538416356480,"M 1.0 - 10km N of Cabazon, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538425426268,https://earthquake.usgs.gov/earthquakes/eventpage/ci37376106 +,,20273609,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273609&format=geojson,,,,",ak20273609,",2.3,ml,,ak,,"77km SSW of Kaktovik, Alaska",0.76,81,",ak,",reviewed,1538415709073,"M 2.3 - 77km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036736050,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273609 +,,37376090,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37376090&format=geojson,0.01751,,45.0,",ci37376090,",1.34,ml,,ci,46.0,"5km NW of Borrego Springs, CA",0.21,28,",ci,",reviewed,1538415606710,"M 1.3 - 5km NW of Borrego Springs, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538499210950,https://earthquake.usgs.gov/earthquakes/eventpage/ci37376090 +,2.0,1000h53t,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h53t&format=geojson,2.028,1.0,51.0,",us1000h53t,",4.7,mb,,us,,"24km NNW of Palu, Indonesia",0.83,340,",us,",reviewed,1538415541790,"M 4.7 - 24km NNW of Palu, Indonesia",0,earthquake,",dyfi,geoserve,origin,phase-data,",480.0,1539012010951,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h53t +,,20273608,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273608&format=geojson,,,,",ak20273608,",1.8,ml,,ak,,"39km SW of Valdez, Alaska",0.5,50,",ak,",reviewed,1538415537260,"M 1.8 - 39km SW of Valdez, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036735416,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273608 +,,37376082,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37376082&format=geojson,0.04701,,155.0,",ci37376082,",0.68,ml,,ci,14.0,"18km E of Anza, CA",0.07,7,",ci,",reviewed,1538415356890,"M 0.7 - 18km E of Anza, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538419144841,https://earthquake.usgs.gov/earthquakes/eventpage/ci37376082 +,,80311949,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80311949&format=geojson,0.125,,105.0,",mb80311949,",1.05,ml,,mb,7.0,"15km SE of Lincoln, Montana",0.07,17,",mb,",reviewed,1538415226140,"M 1.1 - 15km SE of Lincoln, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538431255610,https://earthquake.usgs.gov/earthquakes/eventpage/mb80311949 +,,60298657,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60298657&format=geojson,0.2344,,221.0,",uu60298657,mb80312514,",1.28,md,,uu,6.0,"60km SSE of Old Faithful Geyser, Wyoming",0.11,25,",uu,mb,",reviewed,1538414852680,"M 1.3 - 60km SSE of Old Faithful Geyser, Wyoming",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538769880220,https://earthquake.usgs.gov/earthquakes/eventpage/uu60298657 +,,80311834,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80311834&format=geojson,0.209,,262.0,",mb80311834,",1.37,ml,,mb,7.0,"60km SSE of Old Faithful Geyser, Wyoming",0.09,29,",mb,",reviewed,1538414822520,"M 1.4 - 60km SSE of Old Faithful Geyser, Wyoming",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538769665760,https://earthquake.usgs.gov/earthquakes/eventpage/mb80311834 +,,37376058,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37376058&format=geojson,0.0161,,96.0,",ci37376058,",0.4,ml,,ci,16.0,"9km NE of Aguanga, CA",0.11,2,",ci,",reviewed,1538414753490,"M 0.4 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538423904802,https://earthquake.usgs.gov/earthquakes/eventpage/ci37376058 +,,80311829,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80311829&format=geojson,0.215,,243.0,",mb80311829,",0.96,ml,,mb,8.0,"60km SSE of Old Faithful Geyser, Wyoming",0.14,14,",mb,",reviewed,1538414649450,"M 1.0 - 60km SSE of Old Faithful Geyser, Wyoming",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538493856830,https://earthquake.usgs.gov/earthquakes/eventpage/mb80311829 +,,80311939,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80311939&format=geojson,0.121,,104.0,",mb80311939,",0.88,ml,,mb,8.0,"14km SE of Lincoln, Montana",0.05,12,",mb,",reviewed,1538413993920,"M 0.9 - 14km SE of Lincoln, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538431036640,https://earthquake.usgs.gov/earthquakes/eventpage/mb80311939 +,,37376034,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37376034&format=geojson,0.03675,,92.0,",ci37376034,",1.04,ml,,ci,20.0,"6km SSE of Home Gardens, CA",0.26,17,",ci,",reviewed,1538413805790,"M 1.0 Quarry Blast - 6km SSE of Home Gardens, CA",0,quarry blast,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538421064532,https://earthquake.usgs.gov/earthquakes/eventpage/ci37376034 +,,00659045,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659045&format=geojson,0.154,,116.75,",nn00659045,",1.1,ml,,nn,43.0,"64km W of Alamo, Nevada",0.1866,19,",nn,",reviewed,1538413597578,"M 1.1 - 64km W of Alamo, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538416675427,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659045 +,,80311934,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80311934&format=geojson,0.118,,109.0,",mb80311934,",0.95,ml,,mb,9.0,"14km ESE of Lincoln, Montana",0.11,14,",mb,",reviewed,1538413594980,"M 1.0 - 14km ESE of Lincoln, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538430762410,https://earthquake.usgs.gov/earthquakes/eventpage/mb80311934 +,,20268361,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268361&format=geojson,,,,",ak20268361,",1.1,ml,,ak,,"45km NW of Valdez, Alaska",0.37,19,",ak,",reviewed,1538413556812,"M 1.1 - 45km NW of Valdez, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036734862,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268361 +,,37376026,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37376026&format=geojson,0.03128,,201.0,",ci37376026,",0.99,ml,,ci,9.0,"14km SE of Ocotillo, CA",0.17,15,",ci,",reviewed,1538413464070,"M 1.0 - 14km SE of Ocotillo, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538422945379,https://earthquake.usgs.gov/earthquakes/eventpage/ci37376026 +,,20268362,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268362&format=geojson,,,,",ak20268362,",3.3,ml,,ak,,West of the Queen Charlotte Islands,1.16,168,",ak,",reviewed,1538413178242,M 3.3 - West of the Queen Charlotte Islands,0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036734280,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268362 +,,20268356,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268356&format=geojson,,,,",ak20268356,us1000h52m,",2.4,ml,,ak,,"41km S of Redoubt Volcano, Alaska",0.54,89,",ak,us,",reviewed,1538412741295,"M 2.4 - 41km S of Redoubt Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539180749040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268356 +,,37375994,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37375994&format=geojson,0.1125,,59.0,",ci37375994,",1.46,ml,,ci,16.0,"13km W of Ludlow, CA",0.14,33,",ci,",reviewed,1538412566690,"M 1.5 - 13km W of Ludlow, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538423363549,https://earthquake.usgs.gov/earthquakes/eventpage/ci37375994 +,,37375930,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37375930&format=geojson,0.07261,,100.0,",ci37375930,",0.01,ml,,ci,17.0,"10km NE of Aguanga, CA",0.09,0,",ci,",reviewed,1538410690270,"M 0.0 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538422686520,https://earthquake.usgs.gov/earthquakes/eventpage/ci37375930 +,,20268351,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268351&format=geojson,,,,",ak20268351,",1.0,ml,,ak,,"48km WNW of Cape Yakataga, Alaska",0.63,15,",ak,",reviewed,1538410479614,"M 1.0 - 48km WNW of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036733087,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268351 +,,00659140,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659140&format=geojson,0.095,,234.29,",nn00659140,",-0.3,ml,,nn,3.0,"31km NNE of Beatty, Nevada",0.0641,0,",nn,",reviewed,1538410019301,"M -0.3 - 31km NNE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538430591125,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659140 +,,37375914,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37375914&format=geojson,0.06956,,138.0,",ci37375914,",0.72,ml,,ci,12.0,"9km ENE of North Tustin, CA",0.19,8,",ci,",reviewed,1538409920600,"M 0.7 - 9km ENE of North Tustin, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538422322321,https://earthquake.usgs.gov/earthquakes/eventpage/ci37375914 +,,20268343,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268343&format=geojson,,,,",ak20268343,",1.1,ml,,ak,,"100km SW of Fort Yukon, Alaska",0.75,19,",ak,",reviewed,1538409909604,"M 1.1 - 100km SW of Fort Yukon, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036732555,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268343 +,,1000h90q,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h90q&format=geojson,2.165,,233.0,",ak20268339,us1000h90q,",2.9,ml,,us,,"232km SE of Kodiak, Alaska",0.35,129,",ak,us,",reviewed,1538409734030,"M 2.9 - 232km SE of Kodiak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539178733040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h90q +,,20268336,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268336&format=geojson,,,,",ak20268336,",1.3,ml,,ak,,"48km NW of Cape Yakataga, Alaska",0.64,26,",ak,",reviewed,1538409359152,"M 1.3 - 48km NW of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036731384,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268336 +,,1000h90h,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h90h&format=geojson,0.309,,256.0,",ak20268334,us1000h90h,",2.8,ml,,us,,"56km SW of Nikolski, Alaska",0.85,121,",ak,us,",reviewed,1538409034040,"M 2.8 - 56km SW of Nikolski, Alaska",0,earthquake,",geoserve,origin,phase-data,",-660.0,1539177851040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h90h +,,80311929,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80311929&format=geojson,0.135,,183.0,",mb80311929,",0.23,md,,mb,4.0,"19km N of Manhattan, Montana",0.07,1,",mb,",reviewed,1538408886970,"M 0.2 - 19km N of Manhattan, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538430394970,https://earthquake.usgs.gov/earthquakes/eventpage/mb80311929 +,,20268333,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268333&format=geojson,,,,",ak20268333,",1.2,ml,,ak,,"69km NNW of Talkeetna, Alaska",0.37,22,",ak,",reviewed,1538408821843,"M 1.2 - 69km NNW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036730345,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268333 +,,20268329,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268329&format=geojson,,,,",ak20268329,",1.2,ml,,ak,,"41km SE of Glennallen, Alaska",0.2,22,",ak,",reviewed,1538408709723,"M 1.2 - 41km SE of Glennallen, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036729813,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268329 +,,20268328,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268328&format=geojson,,,,",ak20268328,",1.0,ml,,ak,,"44km WSW of Willow, Alaska",0.2,15,",ak,",reviewed,1538408635449,"M 1.0 - 44km WSW of Willow, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036729287,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268328 +,,20268326,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268326&format=geojson,,,,",ak20268326,",0.9,ml,,ak,,"40km WNW of Valdez, Alaska",0.47,12,",ak,",reviewed,1538408534715,"M 0.9 - 40km WNW of Valdez, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036728772,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268326 +,,20268323,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268323&format=geojson,,,,",ak20268323,",0.9,ml,,ak,,"13km NW of North Nenana, Alaska",0.49,12,",ak,",reviewed,1538408393534,"M 0.9 - 13km NW of North Nenana, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036728219,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268323 +,,20268321,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268321&format=geojson,,,,",ak20268321,",1.4,ml,,ak,,"39km WSW of Manley Hot Springs, Alaska",0.33,30,",ak,",reviewed,1538408143403,"M 1.4 - 39km WSW of Manley Hot Springs, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036727710,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268321 +,,1000h7mq,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h7mq&format=geojson,2.764,,70.0,",us1000h7mq,",4.5,mb,,us,,"168km ESE of Lambasa, Fiji",0.84,312,",us,",reviewed,1538408138520,"M 4.5 - 168km ESE of Lambasa, Fiji",0,earthquake,",geoserve,origin,phase-data,",-720.0,1539177648040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h7mq +,,20268318,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268318&format=geojson,,,,",ak20268318,",1.5,ml,,ak,,"39km NE of Redoubt Volcano, Alaska",0.53,35,",ak,",reviewed,1538408004017,"M 1.5 - 39km NE of Redoubt Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036727149,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268318 +,,70624582,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70624582&format=geojson,0.0322,,70.0,",hv70624582,",2.22,ml,,hv,46.0,"22km ENE of Honaunau-Napoopoo, Hawaii",0.12,76,",hv,",reviewed,1538407572380,"M 2.2 - 22km ENE of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538438711510,https://earthquake.usgs.gov/earthquakes/eventpage/hv70624582 +,,70624577,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70624577&format=geojson,0.02919,,90.0,",hv70624577,",1.81,md,,hv,25.0,"22km ENE of Honaunau-Napoopoo, Hawaii",0.26,50,",hv,",automatic,1538407442840,"M 1.8 - 22km ENE of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538407647360,https://earthquake.usgs.gov/earthquakes/eventpage/hv70624577 +,,20268314,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268314&format=geojson,,,,",ak20268314,",1.5,ml,,ak,,"28km WNW of Ester, Alaska",0.79,35,",ak,",reviewed,1538407107674,"M 1.5 - 28km WNW of Ester, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036726577,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268314 +,,1000h50j,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h50j&format=geojson,1.992,,140.0,",us1000h50j,",5.3,mww,,us,,"239km W of Puerto Chacabuco, Chile",0.62,432,",us,",reviewed,1538406709730,"M 5.3 - 239km W of Puerto Chacabuco, Chile",0,earthquake,",geoserve,origin,phase-data,",-300.0,1539118861040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h50j +,,20268313,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268313&format=geojson,,,,",ak20268313,",0.8,ml,,ak,,"47km NW of Cape Yakataga, Alaska",0.43,10,",ak,",reviewed,1538406494968,"M 0.8 - 47km NW of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538412169758,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268313 +,,1000h7mm,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h7mm&format=geojson,1.288,,98.0,",us1000h7mm,",4.7,mb,,us,,"173km E of Nago, Japan",0.27,340,",us,",reviewed,1538406431250,"M 4.7 - 173km E of Nago, Japan",0,earthquake,",geoserve,origin,phase-data,",540.0,1539118704040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h7mm +,,1000h50b,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h50b&format=geojson,2.412,,211.0,",us1000h50b,",4.4,mb,,us,,"296km W of Puerto Chacabuco, Chile",0.64,298,",us,",reviewed,1538406332480,"M 4.4 - 296km W of Puerto Chacabuco, Chile",0,earthquake,",geoserve,origin,phase-data,",-300.0,1539117803040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h50b +,,1000h90g,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h90g&format=geojson,2.52,,217.0,",ak20268309,us1000h90g,",3.0,ml,,us,,"279km SE of Kodiak, Alaska",0.46,138,",ak,us,",reviewed,1538405532420,"M 3.0 - 279km SE of Kodiak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539117722040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h90g +,,20268304,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268304&format=geojson,,,,",ak20268304,",2.2,ml,,ak,,"76km SSW of Kaktovik, Alaska",0.37,74,",ak,",reviewed,1538405283393,"M 2.2 - 76km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036725455,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268304 +,,1000h51r,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h51r&format=geojson,1.049,,237.0,",ak20268302,us1000h51r,",3.2,ml,,us,,"121km SSE of Akutan, Alaska",0.34,158,",ak,us,",reviewed,1538405254350,"M 3.2 - 121km SSE of Akutan, Alaska",0,earthquake,",geoserve,origin,phase-data,",-660.0,1539117207040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h51r +,,73092211,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092211&format=geojson,0.02223,,69.0,",nc73092211,",1.19,md,,nc,25.0,"1km E of Mammoth Lakes, CA",0.05,22,",nc,",reviewed,1538405195800,"M 1.2 - 1km E of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538449983173,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092211 +,,37375882,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37375882&format=geojson,0.07402,,53.0,",ci37375882,",1.18,ml,,ci,26.0,"10km ENE of North Tustin, CA",0.2,21,",ci,",reviewed,1538405172540,"M 1.2 - 10km ENE of North Tustin, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538410656325,https://earthquake.usgs.gov/earthquakes/eventpage/ci37375882 +,,73092216,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092216&format=geojson,0.002697,,84.0,",nc73092216,",0.35,md,,nc,19.0,"10km NW of The Geysers, CA",0.04,2,",nc,",reviewed,1538405140820,"M 0.4 - 10km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538442782325,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092216 +,,1000h7ml,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h7ml&format=geojson,1.96,,130.0,",us1000h7ml,",4.6,mb,,us,,"82km SW of Uyuni, Bolivia",1.42,326,",us,",reviewed,1538405125240,"M 4.6 - 82km SW of Uyuni, Bolivia",0,earthquake,",geoserve,origin,phase-data,",-240.0,1539117095040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h7ml +,,71109649,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc71109649&format=geojson,0.02409,,143.0,",nc71109649,",0.08,md,,nc,11.0,"1km ENE of Mammoth Lakes, CA",0.04,0,",nc,",reviewed,1538405124990,"M 0.1 - 1km ENE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538425624653,https://earthquake.usgs.gov/earthquakes/eventpage/nc71109649 +,,70805394,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70805394&format=geojson,0.007496,,205.0,",av70805394,",1.02,ml,,av,6.0,"67km ENE of Cold Bay, Alaska",0.19,16,",av,",reviewed,1538404973600,"M 1.0 - 67km ENE of Cold Bay, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538499512130,https://earthquake.usgs.gov/earthquakes/eventpage/av70805394 +,,20268298,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268298&format=geojson,,,,",ak20268298,",2.2,ml,,ak,,"78km SW of Kaktovik, Alaska",0.49,74,",ak,",reviewed,1538404968603,"M 2.2 - 78km SW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036724330,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268298 +,,20268297,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268297&format=geojson,,,,",ak20268297,",1.0,ml,,ak,,"79km N of Cape Yakataga, Alaska",0.63,15,",ak,",reviewed,1538404832378,"M 1.0 Ice Quake - 79km N of Cape Yakataga, Alaska",0,ice quake,",geoserve,origin,phase-data,",-540.0,1539036723815,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268297 +,,37375874,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37375874&format=geojson,0.02001,,31.0,",ci37375874,",1.3,ml,,ci,46.0,"8km NE of Aguanga, CA",0.17,26,",ci,",reviewed,1538404712030,"M 1.3 - 8km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538498664460,https://earthquake.usgs.gov/earthquakes/eventpage/ci37375874 +,,37375866,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37375866&format=geojson,0.07448,,30.0,",ci37375866,",2.1,ml,,ci,64.0,"9km ENE of North Tustin, CA",0.21,68,",ci,",reviewed,1538404522000,"M 2.1 - 9km ENE of North Tustin, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538497316550,https://earthquake.usgs.gov/earthquakes/eventpage/ci37375866 +,,37375858,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37375858&format=geojson,0.08474,,70.0,",ci37375858,",0.65,ml,,ci,25.0,"9km NE of Aguanga, CA",0.19,6,",ci,",reviewed,1538404343200,"M 0.7 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538407784003,https://earthquake.usgs.gov/earthquakes/eventpage/ci37375858 +,,73092206,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092206&format=geojson,0.04474,,75.0,",nc73092206,",1.08,md,,nc,18.0,"14km E of Seven Trees, CA",0.04,18,",nc,",reviewed,1538403847100,"M 1.1 - 14km E of Seven Trees, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538441104173,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092206 +,,20268296,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268296&format=geojson,,,,",ak20268296,",1.7,ml,,ak,,"6km S of Kodiak, Alaska",0.38,44,",ak,",reviewed,1538403804774,"M 1.7 - 6km S of Kodiak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036723315,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268296 +,,20268293,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268293&format=geojson,,,,",ak20268293,",1.7,ml,,ak,,"123km NNW of Arctic Village, Alaska",0.8,44,",ak,",reviewed,1538403378499,"M 1.7 - 123km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036722782,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268293 +,,1000h7ms,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h7ms&format=geojson,4.329,,138.0,",us1000h7ms,",4.5,mb,,us,,"113km N of Zhigansk, Russia",0.87,312,",us,",reviewed,1538403159970,"M 4.5 - 113km N of Zhigansk, Russia",0,earthquake,",geoserve,origin,phase-data,",540.0,1539115806040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h7ms +,1.0,1000h4zj,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h4zj&format=geojson,0.616,0.0,73.0,",us1000h4zj,",4.6,mb,,us,,"54km NW of Kefamenanu, Indonesia",1.09,326,",us,",reviewed,1538403107110,"M 4.6 - 54km NW of Kefamenanu, Indonesia",0,earthquake,",dyfi,geoserve,origin,phase-data,",480.0,1539114355040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h4zj +,,1000h90p,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h90p&format=geojson,2.462,,242.0,",ak20268291,us1000h90p,",3.0,ml,,us,,"270km SE of Kodiak, Alaska",0.23,138,",ak,us,",reviewed,1538403055410,"M 3.0 - 270km SE of Kodiak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539114234040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h90p +,,73092201,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092201&format=geojson,0.02046,,79.0,",nc73092201,",1.13,md,,nc,13.0,"2km WNW of The Geysers, CA",0.08,20,",nc,",automatic,1538402948390,"M 1.1 - 2km WNW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538407082277,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092201 +,,20268290,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268290&format=geojson,,,,",ak20268290,",1.4,ml,,ak,,"121km NW of Arctic Village, Alaska",0.51,30,",ak,",reviewed,1538402765067,"M 1.4 - 121km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036721744,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268290 +,,37375826,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37375826&format=geojson,0.01748,,109.0,",ci37375826,",0.37,ml,,ci,13.0,"9km NE of Aguanga, CA",0.09,2,",ci,",reviewed,1538402757740,"M 0.4 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538403192014,https://earthquake.usgs.gov/earthquakes/eventpage/ci37375826 +,,20268288,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268288&format=geojson,,,,",ak20268288,",1.1,ml,,ak,,"67km S of Cantwell, Alaska",0.78,19,",ak,",reviewed,1538402477808,"M 1.1 - 67km S of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036721201,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268288 +,,73092196,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092196&format=geojson,0.00434,,65.0,",nc73092196,",1.13,md,,nc,18.0,"10km WNW of The Geysers, CA",0.02,20,",nc,",automatic,1538402248780,"M 1.1 - 10km WNW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538405343100,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092196 +,,37375818,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37375818&format=geojson,0.08549,,34.0,",ci37375818,",1.09,ml,,ci,42.0,"9km NE of Aguanga, CA",0.21,18,",ci,",reviewed,1538402212770,"M 1.1 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538403232650,https://earthquake.usgs.gov/earthquakes/eventpage/ci37375818 +,,20268285,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268285&format=geojson,,,,",ak20268285,",1.0,ml,,ak,,"12km NNE of North Nenana, Alaska",0.49,15,",ak,",reviewed,1538401976802,"M 1.0 - 12km NNE of North Nenana, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036720643,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268285 +,,00659139,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659139&format=geojson,0.063,,96.8,",nn00659139,",0.5,ml,,nn,9.0,"11km NNW of Incline Village, Nevada",0.1138,4,",nn,",reviewed,1538401939765,"M 0.5 - 11km NNW of Incline Village, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538430221120,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659139 +,,20268283,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268283&format=geojson,,,,",ak20268283,",1.6,ml,,ak,,"81km NNE of Manley Hot Springs, Alaska",0.48,39,",ak,",reviewed,1538401873968,"M 1.6 - 81km NNE of Manley Hot Springs, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036720076,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268283 +,,73092186,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092186&format=geojson,0.03047,,83.0,",nc73092186,",0.98,md,,nc,11.0,"8km E of Alum Rock, CA",0.03,15,",nc,",reviewed,1538401820140,"M 1.0 - 8km E of Alum Rock, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538445431778,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092186 +,,20268275,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268275&format=geojson,,,,",ak20268275,",1.4,ml,,ak,,"38km N of Yakutat, Alaska",0.44,30,",ak,",reviewed,1538401143457,"M 1.4 Ice Quake - 38km N of Yakutat, Alaska",0,ice quake,",geoserve,origin,phase-data,",-540.0,1539036719565,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268275 +,,2018274011,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018274011&format=geojson,0.0497,,250.0,",pr2018274011,",2.03,md,,pr,5.0,"3km ENE of Mayaguez, Puerto Rico",0.3,63,",pr,",reviewed,1538400798380,"M 2.0 - 3km ENE of Mayaguez, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538412068118,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018274011 +,,1000h4z5,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h4z5&format=geojson,1.337,,77.0,",us1000h4z5,",5.1,mb,,us,,"143km NNW of Bamboo Flat, India",0.88,400,",us,",reviewed,1538400284800,"M 5.1 - 143km NNW of Bamboo Flat, India",0,earthquake,",geoserve,origin,phase-data,",360.0,1539113551040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h4z5 +,,20268270,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268270&format=geojson,,,,",ak20268270,",2.0,ml,,ak,,"77km SSW of Kaktovik, Alaska",0.84,62,",ak,",reviewed,1538400064391,"M 2.0 - 77km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036719027,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268270 +,,1000h4z7,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h4z7&format=geojson,5.377,,76.0,",us1000h4z7,",5.0,mb,,us,,South of the Fiji Islands,0.89,385,",us,",reviewed,1538400056170,M 5.0 - South of the Fiji Islands,0,earthquake,",geoserve,origin,phase-data,",-720.0,1539113435040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h4z7 +,,20268268,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268268&format=geojson,,,,",ak20268268,",1.0,ml,,ak,,"12km N of Cantwell, Alaska",0.41,15,",ak,",reviewed,1538400017799,"M 1.0 - 12km N of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036718501,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268268 +,,1000h7mk,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h7mk&format=geojson,1.419,,168.0,",us1000h7mk,",4.0,mb,,us,,"135km ENE of Bitung, Indonesia",0.17,246,",us,",reviewed,1538399962190,"M 4.0 - 135km ENE of Bitung, Indonesia",0,earthquake,",geoserve,origin,phase-data,",480.0,1539113305040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h7mk +,,37375778,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37375778&format=geojson,0.02733,,38.0,",ci37375778,",1.23,ml,,ci,39.0,"7km SSW of Devore, CA",0.14,23,",ci,",reviewed,1538399906600,"M 1.2 - 7km SSW of Devore, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538440352820,https://earthquake.usgs.gov/earthquakes/eventpage/ci37375778 +,,73092181,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092181&format=geojson,0.006382,,78.0,",nc73092181,",0.85,md,,nc,14.0,"9km WNW of Cobb, CA",0.01,11,",nc,",automatic,1538399888940,"M 0.9 - 9km WNW of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538401802751,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092181 +,,20268265,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268265&format=geojson,,,,",ak20268265,",1.0,ml,,ak,,"36km N of North Nenana, Alaska",0.53,15,",ak,",reviewed,1538399544563,"M 1.0 - 36km N of North Nenana, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036717949,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268265 +,,73092176,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092176&format=geojson,0.1234,,183.0,",nc73092176,",0.67,md,,nc,15.0,"17km S of Mammoth Lakes, CA",0.1,7,",nc,",reviewed,1538399337900,"M 0.7 - 17km S of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538430723130,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092176 +,,37375762,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37375762&format=geojson,0.02045,,177.0,",ci37375762,",0.88,ml,,ci,20.0,"2km SSW of Palomar Observatory, CA",0.15,12,",ci,",reviewed,1538399283520,"M 0.9 - 2km SSW of Palomar Observatory, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538422572800,https://earthquake.usgs.gov/earthquakes/eventpage/ci37375762 +,,37375754,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37375754&format=geojson,0.03977,,107.0,",ci37375754,",0.43,ml,,ci,17.0,"14km SSE of Anza, CA",0.1,3,",ci,",reviewed,1538399197710,"M 0.4 - 14km SSE of Anza, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538438309024,https://earthquake.usgs.gov/earthquakes/eventpage/ci37375754 +,,20268263,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268263&format=geojson,,,,",ak20268263,",0.9,ml,,ak,,"34km W of Tanana, Alaska",0.58,12,",ak,",reviewed,1538399171073,"M 0.9 - 34km W of Tanana, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036717437,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268263 +,,20268261,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268261&format=geojson,,,,",ak20268261,",1.5,ml,,ak,,"85km N of Kobuk, Alaska",0.78,35,",ak,",reviewed,1538398923548,"M 1.5 - 85km N of Kobuk, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036716904,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268261 +,,20268257,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268257&format=geojson,,,,",ak20268257,",1.9,ml,,ak,,"84km N of Kobuk, Alaska",0.59,56,",ak,",reviewed,1538398680375,"M 1.9 - 84km N of Kobuk, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036716383,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268257 +,,80311824,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80311824&format=geojson,0.026,,163.0,",mb80311824,",1.43,ml,,mb,10.0,"18km N of Dillon, Montana",0.25,31,",mb,",reviewed,1538398539020,"M 1.4 - 18km N of Dillon, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538404043920,https://earthquake.usgs.gov/earthquakes/eventpage/mb80311824 +,,20268256,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268256&format=geojson,,,,",ak20268256,",1.2,ml,,ak,,"62km ENE of Cape Yakataga, Alaska",1.08,22,",ak,",reviewed,1538398494158,"M 1.2 Ice Quake - 62km ENE of Cape Yakataga, Alaska",0,ice quake,",geoserve,origin,phase-data,",-540.0,1539036715906,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268256 +,,20273570,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273570&format=geojson,,,,",ak20273570,",2.3,ml,,ak,,"36km SSE of Akutan, Alaska",0.28,81,",ak,",reviewed,1538397736500,"M 2.3 - 36km SSE of Akutan, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539036715399,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273570 +,,20273569,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273569&format=geojson,,,,",ak20273569,",1.5,ml,,ak,,"38km WSW of Larsen Bay, Alaska",0.37,35,",ak,",reviewed,1538397256670,"M 1.5 - 38km WSW of Larsen Bay, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036714901,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273569 +,,61424967,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61424967&format=geojson,0.2108,,234.0,",uw61424967,",1.69,ml,,uw,12.0,"9km NNW of Omak, Washington",0.14,44,",uw,",reviewed,1538397238170,"M 1.7 - 9km NNW of Omak, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538418229780,https://earthquake.usgs.gov/earthquakes/eventpage/uw61424967 +,,2018274010,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018274010&format=geojson,0.0924,,244.0,",pr2018274010,",2.1,md,,pr,4.0,"9km S of Guanica, Puerto Rico",0.09,68,",pr,",reviewed,1538397173510,"M 2.1 - 9km S of Guanica, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538412034459,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018274010 +,,20273568,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273568&format=geojson,,,,",ak20273568,",2.2,ml,,ak,,"31km S of False Pass, Alaska",0.35,74,",ak,",reviewed,1538397136159,"M 2.2 - 31km S of False Pass, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036714385,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273568 +,,70624282,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70624282&format=geojson,0.03612,,137.0,",hv70624282,",1.61,md,,hv,51.0,"16km SE of Volcano, Hawaii",0.1,40,",hv,",reviewed,1538397031330,"M 1.6 - 16km SE of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538442275450,https://earthquake.usgs.gov/earthquakes/eventpage/hv70624282 +,,20268255,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268255&format=geojson,,,,",ak20268255,",2.1,ml,,ak,,"39km SE of Amatignak Island, Alaska",0.74,68,",ak,",reviewed,1538396998245,"M 2.1 - 39km SE of Amatignak Island, Alaska",0,earthquake,",geoserve,origin,phase-data,",-720.0,1539036713865,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268255 +,3.1,73092171,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092171&format=geojson,0.1856,3.0,68.0,",nc73092171,",2.52,md,,nc,34.0,"31km SSE of Somes Bar, CA",0.25,99,",nc,",reviewed,1538396703920,"M 2.5 - 31km SSE of Somes Bar, CA",0,earthquake,",dyfi,focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538459883013,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092171 +,,37375722,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37375722&format=geojson,0.107,,119.0,",ci37375722,",0.81,ml,,ci,32.0,"12km NNE of Borrego Springs, CA",0.19,10,",ci,",reviewed,1538396702600,"M 0.8 - 12km NNE of Borrego Springs, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538401981233,https://earthquake.usgs.gov/earthquakes/eventpage/ci37375722 +,,20268254,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268254&format=geojson,,,,",ak20268254,",1.4,ml,,ak,,"75km E of Cape Yakataga, Alaska",0.45,30,",ak,",reviewed,1538396430219,"M 1.4 - 75km E of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036713297,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268254 +,,61424957,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61424957&format=geojson,0.03679,,323.0,",uw61424957,",0.38,ml,,uw,5.0,"8km NNE of Belfair, Washington",0.15,2,",uw,",reviewed,1538396241350,"M 0.4 - 8km NNE of Belfair, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538419530310,https://earthquake.usgs.gov/earthquakes/eventpage/uw61424957 +,,00659135,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659135&format=geojson,0.348,,328.08,",nn00659135,",0.4,ml,,nn,4.0,"28km SW of Moapa Valley, Nevada",0.2953,2,",nn,",reviewed,1538395683433,"M 0.4 - 28km SW of Moapa Valley, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538429665153,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659135 +,,73092166,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092166&format=geojson,0.01153,,82.0,",nc73092166,",0.51,md,,nc,8.0,"6km W of Cobb, CA",0.01,4,",nc,",automatic,1538395591250,"M 0.5 - 6km W of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538397544332,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092166 +,,00659133,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659133&format=geojson,0.037,,196.56,",nn00659133,",0.3,ml,,nn,4.0,"13km S of Dayton, Nevada",0.2233,1,",nn,",reviewed,1538395307489,"M 0.3 - 13km S of Dayton, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538428558882,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659133 +,,20268248,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268248&format=geojson,,,,",ak20268248,",1.7,ml,,ak,,"82km N of Kobuk, Alaska",0.68,44,",ak,",reviewed,1538395153291,"M 1.7 - 82km N of Kobuk, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036712740,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268248 +,,2018274009,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018274009&format=geojson,0.6015,,219.0,",pr2018274009,us1000h4ym,",3.05,md,,pr,16.0,"71km SSE of Punta Cana, Dominican Republic",0.42,143,",pr,us,",reviewed,1538394958830,"M 3.1 - 71km SSE of Punta Cana, Dominican Republic",0,earthquake,",geoserve,origin,phase-data,",-300.0,1539410319040,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018274009 +,,20268246,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268246&format=geojson,,,,",ak20268246,",0.9,ml,,ak,,"82km E of Cape Yakataga, Alaska",0.41,12,",ak,",reviewed,1538394877991,"M 0.9 - 82km E of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036712202,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268246 +,,20268243,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268243&format=geojson,,,,",ak20268243,",1.3,ml,,ak,,"174km WNW of Haines Junction, Canada",0.46,26,",ak,",reviewed,1538394803616,"M 1.3 - 174km WNW of Haines Junction, Canada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539036711636,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268243 +,,00659131,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659131&format=geojson,0.147,,295.06,",nn00659131,",0.1,ml,,nn,4.0,"48km SSE of Hawthorne, Nevada",0.0162,0,",nn,",reviewed,1538394413629,"M 0.1 - 48km SSE of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538428181501,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659131 +,,00659127,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659127&format=geojson,0.295,,109.36,",nn00659127,",0.5,ml,,nn,4.0,"29km NNW of Alamo, Nevada",0.0044,4,",nn,",reviewed,1538394271023,"M 0.5 - 29km NNW of Alamo, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538427614580,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659127 +,,20268240,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268240&format=geojson,,,,",ak20268240,",1.9,ml,,ak,,"53km SSE of Adak, Alaska",0.16,56,",ak,",reviewed,1538394201750,"M 1.9 - 53km SSE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-720.0,1539036711125,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268240 +,,20268228,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268228&format=geojson,,,,",ak20268228,us1000h4ya,",2.7,ml,,ak,,"58km ESE of Old Iliamna, Alaska",0.57,112,",ak,us,",reviewed,1538393934333,"M 2.7 - 58km ESE of Old Iliamna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539410103040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268228 +,,20268226,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268226&format=geojson,,,,",ak20268226,",0.8,ml,,ak,,"50km SSE of Cantwell, Alaska",0.6,10,",ak,",reviewed,1538393539511,"M 0.8 - 50km SSE of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036709808,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268226 +,,20268222,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268222&format=geojson,,,,",ak20268222,",1.3,ml,,ak,,"103km W of Cantwell, Alaska",0.77,26,",ak,",reviewed,1538393435669,"M 1.3 - 103km W of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036709299,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268222 +,,1000h7mf,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h7mf&format=geojson,2.02,,87.0,",us1000h7mf,",4.1,mb,,us,,"225km WNW of Saumlaki, Indonesia",0.75,259,",us,",reviewed,1538392771360,"M 4.1 - 225km WNW of Saumlaki, Indonesia",0,earthquake,",geoserve,origin,phase-data,",540.0,1539409856040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h7mf +,,20268216,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268216&format=geojson,,,,",ak20268216,us1000h4y6,",2.3,ml,,ak,,"50km SSW of Redoubt Volcano, Alaska",0.51,81,",ak,us,",reviewed,1538392750026,"M 2.3 - 50km SSW of Redoubt Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539409608040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268216 +,,20268214,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268214&format=geojson,,,,",ak20268214,",1.1,ml,,ak,,"6km S of Nikiski, Alaska",0.31,19,",ak,",reviewed,1538392641928,"M 1.1 - 6km S of Nikiski, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036708062,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268214 +,,00659121,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659121&format=geojson,0.044,,102.67,",nn00659121,",-0.4,ml,,nn,8.0,"45km ESE of Beatty, Nevada",0.1514,0,",nn,",reviewed,1538392215117,"M -0.4 - 45km ESE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538427243064,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659121 +,,20268213,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268213&format=geojson,,,,",ak20268213,",0.8,ml,,ak,,"124km SSE of Tok, Alaska",0.73,10,",ak,",reviewed,1538392006166,"M 0.8 - 124km SSE of Tok, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036707564,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268213 +,,73092156,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092156&format=geojson,0.01294,,67.0,",nc73092156,",1.14,md,,nc,17.0,"3km NNW of The Geysers, CA",0.04,20,",nc,",automatic,1538391984180,"M 1.1 - 3km NNW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538393944988,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092156 +,,1000h7md,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h7md&format=geojson,2.547,,124.0,",us1000h7md,",4.6,mb,,us,,"222km NW of Tobelo, Indonesia",0.67,326,",us,",reviewed,1538391803210,"M 4.6 - 222km NW of Tobelo, Indonesia",0,earthquake,",geoserve,origin,phase-data,",480.0,1539409417040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h7md +,,80311819,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80311819&format=geojson,0.116,,106.0,",mb80311819,",1.09,ml,,mb,10.0,"14km SE of Lincoln, Montana",0.13,18,",mb,",reviewed,1538391328170,"M 1.1 - 14km SE of Lincoln, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538404412790,https://earthquake.usgs.gov/earthquakes/eventpage/mb80311819 +,,70624112,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70624112&format=geojson,0.09221,,208.0,",hv70624112,",2.15,ml,,hv,33.0,"14km SSW of Leilani Estates, Hawaii",0.16,71,",hv,",reviewed,1538390989690,"M 2.2 - 14km SSW of Leilani Estates, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538439625820,https://earthquake.usgs.gov/earthquakes/eventpage/hv70624112 +,,20273553,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273553&format=geojson,,,,",ak20273553,",1.3,ml,,ak,,"42km SSE of Redoubt Volcano, Alaska",0.28,26,",ak,",reviewed,1538390812854,"M 1.3 - 42km SSE of Redoubt Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036707048,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273553 +,,20268203,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268203&format=geojson,,,,",ak20268203,",0.8,ml,,ak,,"29km NNW of Cordova, Alaska",0.34,10,",ak,",reviewed,1538390710414,"M 0.8 - 29km NNW of Cordova, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036706493,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268203 +,,20268199,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268199&format=geojson,,,,",ak20268199,",1.4,ml,,ak,,"44km S of Redoubt Volcano, Alaska",0.27,30,",ak,",reviewed,1538390547793,"M 1.4 - 44km S of Redoubt Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036705946,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268199 +,,20273550,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273550&format=geojson,,,,",ak20273550,",1.1,ml,,ak,,"67km NW of Nikiski, Alaska",0.27,19,",ak,",reviewed,1538390169827,"M 1.1 - 67km NW of Nikiski, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036705440,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273550 +,,20268196,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268196&format=geojson,,,,",ak20268196,",1.2,ml,,ak,,"60km E of Cape Yakataga, Alaska",0.71,22,",ak,",reviewed,1538390102807,"M 1.2 Ice Quake - 60km E of Cape Yakataga, Alaska",0,ice quake,",geoserve,origin,phase-data,",-540.0,1539036704928,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268196 +,2.0,37375682,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37375682&format=geojson,0.1447,1.0,51.0,",ci37375682,",0.3,ml,,ci,15.0,"16km ESE of Julian, CA",0.16,2,",ci,",reviewed,1538390102460,"M 0.3 - 16km ESE of Julian, CA",0,earthquake,",dyfi,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538401983037,https://earthquake.usgs.gov/earthquakes/eventpage/ci37375682 +,,1000h4y0,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h4y0&format=geojson,2.61,,135.0,",us1000h4y0,",4.9,mb,,us,,"216km NNW of Tobelo, Indonesia",0.83,369,",us,",reviewed,1538389979960,"M 4.9 - 216km NNW of Tobelo, Indonesia",0,earthquake,",geoserve,origin,phase-data,",480.0,1538395679040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h4y0 +,,20268193,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268193&format=geojson,,,,",ak20268193,",0.9,ml,,ak,,"97km NW of Nikiski, Alaska",0.36,12,",ak,",reviewed,1538389975359,"M 0.9 - 97km NW of Nikiski, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036704385,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268193 +,,20268192,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268192&format=geojson,,,,",ak20268192,",0.5,ml,,ak,,"75km NNW of Cape Yakataga, Alaska",0.43,4,",ak,",reviewed,1538389901657,"M 0.5 - 75km NNW of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036703849,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268192 +,,37375666,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37375666&format=geojson,0.06304,,94.0,",ci37375666,",0.68,ml,,ci,10.0,"27km ENE of Coso Junction, CA",0.14,7,",ci,",reviewed,1538389880150,"M 0.7 - 27km ENE of Coso Junction, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538401985290,https://earthquake.usgs.gov/earthquakes/eventpage/ci37375666 +,,61424947,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61424947&format=geojson,0.09663,,86.0,",uw61424947,",1.96,ml,,uw,20.0,"2km S of Marietta, Washington",0.26,59,",uw,",reviewed,1538389795500,"M 2.0 - 2km S of Marietta, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538416456500,https://earthquake.usgs.gov/earthquakes/eventpage/uw61424947 +,,20268191,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268191&format=geojson,,,,",ak20268191,",1.7,ml,,ak,,"88km WNW of Skagway, Alaska",0.63,44,",ak,",reviewed,1538389463366,"M 1.7 - 88km WNW of Skagway, Alaska",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539036703288,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268191 +,,70805384,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70805384&format=geojson,0.02459,,114.0,",av70805384,",-0.18,ml,,av,5.0,"42km ENE of Adak, Alaska",0.29,0,",av,",reviewed,1538389428980,"M -0.2 - 42km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538441436520,https://earthquake.usgs.gov/earthquakes/eventpage/av70805384 +,,61790006,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61790006&format=geojson,0.03172,,131.0,",av61790006,",0.29,ml,,av,5.0,"43km ENE of Adak, Alaska",0.11,1,",av,",reviewed,1538389414610,"M 0.3 - 43km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538441371190,https://earthquake.usgs.gov/earthquakes/eventpage/av61790006 +,,20268189,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268189&format=geojson,,,,",ak20268189,",0.8,ml,,ak,,"42km NNW of Cape Yakataga, Alaska",0.17,10,",ak,",reviewed,1538389043751,"M 0.8 - 42km NNW of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036702756,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268189 +,,20268187,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268187&format=geojson,,,,",ak20268187,",0.8,ml,,ak,,"58km WNW of Skagway, Alaska",0.43,10,",ak,",reviewed,1538388503296,"M 0.8 - 58km WNW of Skagway, Alaska",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539036702230,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268187 +,,61424937,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61424937&format=geojson,0.2437,,175.0,",uw61424937,",0.85,ml,,uw,6.0,"51km SW of Mazama, Washington",0.18,11,",uw,",reviewed,1538388296070,"M 0.9 - 51km SW of Mazama, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538420931200,https://earthquake.usgs.gov/earthquakes/eventpage/uw61424937 +,,20268184,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268184&format=geojson,,,,",ak20268184,",2.8,ml,,ak,,"247km SE of Kodiak, Alaska",0.64,121,",ak,",reviewed,1538387758067,"M 2.8 - 247km SE of Kodiak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539036701669,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268184 +,,70624032,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70624032&format=geojson,0.03556,,63.0,",hv70624032,",1.69,ml,,hv,27.0,"22km ENE of Honaunau-Napoopoo, Hawaii",0.14,44,",hv,",reviewed,1538387492720,"M 1.7 - 22km ENE of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538396339430,https://earthquake.usgs.gov/earthquakes/eventpage/hv70624032 +,,1000h4xv,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h4xv&format=geojson,3.249,,119.0,",us1000h4xv,",4.8,mb,,us,,South of the Fiji Islands,0.57,354,",us,",reviewed,1538387419660,M 4.8 - South of the Fiji Islands,0,earthquake,",geoserve,origin,phase-data,",-720.0,1538391860040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h4xv +,,70805374,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70805374&format=geojson,0.01054,,227.0,",av70805374,",0.13,ml,,av,6.0,"99km ESE of King Salmon, Alaska",0.07,0,",av,",reviewed,1538386972790,"M 0.1 - 99km ESE of King Salmon, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538441178730,https://earthquake.usgs.gov/earthquakes/eventpage/av70805374 +,,20268182,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268182&format=geojson,,,,",av61789991,ak20268182,",1.4,ml,,ak,,"100km ESE of King Salmon, Alaska",0.16,30,",av,ak,",reviewed,1538386937848,"M 1.4 - 100km ESE of King Salmon, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036701152,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268182 +,,70623997,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70623997&format=geojson,0.02124,,112.0,",hv70623997,",0.71,md,,hv,9.0,"27km E of Honaunau-Napoopoo, Hawaii",0.13,8,",hv,",reviewed,1538386229540,"M 0.7 - 27km E of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538422079640,https://earthquake.usgs.gov/earthquakes/eventpage/hv70623997 +,,20273541,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273541&format=geojson,,,,",ak20273541,",1.8,ml,,ak,,"38km NW of Amatignak Island, Alaska",0.66,50,",ak,",reviewed,1538386119672,"M 1.8 - 38km NW of Amatignak Island, Alaska",0,earthquake,",geoserve,origin,phase-data,",-720.0,1539036700647,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273541 +,,20268181,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268181&format=geojson,,,,",ak20268181,",1.0,ml,,ak,,"61km ENE of Cape Yakataga, Alaska",0.49,15,",ak,",reviewed,1538386095340,"M 1.0 Ice Quake - 61km ENE of Cape Yakataga, Alaska",0,ice quake,",geoserve,origin,phase-data,",-540.0,1539036700122,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268181 +,,20268175,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268175&format=geojson,,,,",ak20268175,",1.0,ml,,ak,,"36km WNW of Anchorage, Alaska",0.38,15,",ak,",reviewed,1538385240249,"M 1.0 - 36km WNW of Anchorage, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036699590,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268175 +,,73092146,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092146&format=geojson,0.03203,,82.0,",nc73092146,",1.06,md,,nc,26.0,"7km NE of Alum Rock, CA",0.07,17,",nc,",reviewed,1538385122150,"M 1.1 - 7km NE of Alum Rock, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538438330070,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092146 +,,20268172,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268172&format=geojson,,,,",ak20268172,",2.1,ml,,ak,,"80km SSW of Kaktovik, Alaska",0.73,68,",ak,",reviewed,1538384806570,"M 2.1 - 80km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036699041,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268172 +,,00659144,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659144&format=geojson,0.093,,264.65,",nn00659144,",0.9,ml,,nn,12.0,"22km WNW of Truckee, California",0.1843,12,",nn,",reviewed,1538384748872,"M 0.9 - 22km WNW of Truckee, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538430964362,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659144 +,,73092141,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092141&format=geojson,0.01419,,56.0,",nc73092141,",1.09,md,,nc,12.0,"2km SW of Cobb, CA",0.05,18,",nc,",automatic,1538384002890,"M 1.1 - 2km SW of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538391003723,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092141 +,,70623947,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70623947&format=geojson,0.0836,,66.0,",hv70623947,",2.38,ml,,hv,36.0,"5km WNW of Kurtistown, Hawaii",0.13,87,",hv,",reviewed,1538383875530,"M 2.4 - 5km WNW of Kurtistown, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538441746200,https://earthquake.usgs.gov/earthquakes/eventpage/hv70623947 +,,60298572,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60298572&format=geojson,0.1577,,211.0,",uu60298572,",0.94,md,,uu,5.0,"7km WSW of Colorado City, Arizona",0.09,14,",uu,",reviewed,1538383710020,"M 0.9 - 7km WSW of Colorado City, Arizona",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538516934720,https://earthquake.usgs.gov/earthquakes/eventpage/uu60298572 +,,80311924,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80311924&format=geojson,0.214,,76.0,",mb80311924,",1.27,ml,,mb,12.0,"21km SE of Clinton, Montana",0.21,25,",mb,",reviewed,1538383631640,"M 1.3 - 21km SE of Clinton, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538429967000,https://earthquake.usgs.gov/earthquakes/eventpage/mb80311924 +,,70623932,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70623932&format=geojson,0.03144,,63.0,",hv70623932,",0.99,md,,hv,22.0,"22km ENE of Honaunau-Napoopoo, Hawaii",0.1,15,",hv,",reviewed,1538383463720,"M 1.0 - 22km ENE of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538387053840,https://earthquake.usgs.gov/earthquakes/eventpage/hv70623932 +,,70805364,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70805364&format=geojson,0.06797,,153.0,",av70805364,",0.11,ml,,av,4.0,"21km W of Dutch Harbor, Alaska",0.12,0,",av,",reviewed,1538382992320,"M 0.1 - 21km W of Dutch Harbor, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538440377030,https://earthquake.usgs.gov/earthquakes/eventpage/av70805364 +,,20268169,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268169&format=geojson,,,,",ak20268169,",2.5,ml,,ak,,"158km NNW of Chirikof Island, Alaska",0.56,96,",ak,",reviewed,1538382907518,"M 2.5 - 158km NNW of Chirikof Island, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036698465,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268169 +,,60298567,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60298567&format=geojson,0.0968,,163.0,",uu60298567,",1.5,md,,uu,10.0,"12km ESE of Kanab, Utah",0.14,35,",uu,",reviewed,1538382441990,"M 1.5 - 12km ESE of Kanab, Utah",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538516778160,https://earthquake.usgs.gov/earthquakes/eventpage/uu60298567 +,,20268167,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268167&format=geojson,,,,",ak20268167,",0.8,ml,,ak,,"70km ESE of Cantwell, Alaska",0.71,10,",ak,",reviewed,1538382379492,"M 0.8 - 70km ESE of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036697934,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268167 +,,73092136,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092136&format=geojson,0.02374,,195.0,",nc73092136,",0.32,md,,nc,19.0,"10km ENE of Mammoth Lakes, CA",0.1,2,",nc,",reviewed,1538382012190,"M 0.3 - 10km ENE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538423223158,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092136 +,,20268166,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268166&format=geojson,,,,",ak20268166,",1.3,ml,,ak,,"53km NNE of Yakutat, Alaska",0.57,26,",ak,",reviewed,1538381999469,"M 1.3 Ice Quake - 53km NNE of Yakutat, Alaska",0,ice quake,",geoserve,origin,phase-data,",-540.0,1539036697421,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268166 +,,73092131,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092131&format=geojson,0.0653,,236.0,",nc73092131,",0.52,md,,nc,15.0,"11km SSE of Mammoth Lakes, CA",0.03,4,",nc,",reviewed,1538381951070,"M 0.5 - 11km SSE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538422503095,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092131 +,,20268164,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268164&format=geojson,,,,",ak20268164,",1.4,ml,,ak,,"165km S of Kotzebue, Alaska",0.75,30,",ak,",reviewed,1538381911070,"M 1.4 - 165km S of Kotzebue, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036696848,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268164 +,,20268163,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268163&format=geojson,,,,",ak20268163,",1.0,ml,,ak,,"47km WSW of Willow, Alaska",0.38,15,",ak,",reviewed,1538381829211,"M 1.0 - 47km WSW of Willow, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036696312,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268163 +,,2018274008,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018274008&format=geojson,0.76,,329.0,",pr2018274008,",3.03,md,,pr,8.0,"73km SW of Pole Ojea, Puerto Rico",0.38,141,",pr,",reviewed,1538381078870,"M 3.0 - 73km SW of Pole Ojea, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-300.0,1538395209713,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018274008 +,,37375642,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37375642&format=geojson,0.08989,,45.0,",ci37375642,",0.47,ml,,ci,17.0,"10km NE of Aguanga, CA",0.13,3,",ci,",reviewed,1538381023780,"M 0.5 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538401987443,https://earthquake.usgs.gov/earthquakes/eventpage/ci37375642 +,,73092121,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092121&format=geojson,0.03772,,128.0,",nc73092121,",2.02,md,,nc,49.0,"9km NNW of Avenal, CA",0.09,63,",nc,",reviewed,1538380927180,"M 2.0 - 9km NNW of Avenal, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538455802937,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092121 +,,00659027,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659027&format=geojson,0.378,,81.08,",nn00659027,",1.9,ml,,nn,32.0,"35km ESE of Yerington, Nevada",0.1754,56,",nn,",reviewed,1538380769906,"M 1.9 - 35km ESE of Yerington, Nevada",0,earthquake,",focal-mechanism,geoserve,origin,phase-data,",-480.0,1538583648005,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659027 +,,73092126,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092126&format=geojson,0.02413,,88.0,",nc73092126,",0.51,md,,nc,9.0,"3km ENE of Pacifica, CA",0.05,4,",nc,",reviewed,1538380747590,"M 0.5 - 3km ENE of Pacifica, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538438179395,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092126 +,,2018274007,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018274007&format=geojson,0.9655,,330.0,",pr2018274007,us1000h4ye,",2.94,md,,pr,13.0,"59km NNW of Charlotte Amalie, U.S. Virgin Islands",0.21,133,",pr,us,",reviewed,1538380593000,"M 2.9 - 59km NNW of Charlotte Amalie, U.S. Virgin Islands",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538397974040,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018274007 +,,73092116,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092116&format=geojson,0.03933,,177.0,",nc73092116,",1.57,md,,nc,36.0,"7km NNW of Avenal, CA",0.1,38,",nc,",reviewed,1538380484070,"M 1.6 - 7km NNW of Avenal, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538443265726,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092116 +,,00659023,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659023&format=geojson,0.332,,80.75,",nn00659023,",1.1,ml,,nn,15.0,"35km ESE of Yerington, Nevada",0.1252,19,",nn,",reviewed,1538380203744,"M 1.1 - 35km ESE of Yerington, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538407246203,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659023 +,,20268161,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268161&format=geojson,,,,",ak20268161,",0.9,ml,,ak,,"129km SSE of Tok, Alaska",0.81,12,",ak,",reviewed,1538380111061,"M 0.9 - 129km SSE of Tok, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036695824,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268161 +,,37375626,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37375626&format=geojson,0.1002,,92.0,",ci37375626,",1.08,ml,,ci,23.0,"20km NE of Big Bear City, CA",0.23,18,",ci,",reviewed,1538379935580,"M 1.1 - 20km NE of Big Bear City, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538402007527,https://earthquake.usgs.gov/earthquakes/eventpage/ci37375626 +,,00659114,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659114&format=geojson,0.018,,245.37,",nn00659114,",0.0,ml,,nn,4.0,"25km ESE of Hawthorne, Nevada",0.0056,0,",nn,",reviewed,1538379921901,"M 0.0 - 25km ESE of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538449770494,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659114 +,,73092111,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092111&format=geojson,0.02603,,78.0,",nc73092111,",0.96,md,,nc,22.0,"8km NNE of Alum Rock, CA",0.06,14,",nc,",reviewed,1538379508080,"M 1.0 - 8km NNE of Alum Rock, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538438119360,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092111 +,,70805354,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70805354&format=geojson,,,156.0,",av70805354,",0.3,ml,,av,7.0,"3km WSW of Redoubt Volcano, Alaska",0.31,1,",av,",reviewed,1538379220960,"M 0.3 - 3km WSW of Redoubt Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538439932710,https://earthquake.usgs.gov/earthquakes/eventpage/av70805354 +,,73092101,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092101&format=geojson,0.03706,,126.0,",nc73092101,",2.09,md,,nc,51.0,"8km NNW of Avenal, CA",0.1,67,",nc,",reviewed,1538378775920,"M 2.1 - 8km NNW of Avenal, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538442603313,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092101 +,,20268155,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268155&format=geojson,,,,",ak20268155,",0.9,ml,,ak,,"76km NW of Yakutat, Alaska",0.58,12,",ak,",reviewed,1538378713791,"M 0.9 - 76km NW of Yakutat, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036695321,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268155 +,,20268152,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268152&format=geojson,,,,",ak20268152,",1.6,ml,,ak,,"71km WSW of Anchor Point, Alaska",0.4,39,",ak,",reviewed,1538378652339,"M 1.6 - 71km WSW of Anchor Point, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036694629,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268152 +,,73092096,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092096&format=geojson,0.03873,,126.0,",nc73092096,",1.64,md,,nc,37.0,"9km NNW of Avenal, CA",0.08,41,",nc,",reviewed,1538378567460,"M 1.6 - 9km NNW of Avenal, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538442544307,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092096 +,,20268149,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268149&format=geojson,,,,",ak20268149,",1.1,ml,,ak,,"10km SE of Salcha, Alaska",0.31,19,",ak,",reviewed,1538378565180,"M 1.1 - 10km SE of Salcha, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036694057,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268149 +,,1000h4wp,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h4wp&format=geojson,7.922,,57.0,",us1000h4wp,",5.3,mb,,us,,Indian Ocean Triple Junction,0.61,432,",us,",reviewed,1538378500090,M 5.3 - Indian Ocean Triple Junction,0,earthquake,",geoserve,origin,phase-data,",300.0,1538379660040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h4wp +,,70805349,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70805349&format=geojson,0.0694,,131.0,",av70805349,",0.12,ml,,av,5.0,"21km W of Dutch Harbor, Alaska",0.13,0,",av,",reviewed,1538378077660,"M 0.1 - 21km W of Dutch Harbor, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538439643330,https://earthquake.usgs.gov/earthquakes/eventpage/av70805349 +,,00659138,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659138&format=geojson,0.247,,288.71,",nn00659138,",0.0,ml,,nn,7.0,"66km SW of Alamo, Nevada",0.1535,0,",nn,",reviewed,1538377873469,"M 0.0 - 66km SW of Alamo, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538449956640,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659138 +,,70805344,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70805344&format=geojson,0.06228,,164.0,",av70805344,",-0.42,ml,,av,4.0,"20km W of Dutch Harbor, Alaska",0.2,0,",av,",reviewed,1538377605570,"M -0.4 - 20km W of Dutch Harbor, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538439509660,https://earthquake.usgs.gov/earthquakes/eventpage/av70805344 +,,73092091,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092091&format=geojson,0.01173,,88.0,",nc73092091,",0.08,md,,nc,10.0,"11km E of Mammoth Lakes, CA",0.02,0,",nc,",reviewed,1538377376610,"M 0.1 - 11km E of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538421903945,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092091 +,,20268148,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268148&format=geojson,,,,",av70805339,ak20268148,",1.3,ml,,ak,,"21km W of Dutch Harbor, Alaska",0.48,26,",av,ak,",reviewed,1538377244683,"M 1.3 - 21km W of Dutch Harbor, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036693465,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268148 +,,20268145,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268145&format=geojson,,,,",ak20268145,",1.1,ml,,ak,,"67km SSE of Cantwell, Alaska",0.36,19,",ak,",reviewed,1538377109116,"M 1.1 - 67km SSE of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036692910,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268145 +,,20268144,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268144&format=geojson,,,,",ak20268144,",0.9,ml,,ak,,"143km NNW of Ester, Alaska",0.59,12,",ak,",reviewed,1538376910324,"M 0.9 - 143km NNW of Ester, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036692381,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268144 +,,61789931,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61789931&format=geojson,0.02063,,118.0,",av61789931,",0.12,ml,,av,5.0,"46km WSW of Tanaga Volcano, Alaska",0.07,0,",av,",reviewed,1538376377600,"M 0.1 - 46km WSW of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538438674680,https://earthquake.usgs.gov/earthquakes/eventpage/av61789931 +,,73092086,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092086&format=geojson,0.0008071,,62.0,",nc73092086,",0.58,md,,nc,18.0,"7km WNW of The Geysers, CA",0.04,5,",nc,",reviewed,1538376262200,"M 0.6 - 7km WNW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538434203472,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092086 +,,20268143,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268143&format=geojson,,,,",ak20268143,",0.3,ml,,ak,,"23km S of Ester, Alaska",0.57,1,",ak,",reviewed,1538376082837,"M 0.3 - 23km S of Ester, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036691894,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268143 +,,70623737,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70623737&format=geojson,0.03568,,44.0,",hv70623737,",2.31,ml,,hv,26.0,"22km ENE of Honaunau-Napoopoo, Hawaii",0.13,82,",hv,",reviewed,1538375918690,"M 2.3 - 22km ENE of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538420812640,https://earthquake.usgs.gov/earthquakes/eventpage/hv70623737 +,,00659122,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659122&format=geojson,0.04,,200.56,",nn00659122,",-0.3,ml,,nn,10.0,"53km ENE of Beatty, Nevada",0.1946,0,",nn,",reviewed,1538375612784,"M -0.3 - 53km ENE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538427243986,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659122 +,,70623722,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70623722&format=geojson,0.01551,,232.0,",hv70623722,",1.68,md,,hv,21.0,"10km ENE of Pahala, Hawaii",0.09,43,",hv,",reviewed,1538375377660,"M 1.7 - 10km ENE of Pahala, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538442807460,https://earthquake.usgs.gov/earthquakes/eventpage/hv70623722 +,,70805424,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70805424&format=geojson,0.05086,,144.0,",av70805424,",-0.06,ml,,av,5.0,"52km NNE of Chitina, Alaska",0.29,0,",av,",reviewed,1538375157300,"M -0.1 - 52km NNE of Chitina, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538503645770,https://earthquake.usgs.gov/earthquakes/eventpage/av70805424 +,,70805419,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70805419&format=geojson,0.05494,,146.0,",av70805419,",-0.68,ml,,av,4.0,"53km NNE of Chitina, Alaska",0.16,0,",av,",reviewed,1538375068460,"M -0.7 - 53km NNE of Chitina, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538503546620,https://earthquake.usgs.gov/earthquakes/eventpage/av70805419 +,,70805409,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70805409&format=geojson,0.05433,,143.0,",av70805409,",-0.52,ml,,av,4.0,"52km NNE of Chitina, Alaska",0.21,0,",av,",reviewed,1538374665180,"M -0.5 - 52km NNE of Chitina, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538503322450,https://earthquake.usgs.gov/earthquakes/eventpage/av70805409 +,,2018274006,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018274006&format=geojson,0.0059,,235.0,",pr2018274006,",2.0,md,,pr,5.0,"5km ESE of Mayaguez, Puerto Rico",0.08,62,",pr,",reviewed,1538374265450,"M 2.0 - 5km ESE of Mayaguez, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538377330620,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018274006 +,,20268139,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268139&format=geojson,,,,",ak20268139,",2.3,ml,,ak,,"22km E of Little Sitkin Island, Alaska",0.26,81,",ak,",reviewed,1538374229187,"M 2.3 - 22km E of Little Sitkin Island, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539036691388,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268139 +,,37375602,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37375602&format=geojson,0.07016,,53.0,",ci37375602,",0.69,ml,,ci,26.0,"9km SW of Idyllwild, CA",0.13,7,",ci,",reviewed,1538373906530,"M 0.7 - 9km SW of Idyllwild, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538402003310,https://earthquake.usgs.gov/earthquakes/eventpage/ci37375602 +,,37375594,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37375594&format=geojson,0.1037,,56.0,",ci37375594,",0.68,ml,,ci,23.0,"3km ENE of Banning, CA",0.12,7,",ci,",reviewed,1538373858690,"M 0.7 - 3km ENE of Banning, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538402083670,https://earthquake.usgs.gov/earthquakes/eventpage/ci37375594 +,,20268134,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268134&format=geojson,,,,",ak20268134,",0.8,ml,,ak,,"38km SSW of North Pole, Alaska",0.38,10,",ak,",reviewed,1538373855269,"M 0.8 - 38km SSW of North Pole, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036690841,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268134 +,,1000h4wg,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h4wg&format=geojson,37.443,,90.0,",us1000h4wg,",5.1,mb,,us,,Indian Ocean Triple Junction,0.7,400,",us,",reviewed,1538373769300,M 5.1 - Indian Ocean Triple Junction,0,earthquake,",geoserve,origin,phase-data,",300.0,1538376705040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h4wg +,,20268131,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268131&format=geojson,,,,",ak20268131,",2.1,ml,,ak,,"44km N of Larsen Bay, Alaska",0.37,68,",ak,",reviewed,1538373743805,"M 2.1 - 44km N of Larsen Bay, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036690256,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268131 +,,37375586,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37375586&format=geojson,0.1412,,101.0,",ci37375586,",0.62,ml,,ci,17.0,"16km ESE of Julian, CA",0.14,6,",ci,",reviewed,1538373711320,"M 0.6 - 16km ESE of Julian, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538505457864,https://earthquake.usgs.gov/earthquakes/eventpage/ci37375586 +,,73092066,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092066&format=geojson,0.03715,,155.0,",nc73092066,",0.35,md,,nc,17.0,"11km ENE of Mammoth Lakes, CA",0.05,2,",nc,",reviewed,1538373683350,"M 0.4 - 11km ENE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538418492913,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092066 +,,37375562,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37375562&format=geojson,0.01286,,31.0,",ci37375562,",0.77,ml,,ci,42.0,"9km NE of Aguanga, CA",0.14,9,",ci,",reviewed,1538373602410,"M 0.8 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538505324450,https://earthquake.usgs.gov/earthquakes/eventpage/ci37375562 +,,37375554,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37375554&format=geojson,0.0925,,165.0,",ci37375554,",1.47,ml,,ci,29.0,"19km ESE of Ocotillo, CA",0.25,33,",ci,",reviewed,1538373431050,"M 1.5 - 19km ESE of Ocotillo, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538504813288,https://earthquake.usgs.gov/earthquakes/eventpage/ci37375554 +,,20268125,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268125&format=geojson,,,,",ak20268125,",1.3,ml,,ak,,"83km WSW of Cantwell, Alaska",0.31,26,",ak,",reviewed,1538373313048,"M 1.3 - 83km WSW of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036689691,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268125 +,,00659019,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659019&format=geojson,0.174,,111.42,",nn00659019,",0.5,ml,,nn,17.0,"36km SSE of Goldfield, Nevada",0.163,4,",nn,",reviewed,1538373230839,"M 0.5 - 36km SSE of Goldfield, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538408906100,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659019 +,,20268121,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268121&format=geojson,,,,",ak20268121,",1.3,ml,,ak,,"15km SE of Redoubt Volcano, Alaska",0.32,26,",ak,",reviewed,1538373053324,"M 1.3 - 15km SE of Redoubt Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036689118,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268121 +,,20268115,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268115&format=geojson,,,,",ak20268115,",1.5,ml,,ak,,"77km SSW of Kaktovik, Alaska",0.79,35,",ak,",reviewed,1538372818761,"M 1.5 - 77km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036688617,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268115 +,2.0,1000h4vq,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h4vq&format=geojson,1.61,1.0,64.0,",us1000h4vq,",5.1,mww,,us,,"101km NNW of Palu, Indonesia",1.26,400,",us,",reviewed,1538372615190,"M 5.1 - 101km NNW of Palu, Indonesia",1,earthquake,",dyfi,geoserve,moment-tensor,origin,phase-data,",480.0,1538500068040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h4vq +,2.0,20268103,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268103&format=geojson,,1.0,,",ak20268103,",2.7,ml,,ak,,"56km NW of Talkeetna, Alaska",0.59,112,",ak,",reviewed,1538372453751,"M 2.7 - 56km NW of Talkeetna, Alaska",0,earthquake,",dyfi,geoserve,origin,phase-data,",-540.0,1539036799003,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268103 +,,70623677,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70623677&format=geojson,0.09087,,120.0,",hv70623677,",1.73,md,,hv,29.0,"11km ENE of Hawaiian Ocean View, Hawaii",0.14,46,",hv,",automatic,1538372302230,"M 1.7 - 11km ENE of Hawaiian Ocean View, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538372499980,https://earthquake.usgs.gov/earthquakes/eventpage/hv70623677 +,,61424922,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61424922&format=geojson,0.08404,,128.0,",uw61424922,",0.77,ml,,uw,5.0,"11km SW of Brewster, Washington",0.12,9,",uw,",reviewed,1538372006370,"M 0.8 - 11km SW of Brewster, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538421769900,https://earthquake.usgs.gov/earthquakes/eventpage/uw61424922 +,,20268102,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268102&format=geojson,,,,",ak20268102,",0.9,ml,,ak,,"63km E of Cape Yakataga, Alaska",0.89,12,",ak,",reviewed,1538371128776,"M 0.9 Ice Quake - 63km E of Cape Yakataga, Alaska",0,ice quake,",geoserve,origin,phase-data,",-540.0,1539036687182,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268102 +,,73092051,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092051&format=geojson,0.01229,,91.0,",nc73092051,",0.88,md,,nc,10.0,"7km NW of The Geysers, CA",0.04,12,",nc,",automatic,1538370834160,"M 0.9 - 7km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538371742793,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092051 +,,73092046,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092046&format=geojson,0.08697,,70.0,",nn00659110,nc73092046,",1.19,md,,nc,18.0,"9km NE of Round Valley, CA",0.04,22,",nn,nc,",reviewed,1538370675830,"M 1.2 - 9km NE of Round Valley, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538453344691,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092046 +,,20268100,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268100&format=geojson,,,,",ak20268100,",2.0,ml,,ak,,"30km SW of Tanaga Volcano, Alaska",0.57,62,",ak,",reviewed,1538370513565,"M 2.0 - 30km SW of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539036686650,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268100 +,,73092041,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092041&format=geojson,0.06546,,149.0,",nc73092041,",0.55,md,,nc,10.0,"13km NNW of Pinnacles, CA",0.07,5,",nc,",reviewed,1538370441450,"M 0.6 - 13km NNW of Pinnacles, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538440682131,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092041 +,,00659089,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659089&format=geojson,0.124,,225.92,",nn00659089,",0.4,ml,,nn,14.0,"39km N of Beatty, Nevada",0.2131,2,",nn,",reviewed,1538369940209,"M 0.4 - 39km N of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538422984085,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659089 +,,37375530,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37375530&format=geojson,0.003564,,37.0,",ci37375530,",0.5,ml,,ci,29.0,"10km NE of Aguanga, CA",0.11,4,",ci,",reviewed,1538369936590,"M 0.5 - 10km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538504598730,https://earthquake.usgs.gov/earthquakes/eventpage/ci37375530 +,,73092036,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092036&format=geojson,0.008866,,66.0,",nc73092036,",1.1,md,,nc,10.0,"5km W of Cobb, CA",0.03,19,",nc,",automatic,1538369896640,"M 1.1 - 5km W of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538379722565,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092036 +,,20268098,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268098&format=geojson,,,,",ak20268098,",2.3,ml,,ak,,"32km SSW of Tanaga Volcano, Alaska",0.6,81,",ak,",reviewed,1538369695770,"M 2.3 - 32km SSW of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539036686110,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268098 +,,00659088,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659088&format=geojson,0.086,,213.02,",nn00659088,",-0.3,ml,,nn,17.0,"35km N of Beatty, Nevada",0.294,0,",nn,",reviewed,1538369693817,"M -0.3 - 35km N of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538422061162,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659088 +,,20268095,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268095&format=geojson,,,,",ak20268095,",1.2,ml,,ak,,"29km WSW of Y, Alaska",0.41,22,",ak,",reviewed,1538369644948,"M 1.2 - 29km WSW of Y, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036685560,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268095 +,,00659015,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659015&format=geojson,0.084,,62.29,",nn00659015,",0.8,ml,,nn,34.0,"34km N of Beatty, Nevada",0.1893,10,",nn,",reviewed,1538369636780,"M 0.8 - 34km N of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538410199209,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659015 +,,00659085,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659085&format=geojson,0.087,,213.44,",nn00659085,",-0.1,ml,,nn,19.0,"35km N of Beatty, Nevada",0.2936,0,",nn,",reviewed,1538369523085,"M -0.1 - 35km N of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538421322485,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659085 +,,20273513,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273513&format=geojson,,,,",ak20273513,",1.5,ml,,ak,,"111km N of Larsen Bay, Alaska",0.28,35,",ak,",reviewed,1538368985498,"M 1.5 - 111km N of Larsen Bay, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036685041,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273513 +,,1000h4vf,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h4vf&format=geojson,,,21.0,",us1000h4vf,",2.6,ml,,us,,"2km NE of Langston, Oklahoma",0.26,104,",us,",reviewed,1538368784300,"M 2.6 - 2km NE of Langston, Oklahoma",0,earthquake,",geoserve,origin,phase-data,",-360.0,1539141131040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h4vf +,2.0,37375522,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37375522&format=geojson,0.04703,1.0,54.0,",ci37375522,",1.77,ml,,ci,27.0,"14km SE of Little Lake, CA",0.09,48,",ci,",reviewed,1538368646240,"M 1.8 - 14km SE of Little Lake, CA",0,earthquake,",dyfi,focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538504355580,https://earthquake.usgs.gov/earthquakes/eventpage/ci37375522 +,,20268082,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268082&format=geojson,,,,",ak20268082,",2.1,ml,,ak,,"104km SSW of Fort McPherson, Canada",0.58,68,",ak,",reviewed,1538368437670,"M 2.1 - 104km SSW of Fort McPherson, Canada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539036684454,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268082 +,,1000h4ve,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h4ve&format=geojson,10.245,,36.0,",us1000h4ve,",5.3,mb,,us,,Southwest Indian Ridge,0.97,432,",us,",reviewed,1538368080030,M 5.3 - Southwest Indian Ridge,0,earthquake,",geoserve,origin,phase-data,",240.0,1539140569040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h4ve +,,37375514,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37375514&format=geojson,0.05811,,61.0,",ci37375514,",0.41,ml,,ci,16.0,"6km NNW of Fontana, CA",0.12,3,",ci,",reviewed,1538368019070,"M 0.4 - 6km NNW of Fontana, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538503479058,https://earthquake.usgs.gov/earthquakes/eventpage/ci37375514 +,,1000h7ll,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h7ll&format=geojson,7.839,,62.0,",us1000h7ll,",5.1,mb,,us,,Indian Ocean Triple Junction,0.76,400,",us,",reviewed,1538367988480,M 5.1 - Indian Ocean Triple Junction,0,earthquake,",geoserve,origin,phase-data,",300.0,1539140999040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h7ll +,,1000h7lm,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h7lm&format=geojson,2.835,,103.0,",us1000h7lm,",4.8,mb,,us,,"117km ESE of Neiafu, Tonga",0.83,354,",us,",reviewed,1538367979310,"M 4.8 - 117km ESE of Neiafu, Tonga",0,earthquake,",geoserve,origin,phase-data,",-720.0,1539140173040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h7lm +,,2018274005,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018274005&format=geojson,1.037,,339.0,",pr2018274005,",2.39,md,,pr,5.0,"63km NNW of Charlotte Amalie, U.S. Virgin Islands",0.17,88,",pr,",reviewed,1538367873100,"M 2.4 - 63km NNW of Charlotte Amalie, U.S. Virgin Islands",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538374582480,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018274005 +,,37375506,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37375506&format=geojson,0.02197,,35.0,",ci37375506,",1.18,ml,,ci,48.0,"9km NE of Aguanga, CA",0.19,21,",ci,",reviewed,1538367764770,"M 1.2 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538402147580,https://earthquake.usgs.gov/earthquakes/eventpage/ci37375506 +,,00659084,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659084&format=geojson,0.034,,86.57,",nn00659084,",-0.4,ml,,nn,8.0,"56km ESE of Beatty, Nevada",0.1006,0,",nn,",reviewed,1538367677594,"M -0.4 - 56km ESE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538420398515,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659084 +,,00659083,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659083&format=geojson,0.347,,171.17,",nn00659083,",0.7,ml,,nn,6.0,"28km WSW of Hawthorne, Nevada",0.0265,8,",nn,",reviewed,1538367634183,"M 0.7 - 28km WSW of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538420211294,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659083 +,,37375498,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37375498&format=geojson,0.01004,,57.0,",ci37375498,",1.06,ml,,ci,24.0,"9km NE of Aguanga, CA",0.09,17,",ci,",reviewed,1538367409300,"M 1.1 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538685168190,https://earthquake.usgs.gov/earthquakes/eventpage/ci37375498 +,,37375482,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37375482&format=geojson,0.01769,,34.0,",ci37375482,",1.48,ml,,ci,65.0,"8km NE of Aguanga, CA",0.23,34,",ci,",reviewed,1538367395390,"M 1.5 - 8km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538402151270,https://earthquake.usgs.gov/earthquakes/eventpage/ci37375482 +,,37375490,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37375490&format=geojson,0.08272,,104.0,",ci37375490,",0.22,ml,,ci,12.0,"9km NE of Aguanga, CA",0.27,1,",ci,",reviewed,1538367392840,"M 0.2 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538438186470,https://earthquake.usgs.gov/earthquakes/eventpage/ci37375490 +,,73092026,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092026&format=geojson,0.01034,,60.0,",nc73092026,",1.22,md,,nc,40.0,"9km NW of Parkfield, CA",0.06,23,",nc,",reviewed,1538367135710,"M 1.2 - 9km NW of Parkfield, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538527442204,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092026 +,,20268078,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268078&format=geojson,,,,",ak20268078,",2.1,ml,,ak,,"164km ENE of Eagle Village, Alaska",0.47,68,",ak,",reviewed,1538366977564,"M 2.1 - 164km ENE of Eagle Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539036683904,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268078 +,,73092021,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092021&format=geojson,0.002491,,76.0,",nc73092021,",0.26,md,,nc,16.0,"7km WNW of The Geysers, CA",0.03,1,",nc,",reviewed,1538366862270,"M 0.3 - 7km WNW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538501232099,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092021 +,,1000h7lb,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h7lb&format=geojson,44.742,,140.0,",us1000h7lb,",4.9,mb,,us,,Indian Ocean Triple Junction,0.83,369,",us,",reviewed,1538366684950,M 4.9 - Indian Ocean Triple Junction,0,earthquake,",geoserve,origin,phase-data,",300.0,1539139423040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h7lb +,,37375466,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37375466&format=geojson,0.05834,,105.0,",ci37375466,",0.88,ml,,ci,27.0,"7km NNW of Cabazon, CA",0.12,12,",ci,",reviewed,1538366517190,"M 0.9 - 7km NNW of Cabazon, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538433303309,https://earthquake.usgs.gov/earthquakes/eventpage/ci37375466 +,,20268074,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268074&format=geojson,,,,",ak20268074,",1.1,ml,,ak,,"162km E of Chitina, Alaska",0.34,19,",ak,",reviewed,1538366414678,"M 1.1 - 162km E of Chitina, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036683342,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268074 +,,37375450,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37375450&format=geojson,0.09618,,109.0,",ci37375450,",0.23,ml,,ci,8.0,"8km ENE of Aguanga, CA",0.07,1,",ci,",reviewed,1538366181860,"M 0.2 - 8km ENE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538402118249,https://earthquake.usgs.gov/earthquakes/eventpage/ci37375450 +,,20268069,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268069&format=geojson,,,,",ak20268069,us1000h4v3,",2.8,ml,,ak,,"80km SSW of Kaktovik, Alaska",0.84,121,",ak,us,",reviewed,1538365958543,"M 2.8 - 80km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539139123040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268069 +,,00659082,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659082&format=geojson,0.241,,161.43,",nn00659082,",0.5,ml,,nn,8.0,"11km ESE of Fernley, Nevada",0.2044,4,",nn,",reviewed,1538365929907,"M 0.5 - 11km ESE of Fernley, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538420025747,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659082 +,,80311809,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80311809&format=geojson,0.105,,117.0,",mb80311809,",1.05,ml,,mb,11.0,"43km WNW of West Yellowstone, Montana",0.14,17,",mb,",reviewed,1538365334990,"M 1.1 - 43km WNW of West Yellowstone, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538405602340,https://earthquake.usgs.gov/earthquakes/eventpage/mb80311809 +,,20268067,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268067&format=geojson,,,,",ak20268067,",1.1,ml,,ak,,"11km ENE of Y, Alaska",0.54,19,",ak,",reviewed,1538365180058,"M 1.1 - 11km ENE of Y, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036682099,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268067 +,,1000h7m0,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h7m0&format=geojson,37.532,,76.0,",us1000h7m0,",4.5,mb,,us,,Indian Ocean Triple Junction,0.73,312,",us,",reviewed,1538364248270,M 4.5 - Indian Ocean Triple Junction,0,earthquake,",geoserve,origin,phase-data,",300.0,1539137349040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h7m0 +,,73092011,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092011&format=geojson,0.03562,,149.0,",nc73092011,",0.78,md,,nc,19.0,"11km ENE of Mammoth Lakes, CA",0.05,9,",nc,",reviewed,1538364165750,"M 0.8 - 11km ENE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538504541271,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092011 +,,73092006,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73092006&format=geojson,0.002176,,42.0,",nc73092006,",1.08,md,,nc,33.0,"7km NW of The Geysers, CA",0.05,18,",nc,",reviewed,1538363660090,"M 1.1 - 7km NW of The Geysers, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538439483023,https://earthquake.usgs.gov/earthquakes/eventpage/nc73092006 +,,37375442,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37375442&format=geojson,0.08449,,47.0,",ci37375442,",0.44,ml,,ci,21.0,"9km NE of Aguanga, CA",0.12,3,",ci,",reviewed,1538363649090,"M 0.4 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538402137043,https://earthquake.usgs.gov/earthquakes/eventpage/ci37375442 +,,2018274004,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018274004&format=geojson,1.038,,331.0,",pr2018274004,us1000h4w7,",3.21,md,,pr,13.0,"60km N of Culebra, Puerto Rico",0.28,159,",pr,us,",reviewed,1538363202920,"M 3.2 - 60km N of Culebra, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1539137060040,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018274004 +,,20268064,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268064&format=geojson,,,,",ak20268064,",1.1,ml,,ak,,"61km NNW of Yakutat, Alaska",0.62,19,",ak,",reviewed,1538363120513,"M 1.1 - 61km NNW of Yakutat, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036681560,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268064 +,,2018274003,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018274003&format=geojson,0.0565,,248.0,",pr2018274003,",2.14,md,,pr,6.0,"2km S of Ponce, Puerto Rico",0.32,70,",pr,",reviewed,1538362953840,"M 2.1 - 2km S of Ponce, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538374544736,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018274003 +,,20268061,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268061&format=geojson,,,,",ak20268061,",1.6,ml,,ak,,"107km NNW of Arctic Village, Alaska",0.55,39,",ak,",reviewed,1538362559118,"M 1.6 - 107km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036681013,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268061 +,,20268059,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268059&format=geojson,,,,",ak20268059,",1.0,ml,,ak,,"70km WNW of Valdez, Alaska",0.52,15,",ak,",reviewed,1538362526675,"M 1.0 - 70km WNW of Valdez, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036680461,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268059 +,,20268053,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268053&format=geojson,,,,",ak20268053,",0.5,ml,,ak,,"99km NW of Nikiski, Alaska",0.13,4,",ak,",reviewed,1538361316464,"M 0.5 - 99km NW of Nikiski, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036679938,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268053 +,,73091976,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091976&format=geojson,0.02326,,143.0,",nc73091976,",0.84,md,,nc,11.0,"8km NNE of Alum Rock, CA",0.03,11,",nc,",reviewed,1538361141450,"M 0.8 - 8km NNE of Alum Rock, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538505172651,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091976 +,,73091971,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091971&format=geojson,0.001536,,81.0,",nc73091971,",0.56,md,,nc,10.0,"6km WNW of Cobb, CA",0.02,5,",nc,",automatic,1538360866900,"M 0.6 - 6km WNW of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538368744505,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091971 +,4.1,1000h4uw,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h4uw&format=geojson,1.178,7.0,79.0,",us1000h4uw,",4.8,mb,,us,,"31km E of Chitose, Japan",0.88,357,",us,",reviewed,1538360525340,"M 4.8 - 31km E of Chitose, Japan",0,earthquake,",dyfi,geoserve,origin,phase-data,",540.0,1539136962751,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h4uw +,,20268044,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268044&format=geojson,,,,",ak20268044,",1.8,ml,,ak,,"122km NNW of Arctic Village, Alaska",0.68,50,",ak,",reviewed,1538359833085,"M 1.8 - 122km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036679379,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268044 +,,73091966,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091966&format=geojson,0.07565,,212.0,",nc73091966,",0.97,md,,nc,15.0,"13km NNE of Pinnacles, CA",0.1,14,",nc,",reviewed,1538358816730,"M 1.0 - 13km NNE of Pinnacles, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538443475716,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091966 +,,20268040,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268040&format=geojson,,,,",ak20268040,",1.7,ml,,ak,,"23km W of Haines Junction, Canada",0.57,44,",ak,",reviewed,1538358814985,"M 1.7 - 23km W of Haines Junction, Canada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539036678806,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268040 +,,73091961,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091961&format=geojson,0.02145,,82.0,",nc73091961,",0.33,md,,nc,17.0,"13km NW of Parkfield, CA",0.07,2,",nc,",reviewed,1538358726120,"M 0.3 - 13km NW of Parkfield, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538501763274,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091961 +,,37375410,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37375410&format=geojson,0.04258,,95.0,",ci37375410,",0.95,ml,,ci,17.0,"8km ENE of Coso Junction, CA",0.1,14,",ci,",reviewed,1538358566680,"M 1.0 - 8km ENE of Coso Junction, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538683939597,https://earthquake.usgs.gov/earthquakes/eventpage/ci37375410 +,,80311919,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80311919&format=geojson,0.055,,140.0,",mb80311919,",-0.18,ml,,mb,5.0,"22km NNE of Dillon, Montana",0.06,0,",mb,",reviewed,1538358406620,"M -0.2 - 22km NNE of Dillon, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538429386920,https://earthquake.usgs.gov/earthquakes/eventpage/mb80311919 +,,20268035,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268035&format=geojson,,,,",ak20268035,us1000h4ur,",2.5,ml,,ak,,"115km NNW of Arctic Village, Alaska",0.74,96,",ak,us,",reviewed,1538358195563,"M 2.5 - 115km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539136173040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268035 +,,20273500,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273500&format=geojson,,,,",ak20273500,",0.8,ml,,ak,,"114km W of Cantwell, Alaska",0.57,10,",ak,",reviewed,1538357950302,"M 0.8 - 114km W of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036677684,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273500 +,,20268032,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268032&format=geojson,,,,",ak20268032,",1.5,ml,,ak,,"108km W of Cantwell, Alaska",0.66,35,",ak,",reviewed,1538357819707,"M 1.5 - 108km W of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036677154,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268032 +,,2018274002,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018274002&format=geojson,0.9535,,333.0,",pr2018274002,us1000h4vd,",2.66,md,,pr,11.0,"66km N of Culebra, Puerto Rico",0.28,109,",pr,us,",reviewed,1538357649550,"M 2.7 - 66km N of Culebra, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1539135021040,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018274002 +,,20268030,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268030&format=geojson,,,,",ak20268030,",1.4,ml,,ak,,"85km W of Big Lake, Alaska",0.44,30,",ak,",reviewed,1538357645663,"M 1.4 - 85km W of Big Lake, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036676574,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268030 +,,20268029,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268029&format=geojson,,,,",ak20268029,",1.0,ml,,ak,,"40km WNW of Ester, Alaska",0.52,15,",ak,",reviewed,1538357501866,"M 1.0 - 40km WNW of Ester, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036675995,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268029 +,,37375394,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37375394&format=geojson,0.02726,,81.0,",ci37375394,",0.35,ml,,ci,23.0,"9km NE of Aguanga, CA",0.13,2,",ci,",reviewed,1538356897100,"M 0.4 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538416735645,https://earthquake.usgs.gov/earthquakes/eventpage/ci37375394 +,3.1,73091951,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091951&format=geojson,0.07054,2.0,235.0,",nc73091951,",2.32,md,,nc,17.0,"8km WSW of Petrolia, CA",0.2,83,",nc,",reviewed,1538356639070,"M 2.3 - 8km WSW of Petrolia, CA",0,earthquake,",dyfi,focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538461683169,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091951 +,,80311914,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80311914&format=geojson,0.018,,162.0,",mb80311914,",-0.08,ml,,mb,5.0,"18km N of Dillon, Montana",0.06,0,",mb,",reviewed,1538356528360,"M -0.1 - 18km N of Dillon, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538428991540,https://earthquake.usgs.gov/earthquakes/eventpage/mb80311914 +,,20268026,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268026&format=geojson,,,,",ak20268026,",0.8,ml,,ak,,"24km N of North Nenana, Alaska",0.76,10,",ak,",automatic,1538356208848,"M 0.8 - 24km N of North Nenana, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538356428301,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268026 +,,00659071,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659071&format=geojson,0.154,,188.76,",nn00659071,",0.3,ml,,nn,12.0,"39km SSE of Goldfield, Nevada",0.1368,1,",nn,",reviewed,1538355936036,"M 0.3 - 39km SSE of Goldfield, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538417790217,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659071 +,,20268009,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268009&format=geojson,,,,",ak20268009,",1.7,ml,,ak,,"56km SSW of Adak, Alaska",0.21,44,",ak,",reviewed,1538355554534,"M 1.7 - 56km SSW of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539036675489,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268009 +green,,20268005,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268005&format=geojson,,,,",ak20268005,us1000h4ub,",4.2,ml,4.39,ak,,"131km NNW of Arctic Village, Alaska",1.07,271,",ak,us,",reviewed,1538355504955,"M 4.2 - 131km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,losspager,moment-tensor,origin,phase-data,shakemap,",-540.0,1539036879864,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268005 +,,70251653,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ismpkansas70251653&format=geojson,0.1359,,242.0,",ismpkansas70251653,",1.95,ml,,ismpkansas,7.0,"12km SW of Wellington, Kansas",0.02,58,",ismpkansas,",reviewed,1538355439260,"M 2.0 - 12km SW of Wellington, Kansas",0,earthquake,",geoserve,origin,phase-data,",-360.0,1538441499200,https://earthquake.usgs.gov/earthquakes/eventpage/ismpkansas70251653 +,,60298557,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60298557&format=geojson,0.1864,,165.0,",uu60298557,",1.09,md,,uu,16.0,"42km SW of Malad City, Idaho",0.16,18,",uu,",reviewed,1538355244180,"M 1.1 - 42km SW of Malad City, Idaho",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538427209810,https://earthquake.usgs.gov/earthquakes/eventpage/uu60298557 +,,73091936,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091936&format=geojson,0.03723,,172.0,",nc73091936,",0.33,md,,nc,12.0,"11km ENE of Mammoth Lakes, CA",0.05,2,",nc,",reviewed,1538355193490,"M 0.3 - 11km ENE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538421303884,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091936 +,,00659067,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659067&format=geojson,0.103,,192.74,",nn00659067,",0.3,ml,,nn,11.0,"35km SSW of Beatty, Nevada",0.1747,1,",nn,",reviewed,1538355058921,"M 0.3 - 35km SSW of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538417418716,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659067 +,,73091931,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091931&format=geojson,0.04983,,83.0,",nc73091931,",1.59,md,,nc,22.0,"13km NNE of Pinnacles, CA",0.11,39,",nc,",reviewed,1538355011330,"M 1.6 - 13km NNE of Pinnacles, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538457423092,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091931 +,,20268001,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268001&format=geojson,,,,",ak20268001,",0.7,ml,,ak,,"20km SE of Anchorage, Alaska",0.22,8,",ak,",reviewed,1538354862035,"M 0.7 - 20km SE of Anchorage, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036673936,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268001 +,,20268000,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20268000&format=geojson,,,,",ak20268000,",1.8,ml,,ak,,"122km NNW of Arctic Village, Alaska",0.88,50,",ak,",reviewed,1538354849103,"M 1.8 - 122km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036673366,https://earthquake.usgs.gov/earthquakes/eventpage/ak20268000 +,,80311969,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80311969&format=geojson,0.019,,195.0,",mb80311969,",-1.23,md,,mb,4.0,"10km NW of Polson, Montana",0.05,0,",mb,",reviewed,1538354389900,"M -1.2 - 10km NW of Polson, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538432509730,https://earthquake.usgs.gov/earthquakes/eventpage/mb80311969 +,,80311974,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80311974&format=geojson,0.441,,130.0,",mb80311974,",1.4,ml,,mb,7.0,"33km NE of Cascade, Idaho",0.13,30,",mb,",reviewed,1538354315420,"M 1.4 - 33km NE of Cascade, Idaho",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538433608460,https://earthquake.usgs.gov/earthquakes/eventpage/mb80311974 +,3.6,1000h4tp,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h4tp&format=geojson,0.149,4.0,87.0,",us1000h4tp,ismpkansas70251648,",3.0,mb_lg,,us,,"10km SW of Wellington, Kansas",0.4,140,",us,ismpkansas,",reviewed,1538354003010,"M 3.0 - 10km SW of Wellington, Kansas",0,earthquake,",dyfi,geoserve,origin,phase-data,",-360.0,1538456113278,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h4tp +,,70251643,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ismpkansas70251643&format=geojson,0.1384,,225.0,",ismpkansas70251643,",2.16,ml,,ismpkansas,8.0,"11km SW of Wellington, Kansas",0.02,72,",ismpkansas,",reviewed,1538353947280,"M 2.2 - 11km SW of Wellington, Kansas",0,earthquake,",geoserve,origin,phase-data,",-360.0,1538439359600,https://earthquake.usgs.gov/earthquakes/eventpage/ismpkansas70251643 +,3.4,61424827,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61424827&format=geojson,0.05672,6.0,173.0,",uw61424827,",2.99,ml,,uw,12.0,"3km SSE of Brookings, Oregon",0.27,140,",uw,",reviewed,1538353875910,"M 3.0 - 3km SSE of Brookings, Oregon",0,earthquake,",dyfi,geoserve,origin,phase-data,",-480.0,1538451076224,https://earthquake.usgs.gov/earthquakes/eventpage/uw61424827 +,,20273492,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273492&format=geojson,,,,",ak20273492,",1.1,ml,,ak,,"36km NW of Nikiski, Alaska",0.21,19,",ak,",reviewed,1538353733213,"M 1.1 - 36km NW of Nikiski, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539036672859,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273492 +,,2018274000,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018274000&format=geojson,1.0255,,332.0,",pr2018274000,",2.74,md,,pr,10.0,"59km NNW of Charlotte Amalie, U.S. Virgin Islands",0.29,116,",pr,",reviewed,1538352856710,"M 2.7 - 59km NNW of Charlotte Amalie, U.S. Virgin Islands",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538368568377,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018274000 +,,73091921,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091921&format=geojson,0.03257,,113.0,",nc73091921,",0.74,md,,nc,17.0,"11km ENE of Mammoth Lakes, CA",0.05,8,",nc,",reviewed,1538352844360,"M 0.7 - 11km ENE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538444468967,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091921 +,,2018274001,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018274001&format=geojson,0.9761,,333.0,",pr2018274001,",2.93,md,,pr,8.0,"55km NNW of Charlotte Amalie, U.S. Virgin Islands",0.36,132,",pr,",reviewed,1538352596170,"M 2.9 - 55km NNW of Charlotte Amalie, U.S. Virgin Islands",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538368582977,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018274001 +,,00659062,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659062&format=geojson,0.034,,161.84,",nn00659062,",-0.1,ml,,nn,9.0,"54km ENE of Beatty, Nevada",0.2162,0,",nn,",reviewed,1538352307103,"M -0.1 - 54km ENE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538417046394,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659062 +,,00659043,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659043&format=geojson,0.032,,169.44,",nn00659043,",-0.1,ml,,nn,13.0,"54km ENE of Beatty, Nevada",0.2082,0,",nn,",reviewed,1538352106389,"M -0.1 - 54km ENE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538414265597,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659043 +,,00659042,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659042&format=geojson,0.027,,154.44,",nn00659042,",-0.2,ml,,nn,13.0,"55km ENE of Beatty, Nevada",0.2181,0,",nn,",reviewed,1538352008894,"M -0.2 - 55km ENE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538412783237,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659042 +,,73091916,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091916&format=geojson,0.01007,,93.0,",nc73091916,",0.56,md,,nc,9.0,"7km NW of The Geysers, CA",0.02,5,",nc,",automatic,1538351954920,"M 0.6 - 7km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538357103370,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091916 +,,00659443,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659443&format=geojson,0.286,,82.14,",nn00659443,",2.2,ml,,nn,8.0,"42km SE of Spring Creek, Nevada",0.1765,74,",nn,",reviewed,1538351729057,"M 2.2 - 42km SE of Spring Creek, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538585996921,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659443 +,,20267996,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267996&format=geojson,,,,",ak20267996,us1000h4te,",4.0,ml,,ak,,"57km NNE of Gambell, Alaska",0.68,246,",ak,us,",reviewed,1538351680635,"M 4.0 - 57km NNE of Gambell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-660.0,1539115375543,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267996 +,,1000h4tc,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h4tc&format=geojson,1.245,,63.0,",us1000h4tc,",4.4,mb,,us,,"32km ENE of Sarpol-e Zahab, Iran",1.05,298,",us,",reviewed,1538351364860,"M 4.4 - 32km ENE of Sarpol-e Zahab, Iran",0,earthquake,",geoserve,origin,phase-data,",210.0,1539400690040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h4tc +,,2018273024,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018273024&format=geojson,1.0674,,333.0,",pr2018273024,us1000h4wk,",3.0,md,,pr,10.0,"53km NNW of Charlotte Amalie, U.S. Virgin Islands",0.3,138,",pr,us,",reviewed,1538351193790,"M 3.0 - 53km NNW of Charlotte Amalie, U.S. Virgin Islands",0,earthquake,",geoserve,origin,phase-data,",-240.0,1539401314040,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018273024 +,,20267993,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267993&format=geojson,,,,",ak20267993,",1.2,ml,,ak,,"14km WNW of Y, Alaska",0.59,22,",ak,",reviewed,1538351003550,"M 1.2 - 14km WNW of Y, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110235482,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267993 +,,20275084,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20275084&format=geojson,,,,",ak20275084,",1.2,ml,,ak,,"111km NNW of Arctic Village, Alaska",0.37,22,",ak,",reviewed,1538350854204,"M 1.2 - 111km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110234966,https://earthquake.usgs.gov/earthquakes/eventpage/ak20275084 +,,73091911,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091911&format=geojson,0.1333,,191.0,",nc73091911,",1.97,md,,nc,0.0,"7km ENE of San Simeon, CA",0.06,60,",nc,",reviewed,1538350842600,"M 2.0 - 7km ENE of San Simeon, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538522523739,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091911 +,,1000h9jp,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h9jp&format=geojson,0.843,,209.0,",ak20267992,us1000h9jp,",3.3,ml,,us,,"98km SSE of Akutan, Alaska",0.95,168,",ak,us,",reviewed,1538350642880,"M 3.3 - 98km SSE of Akutan, Alaska",0,earthquake,",geoserve,origin,phase-data,",-660.0,1539496150040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h9jp +,,73091906,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091906&format=geojson,0.2542,,313.0,",nn00658995,nc73091906,",1.05,md,,nc,9.0,"4km NNE of Deep Springs, CA",0.07,17,",nn,nc,",reviewed,1538350489970,"M 1.1 - 4km NNE of Deep Springs, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538604651989,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091906 +,,20267989,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267989&format=geojson,,,,",ak20267989,",1.8,ml,,ak,,"79km SSW of Kaktovik, Alaska",0.55,50,",ak,",reviewed,1538350465263,"M 1.8 - 79km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110233843,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267989 +,2.7,2018273020,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018273020&format=geojson,0.9771,2.0,193.0,",pt18273001,us1000h4t6,pr2018273020,",3.56,md,,pr,26.0,"70km N of Culebra, Puerto Rico",0.4,196,",pt,us,pr,",reviewed,1538350182180,"M 3.6 - 70km N of Culebra, Puerto Rico",0,earthquake,",dyfi,geoserve,origin,phase-data,",-240.0,1538353846290,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018273020 +,,20275081,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20275081&format=geojson,,,,",ak20275081,",1.1,ml,,ak,,"85km WSW of Cantwell, Alaska",0.3,19,",ak,",reviewed,1538350030871,"M 1.1 - 85km WSW of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110233317,https://earthquake.usgs.gov/earthquakes/eventpage/ak20275081 +,,1000h4t2,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h4t2&format=geojson,0.551,,69.0,",us1000h4t2,",4.3,mb,,us,,"24km SE of Jarm, Afghanistan",1.05,284,",us,",reviewed,1538349989140,"M 4.3 - 24km SE of Jarm, Afghanistan",0,earthquake,",geoserve,origin,phase-data,",270.0,1538977268040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h4t2 +,,20267988,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267988&format=geojson,,,,",ak20267988,",0.9,ml,,ak,,"16km SE of Cantwell, Alaska",0.6,12,",ak,",reviewed,1538349452702,"M 0.9 - 16km SE of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110232796,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267988 +,,37375338,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37375338&format=geojson,0.009486,,68.0,",ci37375338,",0.91,ml,,ci,26.0,"9km N of Borrego Springs, CA",0.17,13,",ci,",reviewed,1538348947320,"M 0.9 - 9km N of Borrego Springs, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538595087442,https://earthquake.usgs.gov/earthquakes/eventpage/ci37375338 +,,70623137,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70623137&format=geojson,0.03469,,56.0,",hv70623137,",0.99,md,,hv,22.0,"23km ENE of Honaunau-Napoopoo, Hawaii",0.12,15,",hv,",reviewed,1538348646950,"M 1.0 - 23km ENE of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538369140480,https://earthquake.usgs.gov/earthquakes/eventpage/hv70623137 +,,20267986,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267986&format=geojson,,,,",ak20267986,",1.3,ml,,ak,,"113km NNW of Arctic Village, Alaska",0.49,26,",ak,",reviewed,1538348136060,"M 1.3 - 113km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110232273,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267986 +,,37375330,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37375330&format=geojson,0.01476,,160.0,",ci37375330,",0.86,ml,,ci,25.0,"9km NNE of Borrego Springs, CA",0.15,11,",ci,",reviewed,1538348058920,"M 0.9 - 9km NNE of Borrego Springs, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538613018454,https://earthquake.usgs.gov/earthquakes/eventpage/ci37375330 +,,73091901,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091901&format=geojson,0.03234,,157.0,",nc73091901,",0.32,md,,nc,11.0,"11km ENE of Mammoth Lakes, CA",0.07,2,",nc,",reviewed,1538347940880,"M 0.3 - 11km ENE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538420583838,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091901 +,,20267984,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267984&format=geojson,,,,",ak20267984,",1.3,ml,,ak,,"159km SW of Fort McPherson, Canada",0.43,26,",ak,",reviewed,1538347927347,"M 1.3 - 159km SW of Fort McPherson, Canada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539110231710,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267984 +,,61424762,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61424762&format=geojson,0.02725,,96.0,",uw61424762,",0.88,ml,,uw,5.0,"4km NNW of Friday Harbor, Washington",0.24,12,",uw,",reviewed,1538347379790,"M 0.9 - 4km NNW of Friday Harbor, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538449610720,https://earthquake.usgs.gov/earthquakes/eventpage/uw61424762 +,,60298552,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60298552&format=geojson,0.1284,,109.0,",uu60298552,",1.57,md,,uu,10.0,"16km N of Summit Park, Utah",0.14,38,",uu,",reviewed,1538347082340,"M 1.6 - 16km N of Summit Park, Utah",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538496457470,https://earthquake.usgs.gov/earthquakes/eventpage/uu60298552 +,,20267981,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267981&format=geojson,,,,",ak20267981,",1.3,ml,,ak,,"32km W of Big Lake, Alaska",0.43,26,",ak,",reviewed,1538346867862,"M 1.3 - 32km W of Big Lake, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110231089,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267981 +,,73091896,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091896&format=geojson,0.004571,,51.0,",nc73091896,",1.2,md,,nc,40.0,"6km WNW of Cobb, CA",0.07,22,",nc,",reviewed,1538346307220,"M 1.2 - 6km WNW of Cobb, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538525343580,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091896 +,,73091891,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091891&format=geojson,0.03109,,112.0,",nc73091891,",0.98,md,,nc,21.0,"10km ENE of Mammoth Lakes, CA",0.08,15,",nc,",reviewed,1538346084250,"M 1.0 - 10km ENE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538506676739,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091891 +,,20267976,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267976&format=geojson,,,,",ak20267976,",1.9,ml,,ak,,"8km SSE of Big Lake, Alaska",0.56,56,",ak,",reviewed,1538346019900,"M 1.9 - 8km SSE of Big Lake, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110230409,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267976 +,,73091886,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091886&format=geojson,0.03601,,148.0,",nc73091886,",0.99,md,,nc,13.0,"11km ENE of Mammoth Lakes, CA",0.04,15,",nc,",reviewed,1538345929770,"M 1.0 - 11km ENE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538442873928,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091886 +,,37375298,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37375298&format=geojson,0.07626,,176.0,",ci37375298,",0.76,ml,,ci,14.0,"4km SE of Yucaipa, CA",0.08,9,",ci,",reviewed,1538345919880,"M 0.8 - 4km SE of Yucaipa, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538426059221,https://earthquake.usgs.gov/earthquakes/eventpage/ci37375298 +,,73091881,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091881&format=geojson,0.002915,,80.0,",nc73091881,",1.16,md,,nc,10.0,"7km WNW of The Geysers, CA",0.02,21,",nc,",automatic,1538345291760,"M 1.2 - 7km WNW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538349182571,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091881 +,,20267961,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267961&format=geojson,,,,",ak20267961,",2.2,ml,,ak,,"80km SSW of Kaktovik, Alaska",0.49,74,",ak,",reviewed,1538345170889,"M 2.2 - 80km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110229809,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267961 +,,37375282,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37375282&format=geojson,0.1376,,84.0,",ci37375282,",1.04,ml,,ci,13.0,"18km SSW of Ludlow, CA",0.12,17,",ci,",reviewed,1538345151960,"M 1.0 - 18km SSW of Ludlow, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538421876411,https://earthquake.usgs.gov/earthquakes/eventpage/ci37375282 +,,20267959,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267959&format=geojson,,,,",ak20267959,",0.5,ml,,ak,,"95km NW of Nikiski, Alaska",0.49,4,",ak,",reviewed,1538345010194,"M 0.5 - 95km NW of Nikiski, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110229259,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267959 +,3.8,1000h4sf,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h4sf&format=geojson,3.617,1.0,37.0,",us1000h4sf,",5.0,mb,,us,,"106km NNW of Lae, Papua New Guinea",0.99,385,",us,",reviewed,1538344682130,"M 5.0 - 106km NNW of Lae, Papua New Guinea",1,earthquake,",dyfi,geoserve,origin,phase-data,",600.0,1538348987648,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h4sf +,,73091876,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091876&format=geojson,0.0101,,179.0,",nc73091876,",0.98,md,,nc,15.0,"9km WNW of Cobb, CA",0.02,15,",nc,",reviewed,1538344596720,"M 1.0 - 9km WNW of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538452708069,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091876 +,,20275073,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20275073&format=geojson,,,,",ak20275073,",2.0,ml,,ak,,"58km W of Atka, Alaska",0.15,62,",ak,",reviewed,1538344417564,"M 2.0 - 58km W of Atka, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539110228746,https://earthquake.usgs.gov/earthquakes/eventpage/ak20275073 +,,20267957,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267957&format=geojson,,,,",ak20267957,",1.1,ml,,ak,,"58km WNW of Talkeetna, Alaska",0.58,19,",ak,",reviewed,1538344407609,"M 1.1 - 58km WNW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110228201,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267957 +,,20267956,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267956&format=geojson,,,,",ak20267956,av61789681,",0.6,ml,,ak,,"94km NW of Nikiski, Alaska",0.46,6,",ak,av,",reviewed,1538343990737,"M 0.6 - 94km NW of Nikiski, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110227649,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267956 +,,37375266,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37375266&format=geojson,0.0107,,109.0,",ci37375266,",0.4,ml,,ci,17.0,"9km NE of Aguanga, CA",0.09,2,",ci,",reviewed,1538343883180,"M 0.4 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538427102775,https://earthquake.usgs.gov/earthquakes/eventpage/ci37375266 +,,20267954,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267954&format=geojson,,,,",ak20267954,",0.5,ml,,ak,,"15km WSW of Haines Junction, Canada",0.49,4,",ak,",reviewed,1538343840074,"M 0.5 - 15km WSW of Haines Junction, Canada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539110227138,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267954 +,,2018273023,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018273023&format=geojson,0.8911,,339.0,",pr2018273023,",3.17,md,,pr,3.0,"74km N of Brenas, Puerto Rico",0.01,155,",pr,",reviewed,1538343616800,"M 3.2 - 74km N of Brenas, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538355740748,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018273023 +,,20267952,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267952&format=geojson,,,,",ak20267952,",1.6,ml,,ak,,"163km SSE of Kotzebue, Alaska",0.39,39,",ak,",reviewed,1538343427698,"M 1.6 - 163km SSE of Kotzebue, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110226571,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267952 +,,20267951,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267951&format=geojson,,,,",ak20267951,",1.2,ml,,ak,,"80km NNW of Talkeetna, Alaska",0.43,22,",ak,",reviewed,1538343074298,"M 1.2 - 80km NNW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110225984,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267951 +,,20275066,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20275066&format=geojson,,,,",ak20275066,",1.6,ml,,ak,,"86km SW of Kaktovik, Alaska",0.45,39,",ak,",reviewed,1538342934378,"M 1.6 - 86km SW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110225440,https://earthquake.usgs.gov/earthquakes/eventpage/ak20275066 +,,20267949,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267949&format=geojson,,,,",ak20267949,",1.3,ml,,ak,,"25km SW of Tanaga Volcano, Alaska",0.4,26,",ak,",reviewed,1538342691397,"M 1.3 - 25km SW of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539110224920,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267949 +,,20275064,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20275064&format=geojson,,,,",ak20275064,",1.9,ml,,ak,,"98km ESE of Amatignak Island, Alaska",0.24,56,",ak,",reviewed,1538342578537,"M 1.9 - 98km ESE of Amatignak Island, Alaska",0,earthquake,",geoserve,origin,phase-data,",-720.0,1539110224412,https://earthquake.usgs.gov/earthquakes/eventpage/ak20275064 +,,37375250,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37375250&format=geojson,0.008277,,43.0,",ci37375250,",0.55,ml,,ci,26.0,"10km NE of Aguanga, CA",0.14,5,",ci,",reviewed,1538342116890,"M 0.6 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538416174078,https://earthquake.usgs.gov/earthquakes/eventpage/ci37375250 +,,20267948,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267948&format=geojson,,,,",ak20267948,",1.2,ml,,ak,,"82km NW of Arctic Village, Alaska",0.43,22,",ak,",reviewed,1538342008787,"M 1.2 - 82km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110223893,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267948 +,,70623012,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70623012&format=geojson,0.03315,,68.0,",hv70623012,",1.4,md,,hv,27.0,"22km ENE of Honaunau-Napoopoo, Hawaii",0.13,30,",hv,",reviewed,1538341998670,"M 1.4 - 22km ENE of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538370814390,https://earthquake.usgs.gov/earthquakes/eventpage/hv70623012 +,,61424747,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61424747&format=geojson,0.5974,,234.0,",uw61424747,",2.06,ml,,uw,9.0,"5km S of Princeton, Canada",0.32,65,",uw,",reviewed,1538341991480,"M 2.1 Explosion - 5km S of Princeton, Canada",0,explosion,",geoserve,origin,phase-data,",-480.0,1538424807450,https://earthquake.usgs.gov/earthquakes/eventpage/uw61424747 +,2.0,1000h4rw,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h4rw&format=geojson,0.108,1.0,33.0,",us1000h4rw,",2.6,mb_lg,,us,,"2km N of Langston, Oklahoma",0.26,104,",us,",reviewed,1538341435280,"M 2.6 - 2km N of Langston, Oklahoma",0,earthquake,",dyfi,geoserve,origin,phase-data,",-360.0,1538402027411,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h4rw +,,20267947,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267947&format=geojson,,,,",ak20267947,",0.9,ml,,ak,,"61km E of Cape Yakataga, Alaska",0.48,12,",ak,",reviewed,1538341183269,"M 0.9 Ice Quake - 61km E of Cape Yakataga, Alaska",0,ice quake,",geoserve,origin,phase-data,",-540.0,1539110223379,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267947 +,,2018273022,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018273022&format=geojson,0.9712,,330.0,",pr2018273022,",3.12,md,,pr,13.0,"63km N of Culebra, Puerto Rico",0.28,150,",pr,",reviewed,1538340668110,"M 3.1 - 63km N of Culebra, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538355730405,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018273022 +,,20275061,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20275061&format=geojson,,,,",ak20275061,",1.5,ml,,ak,,"50km SSW of Redoubt Volcano, Alaska",0.35,35,",ak,",reviewed,1538340588183,"M 1.5 - 50km SSW of Redoubt Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110222847,https://earthquake.usgs.gov/earthquakes/eventpage/ak20275061 +,,73091851,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091851&format=geojson,0.02684,,54.0,",nc73091851,",1.66,md,,nc,45.0,"10km E of Cloverdale, CA",0.07,42,",nc,",reviewed,1538340553310,"M 1.7 - 10km E of Cloverdale, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538466663668,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091851 +,2.2,70622967,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70622967&format=geojson,0.0322,8.0,27.0,",hv70622967,us1000h4rh,",3.41,ml,,hv,56.0,"21km ENE of Honaunau-Napoopoo, Hawaii",0.13,181,",hv,us,",reviewed,1538340405140,"M 3.4 - 21km ENE of Honaunau-Napoopoo, Hawaii",0,earthquake,",dyfi,geoserve,origin,phase-data,",-600.0,1538355450698,https://earthquake.usgs.gov/earthquakes/eventpage/hv70622967 +,,70622962,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70622962&format=geojson,0.03572,,63.0,",hv70622962,us1000h4rg,",2.6,ml,,hv,44.0,"22km ENE of Honaunau-Napoopoo, Hawaii",0.13,104,",hv,us,",reviewed,1538340333340,"M 2.6 - 22km ENE of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538435124320,https://earthquake.usgs.gov/earthquakes/eventpage/hv70622962 +,,20267946,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267946&format=geojson,,,,",ak20267946,",1.0,ml,,ak,,"57km WNW of Talkeetna, Alaska",0.54,15,",ak,",reviewed,1538340264274,"M 1.0 - 57km WNW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110222295,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267946 +,,2018273021,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018273021&format=geojson,0.8869,,340.0,",pr2018273021,",2.97,md,,pr,3.0,"55km N of Culebra, Puerto Rico",0.38,136,",pr,",reviewed,1538339614770,"M 3.0 - 55km N of Culebra, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538354682646,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018273021 +,,20267941,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267941&format=geojson,,,,",ak20267941,",1.3,ml,,ak,,"114km W of Cantwell, Alaska",0.59,26,",ak,",reviewed,1538339324793,"M 1.3 - 114km W of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110221725,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267941 +,,20267938,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267938&format=geojson,,,,",ak20267938,",1.5,ml,,ak,,"60km E of Cape Yakataga, Alaska",0.44,35,",ak,",reviewed,1538339271533,"M 1.5 Ice Quake - 60km E of Cape Yakataga, Alaska",0,ice quake,",geoserve,origin,phase-data,",-540.0,1539110221187,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267938 +,,00659004,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659004&format=geojson,0.126,,170.83,",nn00659004,",0.7,ml,,nn,8.0,"28km WSW of Hawthorne, Nevada",0.1176,8,",nn,",reviewed,1538339061158,"M 0.7 - 28km WSW of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538352571009,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659004 +,,2018273019,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018273019&format=geojson,0.9873,,338.0,",pr2018273019,",2.77,md,,pr,4.0,"60km NNW of Charlotte Amalie, U.S. Virgin Islands",0.25,118,",pr,",reviewed,1538338606720,"M 2.8 - 60km NNW of Charlotte Amalie, U.S. Virgin Islands",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538354661214,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018273019 +,,2018273018,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018273018&format=geojson,0.9909,,332.0,",pr2018273018,",2.22,md,,pr,8.0,"67km N of Culebra, Puerto Rico",0.3,76,",pr,",reviewed,1538338317120,"M 2.2 - 67km N of Culebra, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538354650390,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018273018 +,,70622887,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70622887&format=geojson,0.03601,,59.0,",hv70622887,",2.04,ml,,hv,26.0,"22km ENE of Honaunau-Napoopoo, Hawaii",0.13,64,",hv,",reviewed,1538338272730,"M 2.0 - 22km ENE of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538367721450,https://earthquake.usgs.gov/earthquakes/eventpage/hv70622887 +,,2018273017,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018273017&format=geojson,1.0161,,332.0,",pr2018273017,",2.6,md,,pr,7.0,"61km NNW of Charlotte Amalie, U.S. Virgin Islands",0.37,104,",pr,",reviewed,1538338018090,"M 2.6 - 61km NNW of Charlotte Amalie, U.S. Virgin Islands",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538354639510,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018273017 +,,20267936,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267936&format=geojson,,,,",ak20267936,",0.9,ml,,ak,,"51km E of Cape Yakataga, Alaska",0.48,12,",ak,",reviewed,1538337784998,"M 0.9 Ice Quake - 51km E of Cape Yakataga, Alaska",0,ice quake,",geoserve,origin,phase-data,",-540.0,1539110220652,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267936 +,,20267932,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267932&format=geojson,,,,",ak20267932,",0.3,ml,,ak,,"95km NW of Nikiski, Alaska",0.44,1,",ak,",reviewed,1538337723223,"M 0.3 - 95km NW of Nikiski, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110220105,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267932 +,,20267928,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267928&format=geojson,,,,",ak20267928,",2.8,ml,,ak,,"78km SE of Akutan, Alaska",0.62,121,",ak,",reviewed,1538337512803,"M 2.8 - 78km SE of Akutan, Alaska",0,earthquake,",geoserve,origin,phase-data,",-660.0,1539110219558,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267928 +,,20267795,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267795&format=geojson,,,,",ak20267795,",1.4,ml,,ak,,"85km N of Kobuk, Alaska",0.36,30,",ak,",reviewed,1538337217465,"M 1.4 - 85km N of Kobuk, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110218970,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267795 +,,2018273016,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018273016&format=geojson,1.0265,,331.0,",pr2018273016,",3.06,md,,pr,12.0,"63km NNW of Charlotte Amalie, U.S. Virgin Islands",0.38,144,",pr,",reviewed,1538336690570,"M 3.1 - 63km NNW of Charlotte Amalie, U.S. Virgin Islands",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538354629822,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018273016 +,2.2,1000h4r4,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h4r4&format=geojson,0.883,1.0,109.0,",us1000h4r4,",4.3,mb,,us,,"50km NNE of Shizunai, Japan",0.81,285,",us,",reviewed,1538336412660,"M 4.3 - 50km NNE of Shizunai, Japan",0,earthquake,",dyfi,geoserve,origin,phase-data,",540.0,1538367048207,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h4r4 +,,2018273014,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018273014&format=geojson,1.0372,,342.0,",pr2018273014,",2.9,md,,pr,3.0,"67km NNW of Charlotte Amalie, U.S. Virgin Islands",0.18,129,",pr,",reviewed,1538336220280,"M 2.9 - 67km NNW of Charlotte Amalie, U.S. Virgin Islands",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538354610142,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018273014 +,,2018273015,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018273015&format=geojson,1.0953,,329.0,",pr2018273015,",2.61,md,,pr,4.0,"81km NNW of Charlotte Amalie, U.S. Virgin Islands",0.47,105,",pr,",reviewed,1538335775000,"M 2.6 - 81km NNW of Charlotte Amalie, U.S. Virgin Islands",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538354620430,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018273015 +,,2018273013,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018273013&format=geojson,1.0013,,331.0,",pr2018273013,",3.16,md,,pr,12.0,"64km NNW of Charlotte Amalie, U.S. Virgin Islands",0.21,154,",pr,",reviewed,1538335685130,"M 3.2 - 64km NNW of Charlotte Amalie, U.S. Virgin Islands",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538354592358,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018273013 +,,20267791,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267791&format=geojson,,,,",ak20267791,",1.2,ml,,ak,,"74km NE of Talkeetna, Alaska",0.58,22,",ak,",reviewed,1538334907962,"M 1.2 - 74km NE of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110218387,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267791 +,,37375146,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37375146&format=geojson,0.07793,,38.0,",ci37375146,",1.43,ml,,ci,37.0,"4km ENE of Calimesa, CA",0.18,31,",ci,",reviewed,1538334317920,"M 1.4 - 4km ENE of Calimesa, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538402221094,https://earthquake.usgs.gov/earthquakes/eventpage/ci37375146 +,,2018273012,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018273012&format=geojson,0.9286,,333.0,",pr2018273012,",2.98,md,,pr,4.0,"68km N of Culebra, Puerto Rico",0.28,137,",pr,",reviewed,1538334099730,"M 3.0 - 68km N of Culebra, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538354576854,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018273012 +,,73091836,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091836&format=geojson,0.01831,,61.0,",nc73091836,",1.07,md,,nc,18.0,"2km NNW of The Geysers, CA",0.02,18,",nc,",automatic,1538334088520,"M 1.1 - 2km NNW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538335923252,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091836 +,,00659003,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659003&format=geojson,0.308,,123.75,",nn00659003,",1.0,ml,,nn,10.0,"26km S of Gardnerville Ranchos, Nevada",0.1353,15,",nn,",reviewed,1538334025390,"M 1.0 - 26km S of Gardnerville Ranchos, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538352385628,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659003 +,,73091831,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091831&format=geojson,0.02649,,143.0,",nc73091831,",1.32,md,,nc,19.0,"14km SE of Pinnacles, CA",0.03,27,",nc,",reviewed,1538333942900,"M 1.3 - 14km SE of Pinnacles, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538446562746,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091831 +,,73091826,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091826&format=geojson,0.009382,,59.0,",nc73091826,",0.48,md,,nc,19.0,"7km NW of The Geysers, CA",0.05,4,",nc,",reviewed,1538333709610,"M 0.5 - 7km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538441550424,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091826 +,,37375138,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37375138&format=geojson,0.07881,,37.0,",ci37375138,",1.48,ml,,ci,57.0,"4km ENE of Calimesa, CA",0.21,34,",ci,",reviewed,1538333502900,"M 1.5 - 4km ENE of Calimesa, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538427717830,https://earthquake.usgs.gov/earthquakes/eventpage/ci37375138 +,,20275052,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20275052&format=geojson,,,,",ak20275052,",1.2,ml,,ak,,"120km WNW of Arctic Village, Alaska",0.39,22,",ak,",reviewed,1538333180117,"M 1.2 - 120km WNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110217870,https://earthquake.usgs.gov/earthquakes/eventpage/ak20275052 +,,1000h4qp,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h4qp&format=geojson,3.219,,194.0,",ak20267782,us1000h4qp,",4.6,mb,,us,,"128km S of Shemya Island, Alaska",0.84,326,",ak,us,",reviewed,1538333157460,"M 4.6 - 128km S of Shemya Island, Alaska",0,earthquake,",geoserve,origin,phase-data,",720.0,1539110217315,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h4qp +,,2018273008,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018273008&format=geojson,1.0535,,216.0,",pr2018273008,us1000h4qy,",3.27,md,,pr,15.0,"65km N of Culebra, Puerto Rico",0.34,165,",pr,us,",reviewed,1538333037550,"M 3.3 - 65km N of Culebra, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538337989040,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018273008 +,,20267777,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267777&format=geojson,,,,",ak20267777,",2.3,ml,,ak,,"96km SW of False Pass, Alaska",0.51,81,",ak,",reviewed,1538332964074,"M 2.3 - 96km SW of False Pass, Alaska",0,earthquake,",geoserve,origin,phase-data,",-660.0,1539110216796,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267777 +,,20267776,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267776&format=geojson,,,,",ak20267776,",1.2,ml,,ak,,"21km WNW of Fishhook, Alaska",0.43,22,",ak,",reviewed,1538332940032,"M 1.2 - 21km WNW of Fishhook, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110216236,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267776 +,,73091821,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091821&format=geojson,0.02198,,58.0,",nc73091821,",1.34,md,,nc,35.0,"8km SSE of Sunol, CA",0.07,28,",nc,",reviewed,1538332883970,"M 1.3 - 8km SSE of Sunol, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538458982903,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091821 +,,20267781,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267781&format=geojson,,,,",ak20267781,",2.1,ml,,ak,,"67km SSE of Tanaga Volcano, Alaska",0.32,68,",ak,",reviewed,1538332662181,"M 2.1 - 67km SSE of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-720.0,1539110215712,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267781 +,,2018273011,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018273011&format=geojson,0.9259,,334.0,",pr2018273011,",2.59,md,,pr,7.0,"44km NNW of Charlotte Amalie, U.S. Virgin Islands",0.17,103,",pr,",reviewed,1538332302290,"M 2.6 - 44km NNW of Charlotte Amalie, U.S. Virgin Islands",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538343049823,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018273011 +,,20267771,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267771&format=geojson,,,,",ak20267771,",1.3,ml,,ak,,"67km ENE of Cape Yakataga, Alaska",0.35,26,",ak,",reviewed,1538332244999,"M 1.3 Ice Quake - 67km ENE of Cape Yakataga, Alaska",0,ice quake,",geoserve,origin,phase-data,",-540.0,1539110215200,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267771 +,,20267770,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267770&format=geojson,,,,",ak20267770,",1.0,ml,,ak,,"59km WSW of Willow, Alaska",0.24,15,",ak,",reviewed,1538332052164,"M 1.0 - 59km WSW of Willow, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110214636,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267770 +,,37375130,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37375130&format=geojson,0.01862,,34.0,",ci37375130,",0.6,ml,,ci,27.0,"9km NE of Aguanga, CA",0.17,6,",ci,",reviewed,1538331817530,"M 0.6 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538402222809,https://earthquake.usgs.gov/earthquakes/eventpage/ci37375130 +,,2018273007,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018273007&format=geojson,1.02,,214.0,",pr2018273007,us1000h4qd,",3.8,md,,pr,22.0,"56km N of Culebra, Puerto Rico",0.41,222,",pr,us,",reviewed,1538331710490,"M 3.8 - 56km N of Culebra, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538334354040,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018273007 +,,20267767,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267767&format=geojson,,,,",ak20267767,",0.8,ml,,ak,,"80km E of Cape Yakataga, Alaska",0.45,10,",ak,",reviewed,1538331614897,"M 0.8 - 80km E of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110214113,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267767 +,,20267765,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267765&format=geojson,,,,",ak20267765,",2.7,ml,,ak,,"31km S of False Pass, Alaska",0.43,112,",ak,",reviewed,1538331392373,"M 2.7 - 31km S of False Pass, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110213546,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267765 +,,2018273010,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018273010&format=geojson,1.0201,,330.0,",pr2018273010,",3.18,md,,pr,13.0,"66km NNW of Charlotte Amalie, U.S. Virgin Islands",0.34,156,",pr,",reviewed,1538331188480,"M 3.2 - 66km NNW of Charlotte Amalie, U.S. Virgin Islands",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538343031295,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018273010 +,,37375122,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37375122&format=geojson,0.07469,,239.0,",ci37375122,",0.56,ml,,ci,15.0,"19km ESE of Anza, CA",0.11,5,",ci,",reviewed,1538330954800,"M 0.6 - 19km ESE of Anza, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538421525745,https://earthquake.usgs.gov/earthquakes/eventpage/ci37375122 +,,2018273009,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018273009&format=geojson,1.0381,,339.0,",pr2018273009,",2.41,md,,pr,7.0,"60km NNW of Charlotte Amalie, U.S. Virgin Islands",0.22,89,",pr,",reviewed,1538330712380,"M 2.4 - 60km NNW of Charlotte Amalie, U.S. Virgin Islands",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538343017399,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018273009 +,,20267759,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267759&format=geojson,,,,",ak20267759,",3.1,ml,,ak,,"244km SE of Kodiak, Alaska",0.53,148,",ak,",reviewed,1538330437037,"M 3.1 - 244km SE of Kodiak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539110212881,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267759 +,,73091806,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091806&format=geojson,0.03189,,105.0,",nc73091806,",0.77,md,,nc,10.0,"17km E of Toms Place, CA",0.05,9,",nc,",reviewed,1538329513530,"M 0.8 - 17km E of Toms Place, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538520782420,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091806 +,,73091801,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091801&format=geojson,0.02151,,65.0,",nc73091801,",0.48,md,,nc,14.0,"1km ENE of Mammoth Lakes, CA",0.04,4,",nc,",reviewed,1538329464170,"M 0.5 - 1km ENE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538419802732,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091801 +,,73091796,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091796&format=geojson,0.00915,,77.0,",nc73091796,",0.88,md,,nc,9.0,"7km NW of The Geysers, CA",0.02,12,",nc,",automatic,1538329423700,"M 0.9 - 7km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538331843850,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091796 +,,20275042,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20275042&format=geojson,,,,",ak20275042,",0.8,ml,,ak,,"64km ENE of Cape Yakataga, Alaska",0.34,10,",ak,",reviewed,1538329296769,"M 0.8 Ice Quake - 64km ENE of Cape Yakataga, Alaska",0,ice quake,",geoserve,origin,phase-data,",-540.0,1539110212376,https://earthquake.usgs.gov/earthquakes/eventpage/ak20275042 +,,73091791,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091791&format=geojson,0.02767,,99.0,",nc73091791,",1.04,md,,nc,18.0,"13km NNE of Pinnacles, CA",0.09,17,",nc,",reviewed,1538329244730,"M 1.0 - 13km NNE of Pinnacles, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538441400506,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091791 +,,20267746,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267746&format=geojson,,,,",ak20267746,",3.3,ml,,ak,,"119km NNE of Atka, Alaska",0.8,168,",ak,",reviewed,1538329227111,"M 3.3 - 119km NNE of Atka, Alaska",0,earthquake,",geoserve,origin,phase-data,",-720.0,1539115374416,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267746 +,,20267748,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267748&format=geojson,,,,",ak20267748,",1.2,ml,,ak,,"11km ENE of Anchor Point, Alaska",0.38,22,",ak,",reviewed,1538329178072,"M 1.2 - 11km ENE of Anchor Point, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110211240,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267748 +,,73091786,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091786&format=geojson,0.02925,,79.0,",nc73091786,nn00658961,",1.45,md,,nc,28.0,"18km E of Toms Place, CA",0.06,32,",nc,nn,",reviewed,1538329136180,"M 1.5 - 18km E of Toms Place, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538455442908,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091786 +,,00658965,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658965&format=geojson,0.35,,172.1,",nn00658965,",0.9,ml,,nn,6.0,"29km WSW of Hawthorne, Nevada",0.1037,12,",nn,",reviewed,1538329134275,"M 0.9 - 29km WSW of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538331901774,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658965 +,,20267750,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267750&format=geojson,,,,",ak20267750,",1.0,ml,,ak,,"62km ESE of Sutton-Alpine, Alaska",0.69,15,",ak,",reviewed,1538329126420,"M 1.0 - 62km ESE of Sutton-Alpine, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110210696,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267750 +,,37375114,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37375114&format=geojson,0.03987,,69.0,",ci37375114,",0.82,ml,,ci,28.0,"14km SE of Anza, CA",0.14,10,",ci,",reviewed,1538329013420,"M 0.8 - 14km SE of Anza, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538402225279,https://earthquake.usgs.gov/earthquakes/eventpage/ci37375114 +,,37375106,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37375106&format=geojson,0.0432,,129.0,",ci37375106,",0.76,ml,,ci,22.0,"7km SSW of Idyllwild, CA",0.12,9,",ci,",reviewed,1538328899240,"M 0.8 - 7km SSW of Idyllwild, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538402227347,https://earthquake.usgs.gov/earthquakes/eventpage/ci37375106 +,,20267744,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267744&format=geojson,,,,",ak20267744,",1.6,ml,,ak,,"111km NNW of Arctic Village, Alaska",0.39,39,",ak,",reviewed,1538328870231,"M 1.6 - 111km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110210097,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267744 +,,37375090,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37375090&format=geojson,0.05564,,67.0,",ci37375090,",0.21,ml,,ci,10.0,"11km WSW of Anza, CA",0.07,1,",ci,",reviewed,1538328542720,"M 0.2 - 11km WSW of Anza, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538402246457,https://earthquake.usgs.gov/earthquakes/eventpage/ci37375090 +,,37375082,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37375082&format=geojson,0.006236,,93.0,",ci37375082,",0.14,ml,,ci,18.0,"10km NE of Aguanga, CA",0.09,0,",ci,",reviewed,1538328483930,"M 0.1 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538428738127,https://earthquake.usgs.gov/earthquakes/eventpage/ci37375082 +,,20267742,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267742&format=geojson,,,,",ak20267742,",1.5,ml,,ak,,"94km SW of Anchor Point, Alaska",0.24,35,",ak,",reviewed,1538328233203,"M 1.5 - 94km SW of Anchor Point, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110209538,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267742 +,,20267741,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267741&format=geojson,,,,",ak20267741,",0.8,ml,,ak,,"64km ENE of Cape Yakataga, Alaska",0.41,10,",ak,",reviewed,1538328186141,"M 0.8 Ice Quake - 64km ENE of Cape Yakataga, Alaska",0,ice quake,",geoserve,origin,phase-data,",-540.0,1539110209036,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267741 +,,00659001,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659001&format=geojson,0.12,,121.36,",nn00659001,",0.3,ml,,nn,12.0,"34km NW of Beatty, Nevada",0.1911,1,",nn,",reviewed,1538327927789,"M 0.3 - 34km NW of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538351829424,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659001 +,,1000h4pt,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h4pt&format=geojson,1.261,,219.0,",us1000h4pt,",4.5,mb,,us,,"81km SW of Acajutla, El Salvador",0.88,312,",us,",reviewed,1538327598170,"M 4.5 - 81km SW of Acajutla, El Salvador",0,earthquake,",geoserve,origin,phase-data,",-360.0,1538337122040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h4pt +,,20267739,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267739&format=geojson,,,,",ak20267739,",0.7,ml,,ak,,"129km NNE of Cape Yakataga, Alaska",0.6,8,",ak,",reviewed,1538327331310,"M 0.7 - 129km NNE of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110208456,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267739 +,,00658954,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658954&format=geojson,0.034,,70.13,",nn00658954,",1.4,ml,,nn,47.0,"27km NE of Beatty, Nevada",0.2395,30,",nn,",reviewed,1538326270599,"M 1.4 - 27km NE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538330055408,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658954 +,,60241236,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nm60241236&format=geojson,0.05463,,67.0,",nm60241236,",2.08,md,,nm,28.0,"10km SW of Blytheville, Arkansas",0.17,67,",nm,",reviewed,1538326245610,"M 2.1 - 10km SW of Blytheville, Arkansas",0,earthquake,",geoserve,origin,phase-data,",-360.0,1538398738180,https://earthquake.usgs.gov/earthquakes/eventpage/nm60241236 +,,73091766,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091766&format=geojson,0.05761,,164.0,",nc73091766,",0.77,md,,nc,9.0,"4km ENE of Pinnacles, CA",0.09,9,",nc,",reviewed,1538326237420,"M 0.8 - 4km ENE of Pinnacles, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538440887192,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091766 +,,70622577,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70622577&format=geojson,0.06289,,223.0,",hv70622577,",1.86,md,,hv,29.0,"14km SW of Leilani Estates, Hawaii",0.23,53,",hv,",automatic,1538326034740,"M 1.9 - 14km SW of Leilani Estates, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538326238770,https://earthquake.usgs.gov/earthquakes/eventpage/hv70622577 +,,37375042,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37375042&format=geojson,0.04292,,77.0,",ci37375042,",0.76,ml,,ci,12.0,"6km S of Pearblossum, CA",0.13,9,",ci,",reviewed,1538325928340,"M 0.8 - 6km S of Pearblossum, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538503173438,https://earthquake.usgs.gov/earthquakes/eventpage/ci37375042 +,,73091756,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091756&format=geojson,0.0856,,52.0,",nc73091756,",1.84,md,,nc,50.0,"10km E of Healdsburg, CA",0.12,52,",nc,",reviewed,1538325814430,"M 1.8 - 10km E of Healdsburg, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538448664056,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091756 +,2.2,73091761,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091761&format=geojson,0.1142,1.0,172.0,",nc73091761,",2.19,md,,nc,42.0,"8km E of Clearlake Oaks, CA",0.08,74,",nc,",reviewed,1538325799560,"M 2.2 - 8km E of Clearlake Oaks, CA",0,earthquake,",dyfi,focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538460783077,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091761 +,2.2,37375034,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37375034&format=geojson,0.09617,1.0,34.0,",ci37375034,",1.73,ml,,ci,69.0,"9km E of Running Springs, CA",0.14,46,",ci,",reviewed,1538325550560,"M 1.7 - 9km E of Running Springs, CA",0,earthquake,",dyfi,focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538502588540,https://earthquake.usgs.gov/earthquakes/eventpage/ci37375034 +,,37375026,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37375026&format=geojson,0.03114,,84.0,",ci37375026,",0.41,ml,,ci,16.0,"8km ENE of Aguanga, CA",0.11,3,",ci,",reviewed,1538324541410,"M 0.4 - 8km ENE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538402274720,https://earthquake.usgs.gov/earthquakes/eventpage/ci37375026 +,,80311989,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80311989&format=geojson,0.304,,110.0,",mb80311989,",1.0,ml,,mb,7.0,"1km WNW of Manhattan, Montana",0.11,15,",mb,",reviewed,1538324428730,"M 1.0 - 1km WNW of Manhattan, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538435043850,https://earthquake.usgs.gov/earthquakes/eventpage/mb80311989 +,,20267737,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267737&format=geojson,,,,",ak20267737,",1.5,ml,,ak,,"18km WSW of Redoubt Volcano, Alaska",0.34,35,",ak,",reviewed,1538324334246,"M 1.5 - 18km WSW of Redoubt Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110207853,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267737 +,,37375010,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37375010&format=geojson,0.09042,,85.0,",ci37375010,",1.02,ml,,ci,33.0,"9km NE of Cabazon, CA",0.08,16,",ci,",reviewed,1538324323040,"M 1.0 - 9km NE of Cabazon, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538425861521,https://earthquake.usgs.gov/earthquakes/eventpage/ci37375010 +,,20267730,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267730&format=geojson,,,,",ak20267730,",1.9,ml,,ak,,"78km W of Cantwell, Alaska",0.53,56,",ak,",reviewed,1538323795871,"M 1.9 - 78km W of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110207135,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267730 +,,20267729,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267729&format=geojson,,,,",ak20267729,",2.0,ml,,ak,,"76km SSW of Kaktovik, Alaska",0.49,62,",ak,",reviewed,1538323769265,"M 2.0 - 76km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110206553,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267729 +,,37374994,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37374994&format=geojson,0.09785,,35.0,",ci37374994,",2.15,ml,,ci,48.0,"16km N of Santa Paula, CA",0.28,71,",ci,",reviewed,1538323658480,"M 2.2 - 16km N of Santa Paula, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538410222140,https://earthquake.usgs.gov/earthquakes/eventpage/ci37374994 +,,1000h7kb,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h7kb&format=geojson,4.83,,89.0,",us1000h7kb,",4.6,mb,,us,,"213km SE of Hachijo-jima, Japan",1.33,326,",us,",reviewed,1538323620710,"M 4.6 - 213km SE of Hachijo-jima, Japan",0,earthquake,",geoserve,origin,phase-data,",540.0,1539103992040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h7kb +,,37374970,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37374970&format=geojson,0.003637,,167.0,",ci37374970,",0.42,ml,,ci,14.0,"10km NE of Aguanga, CA",0.1,3,",ci,",reviewed,1538323144350,"M 0.4 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538425087176,https://earthquake.usgs.gov/earthquakes/eventpage/ci37374970 +,,61789531,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61789531&format=geojson,0.02244,,109.0,",av61789531,",-0.04,ml,,av,5.0,"42km ENE of Adak, Alaska",0.04,0,",av,",reviewed,1538322963250,"M -0.0 - 42km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538434212990,https://earthquake.usgs.gov/earthquakes/eventpage/av61789531 +,,37374962,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37374962&format=geojson,0.09348,,60.0,",ci37374962,",1.53,ml,,ci,39.0,"16km N of Santa Paula, CA",0.28,36,",ci,",reviewed,1538322952430,"M 1.5 - 16km N of Santa Paula, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538424078890,https://earthquake.usgs.gov/earthquakes/eventpage/ci37374962 +,,20267728,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267728&format=geojson,,,,",ak20267728,",1.3,ml,,ak,,"30km N of Yakutat, Alaska",0.48,26,",ak,",reviewed,1538322727903,"M 1.3 Ice Quake - 30km N of Yakutat, Alaska",0,ice quake,",geoserve,origin,phase-data,",-540.0,1539110206014,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267728 +,,70622497,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70622497&format=geojson,0.04761,,203.0,",hv70622497,",1.61,md,,hv,26.0,"5km ESE of Leilani Estates, Hawaii",0.22,40,",hv,",reviewed,1538322548670,"M 1.6 - 5km ESE of Leilani Estates, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538437571130,https://earthquake.usgs.gov/earthquakes/eventpage/hv70622497 +,,20267725,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267725&format=geojson,,,,",ak20267725,",1.8,ml,,ak,,"115km NW of Arctic Village, Alaska",0.41,50,",ak,",reviewed,1538322139873,"M 1.8 - 115km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110205443,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267725 +,,20267724,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267724&format=geojson,,,,",ak20267724,",1.0,ml,,ak,,"82km NNW of Nikiski, Alaska",0.64,15,",ak,",reviewed,1538321985315,"M 1.0 - 82km NNW of Nikiski, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110204918,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267724 +,,37374954,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37374954&format=geojson,0.03135,,40.0,",ci37374954,",1.1,ml,,ci,41.0,"9km ENE of Aguanga, CA",0.16,19,",ci,",reviewed,1538321565390,"M 1.1 - 9km ENE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538402396200,https://earthquake.usgs.gov/earthquakes/eventpage/ci37374954 +,,73091746,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091746&format=geojson,0.005562,,50.0,",nc73091746,",1.31,md,,nc,37.0,"7km WNW of The Geysers, CA",0.07,26,",nc,",reviewed,1538321370940,"M 1.3 - 7km WNW of The Geysers, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538453402697,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091746 +,,20267606,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267606&format=geojson,,,,",ak20267606,",1.7,ml,,ak,,"98km NNW of Talkeetna, Alaska",0.37,44,",ak,",reviewed,1538321213381,"M 1.7 - 98km NNW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110204287,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267606 +,,61424722,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61424722&format=geojson,0.8132,,306.0,",uw61424722,",2.32,ml,,uw,10.0,"8km ESE of Oliver, Canada",0.35,83,",uw,",reviewed,1538321122540,"M 2.3 Explosion - 8km ESE of Oliver, Canada",0,explosion,",geoserve,origin,phase-data,",-480.0,1538426966230,https://earthquake.usgs.gov/earthquakes/eventpage/uw61424722 +,,61424717,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61424717&format=geojson,0.1481,,91.0,",uw61424717,",1.38,ml,,uw,19.0,"1km WNW of Bonney Lake, Washington",0.15,29,",uw,",reviewed,1538320952100,"M 1.4 - 1km WNW of Bonney Lake, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538448537820,https://earthquake.usgs.gov/earthquakes/eventpage/uw61424717 +,,20267600,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267600&format=geojson,,,,",ak20267600,",3.0,ml,,ak,,"255km SE of Kodiak, Alaska",0.61,138,",ak,",reviewed,1538320752827,"M 3.0 - 255km SE of Kodiak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539110203656,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267600 +,,80311769,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80311769&format=geojson,0.203,,330.0,",mb80311769,",1.26,ml,,mb,4.0,"13km E of Hoback, Wyoming",0.12,24,",mb,",reviewed,1538320720090,"M 1.3 - 13km E of Hoback, Wyoming",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538405874760,https://earthquake.usgs.gov/earthquakes/eventpage/mb80311769 +,,00658946,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658946&format=geojson,0.37,,94.95,",nn00658946,",1.1,ml,,nn,15.0,"30km WSW of Hawthorne, Nevada",0.1781,19,",nn,",reviewed,1538320620110,"M 1.1 - 30km WSW of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538328391329,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658946 +,,70622462,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70622462&format=geojson,0.04749,,113.0,",hv70622462,",2.23,ml,,hv,42.0,"15km SE of Volcano, Hawaii",0.11,77,",hv,",reviewed,1538320477650,"M 2.2 - 15km SE of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538440752690,https://earthquake.usgs.gov/earthquakes/eventpage/hv70622462 +,,20267599,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267599&format=geojson,,,,",ak20267599,",3.0,ml,,ak,,"244km SE of Kodiak, Alaska",0.69,138,",ak,",reviewed,1538320459683,"M 3.0 - 244km SE of Kodiak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539110203071,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267599 +,,20267598,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267598&format=geojson,,,,",ak20267598,",1.6,ml,,ak,,"81km N of Larsen Bay, Alaska",0.38,39,",ak,",reviewed,1538320445299,"M 1.6 - 81km N of Larsen Bay, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110202523,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267598 +,,61789511,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61789511&format=geojson,0.02584,,117.0,",av61789511,",-0.21,ml,,av,5.0,"42km ENE of Adak, Alaska",0.08,0,",av,",reviewed,1538320241620,"M -0.2 - 42km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538434313550,https://earthquake.usgs.gov/earthquakes/eventpage/av61789511 +,,37374930,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37374930&format=geojson,0.01478,,33.0,",ci37374930,",0.42,ml,,ci,25.0,"9km NE of Aguanga, CA",0.15,3,",ci,",reviewed,1538320092920,"M 0.4 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538415399682,https://earthquake.usgs.gov/earthquakes/eventpage/ci37374930 +,,73091741,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091741&format=geojson,0.009169,,56.0,",nc73091741,",1.04,md,,nc,13.0,"2km NE of The Geysers, CA",0.02,17,",nc,",automatic,1538320075930,"M 1.0 - 2km NE of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538325003146,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091741 +,,1000h4pb,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h4pb&format=geojson,2.478,,87.0,",us1000h4pb,",4.6,mb,,us,,"55km WNW of Kasiguncu, Indonesia",0.86,326,",us,",reviewed,1538319686970,"M 4.6 - 55km WNW of Kasiguncu, Indonesia",0,earthquake,",geoserve,origin,phase-data,",480.0,1539101261040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h4pb +,,20267595,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267595&format=geojson,,,,",ak20267595,us1000h4pa,",2.4,ml,,ak,,"68km SSW of Kaktovik, Alaska",0.58,89,",ak,us,",reviewed,1538319659421,"M 2.4 - 68km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110201879,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267595 +,,37374914,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37374914&format=geojson,0.003064,,97.0,",ci37374914,",0.27,ml,,ci,16.0,"10km NE of Aguanga, CA",0.07,1,",ci,",reviewed,1538319346000,"M 0.3 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538424588310,https://earthquake.usgs.gov/earthquakes/eventpage/ci37374914 +,,00659000,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659000&format=geojson,0.675,,142.58,",nn00659000,",1.8,ml,,nn,9.0,"56km WNW of Wells, Nevada",0.1383,50,",nn,",reviewed,1538319166027,"M 1.8 - 56km WNW of Wells, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538351088760,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659000 +,,37374906,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37374906&format=geojson,0.07902,,121.0,",ci37374906,",0.59,ml,,ci,26.0,"19km ESE of Anza, CA",0.16,5,",ci,",reviewed,1538319136480,"M 0.6 - 19km ESE of Anza, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538402398970,https://earthquake.usgs.gov/earthquakes/eventpage/ci37374906 +,,00658997,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658997&format=geojson,0.268,,115.88,",nn00658997,",0.7,ml,,nn,9.0,"37km N of Hawthorne, Nevada",0.0695,8,",nn,",reviewed,1538318873920,"M 0.7 - 37km N of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538350901764,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658997 +,,20267591,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267591&format=geojson,,,,",ak20267591,",2.3,ml,,ak,,"74km SSW of Kaktovik, Alaska",0.6,81,",ak,",reviewed,1538318712498,"M 2.3 - 74km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110201254,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267591 +,4.1,37374890,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37374890&format=geojson,0.06788,488.0,17.0,",ci37374890,us1000h4p3,",3.61,ml,4.38,ci,166.0,"4km ENE of Calimesa, CA",0.19,401,",ci,us,",reviewed,1538318489510,"M 3.6 - 4km ENE of Calimesa, CA",0,earthquake,",dyfi,focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,shakemap,",-480.0,1539100717040,https://earthquake.usgs.gov/earthquakes/eventpage/ci37374890 +,,1000h4p2,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h4p2&format=geojson,2.463,,63.0,",us1000h4p2,",4.8,mb,,us,,"54km WNW of Kasiguncu, Indonesia",0.55,354,",us,",reviewed,1538318322520,"M 4.8 - 54km WNW of Kasiguncu, Indonesia",0,earthquake,",geoserve,origin,phase-data,",480.0,1539100063040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h4p2 +,,20275022,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20275022&format=geojson,,,,",ak20275022,",1.4,ml,,ak,,"85km SW of Kaktovik, Alaska",0.43,30,",ak,",reviewed,1538318061035,"M 1.4 - 85km SW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110200725,https://earthquake.usgs.gov/earthquakes/eventpage/ak20275022 +,,73091726,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091726&format=geojson,0.06705,,307.0,",nc73091726,",0.47,md,,nc,7.0,"14km W of Toms Place, CA",0.02,3,",nc,",reviewed,1538318008020,"M 0.5 - 14km W of Toms Place, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538415966779,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091726 +,,20267588,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267588&format=geojson,,,,",ak20267588,",1.0,ml,,ak,,"67km SSW of Kobuk, Alaska",0.32,15,",ak,",reviewed,1538317712516,"M 1.0 - 67km SSW of Kobuk, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110200182,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267588 +,,20267587,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267587&format=geojson,,,,",ak20267587,",1.8,ml,,ak,,"30km SW of Tanaga Volcano, Alaska",0.47,50,",ak,",reviewed,1538317677336,"M 1.8 - 30km SW of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539110199639,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267587 +,,37374882,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37374882&format=geojson,0.08404,,61.0,",ci37374882,",0.42,ml,,ci,18.0,"9km NE of Aguanga, CA",0.22,3,",ci,",reviewed,1538317645770,"M 0.4 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538402356693,https://earthquake.usgs.gov/earthquakes/eventpage/ci37374882 +,,70622417,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70622417&format=geojson,0.03735,,49.0,",hv70622417,",1.43,md,,hv,34.0,"22km ENE of Honaunau-Napoopoo, Hawaii",0.14,31,",hv,",reviewed,1538317579070,"M 1.4 - 22km ENE of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538378093210,https://earthquake.usgs.gov/earthquakes/eventpage/hv70622417 +,,73091721,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091721&format=geojson,0.06259,,195.0,",nc73091721,",0.66,md,,nc,16.0,"14km WSW of Toms Place, CA",0.13,7,",nc,",reviewed,1538317426420,"M 0.7 - 14km WSW of Toms Place, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538415815921,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091721 +,,73091716,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091716&format=geojson,0.008459,,96.0,",nc73091716,",0.81,md,,nc,9.0,"9km WNW of Cobb, CA",0.01,10,",nc,",automatic,1538317248560,"M 0.8 - 9km WNW of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538319424577,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091716 +,,20267580,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267580&format=geojson,,,,",ak20267580,",1.7,ml,,ak,,"93km NNW of Talkeetna, Alaska",0.49,44,",ak,",reviewed,1538317170187,"M 1.7 - 93km NNW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110198998,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267580 +,,20267578,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267578&format=geojson,,,,",ak20267578,",2.0,ml,,ak,,"75km SSW of Kaktovik, Alaska",0.51,62,",ak,",reviewed,1538316929460,"M 2.0 - 75km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110198398,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267578 +,,20267575,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267575&format=geojson,,,,",ak20267575,",0.9,ml,,ak,,"6km NE of Y, Alaska",0.77,12,",ak,",reviewed,1538316543271,"M 0.9 - 6km NE of Y, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110197834,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267575 +,,20275016,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20275016&format=geojson,,,,",ak20275016,",1.7,ml,,ak,,"81km SSW of Kaktovik, Alaska",0.49,44,",ak,",reviewed,1538316430826,"M 1.7 - 81km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110197289,https://earthquake.usgs.gov/earthquakes/eventpage/ak20275016 +,,20267574,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267574&format=geojson,,,,",ak20267574,",0.6,ml,,ak,,"61km NW of Cape Yakataga, Alaska",0.25,6,",ak,",reviewed,1538316281190,"M 0.6 - 61km NW of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110196767,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267574 +,,1000h7jy,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h7jy&format=geojson,4.227,,71.0,",us1000h7jy,",4.2,mb,,us,,"182km NW of Neiafu, Tonga",1.14,271,",us,",reviewed,1538316100370,"M 4.2 - 182km NW of Neiafu, Tonga",0,earthquake,",geoserve,origin,phase-data,",-720.0,1539099795040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h7jy +,,70622377,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70622377&format=geojson,0.008888,,48.0,",hv70622377,",1.8,md,,hv,18.0,"4km WSW of Volcano, Hawaii",0.12,50,",hv,",automatic,1538315212140,"M 1.8 - 4km WSW of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538315551910,https://earthquake.usgs.gov/earthquakes/eventpage/hv70622377 +,,00658928,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658928&format=geojson,0.093,,181.4,",nn00658928,",0.7,ml,,nn,33.0,"31km NNE of Beatty, Nevada",0.2153,8,",nn,",reviewed,1538315108115,"M 0.7 - 31km NNE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538328019987,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658928 +,,37374866,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37374866&format=geojson,0.01236,,68.0,",ci37374866,",0.32,ml,,ci,16.0,"9km NE of Aguanga, CA",0.13,2,",ci,",reviewed,1538314988070,"M 0.3 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538402372873,https://earthquake.usgs.gov/earthquakes/eventpage/ci37374866 +,,70622372,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70622372&format=geojson,0.03226,,44.0,",hv70622372,us1000h4ne,",2.66,ml,,hv,51.0,"22km ENE of Honaunau-Napoopoo, Hawaii",0.13,109,",hv,us,",reviewed,1538314781780,"M 2.7 - 22km ENE of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539098816040,https://earthquake.usgs.gov/earthquakes/eventpage/hv70622372 +,,37374858,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37374858&format=geojson,0.02035,,32.0,",ci37374858,",0.8,ml,,ci,40.0,"9km NE of Aguanga, CA",0.2,10,",ci,",reviewed,1538314634980,"M 0.8 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538424805940,https://earthquake.usgs.gov/earthquakes/eventpage/ci37374858 +,,00658994,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658994&format=geojson,0.035,,176.46,",nn00658994,",0.1,ml,,nn,11.0,"50km ENE of Beatty, Nevada",0.2386,0,",nn,",reviewed,1538314523613,"M 0.1 - 50km ENE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538350531441,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658994 +,,61424702,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61424702&format=geojson,0.07682,,201.0,",uw61424702,",0.53,ml,,uw,8.0,"5km SW of Des Moines, Washington",0.11,4,",uw,",reviewed,1538314463740,"M 0.5 - 5km SW of Des Moines, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538448100120,https://earthquake.usgs.gov/earthquakes/eventpage/uw61424702 +,,1000h4n4,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h4n4&format=geojson,,,66.0,",us1000h4n4,",2.4,ml,,us,,"35km NW of Fairview, Oklahoma",0.33,89,",us,",reviewed,1538314235700,"M 2.4 - 35km NW of Fairview, Oklahoma",0,earthquake,",geoserve,origin,phase-data,",-360.0,1539098748040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h4n4 +,,20267558,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267558&format=geojson,,,,",ak20267558,",1.3,ml,,ak,,"40km NNE of Sutton-Alpine, Alaska",0.69,26,",ak,",reviewed,1538314048245,"M 1.3 - 40km NNE of Sutton-Alpine, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110196210,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267558 +,,1000h4n3,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h4n3&format=geojson,4.127,,129.0,",us1000h4n3,",4.7,mb,,us,,"77km ESE of Kuh Sefid, Iran",0.63,340,",us,",reviewed,1538313807740,"M 4.7 - 77km ESE of Kuh Sefid, Iran",0,earthquake,",geoserve,origin,phase-data,",210.0,1539098494040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h4n3 +,,70622357,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70622357&format=geojson,0.0349,,44.0,",hv70622357,",2.12,ml,,hv,41.0,"22km ENE of Honaunau-Napoopoo, Hawaii",0.12,69,",hv,",reviewed,1538313737630,"M 2.1 - 22km ENE of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538398007710,https://earthquake.usgs.gov/earthquakes/eventpage/hv70622357 +,,1000h4mx,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h4mx&format=geojson,0.876,,69.0,",us1000h4mx,",4.9,mb,,us,,"14km S of Palaikastron, Greece",0.81,369,",us,",reviewed,1538313357300,"M 4.9 - 14km S of Palaikastron, Greece",0,earthquake,",geoserve,origin,phase-data,",120.0,1539098389040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h4mx +,,73091701,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091701&format=geojson,0.03512,,115.0,",nc73091701,",0.66,md,,nc,19.0,"11km ENE of Mammoth Lakes, CA",0.06,7,",nc,",reviewed,1538313194420,"M 0.7 - 11km ENE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538414282934,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091701 +,,1000h7jx,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h7jx&format=geojson,3.759,,77.0,",us1000h7jx,",4.4,mb,,us,,"292km NNE of Ndoi Island, Fiji",0.67,298,",us,",reviewed,1538313086460,"M 4.4 - 292km NNE of Ndoi Island, Fiji",0,earthquake,",geoserve,origin,phase-data,",-720.0,1539098088040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h7jx +,,37374842,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37374842&format=geojson,0.006331,,212.0,",ci37374842,",0.22,ml,,ci,10.0,"6km SE of Coso Junction, CA",0.11,1,",ci,",reviewed,1538313068960,"M 0.2 - 6km SE of Coso Junction, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538421091388,https://earthquake.usgs.gov/earthquakes/eventpage/ci37374842 +,,73091706,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091706&format=geojson,0.01066,,188.0,",nc73091706,",0.18,md,,nc,8.0,"4km SW of Mammoth Lakes, CA",0.03,0,",nc,",reviewed,1538313054570,"M 0.2 - 4km SW of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538419204228,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091706 +,,20275013,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20275013&format=geojson,,,,",ak20275013,",1.9,ml,,ak,,"79km SW of Kaktovik, Alaska",0.5,56,",ak,",reviewed,1538312971984,"M 1.9 - 79km SW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110195663,https://earthquake.usgs.gov/earthquakes/eventpage/ak20275013 +,,20267554,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267554&format=geojson,,,,",ak20267554,",1.1,ml,,ak,,"39km W of Willow, Alaska",0.25,19,",ak,",reviewed,1538312883059,"M 1.1 - 39km W of Willow, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110195078,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267554 +,,37374834,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37374834&format=geojson,0.07813,,153.0,",ci37374834,",0.66,ml,,ci,12.0,"2km SE of Loma Linda, CA",0.13,7,",ci,",reviewed,1538312666050,"M 0.7 - 2km SE of Loma Linda, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538425497602,https://earthquake.usgs.gov/earthquakes/eventpage/ci37374834 +,,73091696,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091696&format=geojson,0.01577,,97.0,",nc73091696,",0.78,md,,nc,19.0,"9km E of Mammoth Lakes, CA",0.03,9,",nc,",reviewed,1538312525880,"M 0.8 - 9km E of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538442302916,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091696 +,,2018273006,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018273006&format=geojson,0.0677,,330.0,",pr2018273006,",1.31,md,,pr,3.0,"8km S of La Parguera, Puerto Rico",0.08,26,",pr,",reviewed,1538312237810,"M 1.3 - 8km S of La Parguera, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538321990759,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018273006 +,,00658993,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658993&format=geojson,0.314,,146.24,",nn00658993,",1.1,ml,,nn,9.0,"64km ENE of Fallon, Nevada",0.143,19,",nn,",reviewed,1538312213326,"M 1.1 - 64km ENE of Fallon, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538350161935,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658993 +,,20267551,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267551&format=geojson,,,,",ak20267551,",1.5,ml,,ak,,"114km W of Cantwell, Alaska",0.43,35,",ak,",reviewed,1538312129525,"M 1.5 - 114km W of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110194460,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267551 +,,1000h7jw,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h7jw&format=geojson,3.795,,125.0,",us1000h7jw,",4.4,mb,,us,,"276km NNE of Ndoi Island, Fiji",0.32,298,",us,",reviewed,1538311733980,"M 4.4 - 276km NNE of Ndoi Island, Fiji",0,earthquake,",geoserve,origin,phase-data,",-720.0,1539351178040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h7jw +,,20267549,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267549&format=geojson,,,,",ak20267549,",1.5,ml,,ak,,"91km NE of Kobuk, Alaska",0.39,35,",ak,",reviewed,1538311733421,"M 1.5 - 91km NE of Kobuk, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110193903,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267549 +,,73091691,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091691&format=geojson,0.03401,,159.0,",nc73091691,",0.23,md,,nc,10.0,"11km ENE of Mammoth Lakes, CA",0.04,1,",nc,",reviewed,1538310928910,"M 0.2 - 11km ENE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538415304350,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091691 +,,20267548,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267548&format=geojson,,,,",ak20267548,",1.2,ml,,ak,,"29km SW of Tanaga Volcano, Alaska",0.43,22,",ak,",reviewed,1538310192006,"M 1.2 - 29km SW of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539110193394,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267548 +,,73091686,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091686&format=geojson,0.01344,,67.0,",nc73091686,",0.86,md,,nc,23.0,"1km NNE of The Geysers, CA",0.05,11,",nc,",reviewed,1538310146470,"M 0.9 - 1km NNE of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538430785136,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091686 +,,20267545,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267545&format=geojson,,,,",ak20267545,",1.7,ml,,ak,,"82km WSW of Cantwell, Alaska",0.46,44,",ak,",reviewed,1538309506783,"M 1.7 - 82km WSW of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110192722,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267545 +,,00658990,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658990&format=geojson,0.106,,187.88,",nn00658990,",0.0,ml,,nn,5.0,"31km WNW of Gabbs, Nevada",0.0571,0,",nn,",reviewed,1538309376659,"M 0.0 - 31km WNW of Gabbs, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538348869549,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658990 +,,80311764,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80311764&format=geojson,0.312,,88.0,",mb80311764,",1.96,ml,,mb,24.0,"1km W of Manhattan, Montana",0.24,59,",mb,",reviewed,1538309192090,"M 2.0 - 1km W of Manhattan, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538403490400,https://earthquake.usgs.gov/earthquakes/eventpage/mb80311764 +,,37374818,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37374818&format=geojson,0.1431,,66.0,",ci37374818,",0.71,ml,,ci,31.0,"16km ESE of Julian, CA",0.19,8,",ci,",reviewed,1538308686340,"M 0.7 - 16km ESE of Julian, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538426365216,https://earthquake.usgs.gov/earthquakes/eventpage/ci37374818 +,,37374810,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37374810&format=geojson,0.1326,,111.0,",ci37374810,",1.09,ml,,ci,16.0,"22km ESE of Bodfish, CA",0.12,18,",ci,",reviewed,1538308426910,"M 1.1 - 22km ESE of Bodfish, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538501538996,https://earthquake.usgs.gov/earthquakes/eventpage/ci37374810 +,,37374802,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37374802&format=geojson,0.01656,,33.0,",ci37374802,",0.55,ml,,ci,31.0,"9km NE of Aguanga, CA",0.13,5,",ci,",reviewed,1538308205220,"M 0.6 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538501432830,https://earthquake.usgs.gov/earthquakes/eventpage/ci37374802 +,,37374794,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37374794&format=geojson,0.01661,,33.0,",ci37374794,",0.88,ml,,ci,38.0,"9km NE of Aguanga, CA",0.17,12,",ci,",reviewed,1538307979960,"M 0.9 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538402468140,https://earthquake.usgs.gov/earthquakes/eventpage/ci37374794 +,,20267544,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267544&format=geojson,,,,",ak20267544,",0.8,ml,,ak,,"23km E of Talkeetna, Alaska",0.72,10,",ak,",reviewed,1538307885920,"M 0.8 - 23km E of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110192188,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267544 +,,37374786,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37374786&format=geojson,0.01907,,31.0,",ci37374786,",1.26,ml,,ci,51.0,"8km NE of Aguanga, CA",0.21,24,",ci,",reviewed,1538307882580,"M 1.3 - 8km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538402465490,https://earthquake.usgs.gov/earthquakes/eventpage/ci37374786 +,,37410965,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37410965&format=geojson,0.06922,,109.0,",ci37410965,",-0.27,ml,,ci,12.0,"10km SW of Anza, CA",0.09,0,",ci,",reviewed,1538307758360,"M -0.3 - 10km SW of Anza, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538416326012,https://earthquake.usgs.gov/earthquakes/eventpage/ci37410965 +,,37410957,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37410957&format=geojson,0.02788,,106.0,",ci37410957,",0.17,ml,,ci,20.0,"9km NE of Aguanga, CA",0.11,0,",ci,",reviewed,1538307726590,"M 0.2 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538415613122,https://earthquake.usgs.gov/earthquakes/eventpage/ci37410957 +,,37374778,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37374778&format=geojson,0.01446,,36.0,",ci37374778,",0.47,ml,,ci,32.0,"9km NE of Aguanga, CA",0.17,3,",ci,",reviewed,1538307686730,"M 0.5 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538414800400,https://earthquake.usgs.gov/earthquakes/eventpage/ci37374778 +,,61424687,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61424687&format=geojson,0.2505,,84.0,",uw61424687,",1.36,ml,,uw,17.0,"5km NW of Point Roberts, Washington",0.17,28,",uw,",reviewed,1538307601060,"M 1.4 - 5km NW of Point Roberts, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538449104420,https://earthquake.usgs.gov/earthquakes/eventpage/uw61424687 +,,70622222,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70622222&format=geojson,0.1725,,166.0,",hv70622222,",1.76,md,,hv,28.0,"5km SE of Pahala, Hawaii",0.13,48,",hv,",reviewed,1538307484530,"M 1.8 - 5km SE of Pahala, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538445648400,https://earthquake.usgs.gov/earthquakes/eventpage/hv70622222 +,,20267542,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267542&format=geojson,,,,",ak20267542,",1.4,ml,,ak,,"114km NNW of Arctic Village, Alaska",0.35,30,",ak,",reviewed,1538307286144,"M 1.4 - 114km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110191656,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267542 +,,37374770,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37374770&format=geojson,0.007614,,46.0,",ci37374770,",0.37,ml,,ci,21.0,"9km NE of Aguanga, CA",0.12,2,",ci,",reviewed,1538307219670,"M 0.4 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538402437743,https://earthquake.usgs.gov/earthquakes/eventpage/ci37374770 +,,37374762,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37374762&format=geojson,0.02572,,37.0,",ci37374762,",0.76,ml,,ci,32.0,"4km SSE of Lake Henshaw, CA",0.14,9,",ci,",reviewed,1538307043060,"M 0.8 - 4km SSE of Lake Henshaw, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538501063860,https://earthquake.usgs.gov/earthquakes/eventpage/ci37374762 +,,1000h9jd,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h9jd&format=geojson,2.214,,199.0,",ak20267536,us1000h9jd,",3.6,ml,,us,,"248km SE of Kodiak, Alaska",0.7,199,",ak,us,",reviewed,1538306702700,"M 3.6 - 248km SE of Kodiak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539350542040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h9jd +,,60241231,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nm60241231&format=geojson,0.05609,,49.0,",nm60241231,",1.68,md,,nm,16.0,"2km ENE of Caruthersville, Missouri",0.05,43,",nm,",reviewed,1538306428830,"M 1.7 - 2km ENE of Caruthersville, Missouri",0,earthquake,",geoserve,origin,phase-data,",-360.0,1538399331690,https://earthquake.usgs.gov/earthquakes/eventpage/nm60241231 +,,37374754,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37374754&format=geojson,0.02433,,34.0,",ci37374754,",1.34,ml,,ci,57.0,"8km NE of Aguanga, CA",0.18,28,",ci,",reviewed,1538306396780,"M 1.3 - 8km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538402532540,https://earthquake.usgs.gov/earthquakes/eventpage/ci37374754 +,,1000h4li,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h4li&format=geojson,1.489,,74.0,",us1000h4li,",4.3,mb,,us,,"104km W of San Antonio de los Cobres, Argentina",1.04,284,",us,",reviewed,1538306234310,"M 4.3 - 104km W of San Antonio de los Cobres, Argentina",0,earthquake,",geoserve,origin,phase-data,",-180.0,1539350300040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h4li +,,37374746,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37374746&format=geojson,0.09468,,68.0,",ci37374746,",1.25,ml,,ci,21.0,"3km WNW of Lamont, CA",0.17,24,",ci,",reviewed,1538305870570,"M 1.3 - 3km WNW of Lamont, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538500677613,https://earthquake.usgs.gov/earthquakes/eventpage/ci37374746 +,,70251633,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ismpkansas70251633&format=geojson,0.1367,,165.0,",ismpkansas70251633,",2.14,ml,,ismpkansas,12.0,"12km SW of Wellington, Kansas",0.04,70,",ismpkansas,",reviewed,1538305763640,"M 2.1 - 12km SW of Wellington, Kansas",0,earthquake,",geoserve,origin,phase-data,",-360.0,1538438915830,https://earthquake.usgs.gov/earthquakes/eventpage/ismpkansas70251633 +,,37374738,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37374738&format=geojson,0.01423,,32.0,",ci37374738,",0.93,ml,,ci,31.0,"9km NE of Aguanga, CA",0.15,13,",ci,",reviewed,1538305457960,"M 0.9 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538402538980,https://earthquake.usgs.gov/earthquakes/eventpage/ci37374738 +,,73091676,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091676&format=geojson,0.0163,,84.0,",nc73091676,",0.5,md,,nc,20.0,"4km WNW of Parkfield, CA",0.06,4,",nc,",reviewed,1538305413930,"M 0.5 - 4km WNW of Parkfield, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538445793198,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091676 +,,20267482,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267482&format=geojson,,,,",ak20267482,",1.2,ml,,ak,,"93km WNW of Arctic Village, Alaska",0.46,22,",ak,",reviewed,1538305387442,"M 1.2 - 93km WNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110190412,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267482 +,,80311959,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80311959&format=geojson,0.074,,94.0,",mb80311959,",0.28,md,,mb,9.0,"15km NNW of Polson, Montana",0.17,1,",mb,",reviewed,1538305294730,"M 0.3 - 15km NNW of Polson, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538432294090,https://earthquake.usgs.gov/earthquakes/eventpage/mb80311959 +,,37374730,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37374730&format=geojson,0.0137,,33.0,",ci37374730,",0.54,ml,,ci,24.0,"9km NE of Aguanga, CA",0.16,4,",ci,",reviewed,1538305264440,"M 0.5 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538402535780,https://earthquake.usgs.gov/earthquakes/eventpage/ci37374730 +,,20267472,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267472&format=geojson,,,,",ak20267472,",1.7,ml,,ak,,"113km NNW of Arctic Village, Alaska",0.65,44,",ak,",reviewed,1538305190513,"M 1.7 - 113km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110189828,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267472 +,,1000h9jc,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h9jc&format=geojson,2.196,,214.0,",ak20267470,us1000h9jc,",3.0,ml,,us,,"245km SE of Kodiak, Alaska",0.47,138,",ak,us,",reviewed,1538305077050,"M 3.0 - 245km SE of Kodiak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539349991040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h9jc +,,1000h9jb,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h9jb&format=geojson,2.177,,213.0,",ak20267467,us1000h9jb,",3.0,ml,,us,,"243km SE of Kodiak, Alaska",0.58,138,",ak,us,",reviewed,1538304900260,"M 3.0 - 243km SE of Kodiak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539349182040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h9jb +,,20267465,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267465&format=geojson,,,,",ak20267465,",1.1,ml,,ak,,"24km E of Talkeetna, Alaska",0.71,19,",ak,",reviewed,1538304827675,"M 1.1 - 24km E of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110188064,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267465 +,,20267463,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267463&format=geojson,,,,",ak20267463,",1.5,ml,,ak,,"61km E of Sutton-Alpine, Alaska",0.72,35,",ak,",reviewed,1538304760376,"M 1.5 - 61km E of Sutton-Alpine, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110187421,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267463 +green,2.2,1000h4l1,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h4l1&format=geojson,3.728,1.0,23.0,",at00pfv7ja,us1000h4l1,pt18273000,",6.7,mww,2.83,us,,"263km NNE of Ndoi Island, Fiji",1.11,691,",at,us,pt,",reviewed,1538304744240,"M 6.7 - 263km NNE of Ndoi Island, Fiji",1,earthquake,",dyfi,geoserve,impact-link,losspager,moment-tensor,origin,phase-data,shakemap,",-720.0,1539348741510,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h4l1 +,,20267461,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267461&format=geojson,,,,",ak20267461,",1.7,ml,,ak,,"115km NNW of Arctic Village, Alaska",0.74,44,",ak,",reviewed,1538304657961,"M 1.7 - 115km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110186843,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267461 +,,20267458,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267458&format=geojson,,,,",ak20267458,",2.4,ml,,ak,,"41km N of Atka, Alaska",0.59,89,",ak,",reviewed,1538304493895,"M 2.4 - 41km N of Atka, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539115373885,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267458 +,,20267457,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267457&format=geojson,,,,",ak20267457,",1.4,ml,,ak,,"109km NNW of Arctic Village, Alaska",0.45,30,",ak,",reviewed,1538304388289,"M 1.4 - 109km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110185789,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267457 +,,73091661,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091661&format=geojson,0.02943,,161.0,",nc73091661,",0.56,md,,nc,7.0,"2km W of Los Altos Hills, CA",0.03,5,",nc,",reviewed,1538304102970,"M 0.6 - 2km W of Los Altos Hills, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538441880984,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091661 +,,20274995,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20274995&format=geojson,,,,",ak20274995,",1.0,ml,,ak,,"28km N of Anchor Point, Alaska",0.23,15,",ak,",reviewed,1538303992671,"M 1.0 - 28km N of Anchor Point, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110185255,https://earthquake.usgs.gov/earthquakes/eventpage/ak20274995 +,,70622137,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70622137&format=geojson,0.1089,,160.0,",hv70622137,",1.87,md,,hv,29.0,"4km S of Pahala, Hawaii",0.18,54,",hv,",automatic,1538303962750,"M 1.9 - 4km S of Pahala, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538304154960,https://earthquake.usgs.gov/earthquakes/eventpage/hv70622137 +,,20267451,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267451&format=geojson,,,,",ak20267451,",2.3,ml,,ak,,"112km NNW of Arctic Village, Alaska",0.68,81,",ak,",reviewed,1538303927023,"M 2.3 - 112km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110184606,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267451 +,,20267449,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267449&format=geojson,,,,",ak20267449,",1.3,ml,,ak,,"48km WNW of Talkeetna, Alaska",0.31,26,",ak,",reviewed,1538303826271,"M 1.3 - 48km WNW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110183994,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267449 +,,20267447,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267447&format=geojson,,,,",ak20267447,",0.8,ml,,ak,,"14km NNW of North Nenana, Alaska",0.59,10,",ak,",reviewed,1538303731924,"M 0.8 - 14km NNW of North Nenana, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110183417,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267447 +,,20274991,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20274991&format=geojson,,,,",ak20274991,",0.8,ml,,ak,,"80km NNW of Cape Yakataga, Alaska",0.35,10,",ak,",reviewed,1538303430945,"M 0.8 - 80km NNW of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110182869,https://earthquake.usgs.gov/earthquakes/eventpage/ak20274991 +,,20274990,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20274990&format=geojson,,,,",ak20274990,",1.6,ml,,ak,,"114km NW of Arctic Village, Alaska",0.47,39,",ak,",reviewed,1538303422854,"M 1.6 - 114km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110182342,https://earthquake.usgs.gov/earthquakes/eventpage/ak20274990 +,,37374722,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37374722&format=geojson,0.01219,,67.0,",ci37374722,",0.36,ml,,ci,19.0,"9km NE of Aguanga, CA",0.13,2,",ci,",reviewed,1538303195790,"M 0.4 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538402475359,https://earthquake.usgs.gov/earthquakes/eventpage/ci37374722 +,,00658989,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658989&format=geojson,0.116,,152.76,",nn00658989,",0.5,ml,,nn,13.0,"33km NW of Beatty, Nevada",0.1457,4,",nn,",reviewed,1538303172850,"M 0.5 - 33km NW of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538348499433,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658989 +,2.0,37374714,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37374714&format=geojson,0.01053,2.0,30.0,",ci37374714,",1.53,ml,,ci,59.0,"9km NE of Aguanga, CA",0.19,36,",ci,",reviewed,1538303007880,"M 1.5 - 9km NE of Aguanga, CA",0,earthquake,",dyfi,focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538402604950,https://earthquake.usgs.gov/earthquakes/eventpage/ci37374714 +,,1000h9j9,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h9j9&format=geojson,2.292,,238.0,",ak20267440,us1000h9j9,",3.3,ml,,us,,"260km SE of Kodiak, Alaska",0.73,168,",ak,us,",reviewed,1538302937770,"M 3.3 - 260km SE of Kodiak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539348300040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h9j9 +,,1000h4kr,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h4kr&format=geojson,2.252,,199.0,",ak20267431,us1000h4kr,",3.5,ml,,us,,"253km SE of Kodiak, Alaska",0.81,188,",ak,us,",reviewed,1538302543900,"M 3.5 - 253km SE of Kodiak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539348131040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h4kr +,,37374706,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37374706&format=geojson,0.08409,,118.0,",ci37374706,",0.76,ml,,ci,29.0,"9km N of Borrego Springs, CA",0.23,9,",ci,",reviewed,1538302543090,"M 0.8 - 9km N of Borrego Springs, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538402491044,https://earthquake.usgs.gov/earthquakes/eventpage/ci37374706 +,,20267429,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267429&format=geojson,,,,",ak20267429,",2.3,ml,,ak,,"91km E of Nikolski, Alaska",0.51,81,",ak,",reviewed,1538302531510,"M 2.3 - 91km E of Nikolski, Alaska",0,earthquake,",geoserve,origin,phase-data,",-660.0,1539110139668,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267429 +,,1000h9j7,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h9j7&format=geojson,2.193,,228.0,",ak20267428,us1000h9j7,",3.2,ml,,us,,"245km SE of Kodiak, Alaska",0.64,158,",ak,us,",reviewed,1538302418680,"M 3.2 - 245km SE of Kodiak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539347936040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h9j7 +,,1000h7jt,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h7jt&format=geojson,1.586,,139.0,",us1000h7jt,",4.3,mb,,us,,"90km N of Palu, Indonesia",0.69,284,",us,",reviewed,1538302412720,"M 4.3 - 90km N of Palu, Indonesia",0,earthquake,",geoserve,origin,phase-data,",480.0,1539347777040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h7jt +,,73091651,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091651&format=geojson,0.02085,,131.0,",nc73091651,",0.67,md,,nc,14.0,"7km SE of Mammoth Lakes, CA",0.07,7,",nc,",reviewed,1538302280830,"M 0.7 - 7km SE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538418603385,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091651 +,,20274985,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20274985&format=geojson,,,,",ak20274985,",1.2,ml,,ak,,"108km NNW of Arctic Village, Alaska",0.39,22,",ak,",reviewed,1538302069148,"M 1.2 - 108km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110138587,https://earthquake.usgs.gov/earthquakes/eventpage/ak20274985 +,,61424667,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61424667&format=geojson,0.08823,,54.0,",uw61424667,",1.23,ml,,uw,16.0,"18km ENE of North Cowichan, Canada",0.21,23,",uw,",reviewed,1538301914110,"M 1.2 - 18km ENE of North Cowichan, Canada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538449451510,https://earthquake.usgs.gov/earthquakes/eventpage/uw61424667 +,,1000h9j6,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h9j6&format=geojson,2.181,,215.0,",ak20274984,us1000h9j6,",2.9,ml,,us,,"245km SE of Kodiak, Alaska",0.55,129,",ak,us,",reviewed,1538301840820,"M 2.9 - 245km SE of Kodiak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539347591040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h9j6 +,,1000h9j5,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h9j5&format=geojson,2.32,,263.0,",ak20274983,us1000h9j5,",2.8,ml,,us,,"261km SE of Kodiak, Alaska",0.78,121,",ak,us,",reviewed,1538301670420,"M 2.8 - 261km SE of Kodiak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539347496040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h9j5 +,,61789371,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61789371&format=geojson,0.007621,,130.0,",av61789371,",-0.52,ml,,av,4.0,"41km ENE of Adak, Alaska",0.08,0,",av,",reviewed,1538301347340,"M -0.5 - 41km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538433384540,https://earthquake.usgs.gov/earthquakes/eventpage/av61789371 +,,1000h9j4,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h9j4&format=geojson,2.205,,215.0,",ak20267424,us1000h9j4,",3.4,ml,,us,,"247km SE of Kodiak, Alaska",0.38,178,",ak,us,",reviewed,1538301175470,"M 3.4 - 247km SE of Kodiak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539345822040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h9j4 +,,1000h4kh,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h4kh&format=geojson,2.344,,202.0,",ak20267416,us1000h4kh,",3.6,ml,,us,,"267km SE of Kodiak, Alaska",0.73,199,",ak,us,",reviewed,1538301032240,"M 3.6 - 267km SE of Kodiak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539345645040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h4kh +,,1000h4kk,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h4kk&format=geojson,0.735,,116.0,",us1000h4kk,",4.6,mb,,us,,"84km NNW of Raoul Island, New Zealand",0.72,326,",us,",reviewed,1538300542510,"M 4.6 - 84km NNW of Raoul Island, New Zealand",0,earthquake,",geoserve,origin,phase-data,",-720.0,1539345492040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h4kk +,,1000h4kd,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h4kd&format=geojson,2.215,,151.0,",ak20267403,us1000h4kd,",4.2,mb,,us,,"250km SE of Kodiak, Alaska",0.82,271,",ak,us,",reviewed,1538300419970,"M 4.2 - 250km SE of Kodiak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539345328040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h4kd +,,1000h4ke,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h4ke&format=geojson,1.578,,130.0,",us1000h4ke,",4.6,mb,,us,,"110km NW of Tobelo, Indonesia",0.74,326,",us,",reviewed,1538300152700,"M 4.6 - 110km NW of Tobelo, Indonesia",0,earthquake,",geoserve,origin,phase-data,",480.0,1539345160040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h4ke +,,73091646,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091646&format=geojson,0.007823,,54.0,",nc73091646,",1.15,md,,nc,29.0,"7km WNW of Cobb, CA",0.03,20,",nc,",reviewed,1538300089300,"M 1.2 - 7km WNW of Cobb, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538463363351,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091646 +,,37374698,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37374698&format=geojson,0.08826,,55.0,",ci37374698,",0.69,ml,,ci,21.0,"1km E of San Jacinto, CA",0.15,7,",ci,",reviewed,1538299841320,"M 0.7 - 1km E of San Jacinto, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538402510040,https://earthquake.usgs.gov/earthquakes/eventpage/ci37374698 +,,1000h4k9,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h4k9&format=geojson,2.222,,200.0,",ak20267399,us1000h4k9,",3.5,ml,,us,,"250km SE of Kodiak, Alaska",0.76,188,",ak,us,",reviewed,1538299747260,"M 3.5 - 250km SE of Kodiak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539344803040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h4k9 +,,70805309,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70805309&format=geojson,0.06534,,181.0,",av70805309,",0.08,ml,,av,5.0,"54km NNE of Chitina, Alaska",0.27,0,",av,",reviewed,1538299390300,"M 0.1 - 54km NNE of Chitina, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538433223440,https://earthquake.usgs.gov/earthquakes/eventpage/av70805309 +,,20267397,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267397&format=geojson,,,,",ak20267397,",0.8,ml,,ak,,"52km WSW of Tok, Alaska",0.36,10,",ak,",reviewed,1538299354056,"M 0.8 - 52km WSW of Tok, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110133622,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267397 +,,00658984,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658984&format=geojson,0.039,,58.11,",nn00658984,",-0.3,ml,,nn,14.0,"48km ESE of Beatty, Nevada",0.182,0,",nn,",reviewed,1538299259661,"M -0.3 - 48km ESE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538346654487,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658984 +,,20267396,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267396&format=geojson,,,,",ak20267396,",0.9,ml,,ak,,"61km E of Cape Yakataga, Alaska",0.19,12,",ak,",reviewed,1538299230333,"M 0.9 Ice Quake - 61km E of Cape Yakataga, Alaska",0,ice quake,",geoserve,origin,phase-data,",-540.0,1539110133003,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267396 +,,20267395,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267395&format=geojson,,,,",ak20267395,",1.4,ml,,ak,,"106km NW of Arctic Village, Alaska",0.3,30,",ak,",reviewed,1538298970075,"M 1.4 - 106km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110132424,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267395 +,,00658983,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658983&format=geojson,0.349,,190.59,",nn00658983,",1.8,ml,,nn,5.0,"51km S of Winnemucca, Nevada",0.2446,50,",nn,",reviewed,1538298942819,"M 1.8 - 51km S of Winnemucca, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538345914484,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658983 +,,70622052,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70622052&format=geojson,0.03257,,143.0,",hv70622052,",1.77,md,,hv,51.0,"4km ESE of Pahala, Hawaii",0.1,48,",hv,",reviewed,1538298876190,"M 1.8 - 4km ESE of Pahala, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538439871890,https://earthquake.usgs.gov/earthquakes/eventpage/hv70622052 +,,20267392,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267392&format=geojson,,,,",ak20267392,",1.9,ml,,ak,,"75km SSW of Kaktovik, Alaska",0.47,56,",ak,",reviewed,1538298871378,"M 1.9 - 75km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110131803,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267392 +,,73091641,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091641&format=geojson,0.01127,,103.0,",nc73091641,",0.47,md,,nc,9.0,"4km W of Cobb, CA",0.02,3,",nc,",automatic,1538298440000,"M 0.5 - 4km W of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538303702894,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091641 +,,1000h9j3,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h9j3&format=geojson,2.416,,196.0,",ak20274974,us1000h9j3,",2.8,ml,,us,,"261km SE of Kodiak, Alaska",0.53,121,",ak,us,",reviewed,1538298293430,"M 2.8 - 261km SE of Kodiak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539344235040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h9j3 +,,37374690,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37374690&format=geojson,0.01674,,57.0,",ci37374690,",1.08,ml,,ci,19.0,"13km E of Jamul, CA",0.14,18,",ci,",reviewed,1538297857030,"M 1.1 - 13km E of Jamul, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538402512947,https://earthquake.usgs.gov/earthquakes/eventpage/ci37374690 +,4.1,1000h4k1,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h4k1&format=geojson,0.959,11.0,66.0,",us1000h4k1,",5.0,mww,,us,,"33km NW of Shizunai, Japan",1.0,389,",us,",reviewed,1538297644770,"M 5.0 - 33km NW of Shizunai, Japan",0,earthquake,",dyfi,geoserve,origin,phase-data,",540.0,1538361706229,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h4k1 +,,37374682,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37374682&format=geojson,0.004966,,66.0,",ci37374682,",0.28,ml,,ci,16.0,"10km NE of Aguanga, CA",0.13,1,",ci,",reviewed,1538297451530,"M 0.3 - 10km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538402610030,https://earthquake.usgs.gov/earthquakes/eventpage/ci37374682 +,,37374674,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37374674&format=geojson,0.003536,,35.0,",ci37374674,",0.56,ml,,ci,36.0,"10km NE of Aguanga, CA",0.15,5,",ci,",reviewed,1538297301060,"M 0.6 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538414247763,https://earthquake.usgs.gov/earthquakes/eventpage/ci37374674 +,,37374666,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37374666&format=geojson,0.01664,,26.0,",ci37374666,",2.52,ml,,ci,119.0,"8km NE of Aguanga, CA",0.21,98,",ci,",reviewed,1538297200850,"M 2.5 - 8km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538501738250,https://earthquake.usgs.gov/earthquakes/eventpage/ci37374666 +,,73091631,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091631&format=geojson,0.01413,,138.0,",nc73091631,",1.03,md,,nc,11.0,"3km SE of The Geysers, CA",0.03,16,",nc,",automatic,1538297131730,"M 1.0 - 3km SE of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538301063606,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091631 +,,37374658,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37374658&format=geojson,0.01295,,185.0,",ci37374658,",0.53,ml,,ci,31.0,"9km NNE of Borrego Springs, CA",0.18,4,",ci,",reviewed,1538296827140,"M 0.5 - 9km NNE of Borrego Springs, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538683834460,https://earthquake.usgs.gov/earthquakes/eventpage/ci37374658 +,,2018273004,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018273004&format=geojson,0.6241,,180.0,",pr2018273004,",3.07,md,,pr,16.0,"59km W of Rincon, Puerto Rico",0.32,145,",pr,",reviewed,1538296807530,"M 3.1 - 59km W of Rincon, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-300.0,1538307122598,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018273004 +,,73091626,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091626&format=geojson,0.05243,,125.0,",nc73091626,",0.82,md,,nc,19.0,"19km NNW of Toms Place, CA",0.05,10,",nc,",reviewed,1538296764270,"M 0.8 - 19km NNW of Toms Place, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538411163659,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091626 +,3.8,1000h4jy,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h4jy&format=geojson,0.118,2.0,146.0,",us1000h4jy,ismpkansas70251623,",2.6,mb_lg,,us,,"13km SW of Wellington, Kansas",0.24,105,",us,ismpkansas,",reviewed,1538296748120,"M 2.6 - 13km SW of Wellington, Kansas",0,earthquake,",dyfi,geoserve,origin,phase-data,",-360.0,1538438322140,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h4jy +,,2018273005,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018273005&format=geojson,1.0192,,341.0,",pr2018273005,",2.81,md,,pr,4.0,"71km N of Culebra, Puerto Rico",0.25,121,",pr,",reviewed,1538296465490,"M 2.8 - 71km N of Culebra, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538307136238,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018273005 +,,20267380,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267380&format=geojson,,,,",ak20267380,",1.0,ml,,ak,,"33km E of Anchorage, Alaska",0.53,15,",ak,",reviewed,1538296087252,"M 1.0 - 33km E of Anchorage, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110130611,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267380 +,,20267377,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267377&format=geojson,,,,",ak20267377,",1.1,ml,,ak,,"21km SW of Talkeetna, Alaska",0.49,19,",ak,",reviewed,1538295967797,"M 1.1 - 21km SW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110130043,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267377 +,,73091621,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091621&format=geojson,0.04877,,122.0,",nc73091621,",0.82,md,,nc,23.0,"19km NNW of Toms Place, CA",0.05,10,",nc,",reviewed,1538294617630,"M 0.8 - 19km NNW of Toms Place, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538412843813,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091621 +,,20267373,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267373&format=geojson,,,,",ak20267373,",1.3,ml,,ak,,"60km ENE of Cape Yakataga, Alaska",0.44,26,",ak,",reviewed,1538294485685,"M 1.3 Ice Quake - 60km ENE of Cape Yakataga, Alaska",0,ice quake,",geoserve,origin,phase-data,",-540.0,1539110129520,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267373 +,,20274970,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20274970&format=geojson,,,,",ak20274970,",2.0,ml,,ak,,"73km S of Little Sitkin Island, Alaska",0.73,62,",ak,",reviewed,1538294437593,"M 2.0 - 73km S of Little Sitkin Island, Alaska",0,earthquake,",geoserve,origin,phase-data,",720.0,1539110129015,https://earthquake.usgs.gov/earthquakes/eventpage/ak20274970 +,2.0,37374650,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37374650&format=geojson,0.02559,1.0,43.0,",ci37374650,",1.8,ml,,ci,32.0,"8km NE of Heber, CA",0.28,50,",ci,",reviewed,1538294247950,"M 1.8 - 8km NE of Heber, CA",0,earthquake,",dyfi,focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538500457480,https://earthquake.usgs.gov/earthquakes/eventpage/ci37374650 +,,20274969,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20274969&format=geojson,,,,",ak20274969,",1.3,ml,,ak,,"101km NW of Arctic Village, Alaska",0.55,26,",ak,",reviewed,1538294166348,"M 1.3 - 101km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110128440,https://earthquake.usgs.gov/earthquakes/eventpage/ak20274969 +,,70621897,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70621897&format=geojson,0.06529,,200.0,",hv70621897,",1.69,md,,hv,19.0,"4km ESE of Pahala, Hawaii",0.1,44,",hv,",reviewed,1538294004050,"M 1.7 - 4km ESE of Pahala, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538444613690,https://earthquake.usgs.gov/earthquakes/eventpage/hv70621897 +,,20267363,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267363&format=geojson,,,,",ak20267363,",2.1,ml,,ak,,"61km WSW of Anchor Point, Alaska",0.48,68,",ak,",reviewed,1538293722307,"M 2.1 - 61km WSW of Anchor Point, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539110127609,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267363 +,,20267364,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267364&format=geojson,,,,",ak20267364,",1.3,ml,,ak,,"60km E of Cape Yakataga, Alaska",0.45,26,",ak,",reviewed,1538293713162,"M 1.3 Ice Quake - 60km E of Cape Yakataga, Alaska",0,ice quake,",geoserve,origin,phase-data,",-540.0,1539110127049,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267364 +,,20267362,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267362&format=geojson,,,,",ak20267362,",2.5,ml,,ak,,"79km S of Little Sitkin Island, Alaska",0.68,96,",ak,",reviewed,1538293597353,"M 2.5 - 79km S of Little Sitkin Island, Alaska",0,earthquake,",geoserve,origin,phase-data,",720.0,1539110126479,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267362 +,,00658981,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658981&format=geojson,0.059,,146.22,",nn00658981,",-0.2,ml,,nn,7.0,"20km N of Beatty, Nevada",0.1902,0,",nn,",reviewed,1538293169696,"M -0.2 - 20km N of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538343704585,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658981 +,,20267361,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267361&format=geojson,,,,",ak20267361,",1.1,ml,,ak,,"113km W of Cantwell, Alaska",0.47,19,",ak,",reviewed,1538293010270,"M 1.1 - 113km W of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110125850,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267361 +,,20267360,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267360&format=geojson,,,,",ak20267360,",1.6,ml,,ak,,"115km NNW of Arctic Village, Alaska",0.61,39,",ak,",reviewed,1538292788247,"M 1.6 - 115km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110125270,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267360 +,,20267358,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267358&format=geojson,,,,",ak20267358,",1.0,ml,,ak,,"71km NNW of Cape Yakataga, Alaska",0.35,15,",ak,",reviewed,1538292412017,"M 1.0 - 71km NNW of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110124730,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267358 +,,20274962,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20274962&format=geojson,,,,",ak20274962,",0.9,ml,,ak,,"69km NNW of Valdez, Alaska",0.78,12,",ak,",reviewed,1538292373587,"M 0.9 - 69km NNW of Valdez, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110124172,https://earthquake.usgs.gov/earthquakes/eventpage/ak20274962 +,,20267357,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267357&format=geojson,,,,",ak20267357,",0.7,ml,,ak,,"40km WNW of Valdez, Alaska",0.68,8,",ak,",reviewed,1538291660354,"M 0.7 - 40km WNW of Valdez, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110123639,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267357 +,,37374642,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37374642&format=geojson,0.01121,,31.0,",ci37374642,",0.93,ml,,ci,46.0,"9km NE of Aguanga, CA",0.17,13,",ci,",reviewed,1538291138170,"M 0.9 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538402613870,https://earthquake.usgs.gov/earthquakes/eventpage/ci37374642 +,,37374634,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37374634&format=geojson,0.06549,,46.0,",ci37374634,",0.66,ml,,ci,41.0,"8km SW of Idyllwild, CA",0.12,7,",ci,",reviewed,1538290466780,"M 0.7 - 8km SW of Idyllwild, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538499942755,https://earthquake.usgs.gov/earthquakes/eventpage/ci37374634 +,,00658980,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658980&format=geojson,0.035,,50.29,",nn00658980,",-0.5,ml,,nn,17.0,"46km ENE of Beatty, Nevada",0.1465,0,",nn,",reviewed,1538289707220,"M -0.5 - 46km ENE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538342230170,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658980 +,,37197500,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37197500&format=geojson,0.01579,,148.0,",ci37197500,",0.82,ml,,ci,20.0,"10km N of Borrego Springs, CA",0.22,10,",ci,",reviewed,1538289493980,"M 0.8 - 10km N of Borrego Springs, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538497160301,https://earthquake.usgs.gov/earthquakes/eventpage/ci37197500 +,,37374626,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37374626&format=geojson,0.005868,,39.0,",ci37374626,",1.06,ml,,ci,58.0,"8km N of Borrego Springs, CA",0.19,17,",ci,",reviewed,1538289488290,"M 1.1 - 8km N of Borrego Springs, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538494500630,https://earthquake.usgs.gov/earthquakes/eventpage/ci37374626 +,,20267351,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267351&format=geojson,,,,",ak20267351,",2.1,ml,,ak,,"67km W of Willow, Alaska",0.49,68,",ak,",reviewed,1538289479215,"M 2.1 - 67km W of Willow, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110122886,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267351 +,,37374618,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37374618&format=geojson,0.05189,,81.0,",ci37374618,",1.33,ml,,ci,18.0,"7km SW of Holtville, CA",0.23,27,",ci,",reviewed,1538289434590,"M 1.3 - 7km SW of Holtville, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538493663433,https://earthquake.usgs.gov/earthquakes/eventpage/ci37374618 +,,37374610,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37374610&format=geojson,0.04152,,77.0,",ci37374610,",1.26,ml,,ci,19.0,"7km SW of Holtville, CA",0.15,24,",ci,",reviewed,1538289397920,"M 1.3 - 7km SW of Holtville, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538493376407,https://earthquake.usgs.gov/earthquakes/eventpage/ci37374610 +,,73091616,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091616&format=geojson,0.01151,,127.0,",nc73091616,",0.92,md,,nc,9.0,"3km SE of The Geysers, CA",0.02,13,",nc,",automatic,1538289311460,"M 0.9 - 3km SE of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538296082980,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091616 +,,37374602,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37374602&format=geojson,0.0137,,36.0,",ci37374602,",0.24,ml,,ci,33.0,"9km NE of Aguanga, CA",0.14,1,",ci,",reviewed,1538288927580,"M 0.2 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538493118880,https://earthquake.usgs.gov/earthquakes/eventpage/ci37374602 +,,73091611,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091611&format=geojson,0.288,,282.0,",nn00658846,nc73091611,",1.39,md,,nc,10.0,"34km N of Toms Place, CA",0.08,30,",nn,nc,",reviewed,1538288700020,"M 1.4 - 34km N of Toms Place, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538427363819,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091611 +,,20274959,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20274959&format=geojson,,,,",ak20274959,",1.6,ml,,ak,,"58km E of Old Iliamna, Alaska",0.54,39,",ak,",reviewed,1538288332398,"M 1.6 - 58km E of Old Iliamna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110122348,https://earthquake.usgs.gov/earthquakes/eventpage/ak20274959 +,,20267348,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267348&format=geojson,,,,",ak20267348,",2.3,ml,,ak,,"99km NW of Arctic Village, Alaska",0.42,81,",ak,",reviewed,1538288248839,"M 2.3 - 99km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110121734,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267348 +,,73091606,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091606&format=geojson,0.01684,,120.0,",nc73091606,",0.57,md,,nc,19.0,"1km WSW of Parkfield, CA",0.05,5,",nc,",reviewed,1538288025010,"M 0.6 - 1km WSW of Parkfield, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538441128338,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091606 +,,37374594,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37374594&format=geojson,0.0281,,119.0,",ci37374594,",0.73,ml,,ci,11.0,"6km ESE of Wofford Heights, CA",0.1,8,",ci,",reviewed,1538287313650,"M 0.7 - 6km ESE of Wofford Heights, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538492790852,https://earthquake.usgs.gov/earthquakes/eventpage/ci37374594 +,,80311904,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80311904&format=geojson,0.301,,204.0,",mb80311904,",0.76,ml,,mb,6.0,"3km SSW of Manhattan, Montana",0.15,9,",mb,",reviewed,1538287293580,"M 0.8 - 3km SSW of Manhattan, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538428158760,https://earthquake.usgs.gov/earthquakes/eventpage/mb80311904 +,,00658845,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658845&format=geojson,0.028,,50.31,",nn00658845,",-0.2,ml,,nn,22.0,"47km ENE of Beatty, Nevada",0.1826,0,",nn,",reviewed,1538287079863,"M -0.2 - 47km ENE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538325988604,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658845 +,,20267346,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267346&format=geojson,,,,",ak20267346,",1.1,ml,,ak,,"24km WSW of Big Lake, Alaska",0.7,19,",ak,",reviewed,1538287053027,"M 1.1 - 24km WSW of Big Lake, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110121126,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267346 +,,20267344,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267344&format=geojson,,,,",ak20267344,",1.3,ml,,ak,,"16km SE of Seward, Alaska",0.79,26,",ak,",reviewed,1538286923896,"M 1.3 - 16km SE of Seward, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110120592,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267344 +,,73091601,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091601&format=geojson,0.1019,,299.0,",nc73091601,",0.45,md,,nc,9.0,"14km S of Mammoth Lakes, CA",0.04,3,",nc,",reviewed,1538286893200,"M 0.5 - 14km S of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538414071185,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091601 +,,73091596,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091596&format=geojson,0.003867,,87.0,",nc73091596,",0.41,md,,nc,10.0,"6km WNW of Cobb, CA",0.03,3,",nc,",automatic,1538286820250,"M 0.4 - 6km WNW of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538292784627,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091596 +,,20267343,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267343&format=geojson,,,,",ak20267343,",1.1,ml,,ak,,"33km W of Valdez, Alaska",0.44,19,",ak,",reviewed,1538286525331,"M 1.1 Ice Quake - 33km W of Valdez, Alaska",0,ice quake,",geoserve,origin,phase-data,",-540.0,1539110120080,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267343 +,,20274954,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20274954&format=geojson,,,,",ak20274954,",1.3,ml,,ak,,"93km NW of Arctic Village, Alaska",0.43,26,",ak,",reviewed,1538286469537,"M 1.3 - 93km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110119538,https://earthquake.usgs.gov/earthquakes/eventpage/ak20274954 +,,20267341,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267341&format=geojson,,,,",ak20267341,",1.4,ml,,ak,,"117km NNW of Arctic Village, Alaska",0.8,30,",ak,",reviewed,1538286390467,"M 1.4 - 117km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110118851,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267341 +,,37374586,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37374586&format=geojson,0.1397,,113.0,",ci37374586,",0.68,ml,,ci,30.0,"16km ESE of Julian, CA",0.18,7,",ci,",reviewed,1538286310010,"M 0.7 - 16km ESE of Julian, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538433994187,https://earthquake.usgs.gov/earthquakes/eventpage/ci37374586 +,,20267339,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267339&format=geojson,,,,",ak20267339,",1.2,ml,,ak,,"121km W of Cantwell, Alaska",0.38,22,",ak,",reviewed,1538286134975,"M 1.2 - 121km W of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110118291,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267339 +,,00658979,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658979&format=geojson,0.051,,268.94,",nn00658979,",-0.1,ml,,nn,9.0,"72km WSW of Alamo, Nevada",0.1808,0,",nn,",reviewed,1538285721007,"M -0.1 - 72km WSW of Alamo, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538341308161,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658979 +,,80311739,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80311739&format=geojson,0.289,,227.0,",mb80311739,",1.15,ml,,mb,6.0,"51km NE of Jackson, Wyoming",0.11,20,",mb,",reviewed,1538285324630,"M 1.2 - 51km NE of Jackson, Wyoming",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538406124770,https://earthquake.usgs.gov/earthquakes/eventpage/mb80311739 +,,73091591,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091591&format=geojson,0.004479,,78.0,",nc73091591,",0.27,md,,nc,14.0,"6km WNW of Cobb, CA",0.03,1,",nc,",reviewed,1538285306040,"M 0.3 - 6km WNW of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538449190021,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091591 +,,20267338,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267338&format=geojson,,,,",ak20267338,",0.9,ml,,ak,,"72km ENE of Cape Yakataga, Alaska",0.39,12,",ak,",reviewed,1538285167112,"M 0.9 - 72km ENE of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110117711,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267338 +,,73091586,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091586&format=geojson,0.02913,,57.0,",nc73091586,",1.63,md,,nc,48.0,"6km ESE of San Ramon, CA",0.07,41,",nc,",reviewed,1538284783680,"M 1.6 - 6km ESE of San Ramon, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538443922474,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091586 +,,73091581,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091581&format=geojson,0.06844,,272.0,",nc73091581,",0.53,md,,nc,10.0,"12km SSE of Mammoth Lakes, CA",0.04,4,",nc,",reviewed,1538284456960,"M 0.5 - 12km SSE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538417402262,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091581 +,,20267336,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267336&format=geojson,,,,",ak20267336,",1.6,ml,,ak,,"84km N of Kobuk, Alaska",0.36,39,",ak,",reviewed,1538283791821,"M 1.6 - 84km N of Kobuk, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110117070,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267336 +,,37374570,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37374570&format=geojson,0.01426,,54.0,",ci37374570,",0.68,ml,,ci,20.0,"2km SSE of Lake Henshaw, CA",0.22,7,",ci,",reviewed,1538283726220,"M 0.7 - 2km SSE of Lake Henshaw, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538402627171,https://earthquake.usgs.gov/earthquakes/eventpage/ci37374570 +,,37374562,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37374562&format=geojson,0.07977,,127.0,",ci37374562,",0.82,ml,,ci,9.0,"25km E of Lake Isabella, CA",0.14,10,",ci,",reviewed,1538283295410,"M 0.8 - 25km E of Lake Isabella, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538402629249,https://earthquake.usgs.gov/earthquakes/eventpage/ci37374562 +,,00658978,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658978&format=geojson,0.196,,132.12,",nn00658978,",0.8,ml,,nn,6.0,"46km NE of Mammoth Lakes, California",0.1321,10,",nn,",reviewed,1538283063918,"M 0.8 - 46km NE of Mammoth Lakes, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538340755237,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658978 +,,20267332,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267332&format=geojson,,,,",ak20267332,",2.0,ml,,ak,,"5km SSE of Anchorage, Alaska",0.58,62,",ak,",reviewed,1538282868390,"M 2.0 - 5km SSE of Anchorage, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110116365,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267332 +,,73091566,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091566&format=geojson,0.00264,,52.0,",nc73091566,",0.36,md,,nc,16.0,"7km NW of The Geysers, CA",0.02,2,",nc,",reviewed,1538282550250,"M 0.4 - 7km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538446485321,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091566 +,,2018273003,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018273003&format=geojson,0.019,,205.0,",pr2018273003,",2.45,md,,pr,15.0,"3km NW of Mayaguez, Puerto Rico",0.32,92,",pr,",reviewed,1538282440180,"M 2.5 - 3km NW of Mayaguez, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538295381344,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018273003 +,,1000h4is,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h4is&format=geojson,0.635,,50.0,",us1000h4is,",4.1,mb,,us,,"72km ENE of San Pedro de Atacama, Chile",1.29,259,",us,",reviewed,1538282397840,"M 4.1 - 72km ENE of San Pedro de Atacama, Chile",0,earthquake,",geoserve,origin,phase-data,",-240.0,1539300200040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h4is +,,20267326,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267326&format=geojson,,,,",ak20267326,",1.6,ml,,ak,,"46km W of Anchor Point, Alaska",0.37,39,",ak,",reviewed,1538282228754,"M 1.6 - 46km W of Anchor Point, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110115733,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267326 +,,20267318,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267318&format=geojson,,,,",ak20267318,",1.6,ml,,ak,,"64km ESE of Whittier, Alaska",0.42,39,",ak,",reviewed,1538282088739,"M 1.6 - 64km ESE of Whittier, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110115145,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267318 +,,20267321,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267321&format=geojson,,,,",ak20267321,",1.1,ml,,ak,,"56km WNW of Talkeetna, Alaska",0.5,19,",ak,",reviewed,1538282088573,"M 1.1 - 56km WNW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110114572,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267321 +,,1000h7jl,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h7jl&format=geojson,1.398,,115.0,",ak20267317,us1000h7jl,",4.1,mb,,us,,"73km S of Amukta Island, Alaska",1.3,259,",ak,us,",reviewed,1538282049800,"M 4.1 - 73km S of Amukta Island, Alaska",0,earthquake,",geoserve,origin,phase-data,",-660.0,1539299590040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h7jl +,,37374554,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37374554&format=geojson,0.07881,,127.0,",ci37374554,",1.11,ml,,ci,12.0,"25km E of Lake Isabella, CA",0.12,19,",ci,",reviewed,1538282017970,"M 1.1 - 25km E of Lake Isabella, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538402631397,https://earthquake.usgs.gov/earthquakes/eventpage/ci37374554 +,,2018273002,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018273002&format=geojson,0.2032,,235.0,",pr2018273002,",1.9,md,,pr,3.0,"7km S of Tallaboa, Puerto Rico",0.08,56,",pr,",reviewed,1538281716360,"M 1.9 - 7km S of Tallaboa, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538295365279,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018273002 +,,37374546,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37374546&format=geojson,0.01563,,30.0,",ci37374546,",0.92,ml,,ci,40.0,"2km ESE of Lake Henshaw, CA",0.19,13,",ci,",reviewed,1538280993600,"M 0.9 - 2km ESE of Lake Henshaw, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538402680670,https://earthquake.usgs.gov/earthquakes/eventpage/ci37374546 +,,80311734,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80311734&format=geojson,0.055,,159.0,",mb80311734,",1.38,ml,,mb,6.0,"10km NNE of Dillon, Montana",0.03,29,",mb,",reviewed,1538280904710,"M 1.4 - 10km NNE of Dillon, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538406340590,https://earthquake.usgs.gov/earthquakes/eventpage/mb80311734 +,,2018273001,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018273001&format=geojson,0.2082,,240.0,",pr2018273001,",1.64,md,,pr,5.0,"8km S of Tallaboa, Puerto Rico",0.19,41,",pr,",reviewed,1538280773200,"M 1.6 - 8km S of Tallaboa, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538295348240,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018273001 +,,20267316,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267316&format=geojson,,,,",ak20267316,",1.0,ml,,ak,,"52km W of Willow, Alaska",0.28,15,",ak,",reviewed,1538280706352,"M 1.0 - 52km W of Willow, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110113427,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267316 +,,73091561,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091561&format=geojson,0.02262,,91.0,",nn00658840,nc73091561,",1.62,md,,nc,25.0,"3km NW of Dixon Lane-Meadow Creek, CA",0.08,40,",nn,nc,",reviewed,1538280563110,"M 1.6 - 3km NW of Dixon Lane-Meadow Creek, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538586266507,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091561 +,,60016504,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60016504&format=geojson,0.02546,,52.0,",uu60016504,",1.22,ml,,uu,21.0,"3km ESE of Magna, Utah",0.17,23,",uu,",reviewed,1538280279180,"M 1.2 - 3km ESE of Magna, Utah",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538434046810,https://earthquake.usgs.gov/earthquakes/eventpage/uu60016504 +,,20267314,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267314&format=geojson,,,,",ak20267314,",1.2,ml,,ak,,"62km NNW of Talkeetna, Alaska",0.36,22,",ak,",reviewed,1538279906267,"M 1.2 - 62km NNW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110112850,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267314 +,,37374530,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37374530&format=geojson,0.03816,,136.0,",ci37374530,",0.09,ml,,ci,8.0,"12km ESE of Coso Junction, CA",0.05,0,",ci,",reviewed,1538279891430,"M 0.1 - 12km ESE of Coso Junction, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538420426323,https://earthquake.usgs.gov/earthquakes/eventpage/ci37374530 +,,00658977,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658977&format=geojson,0.201,,189.05,",nn00658977,",0.9,ml,,nn,8.0,"20km SSE of Alamo, Nevada",0.1279,12,",nn,",reviewed,1538279862199,"M 0.9 - 20km SSE of Alamo, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538340385698,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658977 +,,20267313,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267313&format=geojson,,,,",ak20267313,",0.6,ml,,ak,,"75km E of Cape Yakataga, Alaska",0.41,6,",ak,",reviewed,1538279715155,"M 0.6 - 75km E of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110112313,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267313 +,,73091556,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091556&format=geojson,0.1141,,181.0,",nc73091556,",0.84,md,,nc,15.0,"17km N of Pinnacles, CA",0.12,11,",nc,",reviewed,1538279694960,"M 0.8 - 17km N of Pinnacles, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538440082074,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091556 +,,20267308,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267308&format=geojson,,,,",ak20267308,",1.2,ml,,ak,,"12km NNW of Meadow Lakes, Alaska",0.49,22,",ak,",reviewed,1538279415761,"M 1.2 - 12km NNW of Meadow Lakes, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110111718,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267308 +,,80311984,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80311984&format=geojson,0.316,,143.0,",mb80311984,",0.79,ml,,mb,7.0,"28km NE of Belgrade, Montana",0.13,10,",mb,",reviewed,1538279181490,"M 0.8 - 28km NE of Belgrade, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538434737020,https://earthquake.usgs.gov/earthquakes/eventpage/mb80311984 +,,70805294,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70805294&format=geojson,0.07476,,230.0,",av70805294,",-0.32,ml,,av,4.0,"28km W of Dutch Harbor, Alaska",0.18,0,",av,",reviewed,1538278867380,"M -0.3 - 28km W of Dutch Harbor, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538431857750,https://earthquake.usgs.gov/earthquakes/eventpage/av70805294 +,,20267306,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267306&format=geojson,,,,",ak20267306,",1.3,ml,,ak,,"110km W of Cantwell, Alaska",0.4,26,",ak,",reviewed,1538278721256,"M 1.3 - 110km W of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110111153,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267306 +,,37374514,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37374514&format=geojson,0.07563,,70.0,",ci37374514,",0.33,ml,,ci,16.0,"10km NE of Aguanga, CA",0.17,2,",ci,",reviewed,1538278401430,"M 0.3 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538402648805,https://earthquake.usgs.gov/earthquakes/eventpage/ci37374514 +,,00658976,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658976&format=geojson,0.027,,95.49,",nn00658976,",-0.5,ml,,nn,17.0,"56km ENE of Beatty, Nevada",0.2338,0,",nn,",reviewed,1538278394810,"M -0.5 - 56km ENE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538339278891,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658976 +,,1000h7jj,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h7jj&format=geojson,2.341,,72.0,",us1000h7jj,",4.4,mb,,us,,"225km WSW of Merizo Village, Guam",1.14,298,",us,",reviewed,1538278352210,"M 4.4 - 225km WSW of Merizo Village, Guam",0,earthquake,",geoserve,origin,phase-data,",600.0,1539298852040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h7jj +,,20267303,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267303&format=geojson,,,,",ak20267303,",1.3,ml,,ak,,"113km NW of Talkeetna, Alaska",0.81,26,",ak,",reviewed,1538278176498,"M 1.3 - 113km NW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110110580,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267303 +,,1000h9iz,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h9iz&format=geojson,2.607,,207.0,",ak20267299,us1000h9iz,",3.1,ml,,us,,"281km SE of Kodiak, Alaska",0.72,148,",ak,us,",reviewed,1538277988250,"M 3.1 - 281km SE of Kodiak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539295545040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h9iz +,,00658974,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658974&format=geojson,0.055,,200.68,",nn00658974,",-0.4,ml,,nn,10.0,"56km NE of Beatty, Nevada",0.0626,0,",nn,",reviewed,1538277900417,"M -0.4 - 56km NE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538338172992,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658974 +,,73091541,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091541&format=geojson,0.01665,,116.0,",nc73091541,",0.73,md,,nc,12.0,"10km WNW of The Geysers, CA",0.03,8,",nc,",automatic,1538277867060,"M 0.7 - 10km WNW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538281562312,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091541 +,,20267295,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267295&format=geojson,,,,",ak20267295,",1.0,ml,,ak,,"43km NE of Nikiski, Alaska",0.62,15,",ak,",reviewed,1538277544704,"M 1.0 - 43km NE of Nikiski, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110109340,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267295 +,,73091531,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091531&format=geojson,0.006503,,49.0,",nc73091531,",1.13,md,,nc,24.0,"7km NW of The Geysers, CA",0.04,20,",nc,",automatic,1538277489810,"M 1.1 - 7km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538280064174,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091531 +,,20267291,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267291&format=geojson,,,,",ak20267291,",0.4,ml,,ak,,"2km ENE of Sutton-Alpine, Alaska",0.6,2,",ak,",reviewed,1538277311653,"M 0.4 - 2km ENE of Sutton-Alpine, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110108804,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267291 +,,20267286,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267286&format=geojson,,,,",ak20267286,",1.4,ml,,ak,,"40km E of Fritz Creek, Alaska",0.66,30,",ak,",reviewed,1538277224382,"M 1.4 - 40km E of Fritz Creek, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110108156,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267286 +,,20267284,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267284&format=geojson,,,,",ak20267284,",0.7,ml,,ak,,"59km NW of Cape Yakataga, Alaska",0.38,8,",ak,",reviewed,1538277178281,"M 0.7 - 59km NW of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110107622,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267284 +,,37374506,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37374506&format=geojson,0.1061,,46.0,",ci37374506,",1.07,ml,,ci,50.0,"7km E of Running Springs, CA",0.15,18,",ci,",reviewed,1538276935270,"M 1.1 - 7km E of Running Springs, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538492567812,https://earthquake.usgs.gov/earthquakes/eventpage/ci37374506 +,,1000h9iy,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h9iy&format=geojson,2.417,,221.0,",ak20267281,us1000h9iy,",3.0,ml,,us,,"260km SE of Kodiak, Alaska",0.38,138,",ak,us,",reviewed,1538276925090,"M 3.0 - 260km SE of Kodiak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539295023040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h9iy +,,20267278,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267278&format=geojson,,,,",ak20267278,",1.6,ml,,ak,,"42km SW of Adak, Alaska",0.29,39,",ak,",reviewed,1538276395957,"M 1.6 - 42km SW of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539110106458,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267278 +,,70251613,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ismpkansas70251613&format=geojson,0.1377,,244.0,",ismpkansas70251613,",1.64,ml,,ismpkansas,8.0,"12km SW of Wellington, Kansas",0.03,41,",ismpkansas,",reviewed,1538276359970,"M 1.6 - 12km SW of Wellington, Kansas",0,earthquake,",geoserve,origin,phase-data,",-360.0,1538437016490,https://earthquake.usgs.gov/earthquakes/eventpage/ismpkansas70251613 +,,37374498,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37374498&format=geojson,0.08892,,78.0,",ci37374498,",0.79,ml,,ci,31.0,"6km ESE of Valle Vista, CA",0.14,10,",ci,",reviewed,1538276339020,"M 0.8 - 6km ESE of Valle Vista, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538491886460,https://earthquake.usgs.gov/earthquakes/eventpage/ci37374498 +,,20267275,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267275&format=geojson,,,,",ak20267275,",1.6,ml,,ak,,"125km SE of Prudhoe Bay, Alaska",0.6,39,",ak,",reviewed,1538275953442,"M 1.6 - 125km SE of Prudhoe Bay, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110105913,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267275 +,,1000h9ix,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h9ix&format=geojson,2.099,,196.0,",ak20274930,us1000h9ix,",2.9,ml,,us,,"240km SE of Kodiak, Alaska",0.69,129,",ak,us,",reviewed,1538275926230,"M 2.9 - 240km SE of Kodiak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539294558040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h9ix +,,37374490,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37374490&format=geojson,0.009513,,112.0,",ci37374490,",0.77,ml,,ci,35.0,"9km N of Borrego Springs, CA",0.2,9,",ci,",reviewed,1538275851150,"M 0.8 - 9km N of Borrego Springs, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538491507932,https://earthquake.usgs.gov/earthquakes/eventpage/ci37374490 +,,37374482,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37374482&format=geojson,0.07819,,60.0,",ci37374482,",1.48,ml,,ci,49.0,"9km N of Borrego Springs, CA",0.22,34,",ci,",reviewed,1538275567310,"M 1.5 - 9km N of Borrego Springs, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538402684200,https://earthquake.usgs.gov/earthquakes/eventpage/ci37374482 +,,70621552,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70621552&format=geojson,0.05004,,112.0,",hv70621552,",0.95,md,,hv,18.0,"14km W of Volcano, Hawaii",0.09,14,",hv,",reviewed,1538275387130,"M 1.0 - 14km W of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538448297420,https://earthquake.usgs.gov/earthquakes/eventpage/hv70621552 +,,37374474,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37374474&format=geojson,0.03124,,39.0,",ci37374474,",1.13,ml,,ci,42.0,"9km ENE of Aguanga, CA",0.17,20,",ci,",reviewed,1538275148270,"M 1.1 - 9km ENE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538402747180,https://earthquake.usgs.gov/earthquakes/eventpage/ci37374474 +,,37374466,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37374466&format=geojson,0.04664,,94.0,",ci37374466,",0.85,ml,,ci,33.0,"12km N of Banning, CA",0.14,11,",ci,",reviewed,1538275035090,"M 0.9 - 12km N of Banning, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538491082674,https://earthquake.usgs.gov/earthquakes/eventpage/ci37374466 +,,73091521,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091521&format=geojson,0.001409,,172.0,",nc73091521,",0.6,md,,nc,4.0,"5km NW of The Geysers, CA",0.01,6,",nc,",reviewed,1538275006140,"M 0.6 - 5km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538444710089,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091521 +,,1000h4i8,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h4i8&format=geojson,6.167,,109.0,",us1000h4i8,",4.5,mb,,us,,"27km ESE of Lata, Solomon Islands",0.65,312,",us,",reviewed,1538274941400,"M 4.5 - 27km ESE of Lata, Solomon Islands",0,earthquake,",geoserve,origin,phase-data,",660.0,1539292812040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h4i8 +,,37374458,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37374458&format=geojson,0.008123,,29.0,",ci37374458,",2.04,ml,,ci,89.0,"9km N of Borrego Springs, CA",0.19,64,",ci,",reviewed,1538274400790,"M 2.0 - 9km N of Borrego Springs, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538427652180,https://earthquake.usgs.gov/earthquakes/eventpage/ci37374458 +,,60298462,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60298462&format=geojson,0.009097,,86.0,",uu60298462,",0.67,md,,uu,9.0,"5km ESE of Heber, Utah",0.06,7,",uu,",reviewed,1538274084460,"M 0.7 - 5km ESE of Heber, Utah",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538515760170,https://earthquake.usgs.gov/earthquakes/eventpage/uu60298462 +,,20267273,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267273&format=geojson,,,,",ak20267273,",0.7,ml,,ak,,"39km E of Lazy Mountain, Alaska",0.63,8,",ak,",reviewed,1538273964166,"M 0.7 - 39km E of Lazy Mountain, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110104776,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267273 +,,37374450,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37374450&format=geojson,0.05023,,51.0,",ci37374450,",0.88,ml,,ci,17.0,"9km SSW of San Diego Country Estates, CA",0.2,12,",ci,",reviewed,1538273749670,"M 0.9 - 9km SSW of San Diego Country Estates, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538402700309,https://earthquake.usgs.gov/earthquakes/eventpage/ci37374450 +,,00658973,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658973&format=geojson,0.127,,207.84,",nn00658973,",0.4,ml,,nn,8.0,"39km SSE of Goldfield, Nevada",0.1538,2,",nn,",reviewed,1538273321611,"M 0.4 - 39km SSE of Goldfield, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538337435099,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658973 +,,20267268,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267268&format=geojson,,,,",ak20267268,",2.0,ml,,ak,,"98km NW of Kodiak Station, Alaska",0.39,62,",ak,",reviewed,1538272962082,"M 2.0 - 98km NW of Kodiak Station, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110104094,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267268 +,,20267266,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267266&format=geojson,,,,",ak20267266,",1.6,ml,,ak,,"82km N of Kobuk, Alaska",0.56,39,",ak,",reviewed,1538272913262,"M 1.6 - 82km N of Kobuk, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110103436,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267266 +,,00658972,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658972&format=geojson,0.577,,168.56,",nn00658972,",0.7,ml,,nn,6.0,"32km SW of Austin, Nevada",0.2029,8,",nn,",reviewed,1538272819132,"M 0.7 - 32km SW of Austin, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538337064896,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658972 +,,20267261,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267261&format=geojson,,,,",ak20267261,",1.3,ml,,ak,,"3km SE of Big Lake, Alaska",0.5,26,",ak,",reviewed,1538272618400,"M 1.3 - 3km SE of Big Lake, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110102841,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267261 +,,20267259,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267259&format=geojson,,,,",ak20267259,",1.0,ml,,ak,,"11km ENE of Lazy Mountain, Alaska",0.63,15,",ak,",reviewed,1538272535142,"M 1.0 - 11km ENE of Lazy Mountain, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110102232,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267259 +,,20267249,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267249&format=geojson,,,,",ak20267249,",1.5,ml,,ak,,"47km N of Valdez, Alaska",0.7,35,",ak,",reviewed,1538272392920,"M 1.5 - 47km N of Valdez, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110101602,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267249 +,,20267251,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267251&format=geojson,,,,",ak20267251,us1000h4hx,",2.3,ml,,ak,,"114km NNW of Arctic Village, Alaska",0.57,81,",ak,us,",reviewed,1538272371693,"M 2.3 - 114km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539135400040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267251 +,,1000h7jh,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h7jh&format=geojson,3.465,,133.0,",us1000h7jh,",4.4,mb,,us,,"135km NNW of Davila, Philippines",1.21,298,",us,",reviewed,1538272369820,"M 4.4 - 135km NNW of Davila, Philippines",0,earthquake,",geoserve,origin,phase-data,",480.0,1539135185040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h7jh +,,20267247,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267247&format=geojson,,,,",ak20267247,",1.1,ml,,ak,,"56km E of Cape Yakataga, Alaska",0.32,19,",ak,",reviewed,1538271365419,"M 1.1 Ice Quake - 56km E of Cape Yakataga, Alaska",0,ice quake,",geoserve,origin,phase-data,",-540.0,1539110100215,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267247 +,,20267242,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267242&format=geojson,,,,",ak20267242,",1.3,ml,,ak,,"62km NW of Cape Yakataga, Alaska",0.63,26,",ak,",reviewed,1538271056964,"M 1.3 - 62km NW of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110099546,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267242 +,,20274920,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20274920&format=geojson,,,,",ak20274920,",1.6,ml,,ak,,"80km SSW of Kaktovik, Alaska",0.53,39,",ak,",reviewed,1538270924462,"M 1.6 - 80km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110098986,https://earthquake.usgs.gov/earthquakes/eventpage/ak20274920 +,,20274919,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20274919&format=geojson,,,,",ak20274919,",0.9,ml,,ak,,"42km W of Valdez, Alaska",0.38,12,",ak,",reviewed,1538270858453,"M 0.9 Ice Quake - 42km W of Valdez, Alaska",0,ice quake,",geoserve,origin,phase-data,",-540.0,1539110098430,https://earthquake.usgs.gov/earthquakes/eventpage/ak20274919 +,,70805284,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70805284&format=geojson,0.08076,,194.0,",av70805284,",0.19,ml,,av,6.0,"51km NNE of Chitina, Alaska",0.24,1,",av,",reviewed,1538270776480,"M 0.2 - 51km NNE of Chitina, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538430944840,https://earthquake.usgs.gov/earthquakes/eventpage/av70805284 +,,20267233,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267233&format=geojson,,,,",ak20267233,us1000h4ht,",2.5,ml,,ak,,"59km NW of Cape Yakataga, Alaska",0.78,96,",ak,us,",reviewed,1538270579092,"M 2.5 - 59km NW of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539292114040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267233 +,,37374434,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37374434&format=geojson,0.01428,,22.0,",ci37374434,",1.21,ml,,ci,58.0,"9km NE of Aguanga, CA",0.17,23,",ci,",reviewed,1538270570700,"M 1.2 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538424930080,https://earthquake.usgs.gov/earthquakes/eventpage/ci37374434 +,,20267230,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267230&format=geojson,,,,",ak20267230,",1.0,ml,,ak,,"57km S of Deltana, Alaska",0.4,15,",ak,",reviewed,1538270478595,"M 1.0 - 57km S of Deltana, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110097062,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267230 +,,20267228,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267228&format=geojson,,,,",ak20267228,",1.3,ml,,ak,,"81km NNW of Talkeetna, Alaska",0.3,26,",ak,",reviewed,1538270421501,"M 1.3 - 81km NNW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110096508,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267228 +,,70805279,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70805279&format=geojson,0.07766,,117.0,",av70805279,",0.57,ml,,av,6.0,"56km NNE of Chitina, Alaska",0.19,5,",av,",reviewed,1538270205690,"M 0.6 - 56km NNE of Chitina, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538430814630,https://earthquake.usgs.gov/earthquakes/eventpage/av70805279 +,,20274915,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20274915&format=geojson,,,,",ak20274915,",1.4,ml,,ak,,"20km SSW of Homer, Alaska",0.45,30,",ak,",reviewed,1538270056501,"M 1.4 - 20km SSW of Homer, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110095929,https://earthquake.usgs.gov/earthquakes/eventpage/ak20274915 +,2.2,00658970,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658970&format=geojson,0.109,1.0,94.34,",nn00658970,",0.0,ml,,nn,8.0,"26km SSE of Beatty, Nevada",0.1058,0,",nn,",reviewed,1538269766240,"M 0.0 - 26km SSE of Beatty, Nevada",0,earthquake,",dyfi,geoserve,origin,phase-data,",-480.0,1538334897185,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658970 +,,60298457,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60298457&format=geojson,0.03385,,141.0,",uu60298457,",0.2,md,,uu,8.0,"16km NE of West Yellowstone, Montana",0.12,1,",uu,",reviewed,1538269647700,"M 0.2 - 16km NE of West Yellowstone, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538403927570,https://earthquake.usgs.gov/earthquakes/eventpage/uu60298457 +,,20267225,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267225&format=geojson,,,,",ak20267225,",0.5,ml,,ak,,"94km NNW of Nikiski, Alaska",0.42,4,",ak,",reviewed,1538269612737,"M 0.5 - 94km NNW of Nikiski, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110095391,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267225 +,,20267224,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267224&format=geojson,,,,",ak20267224,",0.4,ml,,ak,,"131km NNE of Cape Yakataga, Alaska",0.67,2,",ak,",reviewed,1538269524656,"M 0.4 - 131km NNE of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110094859,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267224 +,,20267223,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267223&format=geojson,,,,",ak20267223,",2.0,ml,,ak,,"103km E of Nikolski, Alaska",0.62,62,",ak,",reviewed,1538269481948,"M 2.0 - 103km E of Nikolski, Alaska",0,earthquake,",geoserve,origin,phase-data,",-660.0,1539110094312,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267223 +,,20267219,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267219&format=geojson,,,,",ak20267219,",1.8,ml,,ak,,"49km W of Anchorage, Alaska",0.56,50,",ak,",reviewed,1538269148979,"M 1.8 - 49km W of Anchorage, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110093593,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267219 +,,20267218,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267218&format=geojson,,,,",ak20267218,",1.0,ml,,ak,,"65km WNW of Talkeetna, Alaska",0.36,15,",ak,",reviewed,1538268520311,"M 1.0 - 65km WNW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110093016,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267218 +,,20267216,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267216&format=geojson,,,,",ak20267216,",0.8,ml,,ak,,"21km W of Willow, Alaska",0.53,10,",ak,",reviewed,1538268180693,"M 0.8 - 21km W of Willow, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110092460,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267216 +,,20267212,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267212&format=geojson,,,,",ak20267212,",1.2,ml,,ak,,"116km W of Cantwell, Alaska",0.57,22,",ak,",reviewed,1538267684138,"M 1.2 - 116km W of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110091846,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267212 +,,2018273000,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018273000&format=geojson,0.229,,276.0,",pr2018273000,",2.24,md,,pr,14.0,"9km WNW of Rincon, Puerto Rico",0.38,77,",pr,",reviewed,1538267438820,"M 2.2 - 9km WNW of Rincon, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538278225553,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018273000 +,,70621327,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70621327&format=geojson,0.00452,,57.0,",hv70621327,",2.03,md,,hv,19.0,"4km WSW of Volcano, Hawaii",0.17,63,",hv,",automatic,1538267315440,"M 2.0 - 4km WSW of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538267504500,https://earthquake.usgs.gov/earthquakes/eventpage/hv70621327 +,,20267206,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267206&format=geojson,,,,",ak20267206,",1.9,ml,,ak,,"120km NNW of Arctic Village, Alaska",0.68,56,",ak,",reviewed,1538267307114,"M 1.9 - 120km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110091262,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267206 +,,37374418,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37374418&format=geojson,0.06125,,103.0,",ci37374418,",0.65,ml,,ci,14.0,"13km NE of Yucaipa, CA",0.12,6,",ci,",reviewed,1538267168570,"M 0.7 - 13km NE of Yucaipa, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538671495702,https://earthquake.usgs.gov/earthquakes/eventpage/ci37374418 +,,37374410,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37374410&format=geojson,0.1086,,51.0,",ci37374410,",0.83,ml,,ci,28.0,"23km SSW of La Quinta, CA",0.17,11,",ci,",reviewed,1538266847920,"M 0.8 - 23km SSW of La Quinta, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538402718436,https://earthquake.usgs.gov/earthquakes/eventpage/ci37374410 +,,20267197,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267197&format=geojson,,,,",ak20267197,us1000h4hb,",2.9,ml,,ak,,"115km NNW of Arctic Village, Alaska",0.61,129,",ak,us,",reviewed,1538266837331,"M 2.9 - 115km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539491199040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267197 +,,20267192,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267192&format=geojson,,,,",ak20267192,",1.8,ml,,ak,,"68km NW of Valdez, Alaska",0.78,50,",ak,",reviewed,1538266794270,"M 1.8 - 68km NW of Valdez, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110089826,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267192 +,,37374402,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37374402&format=geojson,0.03071,,28.0,",ci37374402,",1.36,ml,,ci,61.0,"6km NW of San Jacinto, CA",0.18,28,",ci,",reviewed,1538266502200,"M 1.4 - 6km NW of San Jacinto, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538424424070,https://earthquake.usgs.gov/earthquakes/eventpage/ci37374402 +,,20267187,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267187&format=geojson,,,,",ak20267187,us1000h4h7,",3.3,ml,,ak,,"117km NNW of Arctic Village, Alaska",0.91,168,",ak,us,",reviewed,1538266427741,"M 3.3 - 117km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539490134040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267187 +,,20267186,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267186&format=geojson,,,,",ak20267186,",0.6,ml,,ak,,"71km NNW of Cape Yakataga, Alaska",0.51,6,",ak,",reviewed,1538266232326,"M 0.6 - 71km NNW of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110088478,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267186 +,,00658969,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658969&format=geojson,0.306,,74.7,",nn00658969,",1.1,ml,,nn,14.0,"13km SSE of Gardnerville Ranchos, Nevada",0.2284,19,",nn,",reviewed,1538266123730,"M 1.1 - 13km SSE of Gardnerville Ranchos, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538334300428,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658969 +,,20274902,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20274902&format=geojson,,,,",ak20274902,",1.5,ml,,ak,,"76km NW of Arctic Village, Alaska",0.4,35,",ak,",reviewed,1538265882967,"M 1.5 - 76km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110087873,https://earthquake.usgs.gov/earthquakes/eventpage/ak20274902 +,,00658967,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658967&format=geojson,0.12,,141.98,",nn00658967,",0.6,ml,,nn,9.0,"34km NW of Beatty, Nevada",0.1575,6,",nn,",reviewed,1538265877674,"M 0.6 - 34km NW of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538333928311,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658967 +,,20267183,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267183&format=geojson,,,,",ak20267183,",1.4,ml,,ak,,"110km NW of Talkeetna, Alaska",0.53,30,",ak,",reviewed,1538265637590,"M 1.4 - 110km NW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539110087241,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267183 +,,37374394,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37374394&format=geojson,0.009857,,38.0,",ci37374394,",0.56,ml,,ci,24.0,"10km NE of Aguanga, CA",0.17,5,",ci,",reviewed,1538265528860,"M 0.6 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538402735404,https://earthquake.usgs.gov/earthquakes/eventpage/ci37374394 +,,20267181,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267181&format=geojson,,,,",ak20267181,",1.6,ml,,ak,,"43km E of Cape Yakataga, Alaska",0.97,39,",ak,",automatic,1538265507655,"M 1.6 - 43km E of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538265718523,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267181 +,,60241226,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nm60241226&format=geojson,0.05888,,49.0,",nm60241226,",1.61,md,,nm,17.0,"3km NE of Caruthersville, Missouri",0.04,40,",nm,",reviewed,1538265486880,"M 1.6 - 3km NE of Caruthersville, Missouri",0,earthquake,",geoserve,origin,phase-data,",-360.0,1538662502900,https://earthquake.usgs.gov/earthquakes/eventpage/nm60241226 +,,37374370,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37374370&format=geojson,0.005381,,43.0,",ci37374370,",0.56,ml,,ci,33.0,"10km NE of Aguanga, CA",0.15,5,",ci,",reviewed,1538264521850,"M 0.6 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538423859588,https://earthquake.usgs.gov/earthquakes/eventpage/ci37374370 +,,37374362,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37374362&format=geojson,0.008816,,82.0,",ci37374362,",0.53,ml,,ci,26.0,"10km NE of Aguanga, CA",0.13,4,",ci,",reviewed,1538264451860,"M 0.5 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538420187289,https://earthquake.usgs.gov/earthquakes/eventpage/ci37374362 +,,37197356,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37197356&format=geojson,0.01153,,84.0,",ci37197356,",0.32,ml,,ci,21.0,"9km NE of Aguanga, CA",0.13,2,",ci,",reviewed,1538264442280,"M 0.3 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538420392319,https://earthquake.usgs.gov/earthquakes/eventpage/ci37197356 +,,37197364,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37197364&format=geojson,0.01185,,144.0,",ci37197364,",0.22,ml,,ci,18.0,"9km NE of Aguanga, CA",0.13,1,",ci,",reviewed,1538264435780,"M 0.2 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538420568337,https://earthquake.usgs.gov/earthquakes/eventpage/ci37197364 +,,73091506,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091506&format=geojson,0.01698,,42.0,",nc73091506,",1.88,md,,nc,46.0,"2km N of The Geysers, CA",0.07,54,",nc,",reviewed,1538264085000,"M 1.9 - 2km N of The Geysers, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538532243071,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091506 +,,60298447,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60298447&format=geojson,0.009104,,136.0,",uu60298447,",0.16,md,,uu,9.0,"14km N of West Yellowstone, Montana",0.12,0,",uu,",reviewed,1538263859800,"M 0.2 - 14km N of West Yellowstone, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538403800980,https://earthquake.usgs.gov/earthquakes/eventpage/uu60298447 +,,20267179,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267179&format=geojson,,,,",ak20267179,",1.7,ml,,ak,,"26km SW of Tanaga Volcano, Alaska",0.58,44,",ak,",reviewed,1538263854565,"M 1.7 - 26km SW of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539067250264,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267179 +,,60298442,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60298442&format=geojson,0.007437,,100.0,",uu60298442,",0.84,ml,,uu,12.0,"14km N of West Yellowstone, Montana",0.17,11,",uu,",reviewed,1538263683790,"M 0.8 - 14km N of West Yellowstone, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538403367900,https://earthquake.usgs.gov/earthquakes/eventpage/uu60298442 +,1.0,1000h4gs,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h4gs&format=geojson,2.016,3.0,54.0,",us1000h4gs,pt18272050,",4.4,mb,,us,,"209km N of Loiza, Puerto Rico",0.62,298,",us,pt,",reviewed,1538263284360,"M 4.4 - 209km N of Loiza, Puerto Rico",0,earthquake,",dyfi,geoserve,origin,phase-data,",-240.0,1539477560869,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h4gs +,,37374338,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37374338&format=geojson,0.1197,,81.0,",ci37374338,",1.11,ml,,ci,30.0,"6km NW of San Jacinto, CA",0.2,19,",ci,",reviewed,1538262826670,"M 1.1 - 6km NW of San Jacinto, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538402814040,https://earthquake.usgs.gov/earthquakes/eventpage/ci37374338 +,,37374330,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37374330&format=geojson,0.1005,,125.0,",nn00658829,ci37374330,",1.35,ml,,ci,10.0,"19km E of Stovepipe Wells, CA",0.08,28,",nn,ci,",reviewed,1538262439070,"M 1.4 - 19km E of Stovepipe Wells, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538419275935,https://earthquake.usgs.gov/earthquakes/eventpage/ci37374330 +,,73091496,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091496&format=geojson,0.1775,,159.0,",nc73091496,nn00660083,",1.19,md,,nc,22.0,"17km WSW of Round Valley, CA",0.08,22,",nc,nn,",reviewed,1538262247750,"M 1.2 - 17km WSW of Round Valley, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1539033022511,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091496 +,,2018272009,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018272009&format=geojson,0.1666,,239.0,",pr2018272009,",2.07,md,,pr,8.0,"8km S of Tallaboa, Puerto Rico",0.26,66,",pr,",reviewed,1538261946640,"M 2.1 - 8km S of Tallaboa, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538269837350,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018272009 +,,37374322,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37374322&format=geojson,0.2188,,88.0,",ci37374322,",1.55,ml,,ci,14.0,"13km SSW of Olancha, CA",0.22,37,",ci,",reviewed,1538261605960,"M 1.6 - 13km SSW of Olancha, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538419108038,https://earthquake.usgs.gov/earthquakes/eventpage/ci37374322 +,,00658821,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658821&format=geojson,0.356,,164.87,",nn00658821,",1.1,ml,,nn,23.0,"66km NW of Nellis Air Force Base, Nevada",0.1335,19,",nn,",reviewed,1538261557578,"M 1.1 - 66km NW of Nellis Air Force Base, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538268009680,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658821 +,,37374306,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37374306&format=geojson,0.005788,,43.0,",ci37374306,",0.37,ml,,ci,21.0,"10km NE of Aguanga, CA",0.11,2,",ci,",reviewed,1538261182560,"M 0.4 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538413837680,https://earthquake.usgs.gov/earthquakes/eventpage/ci37374306 +,,20267175,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267175&format=geojson,,,,",ak20267175,",1.4,ml,,ak,,"108km W of Talkeetna, Alaska",0.5,30,",ak,",reviewed,1538260705085,"M 1.4 - 108km W of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067249679,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267175 +,,20267173,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267173&format=geojson,,,,",ak20267173,",1.3,ml,,ak,,"21km NNE of Badger, Alaska",0.56,26,",ak,",reviewed,1538260601354,"M 1.3 Explosion - 21km NNE of Badger, Alaska",0,explosion,",geoserve,origin,phase-data,",-540.0,1539067249171,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267173 +,,2018272008,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018272008&format=geojson,0.0921,,194.0,",pr2018272008,",1.95,md,,pr,3.0,"4km SW of Sabana Grande, Puerto Rico",0.16,58,",pr,",reviewed,1538260060830,"M 2.0 - 4km SW of Sabana Grande, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538269804286,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018272008 +,,61788986,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61788986&format=geojson,0.0191,,162.0,",av61788986,",-0.44,ml,,av,4.0,"42km ENE of Adak, Alaska",0.04,0,",av,",reviewed,1538260052140,"M -0.4 - 42km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538429034570,https://earthquake.usgs.gov/earthquakes/eventpage/av61788986 +,,20274130,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20274130&format=geojson,,,,",ak20274130,",1.0,ml,,ak,,"47km NE of New Allakaket, Alaska",0.51,15,",ak,",reviewed,1538259868578,"M 1.0 - 47km NE of New Allakaket, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067248644,https://earthquake.usgs.gov/earthquakes/eventpage/ak20274130 +,,80311899,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80311899&format=geojson,0.07,,133.0,",mb80311899,",0.95,ml,,mb,8.0,"15km SE of Lima, Montana",0.19,14,",mb,",reviewed,1538259718310,"M 1.0 - 15km SE of Lima, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538772479970,https://earthquake.usgs.gov/earthquakes/eventpage/mb80311899 +,,20267171,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267171&format=geojson,,,,",ak20267171,",1.8,ml,,ak,,"77km SSW of Kaktovik, Alaska",0.71,50,",ak,",reviewed,1538259609862,"M 1.8 - 77km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067248080,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267171 +,,37374290,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37374290&format=geojson,0.1335,,54.0,",ci37374290,",1.56,ml,,ci,46.0,"26km ENE of Pine Valley, CA",0.18,37,",ci,",reviewed,1538259486220,"M 1.6 - 26km ENE of Pine Valley, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538603701250,https://earthquake.usgs.gov/earthquakes/eventpage/ci37374290 +,,20267170,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267170&format=geojson,,,,",ak20267170,",1.3,ml,,ak,,"90km W of Willow, Alaska",0.34,26,",ak,",reviewed,1538258426443,"M 1.3 - 90km W of Willow, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067247557,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267170 +,,73091466,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091466&format=geojson,0.001669,,95.0,",nc73091466,",0.56,md,,nc,8.0,"7km NW of The Geysers, CA",0.03,5,",nc,",automatic,1538257990960,"M 0.6 - 7km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538265064695,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091466 +,,73091461,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091461&format=geojson,0.002687,,88.0,",nc73091461,",1.12,md,,nc,12.0,"7km NW of The Geysers, CA",0.17,19,",nc,",automatic,1538257939080,"M 1.1 - 7km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538263502527,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091461 +,,2018272007,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018272007&format=geojson,0.81,,332.0,",pr2018272007,",2.77,md,,pr,3.0,"43km NW of San Antonio, Puerto Rico",0.03,118,",pr,",reviewed,1538257761350,"M 2.8 - 43km NW of San Antonio, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538269764150,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018272007 +,,73091456,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091456&format=geojson,0.01924,,117.0,",nc73091456,",0.67,md,,nc,8.0,"8km NW of The Geysers, CA",0.02,7,",nc,",automatic,1538257406980,"M 0.7 - 8km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538262003380,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091456 +,,1000h7i1,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h7i1&format=geojson,1.864,,77.0,",us1000h7i1,",4.0,mb,,us,,"38km N of Palu, Indonesia",1.06,246,",us,",reviewed,1538257346990,"M 4.0 - 38km N of Palu, Indonesia",0,earthquake,",geoserve,origin,phase-data,",480.0,1539474253040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h7i1 +,,70805264,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70805264&format=geojson,0.1568,,171.0,",av70805264,",0.72,ml,,av,8.0,"97km NW of Nikiski, Alaska",0.14,8,",av,",reviewed,1538257294660,"M 0.7 - 97km NW of Nikiski, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538428586950,https://earthquake.usgs.gov/earthquakes/eventpage/av70805264 +,,20267162,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267162&format=geojson,,,,",ak20267162,av61788971,",1.4,ml,,ak,,"97km NNW of Nikiski, Alaska",1.03,30,",ak,av,",automatic,1538257278762,"M 1.4 - 97km NNW of Nikiski, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538428454920,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267162 +,,20267157,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267157&format=geojson,,,,",ak20267157,",1.2,ml,,ak,,"16km ESE of Y, Alaska",0.51,22,",ak,",reviewed,1538257158693,"M 1.2 - 16km ESE of Y, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067246949,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267157 +,,20267155,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267155&format=geojson,,,,",ak20267155,",2.3,ml,,ak,,"35km SE of Amatignak Island, Alaska",0.51,81,",ak,",reviewed,1538257065900,"M 2.3 - 35km SE of Amatignak Island, Alaska",0,earthquake,",geoserve,origin,phase-data,",-720.0,1539067246367,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267155 +,,20267148,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267148&format=geojson,,,,",ak20267148,us1000h4fh,",2.8,ml,,ak,,"32km W of Big Lake, Alaska",0.69,121,",ak,us,",reviewed,1538256878655,"M 2.8 - 32km W of Big Lake, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539472979040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267148 +,,73091446,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091446&format=geojson,0.01208,,43.0,",nc73091446,",1.05,md,,nc,13.0,"5km W of Cobb, CA",0.03,17,",nc,",automatic,1538256730010,"M 1.1 - 5km W of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538260503242,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091446 +,,73091441,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091441&format=geojson,0.01009,,46.0,",nc73091441,",0.67,md,,nc,17.0,"5km W of Cobb, CA",0.03,7,",nc,",reviewed,1538256716770,"M 0.7 - 5km W of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538447657621,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091441 +,,73091451,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091451&format=geojson,0.01027,,116.0,",nc73091451,",0.66,md,,nc,9.0,"11km E of Mammoth Lakes, CA",0.03,7,",nc,",reviewed,1538256690560,"M 0.7 - 11km E of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538414882995,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091451 +,,20267146,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267146&format=geojson,,,,",ak20267146,",1.9,ml,,ak,,"28km SW of Tanaga Volcano, Alaska",0.56,56,",ak,",reviewed,1538256645786,"M 1.9 - 28km SW of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539067244895,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267146 +,,61424587,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61424587&format=geojson,0.5782,,234.0,",uw61424587,",2.04,ml,,uw,8.0,"5km SSW of Princeton, Canada",0.34,64,",uw,",reviewed,1538256261380,"M 2.0 Explosion - 5km SSW of Princeton, Canada",0,explosion,",geoserve,origin,phase-data,",-480.0,1538428697600,https://earthquake.usgs.gov/earthquakes/eventpage/uw61424587 +,,20274123,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20274123&format=geojson,,,,",ak20274123,",2.4,ml,,ak,,"21km SSW of Little Sitkin Island, Alaska",0.68,89,",ak,",reviewed,1538256045461,"M 2.4 - 21km SSW of Little Sitkin Island, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539067244377,https://earthquake.usgs.gov/earthquakes/eventpage/ak20274123 +,,37374266,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37374266&format=geojson,0.0117,,100.0,",ci37374266,",0.46,ml,,ci,22.0,"12km S of Anza, CA",0.09,3,",ci,",reviewed,1538255972320,"M 0.5 - 12km S of Anza, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538413458801,https://earthquake.usgs.gov/earthquakes/eventpage/ci37374266 +,,61424582,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61424582&format=geojson,0.02391,,90.0,",uw61424582,",0.6,ml,,uw,9.0,"28km NNW of Packwood, Washington",0.05,6,",uw,",reviewed,1538255675930,"M 0.6 - 28km NNW of Packwood, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538447718300,https://earthquake.usgs.gov/earthquakes/eventpage/uw61424582 +,,37374250,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37374250&format=geojson,0.05396,,78.0,",ci37374250,",1.34,ml,,ci,23.0,"5km ESE of Lebec, CA",0.23,28,",ci,",reviewed,1538255437980,"M 1.3 - 5km ESE of Lebec, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538402788462,https://earthquake.usgs.gov/earthquakes/eventpage/ci37374250 +,,73091436,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091436&format=geojson,0.008287,,124.0,",nc73091436,",0.23,md,,nc,7.0,"6km W of Cobb, CA",0.02,1,",nc,",reviewed,1538255409510,"M 0.2 - 6km W of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538448468871,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091436 +,,1000h7i2,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h7i2&format=geojson,24.803,,158.0,",us1000h7i2,",4.5,mb,,us,,Southern Mid-Atlantic Ridge,0.61,312,",us,",reviewed,1538255384450,M 4.5 - Southern Mid-Atlantic Ridge,0,earthquake,",geoserve,origin,phase-data,",-60.0,1539472681040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h7i2 +,,70621012,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70621012&format=geojson,0.01279,,33.0,",hv70621012,",1.87,ml,,hv,21.0,"5km WSW of Volcano, Hawaii",0.1,54,",hv,",automatic,1538255120320,"M 1.9 - 5km WSW of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538255461390,https://earthquake.usgs.gov/earthquakes/eventpage/hv70621012 +,,20267145,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267145&format=geojson,,,,",ak20267145,",1.1,ml,,ak,,"42km W of Cantwell, Alaska",0.45,19,",ak,",reviewed,1538254827512,"M 1.1 - 42km W of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067243847,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267145 +,,20274121,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20274121&format=geojson,,,,",ak20274121,",1.7,ml,,ak,,"10km SSE of Amatignak Island, Alaska",0.35,44,",ak,",reviewed,1538253870864,"M 1.7 - 10km SSE of Amatignak Island, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539067243338,https://earthquake.usgs.gov/earthquakes/eventpage/ak20274121 +,,37374226,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37374226&format=geojson,0.009199,,30.0,",ci37374226,",1.12,ml,,ci,46.0,"9km NE of Aguanga, CA",0.21,19,",ci,",reviewed,1538253676150,"M 1.1 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538402819300,https://earthquake.usgs.gov/earthquakes/eventpage/ci37374226 +,,20274120,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20274120&format=geojson,,,,",ak20274120,",0.9,ml,,ak,,"129km NW of Arctic Village, Alaska",0.4,12,",ak,",reviewed,1538253650129,"M 0.9 - 129km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067242811,https://earthquake.usgs.gov/earthquakes/eventpage/ak20274120 +,,70251603,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ismpkansas70251603&format=geojson,0.1296,,227.0,",ismpkansas70251603,",1.72,ml,,ismpkansas,9.0,"12km SW of Wellington, Kansas",0.03,46,",ismpkansas,",reviewed,1538253233610,"M 1.7 - 12km SW of Wellington, Kansas",0,earthquake,",geoserve,origin,phase-data,",-360.0,1538436271820,https://earthquake.usgs.gov/earthquakes/eventpage/ismpkansas70251603 +,,20267138,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267138&format=geojson,,,,",ak20267138,",1.4,ml,,ak,,"72km WSW of Tok, Alaska",0.76,30,",ak,",reviewed,1538252492484,"M 1.4 - 72km WSW of Tok, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067242188,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267138 +,,61424557,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61424557&format=geojson,0.02259,,90.0,",uw61424557,",0.62,ml,,uw,10.0,"27km NNW of Packwood, Washington",0.05,6,",uw,",reviewed,1538252414810,"M 0.6 - 27km NNW of Packwood, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538447556560,https://earthquake.usgs.gov/earthquakes/eventpage/uw61424557 +,,00658808,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658808&format=geojson,0.268,,87.82,",nn00658808,",2.0,ml,,nn,7.0,"11km W of Ely, Nevada",0.3621,62,",nn,",reviewed,1538252377274,"M 2.0 Explosion - 11km W of Ely, Nevada",0,explosion,",geoserve,origin,phase-data,",-480.0,1538253594689,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658808 +,,20267135,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267135&format=geojson,,,,",ak20267135,",1.0,ml,,ak,,"10km SSW of Big Lake, Alaska",0.6,15,",ak,",reviewed,1538251849263,"M 1.0 - 10km SSW of Big Lake, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067241600,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267135 +,,20267134,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267134&format=geojson,,,,",ak20267134,",1.3,ml,,ak,,"92km NW of Arctic Village, Alaska",0.65,26,",ak,",reviewed,1538251637365,"M 1.3 - 92km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067241075,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267134 +,,37374202,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37374202&format=geojson,0.01451,,114.0,",ci37374202,",0.41,ml,,ci,23.0,"10km NE of Aguanga, CA",0.11,3,",ci,",reviewed,1538251247720,"M 0.4 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538417812007,https://earthquake.usgs.gov/earthquakes/eventpage/ci37374202 +,,00660082,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660082&format=geojson,0.034,,168.55,",nn00660082,",0.7,ml,,nn,6.0,"33km ESE of Hawthorne, Nevada",0.0769,8,",nn,",reviewed,1538251082201,"M 0.7 - 33km ESE of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539031909615,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660082 +,,20274116,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20274116&format=geojson,,,,",ak20274116,",2.1,ml,,ak,,"19km ESE of Amatignak Island, Alaska",0.44,68,",ak,",reviewed,1538251070421,"M 2.1 - 19km ESE of Amatignak Island, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539067240561,https://earthquake.usgs.gov/earthquakes/eventpage/ak20274116 +,,20267131,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267131&format=geojson,,,,",ak20267131,",1.3,ml,,ak,,"126km NNW of Arctic Village, Alaska",0.46,26,",ak,",reviewed,1538250830211,"M 1.3 - 126km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067240033,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267131 +,,2018272006,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018272006&format=geojson,0.2326,,280.0,",pr2018272006,",2.14,md,,pr,6.0,"21km SSE of Tallaboa, Puerto Rico",0.28,70,",pr,",reviewed,1538250415360,"M 2.1 - 21km SSE of Tallaboa, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538269726582,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018272006 +,,73091426,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091426&format=geojson,0.003523,,49.0,",nc73091426,",0.93,md,,nc,21.0,"7km WNW of The Geysers, CA",0.04,13,",nc,",automatic,1538250042370,"M 0.9 - 7km WNW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538251803420,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091426 +,,20267126,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267126&format=geojson,,,,",ak20267126,",1.8,ml,,ak,,"74km SSW of Kaktovik, Alaska",0.56,50,",ak,",reviewed,1538249866104,"M 1.8 - 74km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067239462,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267126 +,,1000h4dn,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h4dn&format=geojson,0.135,,191.0,",ismpkansas70251598,us1000h4dn,",2.8,ml,,us,,"12km SW of Wellington, Kansas",0.35,121,",ismpkansas,us,",reviewed,1538249135800,"M 2.8 - 12km SW of Wellington, Kansas",0,earthquake,",geoserve,origin,phase-data,",-360.0,1539469108040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h4dn +,,70620932,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70620932&format=geojson,0.02536,,77.0,",hv70620932,us1000h4dl,",2.66,ml,,hv,49.0,"26km E of Honaunau-Napoopoo, Hawaii",0.16,109,",hv,us,",reviewed,1538249077170,"M 2.7 - 26km E of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538258282040,https://earthquake.usgs.gov/earthquakes/eventpage/hv70620932 +,,61424507,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61424507&format=geojson,0.05484,,198.0,",uw61424507,",0.32,ml,,uw,12.0,"36km SSE of Morton, Washington",0.12,2,",uw,",reviewed,1538248956510,"M 0.3 - 36km SSE of Morton, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538447331110,https://earthquake.usgs.gov/earthquakes/eventpage/uw61424507 +,,20267120,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267120&format=geojson,,,,",ak20267120,",1.4,ml,,ak,,"44km ENE of Cape Yakataga, Alaska",0.99,30,",ak,",automatic,1538248570647,"M 1.4 - 44km ENE of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538248862557,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267120 +,,1000h4dg,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h4dg&format=geojson,2.687,,91.0,",us1000h4dg,",4.4,mb,,us,,"59km W of Kasiguncu, Indonesia",0.61,298,",us,",reviewed,1538248539370,"M 4.4 - 59km W of Kasiguncu, Indonesia",0,earthquake,",geoserve,origin,phase-data,",480.0,1539472264040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h4dg +,,20267117,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267117&format=geojson,,,,",ak20267117,",1.3,ml,,ak,,"7km NNW of Big Lake, Alaska",0.69,26,",ak,",reviewed,1538248220768,"M 1.3 - 7km NNW of Big Lake, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067238871,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267117 +,,1000h7hs,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h7hs&format=geojson,1.187,,193.0,",ak20267113,us1000h7hs,",3.8,mb,,us,,"112km SW of Amukta Island, Alaska",0.9,222,",ak,us,",reviewed,1538247964730,"M 3.8 - 112km SW of Amukta Island, Alaska",0,earthquake,",geoserve,origin,phase-data,",-660.0,1539470767040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h7hs +,,37374146,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37374146&format=geojson,0.0716,,66.0,",ci37374146,",0.54,ml,,ci,18.0,"10km NE of Aguanga, CA",0.21,4,",ci,",reviewed,1538247876590,"M 0.5 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538402804584,https://earthquake.usgs.gov/earthquakes/eventpage/ci37374146 +,,37374138,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37374138&format=geojson,0.06291,,110.0,",ci37374138,",0.31,ml,,ci,12.0,"11km NE of Aguanga, CA",0.18,1,",ci,",reviewed,1538247847500,"M 0.3 - 11km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538402806582,https://earthquake.usgs.gov/earthquakes/eventpage/ci37374138 +,,20267110,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267110&format=geojson,,,,",ak20267110,",2.1,ml,,ak,,"31km SE of Amatignak Island, Alaska",0.55,68,",ak,",reviewed,1538247740549,"M 2.1 - 31km SE of Amatignak Island, Alaska",0,earthquake,",geoserve,origin,phase-data,",-720.0,1539067237779,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267110 +,,70620887,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70620887&format=geojson,0.03736,,57.0,",hv70620887,",1.89,ml,,hv,34.0,"22km ENE of Honaunau-Napoopoo, Hawaii",0.17,55,",hv,",reviewed,1538247716630,"M 1.9 - 22km ENE of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538438925710,https://earthquake.usgs.gov/earthquakes/eventpage/hv70620887 +,,80311894,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80311894&format=geojson,0.086,,186.0,",mb80311894,",0.76,ml,,mb,9.0,"24km NW of Helena Valley Northwest, Montana",0.06,9,",mb,",reviewed,1538247526400,"M 0.8 - 24km NW of Helena Valley Northwest, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538427002660,https://earthquake.usgs.gov/earthquakes/eventpage/mb80311894 +,,20267105,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267105&format=geojson,,,,",ak20267105,",2.0,ml,,ak,,"158km SSE of Kotzebue, Alaska",0.8,62,",ak,",reviewed,1538247213270,"M 2.0 - 158km SSE of Kotzebue, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067237230,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267105 +,,70620877,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70620877&format=geojson,0.03367,,66.0,",hv70620877,",2.01,ml,,hv,35.0,"22km ENE of Honaunau-Napoopoo, Hawaii",0.12,62,",hv,",reviewed,1538247197390,"M 2.0 - 22km ENE of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538279945660,https://earthquake.usgs.gov/earthquakes/eventpage/hv70620877 +,,20267100,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267100&format=geojson,,,,",ak20267100,us1000h4d4,",2.6,ml,,ak,,"157km SSE of Kotzebue, Alaska",0.64,104,",ak,us,",reviewed,1538247128139,"M 2.6 - 157km SSE of Kotzebue, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067236614,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267100 +,,20267098,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267098&format=geojson,,,,",ak20267098,",1.4,ml,,ak,,"103km NNW of Arctic Village, Alaska",0.73,30,",ak,",reviewed,1538247049972,"M 1.4 - 103km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067236035,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267098 +,,70620872,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70620872&format=geojson,0.03074,,66.0,",hv70620872,",0.99,md,,hv,18.0,"22km ENE of Honaunau-Napoopoo, Hawaii",0.11,15,",hv,",reviewed,1538247045330,"M 1.0 - 22km ENE of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538276146040,https://earthquake.usgs.gov/earthquakes/eventpage/hv70620872 +,,20267099,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267099&format=geojson,,,,",ak20267099,",1.2,ml,,ak,,"22km W of Nikiski, Alaska",0.32,22,",ak,",reviewed,1538247042304,"M 1.2 - 22km W of Nikiski, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067235462,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267099 +,,60298412,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60298412&format=geojson,0.0631,,107.0,",uu60298412,",1.72,md,,uu,7.0,"71km ENE of Old Faithful Geyser, Wyoming",0.08,46,",uu,",reviewed,1538246830590,"M 1.7 - 71km ENE of Old Faithful Geyser, Wyoming",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538405445280,https://earthquake.usgs.gov/earthquakes/eventpage/uu60298412 +,,2018272005,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018272005&format=geojson,0.2218,,271.0,",pr2018272005,",2.57,md,,pr,6.0,"8km W of Rincon, Puerto Rico",0.36,102,",pr,",reviewed,1538246793190,"M 2.6 - 8km W of Rincon, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538253477246,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018272005 +,,1000h4cy,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h4cy&format=geojson,6.151,,56.0,",us1000h4cy,",4.9,mww,,us,,"100km ENE of Lakatoro, Vanuatu",0.81,369,",us,",reviewed,1538246081530,"M 4.9 - 100km ENE of Lakatoro, Vanuatu",0,earthquake,",geoserve,origin,phase-data,",660.0,1538491935040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h4cy +,,20267090,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267090&format=geojson,,,,",ak20267090,",1.5,ml,,ak,,"87km NW of Arctic Village, Alaska",0.76,35,",ak,",reviewed,1538246063564,"M 1.5 - 87km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067234891,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267090 +,,20267089,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267089&format=geojson,,,,",ak20267089,",1.0,ml,,ak,,"84km WSW of Cantwell, Alaska",0.49,15,",ak,",reviewed,1538246006615,"M 1.0 - 84km WSW of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067234358,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267089 +,,60298407,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60298407&format=geojson,0.07176,,123.0,",uu60298407,",0.8,md,,uu,7.0,"70km ENE of Old Faithful Geyser, Wyoming",0.2,10,",uu,",reviewed,1538245943570,"M 0.8 - 70km ENE of Old Faithful Geyser, Wyoming",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538404544850,https://earthquake.usgs.gov/earthquakes/eventpage/uu60298407 +,,20267087,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267087&format=geojson,,,,",ak20267087,",1.6,ml,,ak,,"85km NNW of Arctic Village, Alaska",0.63,39,",ak,",reviewed,1538245608424,"M 1.6 - 85km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067233749,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267087 +,,00660080,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660080&format=geojson,0.127,,145.32,",nn00660080,",0.9,ml,,nn,11.0,"9km N of Truckee, California",0.0893,12,",nn,",reviewed,1538245525378,"M 0.9 - 9km N of Truckee, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539031539382,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660080 +,,37374098,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37374098&format=geojson,0.01507,,206.0,",ci37374098,",0.08,ml,,ci,10.0,"9km NE of Aguanga, CA",0.05,0,",ci,",reviewed,1538245420800,"M 0.1 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538418678872,https://earthquake.usgs.gov/earthquakes/eventpage/ci37374098 +,,37374090,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37374090&format=geojson,0.01725,,208.0,",ci37374090,",0.3,ml,,ci,14.0,"9km NE of Aguanga, CA",0.08,1,",ci,",reviewed,1538245298340,"M 0.3 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538418049811,https://earthquake.usgs.gov/earthquakes/eventpage/ci37374090 +,,20267082,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267082&format=geojson,,,,",ak20267082,",1.6,ml,,ak,,"86km ENE of Cantwell, Alaska",0.58,39,",ak,",reviewed,1538245107348,"M 1.6 - 86km ENE of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067233187,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267082 +,,20267080,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267080&format=geojson,,,,",ak20267080,",1.6,ml,,ak,,"54km WNW of Valdez, Alaska",0.74,39,",ak,",reviewed,1538245102549,"M 1.6 - 54km WNW of Valdez, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067232550,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267080 +,,20267073,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267073&format=geojson,,,,",ak20267073,us1000h4cs,",3.1,ml,,ak,,"161km S of Kotzebue, Alaska",0.64,148,",ak,us,",reviewed,1538244719771,"M 3.1 - 161km S of Kotzebue, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539108361053,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267073 +,,73091411,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091411&format=geojson,0.04118,,126.0,",nc73091411,",0.43,md,,nc,17.0,"21km NW of Parkfield, CA",0.12,3,",nc,",reviewed,1538244711420,"M 0.4 - 21km NW of Parkfield, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538439954774,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091411 +,2.0,1000h4cr,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h4cr&format=geojson,0.138,2.0,193.0,",us1000h4cr,ismpkansas70251593,",2.8,ml,,us,,"12km SW of Wellington, Kansas",0.37,121,",us,ismpkansas,",reviewed,1538244456720,"M 2.8 - 12km SW of Wellington, Kansas",0,earthquake,",dyfi,geoserve,origin,phase-data,",-360.0,1538490615017,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h4cr +,,61788891,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61788891&format=geojson,0.1486,,337.0,",av61788891,",1.81,ml,,av,4.0,"98km NE of Chignik Lake, Alaska",0.23,50,",av,",reviewed,1538244369440,"M 1.8 - 98km NE of Chignik Lake, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538426522090,https://earthquake.usgs.gov/earthquakes/eventpage/av61788891 +,,70620787,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70620787&format=geojson,0.01953,,91.0,",hv70620787,",0.67,md,,hv,12.0,"26km NNW of Pahala, Hawaii",0.17,7,",hv,",reviewed,1538244365420,"M 0.7 - 26km NNW of Pahala, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538255695510,https://earthquake.usgs.gov/earthquakes/eventpage/hv70620787 +,,20274100,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20274100&format=geojson,,,,",ak20274100,",1.8,ml,,ak,,"79km S of Unalaska, Alaska",0.4,50,",ak,",reviewed,1538244273235,"M 1.8 - 79km S of Unalaska, Alaska",0,earthquake,",geoserve,origin,phase-data,",-660.0,1539067231321,https://earthquake.usgs.gov/earthquakes/eventpage/ak20274100 +,,1000h4cn,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h4cn&format=geojson,2.479,,65.0,",us1000h4cn,",4.5,mb,,us,,"173km SE of Pondaguitan, Philippines",0.6,312,",us,",reviewed,1538243606700,"M 4.5 - 173km SE of Pondaguitan, Philippines",0,earthquake,",geoserve,origin,phase-data,",480.0,1538489095040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h4cn +,,20274099,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20274099&format=geojson,,,,",ak20274099,",2.8,ml,,ak,,"110km SE of Atka, Alaska",0.57,121,",ak,",reviewed,1538243564361,"M 2.8 - 110km SE of Atka, Alaska",0,earthquake,",geoserve,origin,phase-data,",-720.0,1539067230787,https://earthquake.usgs.gov/earthquakes/eventpage/ak20274099 +,,37374058,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37374058&format=geojson,0.07745,,33.0,",ci37374058,",0.75,ml,,ci,24.0,"10km NE of Aguanga, CA",0.15,9,",ci,",reviewed,1538243510230,"M 0.8 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538402823097,https://earthquake.usgs.gov/earthquakes/eventpage/ci37374058 +,,20267071,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267071&format=geojson,,,,",ak20267071,",1.5,ml,,ak,,"108km NNW of Arctic Village, Alaska",0.75,35,",ak,",reviewed,1538243395727,"M 1.5 - 108km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067230242,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267071 +,,70620742,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70620742&format=geojson,0.02964,,137.0,",hv70620742,",1.04,md,,hv,19.0,"22km ENE of Honaunau-Napoopoo, Hawaii",0.14,17,",hv,",reviewed,1538243305880,"M 1.0 - 22km ENE of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538256473790,https://earthquake.usgs.gov/earthquakes/eventpage/hv70620742 +,,20267070,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267070&format=geojson,,,,",ak20267070,",1.5,ml,,ak,,"49km SE of Cohoe, Alaska",0.55,35,",ak,",reviewed,1538243247034,"M 1.5 - 49km SE of Cohoe, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067229628,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267070 +,,73091401,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091401&format=geojson,0.002545,,94.0,",nc73091401,",0.58,md,,nc,9.0,"10km WNW of The Geysers, CA",0.01,5,",nc,",automatic,1538242951250,"M 0.6 - 10km WNW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538246162886,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091401 +,,20274096,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20274096&format=geojson,,,,",ak20274096,",1.2,ml,,ak,,"109km N of Arctic Village, Alaska",0.54,22,",ak,",reviewed,1538242898185,"M 1.2 - 109km N of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067229115,https://earthquake.usgs.gov/earthquakes/eventpage/ak20274096 +,,20274095,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20274095&format=geojson,,,,",ak20274095,",1.5,ml,,ak,,"83km W of Cantwell, Alaska",0.61,35,",ak,",reviewed,1538242870548,"M 1.5 - 83km W of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067228574,https://earthquake.usgs.gov/earthquakes/eventpage/ak20274095 +,,37374042,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37374042&format=geojson,0.01808,,36.0,",ci37374042,",1.75,ml,,ci,61.0,"8km E of Yorba Linda, CA",0.18,47,",ci,",reviewed,1538242845500,"M 1.8 - 8km E of Yorba Linda, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538416708170,https://earthquake.usgs.gov/earthquakes/eventpage/ci37374042 +,,73091396,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091396&format=geojson,0.01634,,85.0,",nc73091396,",0.86,md,,nc,18.0,"9km E of Mammoth Lakes, CA",0.02,11,",nc,",reviewed,1538242748530,"M 0.9 - 9km E of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538448168849,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091396 +,,20267066,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267066&format=geojson,,,,",ak20267066,",1.9,ml,,ak,,"92km NW of Arctic Village, Alaska",0.63,56,",ak,",reviewed,1538242514561,"M 1.9 - 92km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067227965,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267066 +,,20267061,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267061&format=geojson,,,,",ak20267061,",1.7,ml,,ak,,"130km NW of Arctic Village, Alaska",0.64,44,",ak,",reviewed,1538242138993,"M 1.7 - 130km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067227396,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267061 +,,20267060,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267060&format=geojson,,,,",ak20267060,",1.5,ml,,ak,,"60km E of Cape Yakataga, Alaska",0.8,35,",ak,",reviewed,1538242046449,"M 1.5 Ice Quake - 60km E of Cape Yakataga, Alaska",0,ice quake,",geoserve,origin,phase-data,",-540.0,1539067226888,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267060 +,,70620692,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70620692&format=geojson,0.03168,,44.0,",hv70620692,",2.36,ml,,hv,46.0,"22km ENE of Honaunau-Napoopoo, Hawaii",0.13,86,",hv,",reviewed,1538241887300,"M 2.4 - 22km ENE of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538279018790,https://earthquake.usgs.gov/earthquakes/eventpage/hv70620692 +,,70620687,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70620687&format=geojson,0.007973,,44.0,",hv70620687,",0.59,md,,hv,19.0,"4km WSW of Volcano, Hawaii",0.11,5,",hv,",reviewed,1538241861690,"M 0.6 - 4km WSW of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538421324370,https://earthquake.usgs.gov/earthquakes/eventpage/hv70620687 +,,20267056,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267056&format=geojson,,,,",ak20267056,us1000h4cc,",2.5,ml,,ak,,"69km S of Kaktovik, Alaska",0.81,96,",ak,us,",reviewed,1538241578142,"M 2.5 - 69km S of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067226218,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267056 +,,37374010,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37374010&format=geojson,0.1236,,62.0,",ci37374010,",0.95,ml,,ci,33.0,"14km ESE of Julian, CA",0.19,14,",ci,",reviewed,1538241341490,"M 1.0 - 14km ESE of Julian, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538412746405,https://earthquake.usgs.gov/earthquakes/eventpage/ci37374010 +,,70620667,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70620667&format=geojson,0.03323,,61.0,",hv70620667,",1.0,md,,hv,22.0,"22km ENE of Honaunau-Napoopoo, Hawaii",0.15,15,",hv,",reviewed,1538241003710,"M 1.0 - 22km ENE of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538252760300,https://earthquake.usgs.gov/earthquakes/eventpage/hv70620667 +,,20267055,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267055&format=geojson,,,,",ak20267055,",1.3,ml,,ak,,"121km S of Kaktovik, Alaska",0.8,26,",ak,",reviewed,1538240992231,"M 1.3 - 121km S of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067225659,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267055 +,,80311889,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80311889&format=geojson,0.131,,101.0,",mb80311889,",1.01,ml,,mb,11.0,"16km SE of Lincoln, Montana",0.06,16,",mb,",reviewed,1538240877590,"M 1.0 - 16km SE of Lincoln, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538426644680,https://earthquake.usgs.gov/earthquakes/eventpage/mb80311889 +,,37373994,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37373994&format=geojson,0.01603,,96.0,",ci37373994,",0.2,ml,,ci,19.0,"9km NE of Aguanga, CA",0.09,1,",ci,",reviewed,1538240832940,"M 0.2 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538412170613,https://earthquake.usgs.gov/earthquakes/eventpage/ci37373994 +,,70620662,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70620662&format=geojson,0.03219,,41.0,",hv70620662,us1000h4c7,",2.79,ml,,hv,52.0,"22km ENE of Honaunau-Napoopoo, Hawaii",0.13,120,",hv,us,",reviewed,1538240580160,"M 2.8 - 22km ENE of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538488439040,https://earthquake.usgs.gov/earthquakes/eventpage/hv70620662 +,,00658803,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658803&format=geojson,0.337,,90.69,",nn00658803,",0.9,ml,,nn,12.0,"28km WSW of Hawthorne, Nevada",0.1758,12,",nn,",reviewed,1538240316232,"M 0.9 - 28km WSW of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538256377613,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658803 +,,20274089,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20274089&format=geojson,,,,",ak20274089,",2.1,ml,,ak,,"69km WSW of Larsen Bay, Alaska",0.37,68,",ak,",reviewed,1538240196971,"M 2.1 - 69km WSW of Larsen Bay, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067225125,https://earthquake.usgs.gov/earthquakes/eventpage/ak20274089 +,,37373970,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37373970&format=geojson,0.06568,,153.0,",ci37373970,",0.67,ml,,ci,12.0,"8km SW of Idyllwild, CA",0.05,7,",ci,",reviewed,1538240008610,"M 0.7 - 8km SW of Idyllwild, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538402855094,https://earthquake.usgs.gov/earthquakes/eventpage/ci37373970 +,,00660062,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660062&format=geojson,0.143,,124.51,",nn00660062,",0.6,ml,,nn,4.0,"9km E of Gardnerville, Nevada",0.1093,6,",nn,",reviewed,1538240000363,"M 0.6 - 9km E of Gardnerville, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539028556829,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660062 +,,00660061,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660061&format=geojson,0.178,,119.92,",nn00660061,",0.7,ml,,nn,6.0,"9km ENE of Gardnerville Ranchos, Nevada",0.1146,8,",nn,",reviewed,1538239936513,"M 0.7 - 9km ENE of Gardnerville Ranchos, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539028002768,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660061 +,,20267051,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267051&format=geojson,,,,",ak20267051,",2.2,ml,,ak,,"93km SE of Old Iliamna, Alaska",0.57,74,",ak,",reviewed,1538239734106,"M 2.2 - 93km SE of Old Iliamna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067224391,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267051 +,,20267050,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20267050&format=geojson,,,,",ak20267050,",2.5,ml,,ak,,"53km SSW of Little Sitkin Island, Alaska",0.45,96,",ak,",reviewed,1538239408244,"M 2.5 - 53km SSW of Little Sitkin Island, Alaska",0,earthquake,",geoserve,origin,phase-data,",720.0,1539067183434,https://earthquake.usgs.gov/earthquakes/eventpage/ak20267050 +,,00658799,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658799&format=geojson,0.116,,118.7,",nn00658799,",1.1,ml,,nn,26.0,"34km NW of Beatty, Nevada",0.1885,19,",nn,",reviewed,1538239176135,"M 1.1 - 34km NW of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539034503513,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658799 +,,73091366,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091366&format=geojson,0.03297,,67.0,",nc73091366,",1.75,md,,nc,32.0,"7km ENE of Pinnacles, CA",0.08,47,",nc,",reviewed,1538239106930,"M 1.8 - 7km ENE of Pinnacles, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538445243592,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091366 +,,37373946,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37373946&format=geojson,0.0298,,71.0,",ci37373946,",0.6,ml,,ci,21.0,"8km ENE of Aguanga, CA",0.09,6,",ci,",reviewed,1538237816470,"M 0.6 - 8km ENE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538417568451,https://earthquake.usgs.gov/earthquakes/eventpage/ci37373946 +,,37373938,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37373938&format=geojson,0.1184,,122.0,",ci37373938,nn00658791,",1.9,ml,,ci,17.0,"43km SW of Stovepipe Wells, CA",0.17,56,",ci,nn,",reviewed,1538237805550,"M 1.9 - 43km SW of Stovepipe Wells, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538402874581,https://earthquake.usgs.gov/earthquakes/eventpage/ci37373938 +,,70620582,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70620582&format=geojson,0.008531,,90.0,",hv70620582,",0.69,md,,hv,10.0,"27km E of Honaunau-Napoopoo, Hawaii",0.13,7,",hv,",reviewed,1538237567520,"M 0.7 - 27km E of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538255256060,https://earthquake.usgs.gov/earthquakes/eventpage/hv70620582 +,,20266946,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266946&format=geojson,,,,",ak20266946,",1.1,ml,,ak,,"51km W of Anchorage, Alaska",0.65,19,",ak,",reviewed,1538237252653,"M 1.1 - 51km W of Anchorage, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067182802,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266946 +,,73091361,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091361&format=geojson,0.01966,,64.0,",nc73091361,",0.27,md,,nc,15.0,"1km E of Mammoth Lakes, CA",0.04,1,",nc,",reviewed,1538237159050,"M 0.3 - 1km E of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538420762823,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091361 +,,20274085,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20274085&format=geojson,,,,",ak20274085,",1.1,ml,,ak,,"29km SSE of Cohoe, Alaska",0.16,19,",ak,",reviewed,1538237127711,"M 1.1 - 29km SSE of Cohoe, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067182251,https://earthquake.usgs.gov/earthquakes/eventpage/ak20274085 +,,20266944,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266944&format=geojson,,,,",ak20266944,",1.8,ml,,ak,,"69km NE of Kodiak, Alaska",0.74,50,",ak,",reviewed,1538236865415,"M 1.8 - 69km NE of Kodiak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067181701,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266944 +,,20266943,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266943&format=geojson,,,,",ak20266943,",1.4,ml,,ak,,"87km NNW of Arctic Village, Alaska",0.7,30,",ak,",reviewed,1538236129828,"M 1.4 - 87km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067181184,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266943 +,,20266940,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266940&format=geojson,,,,",ak20266940,",2.1,ml,,ak,,"77km SSW of Kaktovik, Alaska",0.77,68,",ak,",reviewed,1538235780262,"M 2.1 - 77km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067180561,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266940 +,,00658781,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658781&format=geojson,0.551,,160.81,",nn00658781,",1.4,ml,,nn,8.0,"32km SW of Lovelock, Nevada",0.1654,30,",nn,",reviewed,1538235607264,"M 1.4 - 32km SW of Lovelock, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538255265325,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658781 +,,20274081,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20274081&format=geojson,,,,",ak20274081,",1.2,ml,,ak,,"57km ESE of Whittier, Alaska",0.44,22,",ak,",reviewed,1538235405592,"M 1.2 - 57km ESE of Whittier, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067180040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20274081 +,,73091356,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091356&format=geojson,0.003979,,53.0,",nc73091356,",0.88,md,,nc,16.0,"5km NNW of The Geysers, CA",0.02,12,",nc,",automatic,1538235399250,"M 0.9 - 5km NNW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538238423056,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091356 +,2.0,37373922,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37373922&format=geojson,0.1722,2.0,83.0,",ci37373922,",1.7,ml,,ci,16.0,"13km SSW of Olancha, CA",0.16,45,",ci,",reviewed,1538235169880,"M 1.7 - 13km SSW of Olancha, CA",0,earthquake,",dyfi,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538402872585,https://earthquake.usgs.gov/earthquakes/eventpage/ci37373922 +,,73091346,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091346&format=geojson,0.008137,,144.0,",nc73091346,",0.56,md,,nc,8.0,"8km NW of The Geysers, CA",0.01,5,",nc,",automatic,1538235168660,"M 0.6 - 8km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538236922907,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091346 +,,20266939,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266939&format=geojson,,,,",ak20266939,",1.4,ml,,ak,,"83km SSW of Kaktovik, Alaska",0.56,30,",ak,",reviewed,1538235003078,"M 1.4 - 83km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067179508,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266939 +,,20266937,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266937&format=geojson,,,,",ak20266937,",1.7,ml,,ak,,"81km SSW of Kaktovik, Alaska",0.49,44,",ak,",reviewed,1538234111867,"M 1.7 - 81km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067178951,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266937 +,,20266934,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266934&format=geojson,,,,",ak20266934,",2.0,ml,,ak,,"74km SSW of Kaktovik, Alaska",0.52,62,",ak,",reviewed,1538233619094,"M 2.0 - 74km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067178342,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266934 +,,1000h4am,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h4am&format=geojson,0.818,,105.0,",us1000h4am,",4.2,mb,,us,,"40km SW of Ashkasham, Afghanistan",0.64,271,",us,",reviewed,1538233519150,"M 4.2 - 40km SW of Ashkasham, Afghanistan",0,earthquake,",geoserve,origin,phase-data,",270.0,1538234609040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h4am +,,20274077,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20274077&format=geojson,,,,",ak20274077,",1.6,ml,,ak,,"81km SSW of Kaktovik, Alaska",0.58,39,",ak,",reviewed,1538233159871,"M 1.6 - 81km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067177823,https://earthquake.usgs.gov/earthquakes/eventpage/ak20274077 +,,20266931,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266931&format=geojson,,,,",ak20266931,",1.4,ml,,ak,,"113km WSW of Old Crow, Canada",0.74,30,",ak,",reviewed,1538233138346,"M 1.4 - 113km WSW of Old Crow, Canada",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067177273,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266931 +,,20266928,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266928&format=geojson,,,,",ak20266928,",1.8,ml,,ak,,"110km NNW of Arctic Village, Alaska",0.62,50,",ak,",reviewed,1538232734563,"M 1.8 - 110km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067176701,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266928 +,,00660052,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660052&format=geojson,0.029,,153.27,",nn00660052,",-0.3,ml,,nn,8.0,"55km ENE of Beatty, Nevada",0.1324,0,",nn,",reviewed,1538232239482,"M -0.3 - 55km ENE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539027815861,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660052 +,,20266927,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266927&format=geojson,,,,",ak20266927,",0.7,ml,,ak,,"96km ESE of New Allakaket, Alaska",0.64,8,",ak,",reviewed,1538232115408,"M 0.7 - 96km ESE of New Allakaket, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067176192,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266927 +,,00658774,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658774&format=geojson,0.027,,58.29,",nn00658774,",0.1,ml,,nn,36.0,"55km ENE of Beatty, Nevada",0.2049,0,",nn,",reviewed,1538232042227,"M 0.1 - 55km ENE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538254710633,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658774 +,,37373866,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37373866&format=geojson,0.009397,,62.0,",ci37373866,",0.82,ml,,ci,32.0,"9km NE of Aguanga, CA",0.16,10,",ci,",reviewed,1538231790030,"M 0.8 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538402942520,https://earthquake.usgs.gov/earthquakes/eventpage/ci37373866 +,,37373858,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37373858&format=geojson,0.1022,,173.0,",ci37373858,",0.7,ml,,ci,5.0,"14km NE of Ojai, CA",0.06,8,",ci,",reviewed,1538231279580,"M 0.7 - 14km NE of Ojai, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538424327863,https://earthquake.usgs.gov/earthquakes/eventpage/ci37373858 +,2.0,1000h4a5,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h4a5&format=geojson,0.734,1.0,116.0,",us1000h4a5,",4.4,mb,,us,,"95km SE of Arica, Chile",1.17,298,",us,",reviewed,1538231195780,"M 4.4 - 95km SE of Arica, Chile",0,earthquake,",dyfi,geoserve,origin,phase-data,",-240.0,1538232579974,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h4a5 +,,37373850,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37373850&format=geojson,0.02126,,29.0,",ci37373850,",1.16,ml,,ci,54.0,"9km NE of Aguanga, CA",0.18,21,",ci,",reviewed,1538231009160,"M 1.2 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538415781190,https://earthquake.usgs.gov/earthquakes/eventpage/ci37373850 +,,37373842,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37373842&format=geojson,0.07064,,45.0,",ci37373842,",1.07,ml,,ci,44.0,"9km SW of Idyllwild, CA",0.18,18,",ci,",reviewed,1538230685060,"M 1.1 - 9km SW of Idyllwild, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538402945910,https://earthquake.usgs.gov/earthquakes/eventpage/ci37373842 +,,00660049,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660049&format=geojson,0.119,,153.54,",nn00660049,",0.1,ml,,nn,10.0,"33km NW of Beatty, Nevada",0.1643,0,",nn,",reviewed,1538230680263,"M 0.1 - 33km NW of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539026882694,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660049 +,,37373834,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37373834&format=geojson,0.01096,,67.0,",ci37373834,",0.23,ml,,ci,19.0,"10km NE of Aguanga, CA",0.13,1,",ci,",reviewed,1538230635970,"M 0.2 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538411715725,https://earthquake.usgs.gov/earthquakes/eventpage/ci37373834 +,,2018272004,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018272004&format=geojson,0.0633,,167.0,",pr2018272004,",1.34,md,,pr,4.0,"6km ENE of La Parguera, Puerto Rico",0.08,28,",pr,",reviewed,1538230047480,"M 1.3 - 6km ENE of La Parguera, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538239666491,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018272004 +,,70620372,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70620372&format=geojson,0.07821,,164.0,",hv70620372,",1.87,md,,hv,43.0,"4km SE of Pahala, Hawaii",0.15,54,",hv,",automatic,1538229742860,"M 1.9 - 4km SE of Pahala, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538229931550,https://earthquake.usgs.gov/earthquakes/eventpage/hv70620372 +,,61788781,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61788781&format=geojson,0.02455,,128.0,",av61788781,",0.03,ml,,av,5.0,"42km ENE of Adak, Alaska",0.16,0,",av,",reviewed,1538229690360,"M 0.0 - 42km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538425721840,https://earthquake.usgs.gov/earthquakes/eventpage/av61788781 +,,73091336,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091336&format=geojson,0.01296,,289.0,",nc73091336,",0.25,md,,nc,9.0,"12km WNW of Toms Place, CA",0.04,1,",nc,",reviewed,1538229619990,"M 0.3 - 12km WNW of Toms Place, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538413083705,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091336 +,,37373794,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37373794&format=geojson,0.02295,,35.0,",ci37373794,",1.56,ml,,ci,57.0,"8km NE of Aguanga, CA",0.22,37,",ci,",reviewed,1538229164850,"M 1.6 - 8km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538403008800,https://earthquake.usgs.gov/earthquakes/eventpage/ci37373794 +,,20266925,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266925&format=geojson,,,,",ak20266925,",0.9,ml,,ak,,"36km SW of Talkeetna, Alaska",0.75,12,",ak,",reviewed,1538229123832,"M 0.9 - 36km SW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067175617,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266925 +,,20266916,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266916&format=geojson,,,,",ak20266916,us1000h49z,",3.1,ml,,ak,,"75km SSW of Kaktovik, Alaska",0.6,148,",ak,us,",reviewed,1538229095340,"M 3.1 - 75km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539108360269,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266916 +,,20266917,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266917&format=geojson,,,,",ak20266917,",1.2,ml,,ak,,"67km W of Valdez, Alaska",0.56,22,",ak,",reviewed,1538229086614,"M 1.2 Ice Quake - 67km W of Valdez, Alaska",0,ice quake,",geoserve,origin,phase-data,",-540.0,1539067174292,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266917 +,,37373786,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37373786&format=geojson,0.08405,,34.0,",ci37373786,",1.34,ml,,ci,48.0,"9km NE of Aguanga, CA",0.2,28,",ci,",reviewed,1538228911650,"M 1.3 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538403012110,https://earthquake.usgs.gov/earthquakes/eventpage/ci37373786 +,,37373778,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37373778&format=geojson,0.02051,,64.0,",ci37373778,",0.55,ml,,ci,22.0,"10km NE of Aguanga, CA",0.23,5,",ci,",reviewed,1538228776430,"M 0.6 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538402927308,https://earthquake.usgs.gov/earthquakes/eventpage/ci37373778 +,,1000h49v,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h49v&format=geojson,3.269,,52.0,",us1000h49v,",4.1,mb,,us,,"6km N of Beshrabot, Uzbekistan",0.65,259,",us,",reviewed,1538228561240,"M 4.1 - 6km N of Beshrabot, Uzbekistan",0,earthquake,",geoserve,origin,phase-data,",300.0,1538232953040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h49v +,,73091326,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091326&format=geojson,0.001718,,86.0,",nc73091326,",0.57,md,,nc,10.0,"10km NW of The Geysers, CA",0.03,5,",nc,",automatic,1538228299820,"M 0.6 - 10km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538230083237,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091326 +,,37197348,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37197348&format=geojson,0.01883,,57.0,",ci37197348,",0.45,ml,,ci,27.0,"9km NE of Aguanga, CA",0.17,3,",ci,",reviewed,1538228236980,"M 0.5 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538415293023,https://earthquake.usgs.gov/earthquakes/eventpage/ci37197348 +,,37373762,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37373762&format=geojson,0.01544,,32.0,",ci37373762,",0.51,ml,,ci,32.0,"9km NE of Aguanga, CA",0.15,4,",ci,",reviewed,1538228230220,"M 0.5 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538414068891,https://earthquake.usgs.gov/earthquakes/eventpage/ci37373762 +,,1000h49t,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h49t&format=geojson,0.317,,107.0,",us1000h49t,",2.7,mb_lg,,us,,"17km N of Taloga, Oklahoma",0.2,112,",us,",reviewed,1538228060700,"M 2.7 - 17km N of Taloga, Oklahoma",0,earthquake,",geoserve,origin,phase-data,",-360.0,1538234339040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h49t +,3.6,1000h4jd,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h4jd&format=geojson,0.984,9.0,190.0,",us1000h4jd,",2.5,ml,,us,,"42km NNW of Yarmouth, Canada",0.39,99,",us,",reviewed,1538227974670,"M 2.5 - 42km NNW of Yarmouth, Canada",0,earthquake,",dyfi,geoserve,origin,phase-data,",-240.0,1538358710707,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h4jd +,,37373754,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37373754&format=geojson,0.01569,,64.0,",ci37373754,",0.85,ml,,ci,31.0,"9km NE of Aguanga, CA",0.17,11,",ci,",reviewed,1538227905510,"M 0.9 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538403016660,https://earthquake.usgs.gov/earthquakes/eventpage/ci37373754 +,,61788766,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61788766&format=geojson,0.01836,,224.0,",av61788766,",0.15,ml,,av,4.0,"49km W of Tanaga Volcano, Alaska",0.16,0,",av,",reviewed,1538227815210,"M 0.2 - 49km W of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538425339570,https://earthquake.usgs.gov/earthquakes/eventpage/av61788766 +,,20266914,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266914&format=geojson,,,,",ak20266914,",1.4,ml,,ak,,"93km NW of Arctic Village, Alaska",0.62,30,",ak,",reviewed,1538227564239,"M 1.4 - 93km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067173752,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266914 +,,61424302,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61424302&format=geojson,0.02342,,89.0,",uw61424302,",1.09,ml,,uw,10.0,"28km NNW of Packwood, Washington",0.04,18,",uw,",reviewed,1538227540460,"M 1.1 - 28km NNW of Packwood, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538446772590,https://earthquake.usgs.gov/earthquakes/eventpage/uw61424302 +,,20266912,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266912&format=geojson,,,,",ak20266912,",1.7,ml,,ak,,"107km NNW of Arctic Village, Alaska",0.73,44,",ak,",reviewed,1538227441914,"M 1.7 - 107km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067173173,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266912 +,,80311669,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80311669&format=geojson,0.111,,110.0,",mb80311669,",1.32,ml,,mb,12.0,"14km ESE of Lincoln, Montana",0.17,27,",mb,",reviewed,1538227208840,"M 1.3 - 14km ESE of Lincoln, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538772475710,https://earthquake.usgs.gov/earthquakes/eventpage/mb80311669 +,,70620282,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70620282&format=geojson,0.01716,,288.0,",hv70620282,",1.12,ml,,hv,12.0,"6km W of Volcano, Hawaii",0.11,19,",hv,",reviewed,1538226912330,"M 1.1 - 6km W of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538445344010,https://earthquake.usgs.gov/earthquakes/eventpage/hv70620282 +,,70620277,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70620277&format=geojson,0.03837,,62.0,",hv70620277,",1.03,md,,hv,25.0,"22km ENE of Honaunau-Napoopoo, Hawaii",0.13,16,",hv,",reviewed,1538226838400,"M 1.0 - 22km ENE of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538253998390,https://earthquake.usgs.gov/earthquakes/eventpage/hv70620277 +,,20266911,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266911&format=geojson,,,,",ak20266911,",1.3,ml,,ak,,"98km NW of Arctic Village, Alaska",0.66,26,",ak,",reviewed,1538226561443,"M 1.3 - 98km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067172619,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266911 +,,37373738,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37373738&format=geojson,0.02161,,67.0,",ci37373738,",0.43,ml,,ci,18.0,"8km NE of Aguanga, CA",0.17,3,",ci,",reviewed,1538226182190,"M 0.4 - 8km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538402960785,https://earthquake.usgs.gov/earthquakes/eventpage/ci37373738 +,2.0,37373730,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37373730&format=geojson,0.08638,1.0,37.0,",ci37373730,",1.59,ml,,ci,37.0,"16km ENE of Ojai, CA",0.26,39,",ci,",reviewed,1538226087320,"M 1.6 - 16km ENE of Ojai, CA",0,earthquake,",dyfi,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538412780738,https://earthquake.usgs.gov/earthquakes/eventpage/ci37373730 +,,37373722,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37373722&format=geojson,0.007091,,59.0,",ci37373722,",0.84,ml,,ci,28.0,"10km NE of Aguanga, CA",0.18,11,",ci,",reviewed,1538225924760,"M 0.8 - 10km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538403080510,https://earthquake.usgs.gov/earthquakes/eventpage/ci37373722 +,,37373714,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37373714&format=geojson,0.02237,,46.0,",ci37373714,",0.55,ml,,ci,33.0,"3km ESE of Lake Henshaw, CA",0.18,5,",ci,",reviewed,1538225752630,"M 0.6 - 3km ESE of Lake Henshaw, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538412325090,https://earthquake.usgs.gov/earthquakes/eventpage/ci37373714 +,,20266907,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266907&format=geojson,,,,",ak20266907,",1.7,ml,,ak,,"68km SSW of Kobuk, Alaska",0.66,44,",ak,",reviewed,1538225535131,"M 1.7 - 68km SSW of Kobuk, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067172039,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266907 +,,70620217,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70620217&format=geojson,0.0391,,135.0,",hv70620217,",1.79,md,,hv,39.0,"4km ESE of Pahala, Hawaii",0.1,49,",hv,",reviewed,1538225191020,"M 1.8 - 4km ESE of Pahala, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538436400200,https://earthquake.usgs.gov/earthquakes/eventpage/hv70620217 +,,73091321,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091321&format=geojson,0.01563,,104.0,",nc73091321,",1.14,md,,nc,8.0,"9km NW of The Geysers, CA",0.01,20,",nc,",automatic,1538225173080,"M 1.1 - 9km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538227681976,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091321 +,2.7,1000h490,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h490&format=geojson,,3.0,26.0,",us1000h490,",3.5,ml,3.52,us,,"21km SW of Perry, Oklahoma",0.21,189,",us,",reviewed,1538225147400,"M 3.5 - 21km SW of Perry, Oklahoma",0,earthquake,",dyfi,geoserve,origin,phase-data,shakemap,",-360.0,1539328732483,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h490 +,,20274066,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20274066&format=geojson,,,,",ak20274066,",1.4,ml,,ak,,"57km W of Anchor Point, Alaska",0.31,30,",ak,",reviewed,1538225103223,"M 1.4 - 57km W of Anchor Point, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067171508,https://earthquake.usgs.gov/earthquakes/eventpage/ak20274066 +,,37373706,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37373706&format=geojson,0.1321,,66.0,",ci37373706,",1.06,ml,,ci,33.0,"5km ESE of Beaumont, CA",0.14,17,",ci,",reviewed,1538225048770,"M 1.1 - 5km ESE of Beaumont, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538403084000,https://earthquake.usgs.gov/earthquakes/eventpage/ci37373706 +,,37373698,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37373698&format=geojson,0.01971,,31.0,",ci37373698,",1.17,ml,,ci,56.0,"3km ESE of Lake Henshaw, CA",0.17,21,",ci,",reviewed,1538225025530,"M 1.2 - 3km ESE of Lake Henshaw, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538412079420,https://earthquake.usgs.gov/earthquakes/eventpage/ci37373698 +,,37373690,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37373690&format=geojson,0.009616,,63.0,",ci37373690,",0.77,ml,,ci,15.0,"15km NE of Little Lake, CA",0.08,9,",ci,",reviewed,1538224962100,"M 0.8 - 15km NE of Little Lake, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538411477663,https://earthquake.usgs.gov/earthquakes/eventpage/ci37373690 +,,00660043,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660043&format=geojson,0.036,,85.96,",nn00660043,",-0.1,ml,,nn,14.0,"54km ENE of Beatty, Nevada",0.183,0,",nn,",reviewed,1538224764780,"M -0.1 - 54km ENE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539025583739,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660043 +,,00660041,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660041&format=geojson,0.032,,162.57,",nn00660041,",-0.4,ml,,nn,11.0,"54km ENE of Beatty, Nevada",0.1813,0,",nn,",reviewed,1538224738703,"M -0.4 - 54km ENE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539025023440,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660041 +,,1000h7hh,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h7hh&format=geojson,7.805,,114.0,",us1000h7hh,",4.6,mb,,us,,Indian Ocean Triple Junction,0.98,326,",us,",reviewed,1538224718600,M 4.6 - Indian Ocean Triple Junction,0,earthquake,",geoserve,origin,phase-data,",300.0,1539328448040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h7hh +,,1000h7hj,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h7hj&format=geojson,3.918,,123.0,",us1000h7hj,",4.6,mb,,us,,"90km SW of Port-Vila, Vanuatu",1.43,326,",us,",reviewed,1538224712290,"M 4.6 - 90km SW of Port-Vila, Vanuatu",0,earthquake,",geoserve,origin,phase-data,",660.0,1539328159040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h7hj +,,70620187,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70620187&format=geojson,0.03278,,67.0,",hv70620187,",0.99,md,,hv,22.0,"22km ENE of Honaunau-Napoopoo, Hawaii",0.11,15,",hv,",reviewed,1538224174720,"M 1.0 - 22km ENE of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538385843280,https://earthquake.usgs.gov/earthquakes/eventpage/hv70620187 +,,00658767,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658767&format=geojson,0.025,,68.11,",nn00658767,",-0.1,ml,,nn,30.0,"56km ENE of Beatty, Nevada",0.1876,0,",nn,",reviewed,1538224028445,"M -0.1 - 56km ENE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538231971849,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658767 +,,37373682,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37373682&format=geojson,0.004936,,59.0,",ci37373682,",0.27,ml,,ci,26.0,"10km NE of Aguanga, CA",0.12,1,",ci,",reviewed,1538223641990,"M 0.3 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538410496554,https://earthquake.usgs.gov/earthquakes/eventpage/ci37373682 +,,37197340,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37197340&format=geojson,0.008847,,64.0,",ci37197340,",-0.11,ml,,ci,20.0,"10km NE of Aguanga, CA",0.21,0,",ci,",reviewed,1538223623880,"M -0.1 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538411032613,https://earthquake.usgs.gov/earthquakes/eventpage/ci37197340 +,,20266906,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266906&format=geojson,,,,",ak20266906,",2.2,ml,,ak,,"43km E of Amatignak Island, Alaska",0.58,74,",ak,",reviewed,1538223514117,"M 2.2 - 43km E of Amatignak Island, Alaska",0,earthquake,",geoserve,origin,phase-data,",-720.0,1539067170916,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266906 +,,20266904,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266904&format=geojson,,,,",ak20266904,",2.1,ml,,ak,,"161km S of Kotzebue, Alaska",0.74,68,",ak,",reviewed,1538223322683,"M 2.1 - 161km S of Kotzebue, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067170327,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266904 +,,37373674,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37373674&format=geojson,0.006915,,58.0,",ci37373674,",0.53,ml,,ci,22.0,"10km NE of Aguanga, CA",0.15,4,",ci,",reviewed,1538222859910,"M 0.5 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538402997638,https://earthquake.usgs.gov/earthquakes/eventpage/ci37373674 +,,1000h48p,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h48p&format=geojson,1.248,,63.0,",us1000h48p,",4.4,mb,,us,,"41km NE of Padangsidempuan, Indonesia",0.82,298,",us,",reviewed,1538222665050,"M 4.4 - 41km NE of Padangsidempuan, Indonesia",0,earthquake,",geoserve,origin,phase-data,",420.0,1539326443040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h48p +,,00658763,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658763&format=geojson,0.033,,66.75,",nn00658763,",0.4,ml,,nn,43.0,"36km ENE of Beatty, Nevada",0.2117,2,",nn,",reviewed,1538222473549,"M 0.4 - 36km ENE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538253970057,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658763 +,,73091311,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091311&format=geojson,0.01173,,162.0,",nc73091311,",0.47,md,,nc,10.0,"13km ESE of Mammoth Lakes, CA",0.05,3,",nc,",reviewed,1538222440360,"M 0.5 - 13km ESE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538419203450,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091311 +,,20266806,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266806&format=geojson,,,,",ak20266806,",1.0,ml,,ak,,"48km N of Valdez, Alaska",0.64,15,",ak,",reviewed,1538222074670,"M 1.0 - 48km N of Valdez, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067169733,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266806 +,,00660035,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660035&format=geojson,0.031,,88.74,",nn00660035,",-0.4,ml,,nn,18.0,"36km ENE of Beatty, Nevada",0.1513,0,",nn,",reviewed,1538221949963,"M -0.4 - 36km ENE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539023903086,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660035 +,,20274062,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20274062&format=geojson,,,,",ak20274062,",1.3,ml,,ak,,"50km WSW of Anchor Point, Alaska",0.32,26,",ak,",reviewed,1538221916499,"M 1.3 - 50km WSW of Anchor Point, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539067169179,https://earthquake.usgs.gov/earthquakes/eventpage/ak20274062 +,,00660033,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660033&format=geojson,0.023,,92.14,",nn00660033,",-0.4,ml,,nn,8.0,"35km ENE of Beatty, Nevada",0.1248,0,",nn,",reviewed,1538221910705,"M -0.4 - 35km ENE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539023345466,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660033 +,,00660037,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660037&format=geojson,0.03,,65.82,",nn00660037,",0.4,ml,,nn,36.0,"36km ENE of Beatty, Nevada",0.1812,2,",nn,",reviewed,1538221879821,"M 0.4 - 36km ENE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539024099089,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660037 +,,00660032,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660032&format=geojson,0.023,,114.87,",nn00660032,",-0.3,ml,,nn,7.0,"35km ENE of Beatty, Nevada",0.1008,0,",nn,",reviewed,1538221869964,"M -0.3 - 35km ENE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539022976350,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660032 +,,73091306,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091306&format=geojson,0.06535,,127.0,",nc73091306,",1.69,md,,nc,32.0,"9km SE of Pinnacles, CA",0.07,44,",nc,",reviewed,1538221775530,"M 1.7 - 9km SE of Pinnacles, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538444523528,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091306 +,,20274061,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20274061&format=geojson,,,,",ak20274061,",1.1,ml,,ak,,"52km WSW of Cantwell, Alaska",0.3,19,",ak,",reviewed,1538221749132,"M 1.1 - 52km WSW of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067168655,https://earthquake.usgs.gov/earthquakes/eventpage/ak20274061 +,,00658761,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658761&format=geojson,0.336,,140.48,",nn00658761,",1.2,ml,,nn,11.0,"28km WSW of Hawthorne, Nevada",0.1379,22,",nn,",reviewed,1538221620268,"M 1.2 - 28km WSW of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538251925412,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658761 +,,80311854,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80311854&format=geojson,0.307,,89.0,",mb80311854,",1.04,ml,,mb,13.0,"1km WNW of Manhattan, Montana",0.1,17,",mb,",reviewed,1538221597370,"M 1.0 - 1km WNW of Manhattan, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538417801740,https://earthquake.usgs.gov/earthquakes/eventpage/mb80311854 +,,00658755,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658755&format=geojson,0.034,,66.82,",nn00658755,",0.5,ml,,nn,41.0,"36km ENE of Beatty, Nevada",0.1664,4,",nn,",reviewed,1538221568773,"M 0.5 - 36km ENE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538251370381,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658755 +,,37373666,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37373666&format=geojson,0.021,,83.0,",ci37373666,",1.38,ml,,ci,48.0,"2km N of South Pasadena, CA",0.2,29,",ci,",reviewed,1538221547350,"M 1.4 - 2km N of South Pasadena, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538410279536,https://earthquake.usgs.gov/earthquakes/eventpage/ci37373666 +,,73091301,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091301&format=geojson,0.1789,,40.0,",nc73091301,",1.79,md,,nc,24.0,"14km WNW of Lake Pillsbury, CA",0.07,49,",nc,",reviewed,1538221434700,"M 1.8 - 14km WNW of Lake Pillsbury, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538449263106,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091301 +,,60298397,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60298397&format=geojson,0.004048,,139.0,",uu60298397,",0.29,md,,uu,11.0,"14km N of West Yellowstone, Montana",0.12,1,",uu,",reviewed,1538221320760,"M 0.3 - 14km N of West Yellowstone, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538405288840,https://earthquake.usgs.gov/earthquakes/eventpage/uu60298397 +,,20266801,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266801&format=geojson,,,,",ak20266801,",1.9,ml,,ak,,"163km S of Kotzebue, Alaska",0.74,56,",ak,",reviewed,1538221196503,"M 1.9 - 163km S of Kotzebue, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067168073,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266801 +,,1000h7he,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h7he&format=geojson,3.589,,124.0,",us1000h7he,",4.5,mb,,us,,"127km S of Hihifo, Tonga",0.48,312,",us,",reviewed,1538220991630,"M 4.5 - 127km S of Hihifo, Tonga",0,earthquake,",geoserve,origin,phase-data,",-720.0,1539326381040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h7he +,,73091296,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091296&format=geojson,0.01785,,88.0,",nc73091296,",0.93,md,,nc,12.0,"8km W of Cobb, CA",0.04,13,",nc,",automatic,1538220695060,"M 0.9 - 8km W of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538223664458,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091296 +,,20266794,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266794&format=geojson,,,,",ak20266794,us1000h489,",3.5,ml,4.19,ak,,"161km S of Kotzebue, Alaska",0.68,188,",ak,us,",reviewed,1538220693521,"M 3.5 - 161km S of Kotzebue, Alaska",0,earthquake,",geoserve,origin,phase-data,shakemap,",-540.0,1539326122040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266794 +,1.0,73091291,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091291&format=geojson,0.02414,1.0,52.0,",nc73091291,",2.36,md,,nc,57.0,"8km SSE of San Juan Bautista, CA",0.11,86,",nc,",reviewed,1538220645820,"M 2.4 - 8km SSE of San Juan Bautista, CA",0,earthquake,",dyfi,focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538477522745,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091291 +,,20266791,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266791&format=geojson,,,,",ak20266791,",2.0,ml,,ak,,"77km SSW of Kaktovik, Alaska",0.7,62,",ak,",reviewed,1538220541362,"M 2.0 - 77km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067166695,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266791 +,,37373658,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37373658&format=geojson,0.00422,,58.0,",ci37373658,",0.17,ml,,ci,27.0,"10km NE of Aguanga, CA",0.17,0,",ci,",reviewed,1538220430430,"M 0.2 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538409865970,https://earthquake.usgs.gov/earthquakes/eventpage/ci37373658 +,,70620107,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70620107&format=geojson,0.03296,,64.0,",hv70620107,",0.99,md,,hv,22.0,"22km ENE of Honaunau-Napoopoo, Hawaii",0.13,15,",hv,",reviewed,1538220096810,"M 1.0 - 22km ENE of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538277983540,https://earthquake.usgs.gov/earthquakes/eventpage/hv70620107 +,,20266790,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266790&format=geojson,,,,",ak20266790,",1.5,ml,,ak,,"27km SW of Tanaga Volcano, Alaska",0.38,35,",ak,",reviewed,1538219830963,"M 1.5 - 27km SW of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539067166155,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266790 +,,80311844,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80311844&format=geojson,0.108,,170.0,",mb80311844,",1.02,ml,,mb,11.0,"29km NW of Lincoln, Montana",0.12,16,",mb,",reviewed,1538219790340,"M 1.0 - 29km NW of Lincoln, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538417401550,https://earthquake.usgs.gov/earthquakes/eventpage/mb80311844 +,,73091286,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091286&format=geojson,0.07545,,188.0,",nc73091286,",0.44,md,,nc,13.0,"13km SSE of Mammoth Lakes, CA",0.04,3,",nc,",reviewed,1538219447420,"M 0.4 - 13km SSE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538417643288,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091286 +,,20266788,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266788&format=geojson,,,,",ak20266788,",0.9,ml,,ak,,"42km NW of Ester, Alaska",0.77,12,",ak,",reviewed,1538219208244,"M 0.9 - 42km NW of Ester, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067165563,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266788 +,,1000h7hd,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h7hd&format=geojson,1.953,,79.0,",us1000h7hd,",4.4,mb,,us,,"26km NNE of Palu, Indonesia",1.05,298,",us,",reviewed,1538219187110,"M 4.4 - 26km NNE of Palu, Indonesia",0,earthquake,",geoserve,origin,phase-data,",480.0,1539326055040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h7hd +,,73091281,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091281&format=geojson,0.07164,,186.0,",nc73091281,",0.48,md,,nc,12.0,"13km SSE of Mammoth Lakes, CA",0.03,4,",nc,",reviewed,1538219142570,"M 0.5 - 13km SSE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538416023115,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091281 +,,20266785,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266785&format=geojson,,,,",ak20266785,",1.4,ml,,ak,,"98km NW of Arctic Village, Alaska",0.84,30,",ak,",reviewed,1538219009679,"M 1.4 - 98km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067165000,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266785 +,,1000h480,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h480&format=geojson,6.337,,87.0,",us1000h480,",4.0,mb,,us,,"23km W of Kazerun, Iran",1.09,246,",us,",reviewed,1538218995060,"M 4.0 - 23km W of Kazerun, Iran",0,earthquake,",geoserve,origin,phase-data,",210.0,1539325803040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h480 +,,73091276,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091276&format=geojson,0.0724,,109.0,",nc73091276,",1.51,md,,nc,28.0,"13km SE of Mammoth Lakes, CA",0.06,35,",nc,",reviewed,1538218989490,"M 1.5 - 13km SE of Mammoth Lakes, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538473262336,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091276 +,,73091271,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091271&format=geojson,0.01591,,77.0,",nc73091271,",0.73,md,,nc,7.0,"9km NW of The Geysers, CA",0.02,8,",nc,",automatic,1538218783830,"M 0.7 - 9km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538220542180,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091271 +,,00660026,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00660026&format=geojson,0.03,,103.68,",nn00660026,",-0.5,ml,,nn,15.0,"55km ENE of Beatty, Nevada",0.1627,0,",nn,",reviewed,1538218756601,"M -0.5 - 55km ENE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539021495348,https://earthquake.usgs.gov/earthquakes/eventpage/nn00660026 +,,70620042,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70620042&format=geojson,0.05716,,47.0,",hv70620042,",1.73,md,,hv,51.0,"22km WNW of Volcano, Hawaii",0.2,46,",hv,",automatic,1538218475500,"M 1.7 - 22km WNW of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538218659570,https://earthquake.usgs.gov/earthquakes/eventpage/hv70620042 +,,20266782,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266782&format=geojson,,,,",ak20266782,",1.7,ml,,ak,,"79km SSW of Kaktovik, Alaska",0.78,44,",ak,",reviewed,1538217703644,"M 1.7 - 79km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539108359014,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266782 +,,70251558,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ismpkansas70251558&format=geojson,0.1348,,191.0,",ismpkansas70251558,",2.19,ml,,ismpkansas,14.0,"12km SW of Wellington, Kansas",0.03,74,",ismpkansas,",reviewed,1538217588440,"M 2.2 - 12km SW of Wellington, Kansas",0,earthquake,",geoserve,origin,phase-data,",-360.0,1538433913570,https://earthquake.usgs.gov/earthquakes/eventpage/ismpkansas70251558 +,,20266773,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266773&format=geojson,,,,",ak20266773,",2.8,ml,,ak,,"76km WSW of Cantwell, Alaska",0.55,121,",ak,",reviewed,1538217322822,"M 2.8 - 76km WSW of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067163309,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266773 +,,37373642,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37373642&format=geojson,0.008445,,35.0,",ci37373642,",1.07,ml,,ci,41.0,"9km NE of Aguanga, CA",0.17,18,",ci,",reviewed,1538217210930,"M 1.1 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538403087500,https://earthquake.usgs.gov/earthquakes/eventpage/ci37373642 +,,37373634,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37373634&format=geojson,0.007451,,74.0,",ci37373634,",0.33,ml,,ci,15.0,"10km NE of Aguanga, CA",0.16,2,",ci,",reviewed,1538217076410,"M 0.3 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538403047513,https://earthquake.usgs.gov/earthquakes/eventpage/ci37373634 +,,37373626,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37373626&format=geojson,0.006801,,59.0,",ci37373626,",0.58,ml,,ci,27.0,"10km NE of Aguanga, CA",0.13,5,",ci,",reviewed,1538217038780,"M 0.6 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538403050393,https://earthquake.usgs.gov/earthquakes/eventpage/ci37373626 +,,1000h47j,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h47j&format=geojson,2.592,,48.0,",us1000h47j,",5.1,mww,,us,,"49km W of Kasiguncu, Indonesia",0.7,400,",us,",reviewed,1538217018480,"M 5.1 - 49km W of Kasiguncu, Indonesia",1,earthquake,",geoserve,moment-tensor,origin,phase-data,",480.0,1538501361040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h47j +,,20266771,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266771&format=geojson,,,,",ak20266771,",1.6,ml,,ak,,"24km S of Ester, Alaska",0.46,39,",ak,",reviewed,1538216874948,"M 1.6 - 24km S of Ester, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067162715,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266771 +,,00658839,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658839&format=geojson,1.206,,100.45,",nn00658839,",2.0,ml,,nn,7.0,"75km NNE of Gerlach-Empire, Nevada",0.1195,62,",nn,",reviewed,1538216869136,"M 2.0 - 75km NNE of Gerlach-Empire, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538267266221,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658839 +,,20274051,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20274051&format=geojson,,,,",ak20274051,",1.4,ml,,ak,,"35km ENE of Cape Yakataga, Alaska",0.62,30,",ak,",reviewed,1538216778307,"M 1.4 Ice Quake - 35km ENE of Cape Yakataga, Alaska",0,ice quake,",geoserve,origin,phase-data,",-540.0,1539067162156,https://earthquake.usgs.gov/earthquakes/eventpage/ak20274051 +,,00658749,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658749&format=geojson,0.116,,152.42,",nn00658749,",0.6,ml,,nn,15.0,"34km NW of Beatty, Nevada",0.1711,6,",nn,",reviewed,1538216530659,"M 0.6 - 34km NW of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538250075371,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658749 +,2.0,1000h47f,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h47f&format=geojson,0.025,1.0,50.0,",us1000h47f,",2.1,mb_lg,,us,,"8km ENE of Edmond, Oklahoma",0.2,68,",us,",reviewed,1538216206900,"M 2.1 - 8km ENE of Edmond, Oklahoma",0,earthquake,",dyfi,geoserve,origin,phase-data,",-360.0,1538341512017,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h47f +,,2018272003,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018272003&format=geojson,0.9864,,347.0,",pr2018272003,",2.47,md,,pr,5.0,"26km W of Christiansted, U.S. Virgin Islands",0.27,94,",pr,",reviewed,1538216142890,"M 2.5 - 26km W of Christiansted, U.S. Virgin Islands",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538253541150,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018272003 +,,61788711,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61788711&format=geojson,0.03841,,305.0,",av61788711,",0.94,ml,,av,4.0,"39km WSW of Tanaga Volcano, Alaska",0.15,14,",av,",reviewed,1538215963320,"M 0.9 - 39km WSW of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538425176630,https://earthquake.usgs.gov/earthquakes/eventpage/av61788711 +,,00658837,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658837&format=geojson,0.151,,93.57,",nn00658837,",0.0,ml,,nn,11.0,"14km SSE of Mogul, Nevada",0.1114,0,",nn,",reviewed,1538215896731,"M 0.0 - 14km SSE of Mogul, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538266528556,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658837 +,,20266763,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266763&format=geojson,,,,",ak20266763,",2.5,ml,,ak,,"98km NW of Arctic Village, Alaska",0.63,96,",ak,",reviewed,1538215771726,"M 2.5 - 98km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067161380,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266763 +,,00658748,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658748&format=geojson,0.187,,159.16,",nn00658748,",0.1,ml,,nn,18.0,"37km NNW of Beatty, Nevada",0.1902,0,",nn,",reviewed,1538215626818,"M 0.1 - 37km NNW of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538249336086,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658748 +,,20266760,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266760&format=geojson,,,,",ak20266760,",2.8,ml,,ak,,"162km S of Kotzebue, Alaska",0.68,121,",ak,",reviewed,1538215494692,"M 2.8 - 162km S of Kotzebue, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067160667,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266760 +,,37373618,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37373618&format=geojson,0.01969,,95.0,",ci37373618,",0.76,ml,,ci,27.0,"5km SSW of Idyllwild, CA",0.15,9,",ci,",reviewed,1538214912340,"M 0.8 - 5km SSW of Idyllwild, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538403052581,https://earthquake.usgs.gov/earthquakes/eventpage/ci37373618 +,,00658778,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658778&format=geojson,0.059,,93.73,",nn00658778,",0.2,ml,,nn,10.0,"10km ESE of Dollar Point, California",0.166,1,",nn,",reviewed,1538214725295,"M 0.2 - 10km ESE of Dollar Point, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538233087268,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658778 +,,00658836,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658836&format=geojson,0.018,,79.86,",nn00658836,",0.0,ml,,nn,10.0,"9km SE of Incline Village, Nevada",0.1384,0,",nn,",reviewed,1538214649998,"M 0.0 - 9km SE of Incline Village, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538265420049,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658836 +,,73091266,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091266&format=geojson,0.07303,,130.0,",nc73091266,",1.55,md,,nc,23.0,"9km WSW of Brentwood, CA",0.16,37,",nc,",reviewed,1538214597190,"M 1.6 - 9km WSW of Brentwood, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538447642849,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091266 +,,20266755,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266755&format=geojson,,,,",ak20266755,",2.8,ml,,ak,,"29km W of Little Sitkin Island, Alaska",0.47,121,",ak,",reviewed,1538213820539,"M 2.8 - 29km W of Little Sitkin Island, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539067160059,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266755 +,,20266751,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266751&format=geojson,,,,",ak20266751,",1.2,ml,,ak,,"35km NNW of Valdez, Alaska",0.63,22,",ak,",reviewed,1538213487798,"M 1.2 - 35km NNW of Valdez, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067159403,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266751 +,,20266748,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266748&format=geojson,,,,",ak20266748,",2.4,ml,,ak,,"80km SSW of Kaktovik, Alaska",0.72,89,",ak,",reviewed,1538213361560,"M 2.4 - 80km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067158737,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266748 +,2.7,1000h479,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h479&format=geojson,1.163,3.0,75.0,",us1000h479,",4.5,mb,,us,,"25km ESE of Chitose, Japan",0.45,312,",us,",reviewed,1538213154900,"M 4.5 - 25km ESE of Chitose, Japan",0,earthquake,",dyfi,geoserve,origin,phase-data,",540.0,1538294859215,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h479 +,,20266742,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266742&format=geojson,,,,",ak20266742,",1.0,ml,,ak,,"14km SSW of Talkeetna, Alaska",0.65,15,",ak,",reviewed,1538213136369,"M 1.0 - 14km SSW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067158138,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266742 +,,20266741,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266741&format=geojson,,,,",ak20266741,",2.9,ml,,ak,,Gulf of Alaska,0.6,129,",ak,",reviewed,1538213098073,M 2.9 - Gulf of Alaska,0,earthquake,",geoserve,origin,phase-data,",-600.0,1539067157487,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266741 +,,61788696,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61788696&format=geojson,0.01977,,109.0,",av61788696,",0.28,ml,,av,5.0,"42km ENE of Adak, Alaska",0.17,1,",av,",reviewed,1538212985090,"M 0.3 - 42km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538425108860,https://earthquake.usgs.gov/earthquakes/eventpage/av61788696 +,,73091261,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091261&format=geojson,0.03093,,105.0,",nc73091261,",1.41,md,,nc,27.0,"14km W of Toms Place, CA",0.04,31,",nc,",reviewed,1538212963480,"M 1.4 - 14km W of Toms Place, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538436063712,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091261 +,,00658835,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658835&format=geojson,0.115,,152.4,",nn00658835,",0.3,ml,,nn,12.0,"33km NW of Beatty, Nevada",0.1709,1,",nn,",reviewed,1538212560565,"M 0.3 - 33km NW of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538264863404,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658835 +,,00658742,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658742&format=geojson,0.03,,69.64,",nn00658742,",0.8,ml,,nn,15.0,"4km WSW of Tahoe Vista, California",0.0971,10,",nn,",reviewed,1538212552528,"M 0.8 - 4km WSW of Tahoe Vista, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538241380402,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658742 +,,00658737,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658737&format=geojson,0.123,,115.42,",nn00658737,",1.0,ml,,nn,41.0,"34km NW of Beatty, Nevada",0.219,15,",nn,",reviewed,1538212462399,"M 1.0 - 34km NW of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538248779858,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658737 +,,1000h472,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h472&format=geojson,1.652,,51.0,",us1000h472,",4.4,mb,,us,,"12km W of Katav-Ivanovsk, Russia",1.32,298,",us,",reviewed,1538212009020,"M 4.4 - 12km W of Katav-Ivanovsk, Russia",0,earthquake,",geoserve,origin,phase-data,",300.0,1538213100040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h472 +,4.3,1000h470,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h470&format=geojson,0.021,4.0,37.0,",us1000h470,",2.3,mb_lg,,us,,"8km ENE of Edmond, Oklahoma",0.18,83,",us,",reviewed,1538211626370,"M 2.3 - 8km ENE of Edmond, Oklahoma",0,earthquake,",dyfi,geoserve,origin,phase-data,",-360.0,1538216856727,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h470 +,,37373602,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37373602&format=geojson,0.0177,,65.0,",ci37373602,",0.54,ml,,ci,25.0,"9km NE of Aguanga, CA",0.14,4,",ci,",reviewed,1538211338540,"M 0.5 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538403069654,https://earthquake.usgs.gov/earthquakes/eventpage/ci37373602 +,,73091256,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091256&format=geojson,0.01055,,48.0,",nc73091256,",0.28,md,,nc,19.0,"6km NNW of The Geysers, CA",0.03,1,",nc,",reviewed,1538211257640,"M 0.3 - 6km NNW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538443114653,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091256 +,,61788671,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61788671&format=geojson,0.02575,,212.0,",av61788671,",-0.49,ml,,av,4.0,"42km ENE of Adak, Alaska",0.18,0,",av,",reviewed,1538210764940,"M -0.5 - 42km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538424911180,https://earthquake.usgs.gov/earthquakes/eventpage/av61788671 +,,70619812,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70619812&format=geojson,0.02843,,144.0,",hv70619812,",1.05,md,,hv,20.0,"22km ENE of Honaunau-Napoopoo, Hawaii",0.11,17,",hv,",reviewed,1538210526020,"M 1.1 - 22km ENE of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538217335840,https://earthquake.usgs.gov/earthquakes/eventpage/hv70619812 +,,20266639,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266639&format=geojson,,,,",ak20266639,",1.6,ml,,ak,,"3km SSE of Big Lake, Alaska",0.68,39,",ak,",reviewed,1538210434739,"M 1.6 - 3km SSE of Big Lake, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067156799,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266639 +,,20266637,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266637&format=geojson,,,,",ak20266637,",1.1,ml,,ak,,"8km ESE of Eagle Village, Alaska",0.82,19,",ak,",reviewed,1538209994602,"M 1.1 - 8km ESE of Eagle Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539067156240,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266637 +,,70805254,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70805254&format=geojson,0.02554,,136.0,",av70805254,",-0.52,ml,,av,4.0,"42km ENE of Adak, Alaska",0.13,0,",av,",reviewed,1538209961650,"M -0.5 - 42km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538424811440,https://earthquake.usgs.gov/earthquakes/eventpage/av70805254 +,,61788661,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61788661&format=geojson,0.01872,,163.0,",av61788661,",-0.69,ml,,av,4.0,"42km ENE of Adak, Alaska",0.11,0,",av,",reviewed,1538209952820,"M -0.7 - 42km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538424605920,https://earthquake.usgs.gov/earthquakes/eventpage/av61788661 +,,70805244,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70805244&format=geojson,0.02325,,197.0,",av70805244,",-0.54,ml,,av,4.0,"42km ENE of Adak, Alaska",0.2,0,",av,",reviewed,1538209941000,"M -0.5 - 42km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538424673940,https://earthquake.usgs.gov/earthquakes/eventpage/av70805244 +,,20266635,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266635&format=geojson,,,,",ak20266635,",1.1,ml,,ak,,"56km WSW of Talkeetna, Alaska",0.32,19,",ak,",reviewed,1538209868212,"M 1.1 - 56km WSW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067155620,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266635 +,,73091251,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091251&format=geojson,0.1212,,140.0,",nc73091251,nn00658728,",1.72,md,,nc,29.0,"7km SSW of Round Valley, CA",0.05,46,",nc,nn,",reviewed,1538209737430,"M 1.7 - 7km SSW of Round Valley, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538469963004,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091251 +,,20266633,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266633&format=geojson,,,,",ak20266633,",1.8,ml,,ak,,"106km W of Talkeetna, Alaska",0.42,50,",ak,",reviewed,1538209646602,"M 1.8 - 106km W of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067154912,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266633 +,,20274039,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20274039&format=geojson,,,,",ak20274039,",1.1,ml,,ak,,"82km NNW of Nikiski, Alaska",0.61,19,",ak,",reviewed,1538209160982,"M 1.1 - 82km NNW of Nikiski, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067154379,https://earthquake.usgs.gov/earthquakes/eventpage/ak20274039 +,,73091246,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091246&format=geojson,0.02338,,92.0,",nc73091246,",1.98,md,,nc,59.0,"4km SW of Colma, CA",0.05,60,",nc,",reviewed,1538209054040,"M 2.0 - 4km SW of Colma, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538468342849,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091246 +,,20266623,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266623&format=geojson,,,,",ak20266623,",2.8,ml,,ak,,"104km E of King Salmon, Alaska",0.61,121,",ak,",reviewed,1538208906835,"M 2.8 - 104km E of King Salmon, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067153411,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266623 +,,00658832,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658832&format=geojson,0.135,,128.65,",nn00658832,",0.8,ml,,nn,7.0,"45km NE of Mammoth Lakes, California",0.1411,10,",nn,",reviewed,1538208882472,"M 0.8 - 45km NE of Mammoth Lakes, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538263019247,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658832 +,,2018272002,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018272002&format=geojson,0.1844,,249.0,",pr2018272002,",1.96,md,,pr,5.0,"11km S of Tallaboa, Puerto Rico",0.49,59,",pr,",reviewed,1538208825060,"M 2.0 - 11km S of Tallaboa, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538250795771,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018272002 +,,60298392,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60298392&format=geojson,0.03265,,135.0,",uu60298392,",-0.18,md,,uu,10.0,"16km NE of West Yellowstone, Montana",0.16,0,",uu,",reviewed,1538208817820,"M -0.2 - 16km NE of West Yellowstone, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538405102290,https://earthquake.usgs.gov/earthquakes/eventpage/uu60298392 +,,20266619,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266619&format=geojson,,,,",ak20266619,",1.3,ml,,ak,,"65km SE of Whittier, Alaska",0.61,26,",ak,",reviewed,1538208597705,"M 1.3 - 65km SE of Whittier, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539108358467,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266619 +,,20266618,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266618&format=geojson,,,,",ak20266618,",1.0,ml,,ak,,"103km W of Cantwell, Alaska",0.75,15,",ak,",reviewed,1538208533452,"M 1.0 - 103km W of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539108357944,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266618 +,,20266617,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266617&format=geojson,,,,",ak20266617,",0.7,ml,,ak,,"135km NNE of Cape Yakataga, Alaska",0.49,8,",ak,",reviewed,1538208415508,"M 0.7 - 135km NNE of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067151642,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266617 +,,70619737,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70619737&format=geojson,0.0314,,70.0,",hv70619737,",2.14,ml,,hv,36.0,"22km ENE of Honaunau-Napoopoo, Hawaii",0.12,70,",hv,",reviewed,1538207900180,"M 2.1 - 22km ENE of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538214388630,https://earthquake.usgs.gov/earthquakes/eventpage/hv70619737 +,,20266614,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266614&format=geojson,,,,",ak20266614,",1.9,ml,,ak,,"92km NW of Arctic Village, Alaska",0.75,56,",ak,",reviewed,1538207445071,"M 1.9 - 92km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067151015,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266614 +,,00658777,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658777&format=geojson,0.064,,98.44,",nn00658777,",-0.1,ml,,nn,7.0,"10km ESE of Dollar Point, California",0.1586,0,",nn,",reviewed,1538207400969,"M -0.1 - 10km ESE of Dollar Point, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538232900261,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658777 +,,20266613,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266613&format=geojson,,,,",ak20266613,",1.6,ml,,ak,,"80km S of Kaktovik, Alaska",0.85,39,",ak,",reviewed,1538207336415,"M 1.6 - 80km S of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067150416,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266613 +,,80311649,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80311649&format=geojson,0.145,,154.0,",mb80311649,",0.82,ml,,mb,6.0,"13km SW of South Park, Wyoming",0.12,10,",mb,",reviewed,1538207107310,"M 0.8 - 13km SW of South Park, Wyoming",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538406618340,https://earthquake.usgs.gov/earthquakes/eventpage/mb80311649 +,,2018272001,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018272001&format=geojson,0.1629,,233.0,",pr2018272001,",1.82,md,,pr,6.0,"7km S of Tallaboa, Puerto Rico",0.26,51,",pr,",reviewed,1538207007140,"M 1.8 - 7km S of Tallaboa, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538237785942,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018272001 +,,37373570,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37373570&format=geojson,0.004524,,58.0,",ci37373570,",0.19,ml,,ci,27.0,"10km NE of Aguanga, CA",0.17,1,",ci,",reviewed,1538206969050,"M 0.2 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538409530794,https://earthquake.usgs.gov/earthquakes/eventpage/ci37373570 +,,73091236,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091236&format=geojson,0.01043,,42.0,",nc73091236,",1.75,md,,nc,50.0,"0km SE of The Geysers, CA",0.09,47,",nc,",reviewed,1538206939720,"M 1.8 - 0km SE of The Geysers, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538457363086,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091236 +,,61424202,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61424202&format=geojson,0.2286,,214.0,",uw61424202,",0.68,ml,,uw,4.0,"20km SSE of Cle Elum, Washington",0.01,7,",uw,",reviewed,1538206929460,"M 0.7 - 20km SSE of Cle Elum, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538432256240,https://earthquake.usgs.gov/earthquakes/eventpage/uw61424202 +,,73091241,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091241&format=geojson,0.009881,,106.0,",nc73091241,",1.05,md,,nc,9.0,"0km NW of The Geysers, CA",0.03,17,",nc,",automatic,1538206881120,"M 1.1 - 0km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538211183174,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091241 +,,20266610,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266610&format=geojson,,,,",ak20266610,",1.6,ml,,ak,,"78km SW of Kaktovik, Alaska",0.53,39,",ak,",reviewed,1538206812716,"M 1.6 - 78km SW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067149798,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266610 +,,1000h46e,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h46e&format=geojson,2.634,,56.0,",us1000h46e,",5.1,mb,,us,,"53km W of Kasiguncu, Indonesia",0.49,400,",us,",reviewed,1538206811760,"M 5.1 - 53km W of Kasiguncu, Indonesia",1,earthquake,",geoserve,origin,phase-data,",480.0,1538207806040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h46e +,,20266609,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266609&format=geojson,,,,",ak20266609,",1.1,ml,,ak,,"97km NW of Arctic Village, Alaska",0.45,19,",ak,",reviewed,1538206759553,"M 1.1 - 97km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067149218,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266609 +,,70619672,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70619672&format=geojson,0.03672,,50.0,",hv70619672,",2.09,ml,,hv,33.0,"22km ENE of Honaunau-Napoopoo, Hawaii",0.14,67,",hv,",reviewed,1538206468380,"M 2.1 - 22km ENE of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538208847350,https://earthquake.usgs.gov/earthquakes/eventpage/hv70619672 +,,00658785,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658785&format=geojson,0.037,,111.88,",nn00658785,",-0.2,ml,,nn,4.0,"3km WSW of Tahoe Vista, California",0.0252,0,",nn,",reviewed,1538206404503,"M -0.2 - 3km WSW of Tahoe Vista, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538236033810,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658785 +,,73091231,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091231&format=geojson,0.01463,,42.0,",nc73091231,",1.41,md,,nc,41.0,"1km N of The Geysers, CA",0.08,31,",nc,",reviewed,1538206378640,"M 1.4 - 1km N of The Geysers, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538454842837,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091231 +,,37373562,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37373562&format=geojson,0.01901,,55.0,",ci37373562,",-0.03,ml,,ci,25.0,"10km NE of Aguanga, CA",0.11,0,",ci,",reviewed,1538205739940,"M -0.0 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538409045796,https://earthquake.usgs.gov/earthquakes/eventpage/ci37373562 +,,73091226,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091226&format=geojson,0.01892,,64.0,",nc73091226,",1.13,md,,nc,15.0,"2km NNW of The Geysers, CA",0.03,20,",nc,",automatic,1538205702740,"M 1.1 - 2km NNW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538208183887,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091226 +,,00658776,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658776&format=geojson,0.058,,93.03,",nn00658776,",-0.3,ml,,nn,9.0,"11km SSE of Kings Beach, California",0.1516,0,",nn,",reviewed,1538205580687,"M -0.3 - 11km SSE of Kings Beach, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538232714122,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658776 +,,20266607,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266607&format=geojson,,,,",ak20266607,",1.6,ml,,ak,,"120km WNW of Arctic Village, Alaska",0.66,39,",ak,",reviewed,1538205532114,"M 1.6 - 120km WNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067148605,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266607 +,,37373554,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37373554&format=geojson,0.03318,,38.0,",ci37373554,",1.82,ml,,ci,66.0,"8km ENE of Aguanga, CA",0.2,51,",ci,",reviewed,1538205402550,"M 1.8 - 8km ENE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538403154420,https://earthquake.usgs.gov/earthquakes/eventpage/ci37373554 +,,20266603,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266603&format=geojson,,,,",ak20266603,",2.3,ml,,ak,,"81km WNW of Arctic Village, Alaska",0.68,81,",ak,",reviewed,1538205283363,"M 2.3 - 81km WNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067147885,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266603 +,,00658727,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658727&format=geojson,0.22,,139.77,",nn00658727,",0.9,ml,,nn,9.0,"44km S of Gabbs, Nevada",0.1968,12,",nn,",reviewed,1538204810032,"M 0.9 - 44km S of Gabbs, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538245823225,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658727 +,,70805239,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70805239&format=geojson,0.009831,,56.0,",av70805239,",0.43,ml,,av,11.0,"13km W of Akutan, Alaska",0.23,3,",av,",reviewed,1538204650910,"M 0.4 - 13km W of Akutan, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538424284820,https://earthquake.usgs.gov/earthquakes/eventpage/av70805239 +,,00658831,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658831&format=geojson,0.115,,267.1,",nn00658831,",-0.3,ml,,nn,6.0,"33km NW of Beatty, Nevada",0.1441,0,",nn,",reviewed,1538204328408,"M -0.3 - 33km NW of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538262833498,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658831 +,,20266600,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266600&format=geojson,,,,",ak20266600,",1.1,ml,,ak,,"42km WSW of Whittier, Alaska",0.51,19,",ak,",reviewed,1538204147266,"M 1.1 - 42km WSW of Whittier, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067147331,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266600 +,,00658775,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658775&format=geojson,0.034,,93.56,",nn00658775,",-0.3,ml,,nn,6.0,"4km W of Tahoe Vista, California",0.0828,0,",nn,",reviewed,1538204135185,"M -0.3 - 4km W of Tahoe Vista, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538232527368,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658775 +,,70805224,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70805224&format=geojson,0.02414,,162.0,",av70805224,",-0.38,ml,,av,4.0,"42km ENE of Adak, Alaska",0.16,0,",av,",reviewed,1538203930000,"M -0.4 - 42km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538423085770,https://earthquake.usgs.gov/earthquakes/eventpage/av70805224 +,,70805229,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70805229&format=geojson,0.02579,,198.0,",av70805229,",-0.59,ml,,av,4.0,"42km ENE of Adak, Alaska",0.05,0,",av,",reviewed,1538203895560,"M -0.6 - 42km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538423373540,https://earthquake.usgs.gov/earthquakes/eventpage/av70805229 +,,61788641,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61788641&format=geojson,0.02342,,112.0,",av61788641,",0.17,ml,,av,5.0,"42km ENE of Adak, Alaska",0.06,0,",av,",reviewed,1538203851080,"M 0.2 - 42km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538422505720,https://earthquake.usgs.gov/earthquakes/eventpage/av61788641 +,,20266601,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266601&format=geojson,,,,",ak20266601,",1.1,ml,,ak,,"115km W of Cantwell, Alaska",0.9,19,",ak,",reviewed,1538203845024,"M 1.1 - 115km W of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067146808,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266601 +,,20266596,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266596&format=geojson,,,,",ak20266596,",2.1,ml,,ak,,"33km E of Skagway, Alaska",0.46,68,",ak,",reviewed,1538203830552,"M 2.1 - 33km E of Skagway, Alaska",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539108357384,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266596 +,,20266589,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266589&format=geojson,,,,",ak20266589,",2.2,ml,,ak,,"4km SE of Big Lake, Alaska",0.62,74,",ak,",reviewed,1538203662435,"M 2.2 - 4km SE of Big Lake, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067145397,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266589 +,,70805209,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70805209&format=geojson,0.02198,,195.0,",av70805209,",-0.56,ml,,av,4.0,"42km ENE of Adak, Alaska",0.07,0,",av,",reviewed,1538203633790,"M -0.6 - 42km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538422309390,https://earthquake.usgs.gov/earthquakes/eventpage/av70805209 +,,70805204,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70805204&format=geojson,0.03209,,155.0,",av70805204,",-0.25,ml,,av,5.0,"43km ENE of Adak, Alaska",0.23,0,",av,",reviewed,1538203607700,"M -0.3 - 43km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538422242290,https://earthquake.usgs.gov/earthquakes/eventpage/av70805204 +,,61788636,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61788636&format=geojson,0.02123,,115.0,",av61788636,",-0.69,ml,,av,5.0,"42km ENE of Adak, Alaska",0.08,0,",av,",reviewed,1538203594250,"M -0.7 - 42km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538422173090,https://earthquake.usgs.gov/earthquakes/eventpage/av61788636 +,,20266587,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266587&format=geojson,,,,",ak20266587,",1.1,ml,,ak,,"85km WNW of Cape Yakataga, Alaska",0.66,19,",ak,",reviewed,1538203562828,"M 1.1 Ice Quake - 85km WNW of Cape Yakataga, Alaska",0,ice quake,",geoserve,origin,phase-data,",-540.0,1539108356850,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266587 +,,1000h463,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h463&format=geojson,2.103,,78.0,",us1000h463,",4.8,mb,,us,,"16km NNW of Poso, Indonesia",0.92,354,",us,",reviewed,1538202972650,"M 4.8 - 16km NNW of Poso, Indonesia",0,earthquake,",geoserve,origin,phase-data,",480.0,1538203876040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h463 +,,70805194,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70805194&format=geojson,0.01922,,106.0,",av70805194,",-0.5,ml,,av,5.0,"42km ENE of Adak, Alaska",0.09,0,",av,",reviewed,1538202861490,"M -0.5 - 42km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538422011430,https://earthquake.usgs.gov/earthquakes/eventpage/av70805194 +,,70805189,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70805189&format=geojson,0.02562,,105.0,",av70805189,",-0.07,ml,,av,5.0,"43km ENE of Adak, Alaska",0.09,0,",av,",reviewed,1538202822410,"M -0.1 - 43km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538421849740,https://earthquake.usgs.gov/earthquakes/eventpage/av70805189 +,,61788631,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61788631&format=geojson,0.02533,,109.0,",av61788631,",-0.04,ml,,av,5.0,"42km ENE of Adak, Alaska",0.1,0,",av,",reviewed,1538202809190,"M -0.0 - 42km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538421685840,https://earthquake.usgs.gov/earthquakes/eventpage/av61788631 +,,70619547,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70619547&format=geojson,0.03283,,116.0,",hv70619547,",1.84,md,,hv,49.0,"3km SE of Pahala, Hawaii",0.12,52,",hv,",automatic,1538202606720,"M 1.8 - 3km SE of Pahala, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538202800090,https://earthquake.usgs.gov/earthquakes/eventpage/hv70619547 +,,00658828,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658828&format=geojson,0.359,,96.64,",nn00658828,",1.0,ml,,nn,8.0,"24km NNE of Hawthorne, Nevada",0.1228,15,",nn,",reviewed,1538202490730,"M 1.0 - 24km NNE of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538262278701,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658828 +,,20274023,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20274023&format=geojson,,,,",ak20274023,",1.8,ml,,ak,,"62km SE of Adak, Alaska",0.53,50,",ak,",reviewed,1538202290138,"M 1.8 - 62km SE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-720.0,1539067144249,https://earthquake.usgs.gov/earthquakes/eventpage/ak20274023 +,,70619537,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70619537&format=geojson,0.03744,,48.0,",hv70619537,",1.02,md,,hv,31.0,"22km ENE of Honaunau-Napoopoo, Hawaii",0.16,16,",hv,",reviewed,1538202119530,"M 1.0 - 22km ENE of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538218702540,https://earthquake.usgs.gov/earthquakes/eventpage/hv70619537 +,,20266584,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266584&format=geojson,,,,",ak20266584,",0.7,ml,,ak,,"172km NNE of Cape Yakataga, Alaska",0.3,8,",ak,",reviewed,1538201983358,"M 0.7 - 172km NNE of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539067143703,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266584 +,,20266582,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266582&format=geojson,,,,",ak20266582,",1.2,ml,,ak,,"144km ESE of McGrath, Alaska",0.68,22,",ak,",reviewed,1538201848559,"M 1.2 - 144km ESE of McGrath, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067143079,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266582 +,,20266580,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266580&format=geojson,,,,",ak20266580,",1.8,ml,,ak,,"82km WNW of Arctic Village, Alaska",0.7,50,",ak,",reviewed,1538201797019,"M 1.8 - 82km WNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067142429,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266580 +,,20266579,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266579&format=geojson,,,,",ak20266579,",1.4,ml,,ak,,"33km ESE of Skagway, Alaska",0.57,30,",ak,",reviewed,1538201681727,"M 1.4 - 33km ESE of Skagway, Alaska",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539108356314,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266579 +,2.0,1000h45y,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h45y&format=geojson,0.43,1.0,182.0,",us1000h45y,",4.0,mb,,us,,"54km W of La Ligua, Chile",0.49,246,",us,",reviewed,1538201615270,"M 4.0 - 54km W of La Ligua, Chile",0,earthquake,",dyfi,geoserve,origin,phase-data,",-300.0,1538262996441,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h45y +,2.0,37373530,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37373530&format=geojson,0.145,1.0,65.0,",ci37373530,",1.54,ml,,ci,25.0,"39km NE of Big Bear City, CA",0.2,37,",ci,",reviewed,1538201589100,"M 1.5 - 39km NE of Big Bear City, CA",0,earthquake,",dyfi,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538403118500,https://earthquake.usgs.gov/earthquakes/eventpage/ci37373530 +,,20266578,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266578&format=geojson,,,,",ak20266578,",1.7,ml,,ak,,"105km NNW of Arctic Village, Alaska",0.74,44,",ak,",reviewed,1538201446786,"M 1.7 - 105km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067141243,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266578 +,,70619497,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70619497&format=geojson,0.03446,,43.0,",hv70619497,",2.2,ml,,hv,42.0,"22km ENE of Honaunau-Napoopoo, Hawaii",0.12,74,",hv,",reviewed,1538201085710,"M 2.2 - 22km ENE of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538216016580,https://earthquake.usgs.gov/earthquakes/eventpage/hv70619497 +,,70619472,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70619472&format=geojson,0.03316,,68.0,",hv70619472,",1.99,ml,,hv,35.0,"22km ENE of Honaunau-Napoopoo, Hawaii",0.14,61,",hv,",reviewed,1538200293020,"M 2.0 - 22km ENE of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538207458990,https://earthquake.usgs.gov/earthquakes/eventpage/hv70619472 +,,20266575,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266575&format=geojson,,,,",ak20266575,",1.3,ml,,ak,,"88km NW of Glennallen, Alaska",0.64,26,",ak,",reviewed,1538200101392,"M 1.3 - 88km NW of Glennallen, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067140611,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266575 +,,70619457,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70619457&format=geojson,0.03374,,52.0,",hv70619457,",2.02,ml,,hv,48.0,"22km ENE of Honaunau-Napoopoo, Hawaii",0.13,63,",hv,",reviewed,1538199865530,"M 2.0 - 22km ENE of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538204694420,https://earthquake.usgs.gov/earthquakes/eventpage/hv70619457 +,,20266574,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266574&format=geojson,,,,",ak20266574,",2.6,ml,,ak,,"163km S of False Pass, Alaska",0.32,104,",ak,",reviewed,1538199860010,"M 2.6 - 163km S of False Pass, Alaska",0,earthquake,",geoserve,origin,phase-data,",-660.0,1539067140021,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266574 +,,1000h45r,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h45r&format=geojson,0.789,,68.0,",us1000h45r,",4.7,mb,,us,,"30km SE of Putre, Chile",0.89,340,",us,",reviewed,1538199531080,"M 4.7 - 30km SE of Putre, Chile",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538200693040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h45r +,,20266571,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266571&format=geojson,,,,",ak20266571,",1.8,ml,,ak,,"47km NNW of Nikiski, Alaska",0.46,50,",ak,",reviewed,1538199465676,"M 1.8 - 47km NNW of Nikiski, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539108355656,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266571 +,,70619442,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70619442&format=geojson,0.03535,,58.0,",hv70619442,",0.95,md,,hv,22.0,"22km ENE of Honaunau-Napoopoo, Hawaii",0.13,14,",hv,",reviewed,1538199426960,"M 1.0 - 22km ENE of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538277087890,https://earthquake.usgs.gov/earthquakes/eventpage/hv70619442 +,,37373522,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37373522&format=geojson,0.02355,,50.0,",ci37373522,",0.62,ml,,ci,23.0,"7km NE of Anza, CA",0.19,6,",ci,",reviewed,1538199211590,"M 0.6 - 7km NE of Anza, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538403219830,https://earthquake.usgs.gov/earthquakes/eventpage/ci37373522 +,,60298387,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60298387&format=geojson,0.1113,,153.0,",uu60298387,",1.85,ml,,uu,11.0,"34km N of Beaver, Utah",0.09,53,",uu,",reviewed,1538199047970,"M 1.9 - 34km N of Beaver, Utah",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538499075580,https://earthquake.usgs.gov/earthquakes/eventpage/uu60298387 +,,37373514,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37373514&format=geojson,0.009067,,31.0,",ci37373514,",0.73,ml,,ci,43.0,"9km NE of Aguanga, CA",0.15,8,",ci,",reviewed,1538198863750,"M 0.7 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538408560733,https://earthquake.usgs.gov/earthquakes/eventpage/ci37373514 +,,37373506,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37373506&format=geojson,0.02336,,157.0,",ci37373506,",0.78,ml,,ci,9.0,"4km SE of Coso Junction, CA",0.1,9,",ci,",reviewed,1538198806480,"M 0.8 - 4km SE of Coso Junction, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538403153479,https://earthquake.usgs.gov/earthquakes/eventpage/ci37373506 +,,61788611,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61788611&format=geojson,0.01806,,272.0,",av61788611,",0.29,ml,,av,4.0,"42km W of Tanaga Volcano, Alaska",0.07,1,",av,",reviewed,1538198710610,"M 0.3 - 42km W of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538421370690,https://earthquake.usgs.gov/earthquakes/eventpage/av61788611 +,,20266567,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266567&format=geojson,,,,",ak20266567,",1.9,ml,,ak,,"77km WSW of Cantwell, Alaska",0.78,56,",ak,",reviewed,1538198434402,"M 1.9 - 77km WSW of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067138600,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266567 +,,73091216,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091216&format=geojson,0.01604,,195.0,",nc73091216,",0.59,md,,nc,18.0,"14km WNW of Toms Place, CA",0.05,5,",nc,",reviewed,1538198202920,"M 0.6 - 14km WNW of Toms Place, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538414463953,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091216 +,,70619392,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70619392&format=geojson,0.02977,,60.0,",hv70619392,",2.4,ml,,hv,38.0,"22km ENE of Honaunau-Napoopoo, Hawaii",0.13,89,",hv,",reviewed,1538198180150,"M 2.4 - 22km ENE of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538205001020,https://earthquake.usgs.gov/earthquakes/eventpage/hv70619392 +,,70619387,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70619387&format=geojson,0.0363,,111.0,",hv70619387,",1.87,md,,hv,49.0,"2km SE of Pahala, Hawaii",0.16,54,",hv,",automatic,1538197931150,"M 1.9 - 2km SE of Pahala, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538198140620,https://earthquake.usgs.gov/earthquakes/eventpage/hv70619387 +,,2018272000,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018272000&format=geojson,0.1053,,140.0,",pr2018272000,",1.67,md,,pr,3.0,"2km N of Maricao, Puerto Rico",0.46,43,",pr,",reviewed,1538197685990,"M 1.7 - 2km N of Maricao, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538215999313,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018272000 +,,20266563,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266563&format=geojson,,,,",ak20266563,",1.4,ml,,ak,,"94km NNW of Talkeetna, Alaska",0.33,30,",ak,",reviewed,1538197493476,"M 1.4 - 94km NNW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067138019,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266563 +,,20266554,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266554&format=geojson,,,,",ak20266554,us1000h45h,",3.0,ml,,ak,,"107km NNW of Arctic Village, Alaska",0.55,138,",ak,us,",reviewed,1538197017175,"M 3.0 - 107km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539132088040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266554 +,,37373482,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37373482&format=geojson,0.02728,,35.0,",ci37373482,",0.64,ml,,ci,31.0,"9km NE of Aguanga, CA",0.16,6,",ci,",reviewed,1538196799230,"M 0.6 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538403222660,https://earthquake.usgs.gov/earthquakes/eventpage/ci37373482 +,,20266546,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266546&format=geojson,,,,",ak20266546,",1.6,ml,,ak,,"3km SE of Big Lake, Alaska",0.66,39,",ak,",reviewed,1538196697800,"M 1.6 - 3km SE of Big Lake, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067136572,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266546 +,3.1,20266529,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266529&format=geojson,,7.0,,",ak20266529,us1000h45c,",2.8,ml,,ak,,"4km SE of Big Lake, Alaska",0.61,123,",ak,us,",reviewed,1538196520703,"M 2.8 - 4km SE of Big Lake, Alaska",0,earthquake,",dyfi,geoserve,origin,phase-data,",-540.0,1539131947040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266529 +,,20266527,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266527&format=geojson,,,,",ak20266527,",0.5,ml,,ak,,"97km NW of Nikiski, Alaska",0.33,4,",ak,",reviewed,1538196492125,"M 0.5 - 97km NW of Nikiski, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067135138,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266527 +,,1000h45a,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h45a&format=geojson,6.756,,132.0,",us1000h45a,",4.9,mb,,us,,Kuril Islands,0.89,369,",us,",reviewed,1538196034210,M 4.9 - Kuril Islands,0,earthquake,",geoserve,origin,phase-data,",600.0,1538976783040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h45a +,,20266517,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266517&format=geojson,,,,",ak20266517,",1.9,ml,,ak,,"78km SSW of Kaktovik, Alaska",0.62,56,",ak,",reviewed,1538195421932,"M 1.9 - 78km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067134559,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266517 +,4.3,61424132,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61424132&format=geojson,0.02969,5.0,92.0,",uw61424132,",1.93,ml,,uw,28.0,"13km N of Richland, Washington",0.09,59,",uw,",reviewed,1538195229710,"M 1.9 - 13km N of Richland, Washington",0,earthquake,",dyfi,geoserve,origin,phase-data,",-480.0,1538446483559,https://earthquake.usgs.gov/earthquakes/eventpage/uw61424132 +,,20266512,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266512&format=geojson,,,,",ak20266512,",1.9,ml,,ak,,"63km SSE of Cantwell, Alaska",0.66,56,",ak,",reviewed,1538194941613,"M 1.9 - 63km SSE of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067133762,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266512 +,,20266514,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266514&format=geojson,,,,",ak20266514,",2.1,ml,,ak,,"195km S of Cape Yakataga, Alaska",0.44,68,",ak,",reviewed,1538194868822,"M 2.1 - 195km S of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539108355047,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266514 +,,20274005,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20274005&format=geojson,,,,",ak20274005,",2.3,ml,,ak,,"66km SSW of Nikolski, Alaska",0.43,81,",ak,",reviewed,1538194493079,"M 2.3 - 66km SSW of Nikolski, Alaska",0,earthquake,",geoserve,origin,phase-data,",-660.0,1539067132609,https://earthquake.usgs.gov/earthquakes/eventpage/ak20274005 +,,00658773,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658773&format=geojson,0.03,,77.71,",nn00658773,",-0.2,ml,,nn,6.0,"3km N of Dollar Point, California",0.0634,0,",nn,",reviewed,1538194454081,"M -0.2 - 3km N of Dollar Point, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538232341677,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658773 +,,20266510,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266510&format=geojson,,,,",ak20266510,",0.9,ml,,ak,,"76km E of Cape Yakataga, Alaska",0.54,12,",ak,",reviewed,1538193870136,"M 0.9 - 76km E of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067132047,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266510 +,,73091211,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091211&format=geojson,0.02442,,119.0,",nc73091211,",0.77,md,,nc,15.0,"9km NW of Pinnacles, CA",0.07,9,",nc,",reviewed,1538193740520,"M 0.8 - 9km NW of Pinnacles, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538440345497,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091211 +,,20266507,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266507&format=geojson,,,,",ak20266507,",1.3,ml,,ak,,"9km NNE of Talkeetna, Alaska",0.64,26,",ak,",reviewed,1538192943204,"M 1.3 - 9km NNE of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067131401,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266507 +,,61788601,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61788601&format=geojson,0.01836,,117.0,",av61788601,",-0.04,ml,,av,5.0,"41km ENE of Adak, Alaska",0.21,0,",av,",reviewed,1538192884770,"M -0.0 - 41km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538421137980,https://earthquake.usgs.gov/earthquakes/eventpage/av61788601 +,,20266505,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266505&format=geojson,,,,",ak20266505,",1.4,ml,,ak,,"63km ESE of Whittier, Alaska",0.46,30,",ak,",reviewed,1538192686983,"M 1.4 - 63km ESE of Whittier, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067130750,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266505 +,,00658817,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658817&format=geojson,0.115,,152.32,",nn00658817,",0.3,ml,,nn,12.0,"33km NW of Beatty, Nevada",0.1744,1,",nn,",reviewed,1538192481580,"M 0.3 - 33km NW of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538260251828,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658817 +,,20274001,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20274001&format=geojson,,,,",ak20274001,",1.2,ml,,ak,,"73km WSW of Cantwell, Alaska",0.66,22,",ak,",reviewed,1538192447617,"M 1.2 - 73km WSW of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067130198,https://earthquake.usgs.gov/earthquakes/eventpage/ak20274001 +,,20274000,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20274000&format=geojson,,,,",ak20274000,",1.7,ml,,ak,,"65km WSW of Larsen Bay, Alaska",0.42,44,",ak,",reviewed,1538192309917,"M 1.7 - 65km WSW of Larsen Bay, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067129693,https://earthquake.usgs.gov/earthquakes/eventpage/ak20274000 +,,73091206,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091206&format=geojson,0.01233,,106.0,",nc73091206,",0.56,md,,nc,8.0,"8km W of Cobb, CA",0.03,5,",nc,",automatic,1538192055230,"M 0.6 - 8km W of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538193002248,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091206 +,,20273999,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273999&format=geojson,,,,",ak20273999,",1.4,ml,,ak,,"84km NW of Talkeetna, Alaska",0.51,30,",ak,",reviewed,1538191894561,"M 1.4 - 84km NW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067129112,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273999 +,,00658709,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658709&format=geojson,0.011,,78.32,",nn00658709,",-0.2,ml,,nn,32.0,"61km N of Pahrump, Nevada",0.1547,0,",nn,",reviewed,1538191749488,"M -0.2 - 61km N of Pahrump, Nevada",0,earthquake,",focal-mechanism,geoserve,origin,phase-data,",-480.0,1539033565853,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658709 +,,20266503,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266503&format=geojson,,,,",ak20266503,",1.2,ml,,ak,,"3km SW of Houston, Alaska",0.52,22,",ak,",reviewed,1538191720141,"M 1.2 - 3km SW of Houston, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067128517,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266503 +,,20266502,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266502&format=geojson,,,,",ak20266502,",0.7,ml,,ak,,"151km E of Chitina, Alaska",0.66,8,",ak,",reviewed,1538191488346,"M 0.7 - 151km E of Chitina, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067127953,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266502 +,,00658815,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658815&format=geojson,0.03,,111.29,",nn00658815,",-0.2,ml,,nn,8.0,"36km ENE of Beatty, Nevada",0.1524,0,",nn,",reviewed,1538191169854,"M -0.2 - 36km ENE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538259142577,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658815 +,,20266501,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266501&format=geojson,,,,",ak20266501,",1.2,ml,,ak,,"52km NNW of Yakutat, Alaska",0.76,22,",ak,",reviewed,1538191097061,"M 1.2 - 52km NNW of Yakutat, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067127282,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266501 +,,00658706,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658706&format=geojson,0.423,,99.66,",nn00658706,",0.9,ml,,nn,14.0,"30km S of Caliente, Nevada",0.1367,12,",nn,",reviewed,1538191069228,"M 0.9 - 30km S of Caliente, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538244159249,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658706 +,,20266499,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266499&format=geojson,,,,",ak20266499,",1.3,ml,,ak,,"34km SW of Whittier, Alaska",0.46,26,",ak,",reviewed,1538190617190,"M 1.3 - 34km SW of Whittier, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067126663,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266499 +,,20273994,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273994&format=geojson,,,,",ak20273994,",1.2,ml,,ak,,"103km NNW of Arctic Village, Alaska",0.72,22,",ak,",reviewed,1538190100658,"M 1.2 - 103km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067126116,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273994 +,,20266497,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266497&format=geojson,,,,",ak20266497,",0.9,ml,,ak,,"87km WNW of Cape Yakataga, Alaska",0.75,12,",ak,",reviewed,1538189719983,"M 0.9 Ice Quake - 87km WNW of Cape Yakataga, Alaska",0,ice quake,",geoserve,origin,phase-data,",-540.0,1539067125614,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266497 +,,00658703,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658703&format=geojson,0.13,,63.15,",nn00658703,",1.3,ml,,nn,24.0,"28km WSW of Hawthorne, Nevada",0.1914,26,",nn,",reviewed,1538189675148,"M 1.3 - 28km WSW of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538243419764,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658703 +,,20266495,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266495&format=geojson,,,,",ak20266495,",1.1,ml,,ak,,"62km E of Sutton-Alpine, Alaska",0.61,19,",ak,",reviewed,1538189085154,"M 1.1 - 62km E of Sutton-Alpine, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067125051,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266495 +,,20266494,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266494&format=geojson,,,,",ak20266494,",1.3,ml,,ak,,"63km WNW of Talkeetna, Alaska",0.49,26,",ak,",reviewed,1538188847211,"M 1.3 - 63km WNW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067124411,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266494 +,,00658816,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658816&format=geojson,0.032,,116.5,",nn00658816,",-0.1,ml,,nn,8.0,"36km ENE of Beatty, Nevada",0.1306,0,",nn,",reviewed,1538188429246,"M -0.1 - 36km ENE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538259328293,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658816 +,,1000h44u,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h44u&format=geojson,2.762,,55.0,",us1000h44u,",4.8,mb,,us,,"69km WSW of Kasiguncu, Indonesia",0.59,354,",us,",reviewed,1538188370820,"M 4.8 - 69km WSW of Kasiguncu, Indonesia",0,earthquake,",geoserve,origin,phase-data,",480.0,1539468592040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h44u +,,20266491,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266491&format=geojson,,,,",ak20266491,",1.8,ml,,ak,,"41km NNE of Redoubt Volcano, Alaska",0.34,50,",ak,",reviewed,1538188073995,"M 1.8 - 41km NNE of Redoubt Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067123727,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266491 +,,20273989,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273989&format=geojson,,,,",ak20273989,",1.1,ml,,ak,,"113km W of Cantwell, Alaska",0.85,19,",ak,",reviewed,1538188033662,"M 1.1 - 113km W of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067123145,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273989 +,,20266490,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266490&format=geojson,,,,",ak20266490,",2.0,ml,,ak,,"78km SSW of Kaktovik, Alaska",0.59,62,",ak,",reviewed,1538187820447,"M 2.0 - 78km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067122539,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266490 +,,20273987,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273987&format=geojson,,,,",ak20273987,",1.1,ml,,ak,,"54km NE of Talkeetna, Alaska",0.54,19,",ak,",reviewed,1538187515285,"M 1.1 - 54km NE of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067122041,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273987 +green,3.0,37373442,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37373442&format=geojson,0.1018,101.0,172.0,",ci37373442,at00pfsp1m,us1000h44n,",4.41,mw,5.98,ci,34.0,"1km SE of Delta, B.C., MX",0.29,330,",ci,at,us,",reviewed,1538187466720,"M 4.4 - 1km SE of Delta, B.C., MX",1,earthquake,",dyfi,geoserve,impact-link,losspager,moment-tensor,nearby-cities,origin,phase-data,scitech-link,shakemap,",-480.0,1539467685040,https://earthquake.usgs.gov/earthquakes/eventpage/ci37373442 +,,60298372,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60298372&format=geojson,0.0328,,113.0,",uu60298372,",0.68,ml,,uu,13.0,"16km NE of West Yellowstone, Montana",0.16,7,",uu,",reviewed,1538187298670,"M 0.7 - 16km NE of West Yellowstone, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538405509490,https://earthquake.usgs.gov/earthquakes/eventpage/uu60298372 +,,20266489,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266489&format=geojson,,,,",ak20266489,",1.2,ml,,ak,,"108km W of Cantwell, Alaska",0.65,22,",ak,",reviewed,1538187069803,"M 1.2 - 108km W of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067121462,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266489 +,,37373434,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37373434&format=geojson,0.04928,,60.0,",ci37373434,",1.42,ml,,ci,49.0,"9km NNE of Banning, CA",0.2,31,",ci,",reviewed,1538187027250,"M 1.4 - 9km NNE of Banning, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538403226260,https://earthquake.usgs.gov/earthquakes/eventpage/ci37373434 +,,00658813,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658813&format=geojson,0.049,,214.2,",nn00658813,",0.3,ml,,nn,5.0,"38km E of Hawthorne, Nevada",0.0398,1,",nn,",reviewed,1538187022433,"M 0.3 - 38km E of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538258220641,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658813 +,,20266488,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266488&format=geojson,,,,",ak20266488,",1.7,ml,,ak,,"90km NW of Arctic Village, Alaska",0.8,44,",ak,",reviewed,1538186844972,"M 1.7 - 90km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067120890,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266488 +,,00658678,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658678&format=geojson,0.066,,71.16,",nn00658678,",-0.4,ml,,nn,23.0,"46km ESE of Beatty, Nevada",0.1292,0,",nn,",reviewed,1538186809688,"M -0.4 - 46km ESE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538242861777,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658678 +,,00658675,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658675&format=geojson,0.006,,87.93,",nn00658675,",2.5,ml,,nn,8.0,"39km NW of Carlin, Nevada",0.1797,96,",nn,",reviewed,1538186588092,"M 2.5 Explosion - 39km NW of Carlin, Nevada",0,explosion,",geoserve,origin,phase-data,",-480.0,1538241751832,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658675 +,,20266485,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266485&format=geojson,,,,",ak20266485,",1.6,ml,,ak,,"53km WSW of Anchor Point, Alaska",0.35,39,",ak,",reviewed,1538185235217,"M 1.6 - 53km WSW of Anchor Point, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539067120275,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266485 +,,20266483,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266483&format=geojson,,,,",ak20266483,",0.5,ml,,ak,,"99km NNW of Nikiski, Alaska",0.64,4,",ak,",reviewed,1538184676618,"M 0.5 - 99km NNW of Nikiski, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067119758,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266483 +,,20266481,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266481&format=geojson,,,,",ak20266481,",2.1,ml,,ak,,"81km SSW of Kaktovik, Alaska",0.7,68,",ak,",reviewed,1538184450028,"M 2.1 - 81km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067119077,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266481 +,,20266479,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266479&format=geojson,,,,",ak20266479,",1.6,ml,,ak,,"40km SE of Holy Cross, Alaska",0.78,39,",ak,",reviewed,1538184223196,"M 1.6 - 40km SE of Holy Cross, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067118471,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266479 +,,37373394,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37373394&format=geojson,0.08159,,66.0,",ci37373394,",0.38,ml,,ci,19.0,"10km NE of Aguanga, CA",0.14,2,",ci,",reviewed,1538184047220,"M 0.4 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538403158528,https://earthquake.usgs.gov/earthquakes/eventpage/ci37373394 +,,1000h486,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h486&format=geojson,2.504,,88.0,",us1000h486,",4.4,mb,,us,,"53km SSE of Palu, Indonesia",0.89,298,",us,",reviewed,1538183915610,"M 4.4 - 53km SSE of Palu, Indonesia",0,earthquake,",geoserve,origin,phase-data,",480.0,1539405237040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h486 +,,20273980,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273980&format=geojson,,,,",ak20273980,",1.3,ml,,ak,,"73km NW of Talkeetna, Alaska",0.48,26,",ak,",reviewed,1538183815830,"M 1.3 - 73km NW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067117875,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273980 +,,37373386,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37373386&format=geojson,0.02247,,96.0,",ci37373386,",0.61,ml,,ci,19.0,"20km SW of La Quinta, CA",0.15,6,",ci,",reviewed,1538183538050,"M 0.6 - 20km SW of La Quinta, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538403174434,https://earthquake.usgs.gov/earthquakes/eventpage/ci37373386 +,,61424092,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61424092&format=geojson,0.05699,,201.0,",uw61424092,",0.39,ml,,uw,12.0,"36km SSE of Morton, Washington",0.16,2,",uw,",reviewed,1538183051940,"M 0.4 - 36km SSE of Morton, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538445955050,https://earthquake.usgs.gov/earthquakes/eventpage/uw61424092 +,,20266472,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266472&format=geojson,,,,",ak20266472,us1000h44g,",2.5,ml,,ak,,"77km SW of Kaktovik, Alaska",0.56,96,",ak,us,",reviewed,1538182977588,"M 2.5 - 77km SW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539403640040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266472 +,,61424082,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61424082&format=geojson,0.2667,,283.0,",uw61424082,",1.07,ml,,uw,5.0,"3km SE of Indianola, Washington",0.21,18,",uw,",reviewed,1538182258240,"M 1.1 - 3km SE of Indianola, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538433251540,https://earthquake.usgs.gov/earthquakes/eventpage/uw61424082 +,,20266471,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266471&format=geojson,,,,",ak20266471,",1.2,ml,,ak,,"22km NNE of Badger, Alaska",0.27,22,",ak,",reviewed,1538182059860,"M 1.2 Explosion - 22km NNE of Badger, Alaska",0,explosion,",geoserve,origin,phase-data,",-540.0,1539067116634,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266471 +,,80311839,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80311839&format=geojson,0.217,,124.0,",mb80311839,",1.07,ml,,mb,9.0,"35km W of Lima, Montana",0.09,18,",mb,",reviewed,1538181819690,"M 1.1 - 35km W of Lima, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538416973230,https://earthquake.usgs.gov/earthquakes/eventpage/mb80311839 +,,20266469,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266469&format=geojson,,,,",ak20266469,",1.3,ml,,ak,,"112km W of Cantwell, Alaska",0.67,26,",ak,",reviewed,1538181060905,"M 1.3 - 112km W of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067116038,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266469 +,,1000h4e6,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h4e6&format=geojson,4.538,,199.0,",ak20266465,us1000h4e6,",3.3,ml,,us,,South of Alaska,0.91,168,",ak,us,",reviewed,1538180599840,M 3.3 - South of Alaska,0,earthquake,",geoserve,origin,phase-data,",-540.0,1539471461040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h4e6 +,,20266464,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266464&format=geojson,,,,",ak20266464,",1.6,ml,,ak,,"77km SSW of Kaktovik, Alaska",0.66,39,",ak,",reviewed,1538180561070,"M 1.6 - 77km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067114798,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266464 +,,20266459,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266459&format=geojson,,,,",ak20266459,",1.6,ml,,ak,,"105km N of Arctic Village, Alaska",0.63,39,",ak,",reviewed,1538180060683,"M 1.6 - 105km N of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067114243,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266459 +,,20266457,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266457&format=geojson,,,,",ak20266457,",1.1,ml,,ak,,"38km N of North Nenana, Alaska",0.66,19,",ak,",reviewed,1538179984773,"M 1.1 - 38km N of North Nenana, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067113577,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266457 +,,20266456,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266456&format=geojson,,,,",ak20266456,",0.9,ml,,ak,,"8km W of Valdez, Alaska",0.65,12,",ak,",reviewed,1538179757156,"M 0.9 - 8km W of Valdez, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067113016,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266456 +,,20266455,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266455&format=geojson,,,,",ak20266455,",0.5,ml,,ak,,"98km NNW of Nikiski, Alaska",0.55,4,",ak,",reviewed,1538179215195,"M 0.5 - 98km NNW of Nikiski, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539067112457,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266455 +,,20266452,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266452&format=geojson,,,,",ak20266452,",1.7,ml,,ak,,"90km NNW of Talkeetna, Alaska",0.35,44,",ak,",reviewed,1538179055644,"M 1.7 - 90km NNW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539039125708,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266452 +,,37373354,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37373354&format=geojson,0.01534,,115.0,",ci37373354,",0.27,ml,,ci,17.0,"10km NE of Aguanga, CA",0.11,1,",ci,",reviewed,1538178943220,"M 0.3 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538181146905,https://earthquake.usgs.gov/earthquakes/eventpage/ci37373354 +,,20266450,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266450&format=geojson,,,,",ak20266450,",0.9,ml,,ak,,"51km SSE of Cantwell, Alaska",0.66,12,",ak,",reviewed,1538178606215,"M 0.9 - 51km SSE of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539039125204,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266450 +,,20266448,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266448&format=geojson,,,,",ak20266448,",1.8,ml,,ak,,"77km W of Anchor Point, Alaska",0.38,50,",ak,",reviewed,1538178445783,"M 1.8 - 77km W of Anchor Point, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539039124648,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266448 +,2.0,73091186,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091186&format=geojson,0.01807,1.0,149.0,",nc73091186,",1.59,md,,nc,35.0,"4km WSW of Daly City, CA",0.08,39,",nc,",reviewed,1538177843090,"M 1.6 - 4km WSW of Daly City, CA",0,earthquake,",dyfi,focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538191563131,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091186 +,,20273796,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273796&format=geojson,,,,",ak20273796,",1.6,ml,,ak,,"42km S of Tanaga Volcano, Alaska",0.21,39,",ak,",reviewed,1538177225061,"M 1.6 - 42km S of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539039124138,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273796 +,,61424072,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61424072&format=geojson,0.1943,,197.0,",uw61424072,",1.48,ml,,uw,11.0,"35km N of Coulee Dam, Washington",0.14,34,",uw,",reviewed,1538176885540,"M 1.5 - 35km N of Coulee Dam, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538445732130,https://earthquake.usgs.gov/earthquakes/eventpage/uw61424072 +,,20266441,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266441&format=geojson,,,,",ak20266441,",1.1,ml,,ak,,"88km WNW of Cantwell, Alaska",0.6,19,",ak,",reviewed,1538176149575,"M 1.1 - 88km WNW of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539039123627,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266441 +,,20266440,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266440&format=geojson,,,,",ak20266440,",1.7,ml,,ak,,"122km NNW of Arctic Village, Alaska",0.62,44,",ak,",reviewed,1538176138556,"M 1.7 - 122km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539039123071,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266440 +,,20266434,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266434&format=geojson,,,,",ak20266434,us1000h441,",2.3,ml,,ak,,"21km N of Healy, Alaska",0.7,81,",ak,us,",reviewed,1538175897443,"M 2.3 Explosion - 21km N of Healy, Alaska",0,explosion,",geoserve,origin,phase-data,",-540.0,1539039122451,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266434 +,,73091176,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091176&format=geojson,0.02035,,80.0,",nc73091176,",0.75,md,,nc,13.0,"4km SW of San Juan Bautista, CA",0.09,9,",nc,",reviewed,1538175512770,"M 0.8 - 4km SW of San Juan Bautista, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538186097210,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091176 +,,20266427,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266427&format=geojson,,,,",ak20266427,us1000h43w,",2.6,ml,,ak,,"90km NNW of Kodiak Station, Alaska",0.71,104,",ak,us,",reviewed,1538175025221,"M 2.6 - 90km NNW of Kodiak Station, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539039121607,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266427 +,,20266424,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266424&format=geojson,,,,",ak20266424,",1.9,ml,,ak,,"105km W of Talkeetna, Alaska",0.82,56,",ak,",reviewed,1538174920762,"M 1.9 - 105km W of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539039080302,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266424 +,,73091171,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091171&format=geojson,0.009848,,116.0,",nc73091171,",0.96,md,,nc,12.0,"8km WNW of Cobb, CA",0.02,14,",nc,",automatic,1538174867170,"M 1.0 - 8km WNW of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538180943086,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091171 +,,73091166,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091166&format=geojson,0.02044,,171.0,",nc73091166,",0.3,md,,nc,11.0,"5km SE of Mammoth Lakes, CA",0.03,1,",nc,",reviewed,1538174313130,"M 0.3 - 5km SE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538185976294,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091166 +,,20266421,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266421&format=geojson,,,,",ak20266421,",1.2,ml,,ak,,"143km WNW of Arctic Village, Alaska",0.7,22,",ak,",reviewed,1538174024416,"M 1.2 - 143km WNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539039079751,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266421 +,,20273789,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273789&format=geojson,,,,",ak20273789,",1.5,ml,,ak,,"39km S of Adak, Alaska",0.36,35,",ak,",reviewed,1538173735672,"M 1.5 - 39km S of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539039079262,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273789 +,,70618832,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70618832&format=geojson,0.009643,,48.0,",hv70618832,",1.83,md,,hv,20.0,"5km SW of Volcano, Hawaii",0.25,52,",hv,",automatic,1538173722660,"M 1.8 - 5km SW of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538174062760,https://earthquake.usgs.gov/earthquakes/eventpage/hv70618832 +,,20266420,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266420&format=geojson,,,,",ak20266420,",1.7,ml,,ak,,"121km NNW of Arctic Village, Alaska",0.59,44,",ak,",reviewed,1538173648076,"M 1.7 - 121km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539039078710,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266420 +,,1000h43k,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h43k&format=geojson,0.296,,71.0,",us1000h43k,",2.3,mb_lg,,us,,"20km NNE of Taloga, Oklahoma",1.38,81,",us,",reviewed,1538173497920,"M 2.3 - 20km NNE of Taloga, Oklahoma",0,earthquake,",geoserve,origin,phase-data,",-360.0,1538175049040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h43k +,,1000h43j,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h43j&format=geojson,2.669,,35.0,",us1000h43j,",4.5,mb,,us,,"59km WNW of Pendolo, Indonesia",0.67,312,",us,",reviewed,1538173070670,"M 4.5 - 59km WNW of Pendolo, Indonesia",0,earthquake,",geoserve,origin,phase-data,",480.0,1539400345040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h43j +,,20273787,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273787&format=geojson,,,,",ak20273787,",2.3,ml,,ak,,"71km SW of Nikolski, Alaska",0.8,81,",ak,",reviewed,1538172265357,"M 2.3 - 71km SW of Nikolski, Alaska",0,earthquake,",geoserve,origin,phase-data,",-660.0,1539042760704,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273787 +,,1000h437,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h437&format=geojson,0.466,,176.0,",us1000h437,",4.1,mwr,,us,,"41km W of Coquimbo, Chile",1.02,259,",us,",reviewed,1538172176840,"M 4.1 - 41km W of Coquimbo, Chile",0,earthquake,",geoserve,moment-tensor,origin,phase-data,",-300.0,1539399853040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h437 +,,20266417,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266417&format=geojson,,,,",ak20266417,",1.3,ml,,ak,,"9km SW of Talkeetna, Alaska",0.65,26,",ak,",reviewed,1538172089270,"M 1.3 - 9km SW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539039077615,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266417 +,,37373282,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37373282&format=geojson,0.07002,,214.0,",ci37373282,",0.88,ml,,ci,10.0,"2km ESE of Home Gardens, CA",0.17,12,",ci,",reviewed,1538172029350,"M 0.9 Quarry Blast - 2km ESE of Home Gardens, CA",0,quarry blast,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538179904955,https://earthquake.usgs.gov/earthquakes/eventpage/ci37373282 +,,20266415,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266415&format=geojson,,,,",ak20266415,",2.6,ml,,ak,,"83km SW of Nikolski, Alaska",0.52,104,",ak,",reviewed,1538171846291,"M 2.6 - 83km SW of Nikolski, Alaska",0,earthquake,",geoserve,origin,phase-data,",-660.0,1539042760149,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266415 +,,73091161,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091161&format=geojson,0.03289,,30.0,",nc73091161,",1.86,md,,nc,71.0,"2km N of San Leandro, CA",0.09,53,",nc,",reviewed,1538171608870,"M 1.9 - 2km N of San Leandro, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538202483317,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091161 +,,1000h74u,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h74u&format=geojson,4.056,,52.0,",us1000h74u,",4.3,mb,,us,,"246km S of Amahusu, Indonesia",0.35,284,",us,",reviewed,1538171288120,"M 4.3 - 246km S of Amahusu, Indonesia",0,earthquake,",geoserve,origin,phase-data,",540.0,1539495502040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h74u +,,61424042,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61424042&format=geojson,0.2529,,133.0,",uw61424042,",1.11,ml,,uw,8.0,"33km SW of Ahtanum, Washington",0.16,19,",uw,",reviewed,1538171112950,"M 1.1 - 33km SW of Ahtanum, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538172801100,https://earthquake.usgs.gov/earthquakes/eventpage/uw61424042 +,,73091156,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091156&format=geojson,0.0356,,164.0,",nc73091156,",0.31,md,,nc,11.0,"11km ENE of Mammoth Lakes, CA",0.04,1,",nc,",reviewed,1538171052670,"M 0.3 - 11km ENE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538188262815,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091156 +,,2018271009,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018271009&format=geojson,0.1927,,312.0,",pr2018271009,",2.32,md,,pr,5.0,"12km WNW of Pole Ojea, Puerto Rico",0.14,83,",pr,",reviewed,1538170627710,"M 2.3 - 12km WNW of Pole Ojea, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538179764158,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018271009 +,4.3,70618737,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70618737&format=geojson,0.15,1.0,180.0,",hv70618737,us1000h42r,",2.36,ml,,hv,50.0,"12km SSW of Honoka'a, Hawaii",0.12,86,",hv,us,",reviewed,1538170626660,"M 2.4 - 12km SSW of Honoka'a, Hawaii",0,earthquake,",dyfi,geoserve,origin,phase-data,",-600.0,1538201191904,https://earthquake.usgs.gov/earthquakes/eventpage/hv70618737 +,,70805114,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70805114&format=geojson,0.01665,,101.0,",av70805114,",0.2,ml,,av,5.0,"42km ENE of Adak, Alaska",0.15,1,",av,",reviewed,1538170593010,"M 0.2 - 42km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538178873900,https://earthquake.usgs.gov/earthquakes/eventpage/av70805114 +,,37373250,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37373250&format=geojson,0.06517,,69.0,",ci37373250,",0.46,ml,,ci,19.0,"11km NE of Aguanga, CA",0.1,3,",ci,",reviewed,1538170533980,"M 0.5 - 11km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538179706979,https://earthquake.usgs.gov/earthquakes/eventpage/ci37373250 +,,73091151,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091151&format=geojson,0.007697,,87.0,",nc73091151,",1.13,md,,nc,14.0,"8km NW of The Geysers, CA",0.05,20,",nc,",automatic,1538170473780,"M 1.1 - 8km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538174643486,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091151 +,2.2,73091141,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091141&format=geojson,0.04657,1.0,103.0,",nc73091141,",1.19,md,,nc,23.0,"23km NE of San Ardo, CA",0.06,22,",nc,",reviewed,1538170228510,"M 1.2 - 23km NE of San Ardo, CA",0,earthquake,",dyfi,focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538190243009,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091141 +,3.1,61424032,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61424032&format=geojson,0.09721,4.0,49.0,",uw61424032,",2.01,ml,,uw,16.0,"2km ENE of Granite Falls, Washington",0.17,63,",uw,",reviewed,1538170204370,"M 2.0 Explosion - 2km ENE of Granite Falls, Washington",0,explosion,",dyfi,geoserve,origin,phase-data,",-480.0,1538441330405,https://earthquake.usgs.gov/earthquakes/eventpage/uw61424032 +,,20266414,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266414&format=geojson,,,,",ak20266414,",1.0,ml,,ak,,"13km WNW of Anchorage, Alaska",0.35,15,",ak,",reviewed,1538170194611,"M 1.0 - 13km WNW of Anchorage, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539039076587,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266414 +,,1000h42g,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h42g&format=geojson,2.645,,48.0,",us1000h42g,",5.0,mww,,us,,"55km WSW of Kasiguncu, Indonesia",0.71,385,",us,",reviewed,1538169841560,"M 5.0 - 55km WSW of Kasiguncu, Indonesia",1,earthquake,",geoserve,origin,phase-data,",480.0,1538170758040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h42g +,,20273783,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273783&format=geojson,,,,",ak20273783,",2.1,ml,,ak,,"71km S of Adak, Alaska",0.45,68,",ak,",reviewed,1538169764453,"M 2.1 - 71km S of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-720.0,1539039076082,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273783 +,,20266413,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266413&format=geojson,,,,",ak20266413,",1.1,ml,,ak,,"168km ENE of Chitina, Alaska",0.73,19,",ak,",reviewed,1538169645930,"M 1.1 - 168km ENE of Chitina, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539039075529,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266413 +,,00658649,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658649&format=geojson,0.032,,93.22,",nn00658649,",-0.3,ml,,nn,15.0,"36km ENE of Beatty, Nevada",0.145,0,",nn,",reviewed,1538169441505,"M -0.3 - 36km ENE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538186668033,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658649 +,,1000h74t,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h74t&format=geojson,2.624,,92.0,",us1000h74t,",4.4,mb,,us,,"64km SW of Palu, Indonesia",0.86,298,",us,",reviewed,1538169425360,"M 4.4 - 64km SW of Palu, Indonesia",0,earthquake,",geoserve,origin,phase-data,",480.0,1539493580040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h74t +,,37373234,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37373234&format=geojson,0.004276,,41.0,",ci37373234,",0.72,ml,,ci,31.0,"10km NE of Aguanga, CA",0.16,8,",ci,",reviewed,1538169294120,"M 0.7 - 10km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538178666740,https://earthquake.usgs.gov/earthquakes/eventpage/ci37373234 +,,1000h74s,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h74s&format=geojson,8.02,,79.0,",us1000h74s,",4.5,mb,,us,,Indian Ocean Triple Junction,0.7,312,",us,",reviewed,1538169171960,M 4.5 - Indian Ocean Triple Junction,0,earthquake,",geoserve,origin,phase-data,",240.0,1539493036040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h74s +,,37373218,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37373218&format=geojson,0.004503,,58.0,",ci37373218,",0.41,ml,,ci,22.0,"10km NE of Aguanga, CA",0.12,3,",ci,",reviewed,1538169154380,"M 0.4 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538170023857,https://earthquake.usgs.gov/earthquakes/eventpage/ci37373218 +,,20266411,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266411&format=geojson,,,,",ak20266411,",1.0,ml,,ak,,"86km WNW of Cape Yakataga, Alaska",0.8,15,",ak,",reviewed,1538169100182,"M 1.0 Ice Quake - 86km WNW of Cape Yakataga, Alaska",0,ice quake,",geoserve,origin,phase-data,",-540.0,1539039075029,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266411 +,,20266410,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266410&format=geojson,,,,",ak20266410,",2.9,ml,,ak,,"74km SSE of Amukta Island, Alaska",1.12,129,",ak,",reviewed,1538168887036,"M 2.9 - 74km SSE of Amukta Island, Alaska",0,earthquake,",geoserve,origin,phase-data,",-660.0,1539042759630,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266410 +,,00659768,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659768&format=geojson,0.028,,201.86,",nn00659768,",-0.3,ml,,nn,4.0,"61km NE of Beatty, Nevada",0.031,0,",nn,",reviewed,1538168745465,"M -0.3 - 61km NE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538784200567,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659768 +,,1000h74q,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h74q&format=geojson,2.609,,84.0,",us1000h74q,",4.4,mb,,us,,"55km SW of Kasiguncu, Indonesia",0.79,298,",us,",reviewed,1538168639950,"M 4.4 - 55km SW of Kasiguncu, Indonesia",0,earthquake,",geoserve,origin,phase-data,",480.0,1539492210040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h74q +,,73091136,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091136&format=geojson,0.03091,,147.0,",nc73091136,",0.61,md,,nc,15.0,"10km ENE of Mammoth Lakes, CA",0.09,6,",nc,",reviewed,1538168624710,"M 0.6 - 10km ENE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538189823968,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091136 +,,1000h74r,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h74r&format=geojson,2.779,,98.0,",us1000h74r,",4.2,mb,,us,,"67km SSW of Palu, Indonesia",1.27,271,",us,",reviewed,1538168561530,"M 4.2 - 67km SSW of Palu, Indonesia",0,earthquake,",geoserve,origin,phase-data,",480.0,1539492653040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h74r +,,20266407,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266407&format=geojson,,,,",ak20266407,",1.2,ml,,ak,,"16km NNE of Willow, Alaska",0.62,22,",ak,",reviewed,1538167776353,"M 1.2 - 16km NNE of Willow, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539039073980,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266407 +,,37373186,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37373186&format=geojson,0.003962,,78.0,",ci37373186,",0.3,ml,,ci,25.0,"10km NE of Aguanga, CA",0.13,1,",ci,",reviewed,1538167640030,"M 0.3 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538168356502,https://earthquake.usgs.gov/earthquakes/eventpage/ci37373186 +,,70618657,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70618657&format=geojson,0.009455,,44.0,",hv70618657,",1.74,md,,hv,46.0,"5km S of Volcano, Hawaii",0.11,47,",hv,",reviewed,1538166988660,"M 1.7 - 5km S of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538189649680,https://earthquake.usgs.gov/earthquakes/eventpage/hv70618657 +,,1000h41b,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h41b&format=geojson,2.539,,88.0,",us1000h41b,",4.4,mb,,us,,"51km W of Kasiguncu, Indonesia",0.47,298,",us,",reviewed,1538166891060,"M 4.4 - 51km W of Kasiguncu, Indonesia",0,earthquake,",geoserve,origin,phase-data,",480.0,1538249523040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h41b +,,70618647,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70618647&format=geojson,0.004142,,85.0,",hv70618647,",1.87,ml,,hv,26.0,"4km SW of Volcano, Hawaii",0.07,54,",hv,",reviewed,1538166685470,"M 1.9 - 4km SW of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538175285600,https://earthquake.usgs.gov/earthquakes/eventpage/hv70618647 +,,73091131,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091131&format=geojson,0.01819,,121.0,",nc73091131,",1.39,md,,nc,26.0,"5km SE of Mammoth Lakes, CA",0.04,30,",nc,",reviewed,1538166408530,"M 1.4 - 5km SE of Mammoth Lakes, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538200984037,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091131 +,,20266405,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266405&format=geojson,,,,",ak20266405,",1.2,ml,,ak,,"58km NNE of Kobuk, Alaska",0.45,22,",ak,",reviewed,1538166222685,"M 1.2 - 58km NNE of Kobuk, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539042759093,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266405 +,,20266402,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266402&format=geojson,,,,",ak20266402,",1.8,ml,,ak,,"78km SSW of Kaktovik, Alaska",0.57,50,",ak,",reviewed,1538166080049,"M 1.8 - 78km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539042758530,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266402 +,,61424017,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61424017&format=geojson,0.0863,,177.0,",uw61424017,",0.96,ml,,uw,4.0,"24km SE of Sweet Home, Oregon",0.18,14,",uw,",reviewed,1538165929890,"M 1.0 Explosion - 24km SE of Sweet Home, Oregon",0,explosion,",geoserve,origin,phase-data,",-480.0,1538173051020,https://earthquake.usgs.gov/earthquakes/eventpage/uw61424017 +,,37373162,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37373162&format=geojson,0.006771,,36.0,",ci37373162,",0.71,ml,,ci,37.0,"10km NE of Aguanga, CA",0.15,8,",ci,",reviewed,1538165795590,"M 0.7 - 10km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538167486140,https://earthquake.usgs.gov/earthquakes/eventpage/ci37373162 +,,73091116,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091116&format=geojson,0.04374,,118.0,",nc73091116,",1.47,md,,nc,33.0,"15km S of Lake Nacimiento, CA",0.04,33,",nc,",reviewed,1538165598830,"M 1.5 - 15km S of Lake Nacimiento, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538191383119,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091116 +,,20266401,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266401&format=geojson,,,,",ak20266401,",1.6,ml,,ak,,"68km S of Kaktovik, Alaska",0.76,39,",ak,",reviewed,1538165404265,"M 1.6 - 68km S of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539039072351,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266401 +,,1000h405,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h405&format=geojson,0.289,,126.0,",ak20266394,us1000h405,",4.2,mb,,us,,"96km S of Semisopochnoi Island, Alaska",1.0,271,",ak,us,",reviewed,1538165094960,"M 4.2 - 96km S of Semisopochnoi Island, Alaska",0,earthquake,",geoserve,origin,phase-data,",720.0,1539042757942,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h405 +,,70618592,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70618592&format=geojson,0.00815,,144.0,",hv70618592,",1.89,ml,,hv,17.0,"2km W of Volcano, Hawaii",0.11,55,",hv,",automatic,1538164853880,"M 1.9 - 2km W of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538165193920,https://earthquake.usgs.gov/earthquakes/eventpage/hv70618592 +,,70618587,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70618587&format=geojson,0.06473,,112.0,",hv70618587,",1.04,md,,hv,16.0,"20km WSW of Volcano, Hawaii",0.08,17,",hv,",reviewed,1538164813800,"M 1.0 - 20km WSW of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538173603880,https://earthquake.usgs.gov/earthquakes/eventpage/hv70618587 +,,20266393,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266393&format=geojson,,,,",ak20266393,",1.3,ml,,ak,,"58km WNW of Skagway, Alaska",0.77,26,",ak,",reviewed,1538164443173,"M 1.3 - 58km WNW of Skagway, Alaska",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539039071254,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266393 +,,20266391,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266391&format=geojson,,,,",ak20266391,",1.1,ml,,ak,,"38km SE of Cantwell, Alaska",0.71,19,",ak,",reviewed,1538164396258,"M 1.1 - 38km SE of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539039070701,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266391 +,,00659766,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659766&format=geojson,0.036,,142.8,",nn00659766,",-0.2,ml,,nn,9.0,"68km ENE of Beatty, Nevada",0.1094,0,",nn,",reviewed,1538162751048,"M -0.2 - 68km ENE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538783278962,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659766 +,,00659765,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659765&format=geojson,0.056,,181.7,",nn00659765,",-0.3,ml,,nn,9.0,"52km ENE of Beatty, Nevada",0.1096,0,",nn,",reviewed,1538162314464,"M -0.3 - 52km ENE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538782908514,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659765 +,,20273772,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273772&format=geojson,,,,",ak20273772,",1.2,ml,,ak,,"15km N of Meadow Lakes, Alaska",0.69,22,",ak,",reviewed,1538162053168,"M 1.2 - 15km N of Meadow Lakes, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539039070177,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273772 +,,80311619,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80311619&format=geojson,0.059,,71.0,",mb80311619,",1.59,ml,,mb,13.0,"4km E of Butte, Montana",0.18,39,",mb,",reviewed,1538161376270,"M 1.6 Quarry Blast - 4km E of Butte, Montana",0,quarry blast,",geoserve,origin,phase-data,",-420.0,1538494284810,https://earthquake.usgs.gov/earthquakes/eventpage/mb80311619 +,,20273771,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273771&format=geojson,,,,",ak20273771,",1.2,ml,,ak,,"27km NW of Talkeetna, Alaska",0.62,22,",ak,",reviewed,1538161238295,"M 1.2 - 27km NW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539039069671,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273771 +,,61423987,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61423987&format=geojson,0.2014,,147.0,",uw61423987,",1.11,ml,,uw,7.0,"5km WNW of Junction City, Oregon",0.32,19,",uw,",reviewed,1538161192510,"M 1.1 Explosion - 5km WNW of Junction City, Oregon",0,explosion,",geoserve,origin,phase-data,",-480.0,1538163577830,https://earthquake.usgs.gov/earthquakes/eventpage/uw61423987 +,,61423982,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61423982&format=geojson,,,89.0,",uw61423982,",1.86,ml,,uw,11.0,"5km SE of South Lebanon, Oregon",0.4,53,",uw,",reviewed,1538161075780,"M 1.9 Explosion - 5km SE of South Lebanon, Oregon",0,explosion,",geoserve,origin,phase-data,",-480.0,1538163347880,https://earthquake.usgs.gov/earthquakes/eventpage/uw61423982 +,,60241196,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nm60241196&format=geojson,0.0281,,59.0,",nm60241196,",1.62,md,,nm,14.0,"3km ENE of Ridgely, Tennessee",0.03,40,",nm,",reviewed,1538160737220,"M 1.6 - 3km ENE of Ridgely, Tennessee",0,earthquake,",geoserve,origin,phase-data,",-360.0,1538663052660,https://earthquake.usgs.gov/earthquakes/eventpage/nm60241196 +,,37373122,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37373122&format=geojson,0.1007,,52.0,",ci37373122,",0.97,ml,,ci,33.0,"3km N of Beaumont, CA",0.12,14,",ci,",reviewed,1538160649460,"M 1.0 - 3km N of Beaumont, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538163466947,https://earthquake.usgs.gov/earthquakes/eventpage/ci37373122 +,,20266388,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266388&format=geojson,,,,",ak20266388,",1.6,ml,,ak,,"56km SW of Unalaska, Alaska",0.47,39,",ak,",reviewed,1538160131074,"M 1.6 - 56km SW of Unalaska, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539039069092,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266388 +,,20266390,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266390&format=geojson,,,,",ak20266390,",1.5,ml,,ak,,"105km NNW of Arctic Village, Alaska",0.56,35,",ak,",reviewed,1538159773750,"M 1.5 - 105km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539039068552,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266390 +,,20273768,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273768&format=geojson,,,,",ak20273768,",1.1,ml,,ak,,"74km SSW of Kaktovik, Alaska",0.58,19,",ak,",reviewed,1538159318450,"M 1.1 - 74km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539039068053,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273768 +,,20266386,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266386&format=geojson,,,,",ak20266386,",1.2,ml,,ak,,"64km SSE of Cantwell, Alaska",0.48,22,",ak,",reviewed,1538159317665,"M 1.2 - 64km SSE of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539039067509,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266386 +,,37373106,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37373106&format=geojson,0.04983,,98.0,",ci37373106,",1.97,ml,,ci,32.0,"1km NW of Hawthorne, CA",0.24,60,",ci,",reviewed,1538159169870,"M 2.0 - 1km NW of Hawthorne, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538162882800,https://earthquake.usgs.gov/earthquakes/eventpage/ci37373106 +,,73091096,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091096&format=geojson,0.124,,321.0,",nc73091096,",0.82,md,,nc,9.0,"22km WNW of Mammoth Lakes, CA",0.13,10,",nc,",reviewed,1538158877850,"M 0.8 - 22km WNW of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538168042836,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091096 +,,37373090,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37373090&format=geojson,0.004981,,57.0,",ci37373090,",0.39,ml,,ci,27.0,"10km NE of Aguanga, CA",0.12,2,",ci,",reviewed,1538158803770,"M 0.4 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538166462650,https://earthquake.usgs.gov/earthquakes/eventpage/ci37373090 +,,20266382,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266382&format=geojson,,,,",ak20266382,",1.4,ml,,ak,,"54km W of Big Lake, Alaska",0.42,30,",ak,",reviewed,1538158670579,"M 1.4 - 54km W of Big Lake, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539039066955,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266382 +,,37373066,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37373066&format=geojson,0.04031,,144.0,",ci37373066,",0.35,ml,,ci,22.0,"22km ESE of Anza, CA",0.14,2,",ci,",reviewed,1538158220640,"M 0.4 - 22km ESE of Anza, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538168037733,https://earthquake.usgs.gov/earthquakes/eventpage/ci37373066 +,,00658625,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658625&format=geojson,0.028,,89.3,",nn00658625,",-0.5,ml,,nn,13.0,"35km ENE of Beatty, Nevada",0.1308,0,",nn,",reviewed,1538157827698,"M -0.5 - 35km ENE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538186661725,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658625 +,,61423967,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61423967&format=geojson,0.08858,,219.0,",uw61423967,",0.84,ml,,uw,6.0,"10km WSW of Lofall, Washington",0.14,11,",uw,",reviewed,1538157643400,"M 0.8 - 10km WSW of Lofall, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538159388550,https://earthquake.usgs.gov/earthquakes/eventpage/uw61423967 +,,20273764,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273764&format=geojson,,,,",ak20273764,",1.0,ml,,ak,,"47km WSW of Talkeetna, Alaska",0.36,15,",ak,",reviewed,1538157610807,"M 1.0 - 47km WSW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539039066438,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273764 +,,00658623,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658623&format=geojson,0.166,,210.16,",nn00658623,",0.3,ml,,nn,9.0,"37km SSE of Goldfield, Nevada",0.1694,1,",nn,",reviewed,1538157358271,"M 0.3 - 37km SSE of Goldfield, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538186660115,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658623 +,,37373026,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37373026&format=geojson,0.006457,,65.0,",ci37373026,",0.54,ml,,ci,24.0,"10km NE of Aguanga, CA",0.11,4,",ci,",reviewed,1538156634290,"M 0.5 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538157482235,https://earthquake.usgs.gov/earthquakes/eventpage/ci37373026 +,,73091076,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091076&format=geojson,0.01103,,50.0,",nc73091076,",0.88,md,,nc,12.0,"6km NW of The Geysers, CA",0.04,12,",nc,",automatic,1538156373880,"M 0.9 - 6km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538164922512,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091076 +,,20273763,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273763&format=geojson,,,,",ak20273763,",1.5,ml,,ak,,"89km NW of Arctic Village, Alaska",0.71,35,",ak,",reviewed,1538156163746,"M 1.5 - 89km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539039065909,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273763 +,,20266378,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266378&format=geojson,,,,",ak20266378,",1.5,ml,,ak,,"95km NW of Arctic Village, Alaska",0.79,35,",ak,",reviewed,1538156128846,"M 1.5 - 95km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539039065353,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266378 +,,80311599,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80311599&format=geojson,0.194,,140.0,",mb80311599,",1.55,ml,,mb,7.0,"4km WNW of Montana City, Montana",0.07,37,",mb,",reviewed,1538155925710,"M 1.6 Quarry Blast - 4km WNW of Montana City, Montana",0,quarry blast,",geoserve,origin,phase-data,",-420.0,1538437090710,https://earthquake.usgs.gov/earthquakes/eventpage/mb80311599 +,,20266374,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266374&format=geojson,,,,",ak20266374,",1.9,ml,,ak,,"52km W of Talkeetna, Alaska",0.46,56,",ak,",reviewed,1538155445141,"M 1.9 - 52km W of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539039064632,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266374 +,,73091066,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091066&format=geojson,0.009905,,119.0,",nc73091066,",0.68,md,,nc,9.0,"4km W of Cobb, CA",0.02,7,",nc,",automatic,1538155204540,"M 0.7 - 4km W of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538163243332,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091066 +,,37373018,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37373018&format=geojson,0.007829,,32.0,",ci37373018,",0.87,ml,,ci,35.0,"10km NE of Aguanga, CA",0.17,12,",ci,",reviewed,1538155092940,"M 0.9 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538155808128,https://earthquake.usgs.gov/earthquakes/eventpage/ci37373018 +,,20266369,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266369&format=geojson,,,,",ak20266369,",2.5,ml,,ak,,"26km SW of Amatignak Island, Alaska",0.6,96,",ak,",reviewed,1538154880369,"M 2.5 - 26km SW of Amatignak Island, Alaska",0,earthquake,",geoserve,origin,phase-data,",-720.0,1539039064081,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266369 +,,20266367,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266367&format=geojson,,,,",ak20266367,",0.9,ml,,ak,,"70km NNW of Cape Yakataga, Alaska",0.41,12,",ak,",reviewed,1538154836245,"M 0.9 - 70km NNW of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539039063511,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266367 +,,00659763,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659763&format=geojson,0.029,,59.17,",nn00659763,",-0.3,ml,,nn,20.0,"55km ENE of Beatty, Nevada",0.1571,0,",nn,",reviewed,1538154522309,"M -0.3 - 55km ENE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538781803246,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659763 +,,61788496,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61788496&format=geojson,0.02177,,99.0,",av61788496,",-0.08,ml,,av,5.0,"42km ENE of Adak, Alaska",0.21,0,",av,",reviewed,1538154487500,"M -0.1 - 42km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538176757310,https://earthquake.usgs.gov/earthquakes/eventpage/av61788496 +,,37372994,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37372994&format=geojson,0.0326,,43.0,",ci37372994,",0.76,ml,,ci,38.0,"1km E of San Jacinto, CA",0.19,9,",ci,",reviewed,1538154475870,"M 0.8 - 1km E of San Jacinto, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538157176714,https://earthquake.usgs.gov/earthquakes/eventpage/ci37372994 +,,20266365,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266365&format=geojson,,,,",ak20266365,",2.1,ml,,ak,,"76km SSW of Kaktovik, Alaska",0.7,68,",ak,",reviewed,1538154465000,"M 2.1 - 76km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539039062924,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266365 +,,61788501,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61788501&format=geojson,0.01395,,100.0,",av61788501,",-0.07,ml,,av,5.0,"41km ENE of Adak, Alaska",0.09,0,",av,",reviewed,1538154432790,"M -0.1 - 41km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538176594760,https://earthquake.usgs.gov/earthquakes/eventpage/av61788501 +,,1000h3xi,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3xi&format=geojson,2.59,,57.0,",us1000h3xi,",4.6,mb,,us,,"52km W of Kasiguncu, Indonesia",1.19,326,",us,",reviewed,1538154345640,"M 4.6 - 52km W of Kasiguncu, Indonesia",0,earthquake,",geoserve,origin,phase-data,",480.0,1538248845040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3xi +,,70805104,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70805104&format=geojson,0.01726,,105.0,",av70805104,",-0.51,ml,,av,5.0,"42km ENE of Adak, Alaska",0.19,0,",av,",reviewed,1538154235160,"M -0.5 - 42km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538176148310,https://earthquake.usgs.gov/earthquakes/eventpage/av70805104 +,,61788486,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61788486&format=geojson,0.01111,,96.0,",av61788486,",0.06,ml,,av,5.0,"41km ENE of Adak, Alaska",0.1,0,",av,",reviewed,1538154163060,"M 0.1 - 41km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538175827030,https://earthquake.usgs.gov/earthquakes/eventpage/av61788486 +,,70805094,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70805094&format=geojson,0.02296,,182.0,",av70805094,",-0.56,ml,,av,4.0,"42km ENE of Adak, Alaska",0.01,0,",av,",reviewed,1538153970430,"M -0.6 - 42km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538175659400,https://earthquake.usgs.gov/earthquakes/eventpage/av70805094 +,,61788481,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61788481&format=geojson,0.01427,,98.0,",av61788481,",-0.16,ml,,av,5.0,"41km ENE of Adak, Alaska",0.09,0,",av,",reviewed,1538153965020,"M -0.2 - 41km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538175529550,https://earthquake.usgs.gov/earthquakes/eventpage/av61788481 +,,20266362,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266362&format=geojson,,,,",ak20266362,",1.6,ml,,ak,,"77km WSW of Anchor Point, Alaska",0.37,39,",ak,",reviewed,1538153603369,"M 1.6 - 77km WSW of Anchor Point, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539039062412,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266362 +,,73091056,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091056&format=geojson,0.01331,,94.0,",nc73091056,",0.45,md,,nc,15.0,"10km E of Mammoth Lakes, CA",0.08,3,",nc,",reviewed,1538153537640,"M 0.5 - 10km E of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538166542688,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091056 +,,1000h3ww,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3ww&format=geojson,1.457,,150.0,",us1000h3ww,",4.6,mb,,us,,"146km S of Kokopo, Papua New Guinea",1.04,326,",us,",reviewed,1538153246550,"M 4.6 - 146km S of Kokopo, Papua New Guinea",0,earthquake,",geoserve,origin,phase-data,",600.0,1538162831040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3ww +,,37372970,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37372970&format=geojson,0.0164,,43.0,",ci37372970,",0.88,ml,,ci,35.0,"9km NE of Aguanga, CA",0.17,12,",ci,",reviewed,1538153134600,"M 0.9 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538155892770,https://earthquake.usgs.gov/earthquakes/eventpage/ci37372970 +,,37372962,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37372962&format=geojson,0.005711,,36.0,",ci37372962,",0.51,ml,,ci,25.0,"10km NE of Aguanga, CA",0.12,4,",ci,",reviewed,1538153036230,"M 0.5 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538157299246,https://earthquake.usgs.gov/earthquakes/eventpage/ci37372962 +,,73091051,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091051&format=geojson,0.01056,,57.0,",nc73091051,",0.4,md,,nc,29.0,"3km NW of The Geysers, CA",0.05,2,",nc,",reviewed,1538153002490,"M 0.4 - 3km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538184894023,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091051 +,,20266356,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266356&format=geojson,,,,",ak20266356,",1.1,ml,,ak,,"91km NW of Arctic Village, Alaska",0.6,19,",ak,",reviewed,1538151912279,"M 1.1 - 91km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539042757404,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266356 +,,20266354,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266354&format=geojson,,,,",ak20266354,",1.7,ml,,ak,,"93km NW of Arctic Village, Alaska",0.87,44,",ak,",reviewed,1538151743398,"M 1.7 - 93km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539039061362,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266354 +,,37372930,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37372930&format=geojson,0.1395,,63.0,",ci37372930,",0.5,ml,,ci,17.0,"7km NW of Aguanga, CA",0.16,4,",ci,",reviewed,1538151590850,"M 0.5 - 7km NW of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538157102524,https://earthquake.usgs.gov/earthquakes/eventpage/ci37372930 +,3.8,70618267,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70618267&format=geojson,0.04397,1.0,120.0,",hv70618267,",1.72,md,,hv,43.0,"2km ESE of Pahala, Hawaii",0.1,46,",hv,",reviewed,1538151312190,"M 1.7 - 2km ESE of Pahala, Hawaii",0,earthquake,",dyfi,geoserve,origin,phase-data,",-600.0,1538174320577,https://earthquake.usgs.gov/earthquakes/eventpage/hv70618267 +,,20273754,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273754&format=geojson,,,,",ak20273754,",2.4,ml,,ak,,"189km SSE of Atka, Alaska",0.57,89,",ak,",reviewed,1538151252728,"M 2.4 - 189km SSE of Atka, Alaska",0,earthquake,",geoserve,origin,phase-data,",-720.0,1539039060865,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273754 +,,37372914,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37372914&format=geojson,0.02847,,55.0,",ci37372914,",0.43,ml,,ci,25.0,"8km NE of Aguanga, CA",0.12,3,",ci,",reviewed,1538151157690,"M 0.4 - 8km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538157444740,https://earthquake.usgs.gov/earthquakes/eventpage/ci37372914 +,,20266352,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266352&format=geojson,,,,",ak20266352,",2.8,ml,,ak,,"119km ESE of Akutan, Alaska",0.43,121,",ak,",reviewed,1538151149558,"M 2.8 - 119km ESE of Akutan, Alaska",0,earthquake,",geoserve,origin,phase-data,",-660.0,1539039060299,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266352 +,,73091041,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091041&format=geojson,0.1024,,131.0,",nc73091041,",1.53,md,,nc,16.0,"22km NNW of San Simeon, CA",0.03,36,",nc,",reviewed,1538150852470,"M 1.5 - 22km NNW of San Simeon, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538199422885,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091041 +,,73091046,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091046&format=geojson,0.01702,,152.0,",nc73091046,",1.2,md,,nc,6.0,"4km S of Loyola, CA",0.02,22,",nc,",reviewed,1538150784970,"M 1.2 Quarry Blast - 4km S of Loyola, CA",0,quarry blast,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538181285012,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091046 +,,20266349,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266349&format=geojson,,,,",ak20266349,",2.2,ml,,ak,,"24km ENE of Noatak, Alaska",0.56,74,",ak,",reviewed,1538150540388,"M 2.2 - 24km ENE of Noatak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539039059711,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266349 +,,37372898,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37372898&format=geojson,0.01031,,62.0,",ci37372898,",1.05,ml,,ci,38.0,"9km NE of Aguanga, CA",0.22,17,",ci,",reviewed,1538149687930,"M 1.1 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538150491960,https://earthquake.usgs.gov/earthquakes/eventpage/ci37372898 +,,37372890,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37372890&format=geojson,0.04394,,88.0,",ci37372890,",0.74,ml,,ci,21.0,"8km S of Idyllwild, CA",0.09,8,",ci,",reviewed,1538149332820,"M 0.7 - 8km S of Idyllwild, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538150475359,https://earthquake.usgs.gov/earthquakes/eventpage/ci37372890 +,,20266347,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266347&format=geojson,,,,",ak20266347,",0.7,ml,,ak,,"31km SW of Salcha, Alaska",0.54,8,",ak,",reviewed,1538149014266,"M 0.7 - 31km SW of Salcha, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539039059171,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266347 +,,1000h3v4,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3v4&format=geojson,2.598,,87.0,",us1000h3v4,",5.0,mb,,us,,"45km SSW of Palu, Indonesia",1.38,385,",us,",reviewed,1538148942250,"M 5.0 - 45km SSW of Palu, Indonesia",1,earthquake,",geoserve,origin,phase-data,",480.0,1538151636040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3v4 +,,37372882,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37372882&format=geojson,0.0847,,110.0,",ci37372882,",0.68,ml,,ci,18.0,"17km E of Kernville, CA",0.11,7,",ci,",reviewed,1538148915580,"M 0.7 - 17km E of Kernville, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538167017786,https://earthquake.usgs.gov/earthquakes/eventpage/ci37372882 +,,73091026,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091026&format=geojson,0.008187,,165.0,",nc73091026,",0.5,md,,nc,6.0,"2km SSW of Anderson Springs, CA",0.01,4,",nc,",automatic,1538148551750,"M 0.5 - 2km SSW of Anderson Springs, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538155082293,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091026 +,,1000h3uz,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3uz&format=geojson,1.986,,72.0,",us1000h3uz,",4.9,mb,,us,,"22km NNE of Palu, Indonesia",0.89,369,",us,",reviewed,1538148493350,"M 4.9 - 22km NNE of Palu, Indonesia",0,earthquake,",geoserve,origin,phase-data,",480.0,1538151222040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3uz +,,37372874,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37372874&format=geojson,0.01974,,50.0,",ci37372874,",0.9,ml,,ci,34.0,"3km ESE of Lake Henshaw, CA",0.22,12,",ci,",reviewed,1538148344600,"M 0.9 - 3km ESE of Lake Henshaw, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538150479762,https://earthquake.usgs.gov/earthquakes/eventpage/ci37372874 +,,70805109,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70805109&format=geojson,0.07202,,184.0,",av70805109,",-0.41,ml,,av,5.0,"24km W of Dutch Harbor, Alaska",0.15,0,",av,",reviewed,1538148125290,"M -0.4 - 24km W of Dutch Harbor, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538178426710,https://earthquake.usgs.gov/earthquakes/eventpage/av70805109 +,,20273750,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273750&format=geojson,,,,",ak20273750,",1.6,ml,,ak,,"30km SW of Tanaga Volcano, Alaska",0.57,39,",ak,",reviewed,1538148040867,"M 1.6 - 30km SW of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539039058639,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273750 +,,37372858,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37372858&format=geojson,0.004492,,70.0,",ci37372858,",0.49,ml,,ci,19.0,"10km NE of Aguanga, CA",0.15,4,",ci,",reviewed,1538147988100,"M 0.5 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538150494744,https://earthquake.usgs.gov/earthquakes/eventpage/ci37372858 +,,20273749,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273749&format=geojson,,,,",ak20273749,",1.8,ml,,ak,,"19km SW of Tanaga Volcano, Alaska",0.99,50,",ak,",reviewed,1538147690332,"M 1.8 - 19km SW of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539039058141,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273749 +,3.2,37372850,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37372850&format=geojson,0.08138,9.0,55.0,",ci37372850,us1000h3up,",3.18,ml,4.41,ci,41.0,"16km E of Kernville, CA",0.13,158,",ci,us,",reviewed,1538147637000,"M 3.2 - 16km E of Kernville, CA",0,earthquake,",dyfi,focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,shakemap,",-480.0,1538319133645,https://earthquake.usgs.gov/earthquakes/eventpage/ci37372850 +,,70618167,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70618167&format=geojson,0.004342,,116.0,",hv70618167,",1.73,ml,,hv,8.0,"3km SW of Volcano, Hawaii",0.17,46,",hv,",automatic,1538147582640,"M 1.7 - 3km SW of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538147922950,https://earthquake.usgs.gov/earthquakes/eventpage/hv70618167 +,,70618172,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70618172&format=geojson,0.01154,,39.0,",hv70618172,",1.81,ml,,hv,22.0,"6km SW of Volcano, Hawaii",0.21,50,",hv,",automatic,1538147582170,"M 1.8 - 6km SW of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538147930340,https://earthquake.usgs.gov/earthquakes/eventpage/hv70618172 +,,70618162,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70618162&format=geojson,0.01156,,131.0,",hv70618162,",1.74,ml,,hv,8.0,"5km WSW of Volcano, Hawaii",0.11,47,",hv,",automatic,1538147570120,"M 1.7 - 5km WSW of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538147911810,https://earthquake.usgs.gov/earthquakes/eventpage/hv70618162 +,,20266345,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266345&format=geojson,,,,",ak20266345,",1.4,ml,,ak,,"12km E of Anchor Point, Alaska",0.49,30,",ak,",reviewed,1538147404818,"M 1.4 - 12km E of Anchor Point, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539039057588,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266345 +,,20266343,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266343&format=geojson,,,,",ak20266343,",1.2,ml,,ak,,"100km NNW of Nikiski, Alaska",0.64,22,",ak,",reviewed,1538147153539,"M 1.2 - 100km NNW of Nikiski, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539039056963,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266343 +,,20273746,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273746&format=geojson,,,,",ak20273746,",2.2,ml,,ak,,"67km WSW of False Pass, Alaska",0.54,74,",ak,",reviewed,1538147058693,"M 2.2 - 67km WSW of False Pass, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539039056359,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273746 +,,20266342,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266342&format=geojson,,,,",ak20266342,",1.2,ml,,ak,,"102km NNW of Arctic Village, Alaska",0.92,22,",ak,",reviewed,1538146967507,"M 1.2 - 102km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539039055816,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266342 +,,70618132,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70618132&format=geojson,0.01101,,33.0,",hv70618132,",2.23,ml,,hv,34.0,"5km WSW of Volcano, Hawaii",0.1,77,",hv,",reviewed,1538146955070,"M 2.2 - 5km WSW of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538162410040,https://earthquake.usgs.gov/earthquakes/eventpage/hv70618132 +,,80311594,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80311594&format=geojson,0.221,,127.0,",mb80311594,",1.38,ml,,mb,10.0,"33km W of Lima, Montana",0.18,29,",mb,",reviewed,1538146907440,"M 1.4 - 33km W of Lima, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538414748800,https://earthquake.usgs.gov/earthquakes/eventpage/mb80311594 +,,00659752,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659752&format=geojson,0.02,,87.03,",nn00659752,",-0.2,ml,,nn,10.0,"56km ENE of Beatty, Nevada",0.1379,0,",nn,",reviewed,1538146735616,"M -0.2 - 56km ENE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538779959832,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659752 +,,1000h73n,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h73n&format=geojson,1.834,,139.0,",us1000h73n,",4.5,mb,,us,,"165km SSW of Sinabang, Indonesia",0.78,312,",us,",reviewed,1538146569580,"M 4.5 - 165km SSW of Sinabang, Indonesia",0,earthquake,",geoserve,origin,phase-data,",360.0,1538917342040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h73n +,,73091006,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091006&format=geojson,0.01905,,109.0,",nc73091006,",0.9,md,,nc,30.0,"8km NNW of Cholame, CA",0.03,12,",nc,",reviewed,1538146015750,"M 0.9 - 8km NNW of Cholame, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538188322824,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091006 +,,20273744,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273744&format=geojson,,,,",ak20273744,",1.1,ml,,ak,,"113km W of Cantwell, Alaska",0.88,19,",ak,",reviewed,1538145919234,"M 1.1 - 113km W of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539039055293,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273744 +,,1000h73m,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h73m&format=geojson,2.461,,123.0,",us1000h73m,",4.4,mb,,us,,"35km W of Kasiguncu, Indonesia",0.49,298,",us,",reviewed,1538145867880,"M 4.4 - 35km W of Kasiguncu, Indonesia",0,earthquake,",geoserve,origin,phase-data,",480.0,1538917072040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h73m +,,1000h73l,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h73l&format=geojson,4.841,,149.0,",us1000h73l,",4.6,mb,,us,,"133km W of Lata, Solomon Islands",0.95,326,",us,",reviewed,1538145863090,"M 4.6 - 133km W of Lata, Solomon Islands",0,earthquake,",geoserve,origin,phase-data,",660.0,1538916833040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h73l +,,00659516,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659516&format=geojson,0.035,,102.21,",nn00659516,",-0.5,ml,,nn,18.0,"54km ENE of Beatty, Nevada",0.1896,0,",nn,",reviewed,1538145753958,"M -0.5 - 54km ENE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538607974659,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659516 +,,20266334,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266334&format=geojson,,,,",ak20266334,",1.7,ml,,ak,,"55km WNW of Talkeetna, Alaska",0.62,44,",ak,",reviewed,1538145743038,"M 1.7 - 55km WNW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539039054636,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266334 +,,1000h73k,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h73k&format=geojson,15.861,,58.0,",us1000h73k,",4.8,mb,,us,,Prince Edward Islands region,0.74,354,",us,",reviewed,1538145565570,M 4.8 - Prince Edward Islands region,0,earthquake,",geoserve,origin,phase-data,",180.0,1538916609040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h73k +,,00659515,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659515&format=geojson,0.03,,87.55,",nn00659515,",-0.5,ml,,nn,12.0,"36km ENE of Beatty, Nevada",0.1542,0,",nn,",reviewed,1538145537086,"M -0.5 - 36km ENE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538607052267,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659515 +,,20266331,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266331&format=geojson,,,,",ak20266331,",1.6,ml,,ak,,"126km NNW of Arctic Village, Alaska",0.95,39,",ak,",reviewed,1538145462960,"M 1.6 - 126km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539039054056,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266331 +,3.4,37372826,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37372826&format=geojson,0.07191,1.0,34.0,",ci37372826,",1.59,ml,,ci,49.0,"11km NE of Cabazon, CA",0.16,39,",ci,",reviewed,1538145358180,"M 1.6 - 11km NE of Cabazon, CA",0,earthquake,",dyfi,focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538150560890,https://earthquake.usgs.gov/earthquakes/eventpage/ci37372826 +,,00659513,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659513&format=geojson,0.025,,85.95,",nn00659513,",-0.3,ml,,nn,12.0,"55km ENE of Beatty, Nevada",0.1821,0,",nn,",reviewed,1538145141224,"M -0.3 - 55km ENE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538606314614,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659513 +,,70618087,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70618087&format=geojson,0.07591,,164.0,",hv70618087,",1.74,md,,hv,21.0,"4km SE of Pahala, Hawaii",0.09,47,",hv,",reviewed,1538145065470,"M 1.7 - 4km SE of Pahala, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538175331140,https://earthquake.usgs.gov/earthquakes/eventpage/hv70618087 +,,1000h3t2,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3t2&format=geojson,1.601,,35.0,",us1000h3t2,",5.4,mb,,us,,"113km NNW of Palu, Indonesia",1.08,449,",us,",reviewed,1538144760960,"M 5.4 - 113km NNW of Palu, Indonesia",1,earthquake,",geoserve,origin,phase-data,",480.0,1538916343040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3t2 +,,1000h73i,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h73i&format=geojson,1.934,,72.0,",us1000h73i,",4.6,mb,,us,,"35km ENE of Palu, Indonesia",1.08,326,",us,",reviewed,1538144680150,"M 4.6 - 35km ENE of Palu, Indonesia",0,earthquake,",geoserve,origin,phase-data,",480.0,1538916240040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h73i +,,20266328,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266328&format=geojson,,,,",ak20266328,",1.2,ml,,ak,,"96km NW of Arctic Village, Alaska",0.76,22,",ak,",reviewed,1538144446299,"M 1.2 - 96km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539039053482,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266328 +,,00659512,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659512&format=geojson,0.04,,49.15,",nn00659512,",-0.3,ml,,nn,15.0,"56km E of Beatty, Nevada",0.1197,0,",nn,",reviewed,1538144292999,"M -0.3 - 56km E of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538605760608,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659512 +,,1000h47t,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h47t&format=geojson,2.611,,90.0,",us1000h47t,",4.5,mb,,us,,"58km W of Kasiguncu, Indonesia",1.25,312,",us,",reviewed,1538144164200,"M 4.5 - 58km W of Kasiguncu, Indonesia",0,earthquake,",geoserve,origin,phase-data,",480.0,1538915906040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h47t +,,00658589,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658589&format=geojson,0.028,,63.0,",nn00658589,",0.0,ml,,nn,31.0,"55km ENE of Beatty, Nevada",0.1711,0,",nn,",reviewed,1538143908681,"M 0.0 - 55km ENE of Beatty, Nevada",0,earthquake,",focal-mechanism,geoserve,origin,phase-data,",-480.0,1538785625761,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658589 +,,73091001,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091001&format=geojson,0.01569,,107.0,",nc73091001,",1.01,md,,nc,31.0,"12km NW of Parkfield, CA",0.07,16,",nc,",reviewed,1538143851060,"M 1.0 - 12km NW of Parkfield, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538187603747,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091001 +,,1000h744,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h744&format=geojson,1.876,,53.0,",us1000h744,",4.6,mb,,us,,"72km ENE of Palu, Indonesia",1.03,326,",us,",reviewed,1538143849570,"M 4.6 - 72km ENE of Palu, Indonesia",0,earthquake,",geoserve,origin,phase-data,",480.0,1538915679040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h744 +,,1000h3sv,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3sv&format=geojson,1.533,,93.0,",us1000h3sv,",4.7,mb,,us,,"92km N of Palu, Indonesia",0.82,340,",us,",reviewed,1538143808400,"M 4.7 - 92km N of Palu, Indonesia",0,earthquake,",geoserve,origin,phase-data,",480.0,1538914631040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3sv +,,20266327,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266327&format=geojson,,,,",ak20266327,",2.2,ml,,ak,,"32km SW of Tanaga Volcano, Alaska",0.49,74,",ak,",reviewed,1538143766203,"M 2.2 - 32km SW of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539039052948,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266327 +,,20266325,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266325&format=geojson,,,,",ak20266325,",0.9,ml,,ak,,"49km E of Cantwell, Alaska",0.68,12,",ak,",reviewed,1538143018857,"M 0.9 - 49km E of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539042756858,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266325 +,,1000h3sr,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3sr&format=geojson,1.594,,87.0,",us1000h3sr,",4.6,mb,,us,,"107km NNW of Palu, Indonesia",1.11,326,",us,",reviewed,1538143010420,"M 4.6 - 107km NNW of Palu, Indonesia",0,earthquake,",geoserve,origin,phase-data,",480.0,1538914479040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3sr +,,37372794,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37372794&format=geojson,0.01907,,65.0,",ci37372794,",0.49,ml,,ci,23.0,"10km NE of Aguanga, CA",0.17,4,",ci,",reviewed,1538142622600,"M 0.5 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538142885131,https://earthquake.usgs.gov/earthquakes/eventpage/ci37372794 +,,1000h3si,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3si&format=geojson,0.389,,131.0,",us1000h3si,",4.6,mb,,us,,"34km SSW of Coquimbo, Chile",0.81,326,",us,",reviewed,1538142593120,"M 4.6 - 34km SSW of Coquimbo, Chile",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538913956040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3si +,,00659508,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659508&format=geojson,0.074,,240.87,",nn00659508,",0.5,ml,,nn,4.0,"43km ESE of Hawthorne, Nevada",0.0611,4,",nn,",reviewed,1538142109034,"M 0.5 - 43km ESE of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538604101145,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659508 +,,20266311,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266311&format=geojson,,,,",ak20266311,",2.2,ml,,ak,,"71km SSW of Kaktovik, Alaska",0.91,74,",ak,",reviewed,1538141999713,"M 2.2 - 71km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539039051747,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266311 +,,1000h3sh,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3sh&format=geojson,2.637,,40.0,",us1000h3sh,",5.2,mb,,us,,"58km S of Palu, Indonesia",1.23,416,",us,",reviewed,1538141984430,"M 5.2 - 58km S of Palu, Indonesia",1,earthquake,",geoserve,origin,phase-data,",480.0,1538895549040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3sh +green,,1000h3sd,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3sd&format=geojson,1.517,,21.0,",us1000h3sd,",5.7,ms_20,6.09,us,,"107km N of Palu, Indonesia",0.82,500,",us,",reviewed,1538141730630,"M 5.7 - 107km N of Palu, Indonesia",1,earthquake,",geoserve,losspager,origin,phase-data,shakemap,",480.0,1538895450840,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3sd +,,1000h74a,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h74a&format=geojson,2.394,,87.0,",us1000h74a,",4.5,mb,,us,,"34km SSE of Palu, Indonesia",1.17,312,",us,",reviewed,1538141331680,"M 4.5 - 34km SSE of Palu, Indonesia",0,earthquake,",geoserve,origin,phase-data,",480.0,1538894999040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h74a +,,20273737,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273737&format=geojson,,,,",ak20273737,",1.7,ml,,ak,,"36km W of Larsen Bay, Alaska",0.16,44,",ak,",reviewed,1538141220266,"M 1.7 - 36km W of Larsen Bay, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539039051199,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273737 +,,1000h73a,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h73a&format=geojson,2.08,,125.0,",us1000h73a,",4.3,mb,,us,,"21km NNW of Palu, Indonesia",1.15,284,",us,",reviewed,1538141023940,"M 4.3 - 21km NNW of Palu, Indonesia",0,earthquake,",geoserve,origin,phase-data,",480.0,1538894752040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h73a +,,37372762,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37372762&format=geojson,0.0615,,71.0,",ci37372762,",1.41,ml,,ci,35.0,"23km N of Yucca Valley, CA",0.19,31,",ci,",reviewed,1538140652600,"M 1.4 - 23km N of Yucca Valley, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538143288450,https://earthquake.usgs.gov/earthquakes/eventpage/ci37372762 +,2.0,73090991,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73090991&format=geojson,0.03065,1.0,77.0,",nc73090991,",1.57,md,,nc,32.0,"11km ENE of Mammoth Lakes, CA",0.05,38,",nc,",reviewed,1538140598680,"M 1.6 - 11km ENE of Mammoth Lakes, CA",0,earthquake,",dyfi,focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538197862732,https://earthquake.usgs.gov/earthquakes/eventpage/nc73090991 +,,1000h3s8,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3s8&format=geojson,1.506,,63.0,",us1000h3s8,",4.9,mb,,us,,"93km N of Palu, Indonesia",0.93,369,",us,",reviewed,1538140226800,"M 4.9 - 93km N of Palu, Indonesia",0,earthquake,",geoserve,origin,phase-data,",480.0,1538894221040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3s8 +,,20266310,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266310&format=geojson,,,,",ak20266310,",1.6,ml,,ak,,"65km SE of Whittier, Alaska",0.51,39,",ak,",reviewed,1538140074250,"M 1.6 - 65km SE of Whittier, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539039050614,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266310 +,,00659504,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659504&format=geojson,0.028,,90.1,",nn00659504,",-0.5,ml,,nn,11.0,"35km ENE of Beatty, Nevada",0.1216,0,",nn,",reviewed,1538139792137,"M -0.5 - 35km ENE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538602811751,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659504 +,,20273735,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273735&format=geojson,,,,",ak20273735,",1.1,ml,,ak,,"29km ENE of Sterling, Alaska",0.24,19,",ak,",reviewed,1538139300916,"M 1.1 - 29km ENE of Sterling, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539039050047,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273735 +,,20266300,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266300&format=geojson,,,,",ak20266300,",1.3,ml,,ak,,"54km N of Valdez, Alaska",0.5,26,",ak,",reviewed,1538138769524,"M 1.3 - 54km N of Valdez, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539039049478,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266300 +,,20266291,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266291&format=geojson,,,,",ak20266291,",1.4,ml,,ak,,"15km NNW of Tanaina, Alaska",0.87,30,",ak,",reviewed,1538138421953,"M 1.4 - 15km NNW of Tanaina, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539039048892,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266291 +,,1000h3s9,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3s9&format=geojson,2.28,,83.0,",us1000h3s9,",4.7,mb,,us,,"47km ESE of Palu, Indonesia",0.89,340,",us,",reviewed,1538138374280,"M 4.7 - 47km ESE of Palu, Indonesia",0,earthquake,",geoserve,origin,phase-data,",480.0,1538143620040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3s9 +,,00658569,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658569&format=geojson,0.03,,225.46,",nn00658569,",0.5,ml,,nn,33.0,"59km N of Pahrump, Nevada",0.1617,4,",nn,",reviewed,1538138086860,"M 0.5 - 59km N of Pahrump, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538186651573,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658569 +,,37372730,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37372730&format=geojson,0.03141,,122.0,",ci37372730,",0.33,ml,,ci,20.0,"9km ENE of Aguanga, CA",0.1,2,",ci,",reviewed,1538138010590,"M 0.3 - 9km ENE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538155578114,https://earthquake.usgs.gov/earthquakes/eventpage/ci37372730 +,5.3,1000h3s0,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3s0&format=geojson,0.516,38.0,64.0,",us1000h3s0,",5.4,mb,,us,,"67km ENE of Sainte-Marie, Martinique",0.93,469,",us,",reviewed,1538137964900,"M 5.4 - 67km ENE of Sainte-Marie, Martinique",0,earthquake,",dyfi,geoserve,origin,phase-data,",-240.0,1538263559773,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3s0 +,,37372722,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37372722&format=geojson,0.08469,,59.0,",ci37372722,",0.9,ml,,ci,28.0,"8km ESE of Valle Vista, CA",0.16,12,",ci,",reviewed,1538137738310,"M 0.9 - 8km ESE of Valle Vista, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538150512575,https://earthquake.usgs.gov/earthquakes/eventpage/ci37372722 +,,00659503,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659503&format=geojson,0.026,,95.28,",nn00659503,",0.1,ml,,nn,10.0,"35km ENE of Beatty, Nevada",0.1571,0,",nn,",reviewed,1538137686192,"M 0.1 - 35km ENE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538602257841,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659503 +,,1000h3rz,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3rz&format=geojson,1.788,,52.0,",us1000h3rz,",5.1,mb,,us,,"47km N of Palu, Indonesia",0.8,400,",us,",reviewed,1538137653240,"M 5.1 - 47km N of Palu, Indonesia",1,earthquake,",geoserve,origin,phase-data,",480.0,1538138590040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3rz +,,37372714,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37372714&format=geojson,0.01955,,51.0,",ci37372714,",0.84,ml,,ci,28.0,"3km ESE of Lake Henshaw, CA",0.22,11,",ci,",reviewed,1538137565610,"M 0.8 - 3km ESE of Lake Henshaw, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538140590860,https://earthquake.usgs.gov/earthquakes/eventpage/ci37372714 +,,00659501,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659501&format=geojson,0.021,,121.36,",nn00659501,",-0.4,ml,,nn,6.0,"35km ENE of Beatty, Nevada",0.0891,0,",nn,",reviewed,1538137003512,"M -0.4 - 35km ENE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538601704178,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659501 +,,37372706,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37372706&format=geojson,0.03089,,56.0,",ci37372706,",0.54,ml,,ci,24.0,"9km ENE of Aguanga, CA",0.09,4,",ci,",reviewed,1538136741480,"M 0.5 - 9km ENE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538156817530,https://earthquake.usgs.gov/earthquakes/eventpage/ci37372706 +,,00659489,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659489&format=geojson,0.035,,107.92,",nn00659489,",0.4,ml,,nn,16.0,"54km ENE of Beatty, Nevada",0.1956,2,",nn,",reviewed,1538136470803,"M 0.4 - 54km ENE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538600780778,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659489 +,,20273732,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273732&format=geojson,,,,",ak20273732,",0.9,ml,,ak,,"67km WSW of Tok, Alaska",0.52,12,",ak,",reviewed,1538136389966,"M 0.9 - 67km WSW of Tok, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539039048393,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273732 +,,1000h3ry,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3ry&format=geojson,1.701,,125.0,",us1000h3ry,",4.7,mb,,us,,"54km NNE of Palu, Indonesia",0.9,340,",us,",reviewed,1538136304170,"M 4.7 - 54km NNE of Palu, Indonesia",0,earthquake,",geoserve,origin,phase-data,",480.0,1538138981040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3ry +,,70617892,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70617892&format=geojson,0.0108,,45.0,",hv70617892,",1.85,ml,,hv,23.0,"4km WSW of Volcano, Hawaii",0.09,53,",hv,",reviewed,1538136168630,"M 1.9 - 4km WSW of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538163001680,https://earthquake.usgs.gov/earthquakes/eventpage/hv70617892 +,,20266284,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266284&format=geojson,,,,",ak20266284,",1.3,ml,,ak,,"130km ENE of Unalakleet, Alaska",0.77,26,",ak,",reviewed,1538136143821,"M 1.3 - 130km ENE of Unalakleet, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539039047837,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266284 +,,20266281,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266281&format=geojson,,,,",ak20266281,",2.1,ml,,ak,,"35km SW of Anchor Point, Alaska",0.8,68,",ak,",reviewed,1538136117458,"M 2.1 - 35km SW of Anchor Point, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539039047177,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266281 +,,00659486,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659486&format=geojson,0.031,,68.3,",nn00659486,",0.7,ml,,nn,18.0,"55km ENE of Beatty, Nevada",0.1948,8,",nn,",reviewed,1538136078204,"M 0.7 - 55km ENE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538599850543,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659486 +,,20266278,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266278&format=geojson,,,,",ak20266278,",1.7,ml,,ak,,"36km NE of Sutton-Alpine, Alaska",0.69,44,",ak,",reviewed,1538135866020,"M 1.7 - 36km NE of Sutton-Alpine, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539039046535,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266278 +,,00659480,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659480&format=geojson,0.035,,171.06,",nn00659480,",0.5,ml,,nn,11.0,"54km ENE of Beatty, Nevada",0.1871,4,",nn,",reviewed,1538135669491,"M 0.5 - 54km ENE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538598006353,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659480 +,,20266271,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266271&format=geojson,,,,",ak20266271,",2.4,ml,,ak,,"136km NW of Talkeetna, Alaska",0.93,89,",ak,",reviewed,1538135460385,"M 2.4 - 136km NW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539039045848,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266271 +,,37372698,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37372698&format=geojson,0.0339,,140.0,",ci37372698,",0.83,ml,,ci,17.0,"4km SW of Idyllwild, CA",0.07,11,",ci,",reviewed,1538135301010,"M 0.8 - 4km SW of Idyllwild, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538155093604,https://earthquake.usgs.gov/earthquakes/eventpage/ci37372698 +,,20273727,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273727&format=geojson,,,,",ak20273727,",1.1,ml,,ak,,"92km NNW of Arctic Village, Alaska",0.97,19,",ak,",reviewed,1538135174416,"M 1.1 - 92km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539039045334,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273727 +,,20266268,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266268&format=geojson,,,,",ak20266268,",2.3,ml,,ak,,"84km SW of Kaktovik, Alaska",0.55,81,",ak,",reviewed,1538134856810,"M 2.3 - 84km SW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539042756285,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266268 +,,20266266,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266266&format=geojson,,,,",ak20266266,",0.9,ml,,ak,,"7km E of Salcha, Alaska",0.66,12,",ak,",reviewed,1538134491906,"M 0.9 - 7km E of Salcha, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539039044224,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266266 +,,73090956,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73090956&format=geojson,0.0784,,111.0,",nc73090956,",1.36,md,,nc,30.0,"14km SSE of Mammoth Lakes, CA",0.03,28,",nc,",reviewed,1538134079150,"M 1.4 - 14km SSE of Mammoth Lakes, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538196242565,https://earthquake.usgs.gov/earthquakes/eventpage/nc73090956 +,,20266263,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266263&format=geojson,,,,",ak20266263,",2.8,ml,,ak,,"47km SW of Semisopochnoi Island, Alaska",0.58,121,",ak,",reviewed,1538134074066,"M 2.8 - 47km SW of Semisopochnoi Island, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539039043671,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266263 +,,73090951,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73090951&format=geojson,0.08145,,192.0,",nc73090951,",0.88,md,,nc,24.0,"14km SSE of Mammoth Lakes, CA",0.04,12,",nc,",reviewed,1538134058890,"M 0.9 - 14km SSE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538185682552,https://earthquake.usgs.gov/earthquakes/eventpage/nc73090951 +,,61423842,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61423842&format=geojson,0.2858,,208.0,",uw61423842,",1.33,ml,,uw,17.0,"9km SSW of Scappoose, Oregon",0.14,27,",uw,",reviewed,1538133563070,"M 1.3 - 9km SSW of Scappoose, Oregon",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538156083890,https://earthquake.usgs.gov/earthquakes/eventpage/uw61423842 +,,20266261,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266261&format=geojson,,,,",ak20266261,",1.5,ml,,ak,,"104km NNW of Arctic Village, Alaska",0.88,35,",ak,",reviewed,1538133050636,"M 1.5 - 104km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539039043109,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266261 +,3.8,73090941,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73090941&format=geojson,0.08092,1.0,113.0,",nc73090941,",1.72,md,,nc,31.0,"14km SSE of Mammoth Lakes, CA",0.05,46,",nc,",reviewed,1538132992290,"M 1.7 - 14km SSE of Mammoth Lakes, CA",0,earthquake,",dyfi,focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538194623398,https://earthquake.usgs.gov/earthquakes/eventpage/nc73090941 +,,73090946,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73090946&format=geojson,0.08696,,193.0,",nc73090946,",0.59,md,,nc,22.0,"14km SSE of Mammoth Lakes, CA",0.06,5,",nc,",reviewed,1538132871640,"M 0.6 - 14km SSE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538153343132,https://earthquake.usgs.gov/earthquakes/eventpage/nc73090946 +,,00658561,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658561&format=geojson,0.034,,65.91,",nn00658561,",0.9,ml,,nn,25.0,"36km ENE of Beatty, Nevada",0.1622,12,",nn,",reviewed,1538132826322,"M 0.9 - 36km ENE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538186647224,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658561 +,,1000h3ra,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3ra&format=geojson,2.695,,52.0,",us1000h3ra,",5.2,mb,,us,,"68km SSE of Palu, Indonesia",1.07,416,",us,",reviewed,1538132811150,"M 5.2 - 68km SSE of Palu, Indonesia",1,earthquake,",geoserve,origin,phase-data,",480.0,1538133786040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3ra +,,73090936,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73090936&format=geojson,0.02282,,99.0,",nc73090936,",1.19,md,,nc,44.0,"8km NNW of Cholame, CA",0.07,22,",nc,",reviewed,1538132524290,"M 1.2 - 8km NNW of Cholame, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538192942243,https://earthquake.usgs.gov/earthquakes/eventpage/nc73090936 +,,00659476,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659476&format=geojson,0.303,,266.55,",nn00659476,",2.6,ml,,nn,7.0,"62km ENE of Fallon, Nevada",0.127,104,",nn,",reviewed,1538132279751,"M 2.6 - 62km ENE of Fallon, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538596345701,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659476 +,,00659474,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659474&format=geojson,0.021,,123.71,",nn00659474,",-0.1,ml,,nn,6.0,"35km ENE of Beatty, Nevada",0.0925,0,",nn,",reviewed,1538132242816,"M -0.1 - 35km ENE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538596157685,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659474 +green,,1000h3r6,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3r6&format=geojson,2.032,,35.0,",us1000h3r6,",5.7,mb,6.16,us,,"17km NNE of Palu, Indonesia",0.99,500,",us,",reviewed,1538131825150,"M 5.7 - 17km NNE of Palu, Indonesia",1,earthquake,",geoserve,losspager,origin,phase-data,shakemap,",480.0,1538139168395,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3r6 +,,1000h3r7,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3r7&format=geojson,1.85,,77.0,",us1000h3r7,",5.1,mb,,us,,"42km N of Palu, Indonesia",0.69,400,",us,",reviewed,1538131664560,"M 5.1 - 42km N of Palu, Indonesia",1,earthquake,",geoserve,origin,phase-data,",480.0,1538132858040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3r7 +,,00659470,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659470&format=geojson,0.023,,92.32,",nn00659470,",0.5,ml,,nn,11.0,"35km ENE of Beatty, Nevada",0.089,4,",nn,",reviewed,1538131482570,"M 0.5 - 35km ENE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538595600893,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659470 +,,00658560,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658560&format=geojson,0.071,,131.9,",nn00658560,",0.7,ml,,nn,11.0,"8km S of Truckee, California",0.0826,8,",nn,",reviewed,1538131279594,"M 0.7 - 8km S of Truckee, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538186645346,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658560 +,,73090931,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73090931&format=geojson,0.04063,,78.0,",nc73090931,",1.67,md,,nc,58.0,"22km NNE of Morgan Hill, CA",0.1,43,",nc,",reviewed,1538131181870,"M 1.7 - 22km NNE of Morgan Hill, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538205723656,https://earthquake.usgs.gov/earthquakes/eventpage/nc73090931 +,,2018271008,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018271008&format=geojson,0.1895,,167.0,",pr2018271008,",1.86,md,,pr,3.0,"5km ESE of Adjuntas, Puerto Rico",0.2,53,",pr,",reviewed,1538131175160,"M 1.9 - 5km ESE of Adjuntas, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538135344866,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018271008 +,,1000h3r4,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3r4&format=geojson,1.984,,41.0,",us1000h3r4,",5.4,mb,,us,,"24km N of Palu, Indonesia",1.33,449,",us,",reviewed,1538131143050,"M 5.4 - 24km N of Palu, Indonesia",1,earthquake,",geoserve,origin,phase-data,",480.0,1538132333040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3r4 +,,00659458,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659458&format=geojson,0.213,,182.01,",nn00659458,",-0.1,ml,,nn,9.0,"28km SSE of Portola, California",0.1076,0,",nn,",reviewed,1538131040934,"M -0.1 - 28km SSE of Portola, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538591359284,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659458 +,,70617757,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70617757&format=geojson,0.04159,,134.0,",hv70617757,",1.86,md,,hv,19.0,"5km SSE of Kapaau, Hawaii",0.12,53,",hv,",reviewed,1538130554000,"M 1.9 - 5km SSE of Kapaau, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538160540720,https://earthquake.usgs.gov/earthquakes/eventpage/hv70617757 +,,37372682,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37372682&format=geojson,0.007539,,60.0,",ci37372682,",0.82,ml,,ci,26.0,"10km NE of Aguanga, CA",0.1,10,",ci,",reviewed,1538130432800,"M 0.8 - 10km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538156563250,https://earthquake.usgs.gov/earthquakes/eventpage/ci37372682 +,,00659456,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659456&format=geojson,0.022,,121.47,",nn00659456,",0.1,ml,,nn,7.0,"35km ENE of Beatty, Nevada",0.0883,0,",nn,",reviewed,1538130415688,"M 0.1 - 35km ENE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538590616418,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659456 +,,37372674,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37372674&format=geojson,0.009238,,49.0,",ci37372674,",0.69,ml,,ci,26.0,"9km NE of Aguanga, CA",0.09,7,",ci,",reviewed,1538130395870,"M 0.7 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538156356595,https://earthquake.usgs.gov/earthquakes/eventpage/ci37372674 +green,,1000h3pn,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3pn&format=geojson,2.309,,40.0,",us1000h3pn,",5.8,mb,6.95,us,,"21km SSE of Palu, Indonesia",1.27,518,",us,",reviewed,1538130304440,"M 5.8 - 21km SSE of Palu, Indonesia",1,earthquake,",geoserve,losspager,origin,phase-data,shakemap,",480.0,1538137658671,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3pn +,,37372666,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37372666&format=geojson,0.07651,,99.0,",ci37372666,",0.63,ml,,ci,18.0,"10km NE of Cabazon, CA",0.11,6,",ci,",reviewed,1538129917440,"M 0.6 - 10km NE of Cabazon, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538140625712,https://earthquake.usgs.gov/earthquakes/eventpage/ci37372666 +green,3.8,1000h3rc,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3rc&format=geojson,2.123,1.0,48.0,",us1000h3rc,",5.7,mb,6.15,us,,"17km E of Palu, Indonesia",0.67,500,",us,",reviewed,1538129809140,"M 5.7 - 17km E of Palu, Indonesia",1,earthquake,",dyfi,geoserve,losspager,origin,phase-data,shakemap,",480.0,1538137146006,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3rc +green,,1000h3p8,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3p8&format=geojson,1.504,,41.0,",us1000h3p8,",5.8,mb,6.09,us,,"99km N of Palu, Indonesia",1.45,518,",us,",reviewed,1538129660450,"M 5.8 - 99km N of Palu, Indonesia",1,earthquake,",geoserve,losspager,origin,phase-data,shakemap,",480.0,1538136994637,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3p8 +,,00659453,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659453&format=geojson,0.119,,66.19,",nn00659453,",0.9,ml,,nn,16.0,"27km WSW of Hawthorne, Nevada",0.1953,12,",nn,",reviewed,1538129324206,"M 0.9 - 27km WSW of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538589874620,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659453 +,,37372658,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37372658&format=geojson,0.006675,,60.0,",ci37372658,",0.49,ml,,ci,21.0,"10km NE of Aguanga, CA",0.12,4,",ci,",reviewed,1538129250790,"M 0.5 - 10km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538140656630,https://earthquake.usgs.gov/earthquakes/eventpage/ci37372658 +,4.7,70617722,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70617722&format=geojson,,155.0,108.0,",hv70617722,us1000h3p3,",3.95,ml,5.47,hv,80.0,"11km SSE of Kapaau, Hawaii",0.15,313,",hv,us,",reviewed,1538129105430,"M 4.0 - 11km SSE of Kapaau, Hawaii",0,earthquake,",dyfi,geoserve,origin,phase-data,shakemap,",-600.0,1538475004135,https://earthquake.usgs.gov/earthquakes/eventpage/hv70617722 +red,8.4,1000h3p4,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3p4&format=geojson,1.589,18.0,27.0,",us1000h3p4,us1000h4p4,",7.5,mww,9.12,us,,"78km N of Palu, Indonesia",1.27,2015,",us,us,",reviewed,1538128963480,"M 7.5 - 78km N of Palu, Indonesia",1,earthquake,",dyfi,finite-fault,general-text,geoserve,ground-failure,losspager,moment-tensor,origin,phase-data,poster,shakemap,",480.0,1539123134531,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3p4 +,,1000h3q6,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3q6&format=geojson,1.603,,102.0,",us1000h3q6,",4.8,mb,,us,,"70km N of Palu, Indonesia",0.81,354,",us,",reviewed,1538128658080,"M 4.8 - 70km N of Palu, Indonesia",0,earthquake,",geoserve,origin,phase-data,",480.0,1538131541040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3q6 +,,20266171,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266171&format=geojson,,,,",ak20266171,",1.4,ml,,ak,,"18km N of Willow, Alaska",0.8,30,",ak,",reviewed,1538128110237,"M 1.4 - 18km N of Willow, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539039042512,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266171 +,,37372650,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37372650&format=geojson,0.09299,,77.0,",ci37372650,",1.64,ml,,ci,34.0,"16km ENE of Ocotillo, CA",0.22,41,",ci,",reviewed,1538128056040,"M 1.6 - 16km ENE of Ocotillo, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538156136610,https://earthquake.usgs.gov/earthquakes/eventpage/ci37372650 +,,37372642,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37372642&format=geojson,0.02057,,153.0,",ci37372642,",0.17,ml,,ci,8.0,"6km NNE of Little Lake, CA",0.05,0,",ci,",reviewed,1538127799720,"M 0.2 - 6km NNE of Little Lake, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538154517809,https://earthquake.usgs.gov/earthquakes/eventpage/ci37372642 +,,60298197,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60298197&format=geojson,0.02766,,102.0,",uu60298197,",0.31,md,,uu,12.0,"13km NNW of West Yellowstone, Montana",0.18,1,",uu,",reviewed,1538127385360,"M 0.3 - 13km NNW of West Yellowstone, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538148466610,https://earthquake.usgs.gov/earthquakes/eventpage/uu60298197 +,,1000h3nt,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3nt&format=geojson,0.705,,142.0,",us1000h3nt,",4.6,mb,,us,,"191km SSE of Sinabang, Indonesia",1.01,326,",us,",reviewed,1538126438950,"M 4.6 - 191km SSE of Sinabang, Indonesia",0,earthquake,",geoserve,origin,phase-data,",360.0,1538128417040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3nt +,,73090916,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73090916&format=geojson,0.007359,,91.0,",nc73090916,",0.55,md,,nc,7.0,"6km NW of The Geysers, CA",0.02,5,",nc,",automatic,1538126183250,"M 0.6 - 6km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538130122814,https://earthquake.usgs.gov/earthquakes/eventpage/nc73090916 +,,20273721,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273721&format=geojson,,,,",ak20273721,",2.9,ml,,ak,,"136km SSW of Amukta Island, Alaska",0.71,129,",ak,",reviewed,1538126016663,"M 2.9 - 136km SSW of Amukta Island, Alaska",0,earthquake,",geoserve,origin,phase-data,",-660.0,1539042755756,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273721 +,,20273720,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273720&format=geojson,,,,",ak20273720,",1.3,ml,,ak,,"81km SW of Kaktovik, Alaska",0.55,26,",ak,",reviewed,1538126007716,"M 1.3 - 81km SW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539042755213,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273720 +,,37372626,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37372626&format=geojson,0.09324,,74.0,",ci37372626,",1.97,ml,,ci,44.0,"16km ENE of Ocotillo, CA",0.27,60,",ci,",reviewed,1538125753880,"M 2.0 - 16km ENE of Ocotillo, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538156622419,https://earthquake.usgs.gov/earthquakes/eventpage/ci37372626 +,,73090911,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73090911&format=geojson,0.01478,,72.0,",nc73090911,",0.55,md,,nc,8.0,"6km W of Cobb, CA",0.01,5,",nc,",automatic,1538125436690,"M 0.6 - 6km W of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538128442650,https://earthquake.usgs.gov/earthquakes/eventpage/nc73090911 +,,00658545,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658545&format=geojson,0.032,,68.39,",nn00658545,",-0.5,ml,,nn,15.0,"36km ENE of Beatty, Nevada",0.1501,0,",nn,",reviewed,1538125384952,"M -0.5 - 36km ENE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538186643593,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658545 +,,70617657,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70617657&format=geojson,0.01972,,86.0,",hv70617657,",1.79,md,,hv,56.0,"3km SSE of Pahala, Hawaii",0.1,49,",hv,",reviewed,1538125374900,"M 1.8 - 3km SSE of Pahala, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538171033530,https://earthquake.usgs.gov/earthquakes/eventpage/hv70617657 +,,20266163,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266163&format=geojson,,,,",ak20266163,",1.9,ml,,ak,,"79km SSW of Kaktovik, Alaska",0.87,56,",ak,",reviewed,1538124872438,"M 1.9 - 79km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539039040894,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266163 +,,20266159,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266159&format=geojson,,,,",ak20266159,",1.9,ml,,ak,,"22km S of Ester, Alaska",0.82,56,",ak,",reviewed,1538124752731,"M 1.9 - 22km S of Ester, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539039040265,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266159 +,,37372618,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37372618&format=geojson,0.009293,,30.0,",ci37372618,",1.03,ml,,ci,52.0,"1km SW of Lake Henshaw, CA",0.18,16,",ci,",reviewed,1538124599450,"M 1.0 - 1km SW of Lake Henshaw, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538156354660,https://earthquake.usgs.gov/earthquakes/eventpage/ci37372618 +,,20266157,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266157&format=geojson,,,,",ak20266157,",1.2,ml,,ak,,"74km SSW of Kobuk, Alaska",0.59,22,",ak,",reviewed,1538124530177,"M 1.2 - 74km SSW of Kobuk, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539039039739,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266157 +,,2018271007,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018271007&format=geojson,0.1078,,169.0,",pr2018271007,",2.37,md,,pr,7.0,"3km N of Maricao, Puerto Rico",0.23,86,",pr,",reviewed,1538124465280,"M 2.4 - 3km N of Maricao, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538135319451,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018271007 +,,20266154,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266154&format=geojson,,,,",ak20266154,",3.3,ml,,ak,,"299km SE of Kodiak, Alaska",0.72,168,",ak,",reviewed,1538124312471,"M 3.3 - 299km SE of Kodiak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539039039049,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266154 +,,20266151,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266151&format=geojson,,,,",ak20266151,",1.6,ml,,ak,,"125km NW of Arctic Village, Alaska",0.59,39,",ak,",reviewed,1538124127508,"M 1.6 - 125km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539042754641,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266151 +,,70617622,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70617622&format=geojson,0.01971,,80.0,",hv70617622,",1.8,md,,hv,55.0,"3km SSE of Pahala, Hawaii",0.1,50,",hv,",reviewed,1538123786520,"M 1.8 - 3km SSE of Pahala, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538164446700,https://earthquake.usgs.gov/earthquakes/eventpage/hv70617622 +,,00659247,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659247&format=geojson,0.062,,293.44,",nn00659247,",0.0,ml,,nn,5.0,"8km N of Incline Village, Nevada",0.0576,0,",nn,",reviewed,1538123731872,"M 0.0 - 8km N of Incline Village, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538497306172,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659247 +,,70617612,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70617612&format=geojson,0.03705,,70.0,",hv70617612,",1.83,md,,hv,48.0,"2km SSW of Pahala, Hawaii",0.11,52,",hv,",automatic,1538123506860,"M 1.8 - 2km SSW of Pahala, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538123699800,https://earthquake.usgs.gov/earthquakes/eventpage/hv70617612 +,,00658544,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658544&format=geojson,0.026,,44.05,",nn00658544,",-0.1,ml,,nn,30.0,"56km ENE of Beatty, Nevada",0.1549,0,",nn,",reviewed,1538123219763,"M -0.1 - 56km ENE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538186641891,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658544 +,,20266150,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266150&format=geojson,,,,",ak20266150,",2.0,ml,,ak,,"79km NNE of Kobuk, Alaska",0.98,62,",ak,",reviewed,1538123132973,"M 2.0 - 79km NNE of Kobuk, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539039037924,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266150 +,,1000h3nd,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3nd&format=geojson,1.707,,61.0,",us1000h3nd,",5.0,mb,,us,,"60km N of Palu, Indonesia",0.62,385,",us,",reviewed,1538123098480,"M 5.0 - 60km N of Palu, Indonesia",1,earthquake,",geoserve,origin,phase-data,",480.0,1538123996040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3nd +,,20273713,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273713&format=geojson,,,,",ak20273713,",1.3,ml,,ak,,"76km WNW of Skagway, Alaska",0.72,26,",ak,",reviewed,1538122890226,"M 1.3 - 76km WNW of Skagway, Alaska",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539039037364,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273713 +,,20266148,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266148&format=geojson,,,,",ak20266148,",1.9,ml,,ak,,"78km SSW of Kaktovik, Alaska",0.55,56,",ak,",reviewed,1538122583857,"M 1.9 - 78km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539039036813,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266148 +,,70617582,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70617582&format=geojson,0.02765,,137.0,",hv70617582,",1.8,md,,hv,53.0,"4km SE of Pahala, Hawaii",0.11,50,",hv,",reviewed,1538122418760,"M 1.8 - 4km SE of Pahala, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538167724890,https://earthquake.usgs.gov/earthquakes/eventpage/hv70617582 +,,60065323,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=se60065323&format=geojson,0.05661,,170.0,",se60065323,",1.47,md,,se,4.0,"4km S of Greenback, Tennessee",0.01,33,",se,",reviewed,1538121869740,"M 1.5 - 4km S of Greenback, Tennessee",0,earthquake,",geoserve,origin,phase-data,",-300.0,1538146589990,https://earthquake.usgs.gov/earthquakes/eventpage/se60065323 +,,61788371,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61788371&format=geojson,0.02164,,125.0,",av61788371,",-0.11,ml,,av,5.0,"42km ENE of Adak, Alaska",0.06,0,",av,",reviewed,1538121687600,"M -0.1 - 42km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538173585820,https://earthquake.usgs.gov/earthquakes/eventpage/av61788371 +,,20266145,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266145&format=geojson,,,,",ak20266145,av70805089,",1.7,ml,,ak,,"49km NNE of Chitina, Alaska",0.81,44,",ak,av,",reviewed,1538121641943,"M 1.7 - 49km NNE of Chitina, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539039036182,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266145 +,,73090891,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73090891&format=geojson,0.0222,,119.0,",nc73090891,",-0.09,md,,nc,7.0,"10km E of Mammoth Lakes, CA",0.02,0,",nc,",reviewed,1538121239260,"M -0.1 - 10km E of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538151087387,https://earthquake.usgs.gov/earthquakes/eventpage/nc73090891 +,,37197204,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37197204&format=geojson,0.003189,,70.0,",ci37197204,",-0.04,ml,,ci,19.0,"10km NE of Aguanga, CA",0.14,0,",ci,",reviewed,1538121208980,"M -0.0 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538155531788,https://earthquake.usgs.gov/earthquakes/eventpage/ci37197204 +,,37372610,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37372610&format=geojson,0.007946,,29.0,",ci37372610,",0.64,ml,,ci,44.0,"9km NE of Aguanga, CA",0.15,6,",ci,",reviewed,1538121179250,"M 0.6 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538154903250,https://earthquake.usgs.gov/earthquakes/eventpage/ci37372610 +,,73090886,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73090886&format=geojson,0.104,,229.0,",nc73090886,",0.85,md,,nc,9.0,"25km SSW of Mammoth Lakes, CA",0.04,11,",nc,",reviewed,1538121102420,"M 0.9 - 25km SSW of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538159823753,https://earthquake.usgs.gov/earthquakes/eventpage/nc73090886 +,,20266140,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266140&format=geojson,,,,",ak20266140,",1.8,ml,,ak,,"62km E of Whittier, Alaska",0.82,50,",ak,",reviewed,1538120885339,"M 1.8 - 62km E of Whittier, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539039035538,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266140 +,,00658541,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658541&format=geojson,0.11,,61.2,",nn00658541,",1.1,ml,,nn,18.0,"7km N of Truckee, California",0.1451,19,",nn,",reviewed,1538120520783,"M 1.1 - 7km N of Truckee, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538186640081,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658541 +,,37372594,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37372594&format=geojson,0.002278,,70.0,",ci37372594,",0.42,ml,,ci,21.0,"10km NE of Aguanga, CA",0.13,3,",ci,",reviewed,1538120365350,"M 0.4 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538140673137,https://earthquake.usgs.gov/earthquakes/eventpage/ci37372594 +,,37372586,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37372586&format=geojson,0.005393,,24.0,",ci37372586,",0.73,ml,,ci,50.0,"10km NE of Aguanga, CA",0.17,8,",ci,",reviewed,1538120208960,"M 0.7 - 10km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538153762260,https://earthquake.usgs.gov/earthquakes/eventpage/ci37372586 +,,37197196,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37197196&format=geojson,0.03205,,66.0,",ci37197196,",0.12,ml,,ci,24.0,"9km ENE of Aguanga, CA",0.18,0,",ci,",reviewed,1538120198640,"M 0.1 - 9km ENE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538154454110,https://earthquake.usgs.gov/earthquakes/eventpage/ci37197196 +,,20266136,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266136&format=geojson,,,,",ak20266136,",3.3,ml,,ak,,"260km SE of Kodiak, Alaska",0.8,168,",ak,",reviewed,1538120159117,"M 3.3 - 260km SE of Kodiak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539039034745,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266136 +,,00658540,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658540&format=geojson,0.034,,84.62,",nn00658540,",-0.3,ml,,nn,16.0,"36km ENE of Beatty, Nevada",0.1689,0,",nn,",reviewed,1538120065322,"M -0.3 - 36km ENE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538186632946,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658540 +,,20266131,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266131&format=geojson,,,,",ak20266131,",1.4,ml,,ak,,"87km NW of Arctic Village, Alaska",0.63,30,",ak,",reviewed,1538119927224,"M 1.4 - 87km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539042754099,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266131 +,,37372578,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37372578&format=geojson,0.06948,,70.0,",ci37372578,",0.83,ml,,ci,29.0,"23km N of Yucca Valley, CA",0.12,11,",ci,",reviewed,1538119830730,"M 0.8 - 23km N of Yucca Valley, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538152908676,https://earthquake.usgs.gov/earthquakes/eventpage/ci37372578 +,,00658674,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658674&format=geojson,0.019,,97.07,",nn00658674,",0.3,ml,,nn,9.0,"34km ENE of Beatty, Nevada",0.1014,1,",nn,",reviewed,1538119811357,"M 0.3 - 34km ENE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538186684939,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658674 +,,20266126,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266126&format=geojson,,,,",ak20266126,",1.3,ml,,ak,,"76km SSW of Kobuk, Alaska",0.68,26,",ak,",reviewed,1538119798111,"M 1.3 - 76km SSW of Kobuk, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539042753552,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266126 +,,00658673,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658673&format=geojson,0.02,,101.24,",nn00658673,",-0.3,ml,,nn,5.0,"34km ENE of Beatty, Nevada",0.0905,0,",nn,",reviewed,1538119782748,"M -0.3 - 34km ENE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538186678058,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658673 +,3.1,1000h3mz,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3mz&format=geojson,1.709,1.0,74.0,",us1000h3mz,",4.9,mb,,us,,"57km N of Palu, Indonesia",0.96,370,",us,",reviewed,1538119717550,"M 4.9 - 57km N of Palu, Indonesia",0,earthquake,",dyfi,geoserve,origin,phase-data,",480.0,1538121687788,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3mz +,,1000h3ms,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3ms&format=geojson,7.697,,106.0,",us1000h3ms,",4.9,mb,,us,,"199km SSW of Ust'-Kamchatsk Staryy, Russia",0.8,369,",us,",reviewed,1538119187750,"M 4.9 - 199km SSW of Ust'-Kamchatsk Staryy, Russia",0,earthquake,",geoserve,origin,phase-data,",720.0,1538120135040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3ms +,,37372562,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37372562&format=geojson,0.003303,,37.0,",ci37372562,",0.29,ml,,ci,28.0,"10km NE of Aguanga, CA",0.14,1,",ci,",reviewed,1538118743000,"M 0.3 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538149942357,https://earthquake.usgs.gov/earthquakes/eventpage/ci37372562 +,,37197188,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37197188&format=geojson,0.09239,,77.0,",ci37197188,",0.41,ml,,ci,22.0,"2km WNW of Cabazon, CA",0.13,3,",ci,",reviewed,1538118729050,"M 0.4 - 2km WNW of Cabazon, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538150436586,https://earthquake.usgs.gov/earthquakes/eventpage/ci37197188 +,,00658669,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658669&format=geojson,0.079,,225.99,",nn00658669,",-0.1,ml,,nn,3.0,"17km WNW of Fernley, Nevada",0.0107,0,",nn,",reviewed,1538118688977,"M -0.1 - 17km WNW of Fernley, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538186676588,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658669 +,,37372554,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37372554&format=geojson,0.01226,,26.0,",ci37372554,",1.44,ml,,ci,74.0,"9km NE of Aguanga, CA",0.21,32,",ci,",reviewed,1538118489120,"M 1.4 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538149824460,https://earthquake.usgs.gov/earthquakes/eventpage/ci37372554 +,3.6,1000h3mg,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3mg&format=geojson,0.25,5.0,60.0,",us1000h3mg,",2.9,mb_lg,,us,,"13km SE of Blanchard, Oklahoma",0.32,131,",us,",reviewed,1538118428600,"M 2.9 - 13km SE of Blanchard, Oklahoma",0,earthquake,",dyfi,geoserve,origin,phase-data,",-360.0,1538149759677,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3mg +green,,1000h3ml,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3ml&format=geojson,7.754,,41.0,",us1000h3ml,",5.6,mb,0.0,us,,Indian Ocean Triple Junction,0.69,482,",us,",reviewed,1538118400070,M 5.6 - Indian Ocean Triple Junction,0,earthquake,",geoserve,losspager,moment-tensor,origin,phase-data,shakemap,",300.0,1538155765040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3ml +,,2018271005,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018271005&format=geojson,0.0692,,189.0,",pr2018271005,",1.86,md,,pr,3.0,"1km SE of Lajas, Puerto Rico",0.07,53,",pr,",reviewed,1538118300450,"M 1.9 - 1km SE of Lajas, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538135280418,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018271005 +,,1000h3n0,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3n0&format=geojson,1.517,,72.0,",us1000h3n0,",5.4,mb,,us,,"77km NNE of Palu, Indonesia",0.59,449,",us,",reviewed,1538118198440,"M 5.4 - 77km NNE of Palu, Indonesia",1,earthquake,",geoserve,origin,phase-data,",480.0,1538120870040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3n0 +,,73090871,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73090871&format=geojson,0.00458,,109.0,",nc73090871,",0.57,md,,nc,6.0,"10km WNW of Cobb, CA",0.01,5,",nc,",automatic,1538118054240,"M 0.6 - 10km WNW of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538119623799,https://earthquake.usgs.gov/earthquakes/eventpage/nc73090871 +green,,1000h3mf,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3mf&format=geojson,1.812,,33.0,",us1000h3mf,",6.1,mww,6.71,us,,"55km NNW of Palu, Indonesia",1.17,572,",us,",reviewed,1538118001950,"M 6.1 - 55km NNW of Palu, Indonesia",1,earthquake,",geoserve,ground-failure,losspager,moment-tensor,origin,phase-data,shakemap,",480.0,1538158590933,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3mf +,,73090866,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73090866&format=geojson,0.004614,,85.0,",nc73090866,",0.55,md,,nc,7.0,"7km NW of The Geysers, CA",0.03,5,",nc,",automatic,1538117853640,"M 0.6 - 7km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538118963741,https://earthquake.usgs.gov/earthquakes/eventpage/nc73090866 +,,70617462,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70617462&format=geojson,0.0341,,138.0,",hv70617462,",1.83,md,,hv,55.0,"4km ESE of Pahala, Hawaii",0.09,52,",hv,",reviewed,1538117457700,"M 1.8 - 4km ESE of Pahala, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538163439770,https://earthquake.usgs.gov/earthquakes/eventpage/hv70617462 +,,73090861,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73090861&format=geojson,0.01879,,95.0,",nc73090861,",0.92,md,,nc,14.0,"11km WNW of The Geysers, CA",0.04,13,",nc,",automatic,1538117438800,"M 0.9 - 11km WNW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538118302673,https://earthquake.usgs.gov/earthquakes/eventpage/nc73090861 +,,70617447,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70617447&format=geojson,0.01155,,201.0,",hv70617447,",1.81,md,,hv,8.0,"6km WSW of Volcano, Hawaii",0.08,50,",hv,",automatic,1538117347240,"M 1.8 - 6km WSW of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538117511520,https://earthquake.usgs.gov/earthquakes/eventpage/hv70617447 +,,70617452,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70617452&format=geojson,0.01305,,32.0,",hv70617452,",1.82,md,,hv,21.0,"5km WSW of Volcano, Hawaii",0.14,51,",hv,",automatic,1538117346640,"M 1.8 - 5km WSW of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538117525800,https://earthquake.usgs.gov/earthquakes/eventpage/hv70617452 +,,37372546,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37372546&format=geojson,0.08374,,108.0,",ci37372546,",0.3,ml,,ci,14.0,"9km NE of Aguanga, CA",0.08,1,",ci,",reviewed,1538117064110,"M 0.3 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538140705272,https://earthquake.usgs.gov/earthquakes/eventpage/ci37372546 +,,60298192,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60298192&format=geojson,0.06809,,71.0,",uu60298192,",1.35,ml,,uu,23.0,"10km W of Coalville, Utah",0.14,28,",uu,",reviewed,1538116847860,"M 1.4 - 10km W of Coalville, Utah",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538149300010,https://earthquake.usgs.gov/earthquakes/eventpage/uu60298192 +,,70617422,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70617422&format=geojson,0.02765,,144.0,",hv70617422,",1.74,md,,hv,47.0,"4km SE of Pahala, Hawaii",0.11,47,",hv,",reviewed,1538116641950,"M 1.7 - 4km SE of Pahala, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538166192060,https://earthquake.usgs.gov/earthquakes/eventpage/hv70617422 +,,37197180,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37197180&format=geojson,0.00817,,229.0,",ci37197180,",1.06,ml,,ci,8.0,"17km SW of Thousand Oaks, CA",0.16,17,",ci,",reviewed,1538116525800,"M 1.1 - 17km SW of Thousand Oaks, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538148924433,https://earthquake.usgs.gov/earthquakes/eventpage/ci37197180 +,,37372538,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37372538&format=geojson,0.01216,,77.0,",ci37372538,",1.59,ml,,ci,27.0,"16km SW of Thousand Oaks, CA",0.17,39,",ci,",reviewed,1538116507360,"M 1.6 - 16km SW of Thousand Oaks, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538148703409,https://earthquake.usgs.gov/earthquakes/eventpage/ci37372538 +,,37372530,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37372530&format=geojson,0.03808,,71.0,",ci37372530,",0.93,ml,,ci,40.0,"20km ESE of Anza, CA",0.2,13,",ci,",reviewed,1538116330600,"M 0.9 - 20km ESE of Anza, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538140783810,https://earthquake.usgs.gov/earthquakes/eventpage/ci37372530 +,,73090856,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73090856&format=geojson,0.001663,,55.0,",nc73090856,",0.27,md,,nc,26.0,"7km NW of The Geysers, CA",0.04,1,",nc,",reviewed,1538116161500,"M 0.3 - 7km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538177823781,https://earthquake.usgs.gov/earthquakes/eventpage/nc73090856 +,,20266065,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266065&format=geojson,,,,",ak20266065,",1.4,ml,,ak,,"13km ENE of Y, Alaska",0.82,30,",ak,",reviewed,1538116014710,"M 1.4 - 13km ENE of Y, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539039033010,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266065 +,,20266064,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266064&format=geojson,,,,",ak20266064,",1.2,ml,,ak,,"137km E of Chitina, Alaska",0.53,22,",ak,",reviewed,1538115939141,"M 1.2 - 137km E of Chitina, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539039032451,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266064 +,,00658668,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658668&format=geojson,0.336,,95.81,",nn00658668,",0.9,ml,,nn,13.0,"30km E of Yerington, Nevada",0.1986,12,",nn,",reviewed,1538115919147,"M 0.9 - 30km E of Yerington, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538186675270,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658668 +,,1000h3lv,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3lv&format=geojson,2.629,,269.0,",us1000h3lv,",3.2,ml,,us,,"266km W of Bandon, Oregon",0.69,158,",us,",reviewed,1538115862130,"M 3.2 - 266km W of Bandon, Oregon",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538116283040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3lv +,,37372522,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37372522&format=geojson,0.01146,,26.0,",ci37372522,",2.02,ml,,ci,94.0,"9km NE of Aguanga, CA",0.21,63,",ci,",reviewed,1538115842360,"M 2.0 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538147642450,https://earthquake.usgs.gov/earthquakes/eventpage/ci37372522 +green,,1000h3lz,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3lz&format=geojson,7.772,,41.0,",us1000h3lz,",5.5,mb,0.0,us,,Indian Ocean Triple Junction,0.96,465,",us,",reviewed,1538115714840,M 5.5 - Indian Ocean Triple Junction,0,earthquake,",geoserve,losspager,moment-tensor,origin,phase-data,shakemap,",300.0,1538155507040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3lz +,,20273704,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273704&format=geojson,,,,",ak20273704,",1.4,ml,,ak,,"69km NW of Talkeetna, Alaska",0.47,30,",ak,",reviewed,1538115647296,"M 1.4 - 69km NW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539039031942,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273704 +,,00658629,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658629&format=geojson,0.08,,227.53,",nn00658629,",-0.3,ml,,nn,3.0,"17km WNW of Fernley, Nevada",0.0011,0,",nn,",reviewed,1538115253638,"M -0.3 - 17km WNW of Fernley, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538186665750,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658629 +,,1000h3nn,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3nn&format=geojson,14.006,,79.0,",us1000h3nn,",4.9,mb,,us,,Indian Ocean Triple Junction,0.73,369,",us,",reviewed,1538114170310,M 4.9 - Indian Ocean Triple Junction,0,earthquake,",geoserve,origin,phase-data,",300.0,1538126221040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3nn +,,2018271004,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018271004&format=geojson,0.1052,,230.0,",pr2018271004,",1.53,md,,pr,3.0,"3km ENE of San German, Puerto Rico",0.04,36,",pr,",reviewed,1538112937680,"M 1.5 - 3km ENE of San German, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538124263155,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018271004 +,,20273703,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273703&format=geojson,,,,",ak20273703,",1.3,ml,,ak,,"103km NNW of Arctic Village, Alaska",0.89,26,",ak,",reviewed,1538112892178,"M 1.3 - 103km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539039031364,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273703 +,,2018271003,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018271003&format=geojson,0.0352,,276.0,",pr2018271003,",1.36,md,,pr,3.0,"5km E of Pole Ojea, Puerto Rico",0.26,28,",pr,",reviewed,1538112648480,"M 1.4 - 5km E of Pole Ojea, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538124247203,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018271003 +,,20266025,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266025&format=geojson,,,,",ak20266025,",0.7,ml,,ak,,"54km NW of Ester, Alaska",0.8,8,",ak,",reviewed,1538112593530,"M 0.7 - 54km NW of Ester, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539039030822,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266025 +,,00658628,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658628&format=geojson,0.071,,293.64,",nn00658628,",-0.1,ml,,nn,3.0,"8km WNW of Fernley, Nevada",0.0852,0,",nn,",reviewed,1538112444275,"M -0.1 - 8km WNW of Fernley, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538186664413,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658628 +,4.1,1000h3li,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3li&format=geojson,0.215,2.0,58.0,",us1000h3li,",4.4,mb,,us,,"13km NW of Palmi, Italy",0.91,299,",us,",reviewed,1538112271270,"M 4.4 - 13km NW of Palmi, Italy",0,earthquake,",dyfi,geoserve,origin,phase-data,",60.0,1538132123882,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3li +,,2018271002,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018271002&format=geojson,0.5902,,313.0,",pr2018271002,",3.05,md,,pr,7.0,"61km N of Isabela, Puerto Rico",0.37,143,",pr,",reviewed,1538112173150,"M 3.1 - 61km N of Isabela, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538124235323,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018271002 +,,60298187,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60298187&format=geojson,0.2069,,88.0,",uu60298187,",0.29,md,,uu,9.0,"22km NE of Beaver, Utah",0.09,1,",uu,",reviewed,1538112026180,"M 0.3 - 22km NE of Beaver, Utah",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538149794910,https://earthquake.usgs.gov/earthquakes/eventpage/uu60298187 +,,60298182,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60298182&format=geojson,0.1319,,90.0,",uu60298182,",0.73,md,,uu,9.0,"13km ESE of Centerville, Utah",0.15,8,",uu,",reviewed,1538111522360,"M 0.7 - 13km ESE of Centerville, Utah",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538150628440,https://earthquake.usgs.gov/earthquakes/eventpage/uu60298182 +,,00658665,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658665&format=geojson,0.018,,209.09,",nn00658665,",-0.4,ml,,nn,5.0,"55km ENE of Beatty, Nevada",0.1289,0,",nn,",reviewed,1538110339538,"M -0.4 - 55km ENE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538186672856,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658665 +,,1000h8cb,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h8cb&format=geojson,0.79,,117.0,",us1000h8cb,",1.4,ml,,us,,"53km NNW of Sussex, Canada",0.97,30,",us,",reviewed,1538110167030,"M 1.4 - 53km NNW of Sussex, Canada",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538888354040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h8cb +,,2018271001,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018271001&format=geojson,0.8399,,311.0,",pr2018271001,",2.96,md,,pr,5.0,"56km N of Isabela, Puerto Rico",0.23,135,",pr,",reviewed,1538110046610,"M 3.0 - 56km N of Isabela, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538124220419,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018271001 +,,20266022,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266022&format=geojson,,,,",ak20266022,",1.8,ml,,ak,,"89km NNW of Arctic Village, Alaska",0.72,50,",ak,",reviewed,1538109875268,"M 1.8 - 89km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539042752887,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266022 +,,20266019,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266019&format=geojson,,,,",ak20266019,",1.6,ml,,ak,,"60km SE of Cantwell, Alaska",0.89,39,",ak,",reviewed,1538109617311,"M 1.6 - 60km SE of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539039029623,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266019 +,,73090816,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73090816&format=geojson,0.02587,,142.0,",nc73090816,",0.4,md,,nc,13.0,"12km ESE of Mammoth Lakes, CA",0.02,2,",nc,",reviewed,1538108894040,"M 0.4 - 12km ESE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538158263590,https://earthquake.usgs.gov/earthquakes/eventpage/nc73090816 +,,61788301,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61788301&format=geojson,0.04669,,308.0,",av61788301,",0.74,ml,,av,5.0,"39km W of Tanaga Volcano, Alaska",0.22,8,",av,",reviewed,1538108476790,"M 0.7 - 39km W of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538176863000,https://earthquake.usgs.gov/earthquakes/eventpage/av61788301 +,,37372498,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37372498&format=geojson,0.01817,,35.0,",ci37372498,",0.81,ml,,ci,31.0,"9km NE of Aguanga, CA",0.16,10,",ci,",reviewed,1538108432700,"M 0.8 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538140786320,https://earthquake.usgs.gov/earthquakes/eventpage/ci37372498 +,,20266018,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266018&format=geojson,,,,",ak20266018,",1.7,ml,,ak,,"34km SSW of Tanaga Volcano, Alaska",0.64,44,",ak,",reviewed,1538107994841,"M 1.7 - 34km SSW of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539039029109,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266018 +,,73090791,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73090791&format=geojson,0.03012,,143.0,",nc73090791,",0.57,md,,nc,20.0,"11km ESE of Mammoth Lakes, CA",0.05,5,",nc,",reviewed,1538107027870,"M 0.6 - 11km ESE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538156643436,https://earthquake.usgs.gov/earthquakes/eventpage/nc73090791 +,,80311564,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80311564&format=geojson,0.221,,124.0,",mb80311564,",1.25,ml,,mb,11.0,"34km W of Lima, Montana",0.19,24,",mb,",reviewed,1538106236080,"M 1.3 - 34km W of Lima, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538146541570,https://earthquake.usgs.gov/earthquakes/eventpage/mb80311564 +,,20266017,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20266017&format=geojson,,,,",ak20266017,",1.9,ml,,ak,,"29km SW of Tanaga Volcano, Alaska",0.54,56,",ak,",reviewed,1538105883312,"M 1.9 - 29km SW of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539039028584,https://earthquake.usgs.gov/earthquakes/eventpage/ak20266017 +,,37372490,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37372490&format=geojson,0.02588,,45.0,",ci37372490,",0.62,ml,,ci,34.0,"9km NE of Aguanga, CA",0.15,6,",ci,",reviewed,1538105868550,"M 0.6 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538148231580,https://earthquake.usgs.gov/earthquakes/eventpage/ci37372490 +,,61788266,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61788266&format=geojson,0.09509,,335.0,",av61788266,",1.29,ml,,av,5.0,"41km WSW of Tanaga Volcano, Alaska",0.17,26,",av,",reviewed,1538105518460,"M 1.3 - 41km WSW of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538176876970,https://earthquake.usgs.gov/earthquakes/eventpage/av61788266 +,,37372482,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37372482&format=geojson,0.005392,,32.0,",ci37372482,",0.92,ml,,ci,34.0,"10km NE of Aguanga, CA",0.13,13,",ci,",reviewed,1538105447170,"M 0.9 - 10km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538140837950,https://earthquake.usgs.gov/earthquakes/eventpage/ci37372482 +,,37372474,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37372474&format=geojson,0.03221,,39.0,",ci37372474,",0.55,ml,,ci,24.0,"8km ENE of Aguanga, CA",0.15,5,",ci,",reviewed,1538105359260,"M 0.6 - 8km ENE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538140835200,https://earthquake.usgs.gov/earthquakes/eventpage/ci37372474 +,,73090771,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73090771&format=geojson,0.01116,,37.0,",nc73090771,",1.41,md,,nc,39.0,"6km W of Cobb, CA",0.05,31,",nc,",reviewed,1538104530290,"M 1.4 - 6km W of Cobb, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538171342226,https://earthquake.usgs.gov/earthquakes/eventpage/nc73090771 +,,80311559,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80311559&format=geojson,0.089,,129.0,",mb80311559,",1.11,ml,,mb,10.0,"11km ESE of Lincoln, Montana",0.08,19,",mb,",reviewed,1538103981730,"M 1.1 - 11km ESE of Lincoln, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538146047230,https://earthquake.usgs.gov/earthquakes/eventpage/mb80311559 +,,00658657,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658657&format=geojson,0.029,,63.77,",nn00658657,",-0.3,ml,,nn,21.0,"56km ENE of Beatty, Nevada",0.1847,0,",nn,",reviewed,1538103937344,"M -0.3 - 56km ENE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538186671336,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658657 +,,20265978,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265978&format=geojson,,,,",ak20265978,",1.4,ml,,ak,,"121km W of Fort Yukon, Alaska",0.81,30,",ak,",reviewed,1538103877144,"M 1.4 - 121km W of Fort Yukon, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539039028011,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265978 +,,20265976,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265976&format=geojson,,,,",ak20265976,",2.2,ml,,ak,,"75km SSW of Kaktovik, Alaska",0.65,74,",ak,",reviewed,1538103330276,"M 2.2 - 75km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539039027433,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265976 +,,73090766,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73090766&format=geojson,0.03951,,157.0,",nc73090766,",1.24,md,,nc,9.0,"4km NNW of Almanor, CA",0.15,24,",nc,",reviewed,1538103212550,"M 1.2 - 4km NNW of Almanor, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538118842728,https://earthquake.usgs.gov/earthquakes/eventpage/nc73090766 +,,20273695,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273695&format=geojson,,,,",ak20273695,",1.8,ml,,ak,,"37km WNW of Anchor Point, Alaska",0.54,50,",ak,",reviewed,1538102860028,"M 1.8 - 37km WNW of Anchor Point, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539039026892,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273695 +,,1000h3l2,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3l2&format=geojson,4.983,,209.0,",us1000h3l2,",4.5,mb,,us,,"Off the coast of Aisen, Chile",0.75,312,",us,",reviewed,1538102648980,"M 4.5 - Off the coast of Aisen, Chile",0,earthquake,",geoserve,origin,phase-data,",-300.0,1539133269040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3l2 +,,60298172,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60298172&format=geojson,0.1436,,47.0,",uu60298172,",1.08,ml,,uu,22.0,"13km E of Centerville, Utah",0.17,18,",uu,",reviewed,1538102579020,"M 1.1 - 13km E of Centerville, Utah",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538148002470,https://earthquake.usgs.gov/earthquakes/eventpage/uu60298172 +,,37372450,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37372450&format=geojson,0.01682,,60.0,",ci37372450,",0.42,ml,,ci,20.0,"9km NE of Aguanga, CA",0.12,3,",ci,",reviewed,1538102378360,"M 0.4 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538140763093,https://earthquake.usgs.gov/earthquakes/eventpage/ci37372450 +,,1000h3wp,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3wp&format=geojson,2.777,,222.0,",ak20265972,us1000h3wp,",3.3,ml,,us,,"300km SE of Kodiak, Alaska",0.55,168,",ak,us,",reviewed,1538102273280,"M 3.3 - 300km SE of Kodiak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539128190040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3wp +,,37372442,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37372442&format=geojson,0.02307,,80.0,",ci37372442,",0.7,ml,,ci,26.0,"21km SSW of La Quinta, CA",0.21,8,",ci,",reviewed,1538102121060,"M 0.7 - 21km SSW of La Quinta, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538140760685,https://earthquake.usgs.gov/earthquakes/eventpage/ci37372442 +,,00658627,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658627&format=geojson,0.152,,280.98,",nn00658627,",0.6,ml,,nn,3.0,"44km N of Spanish Springs, Nevada",0.1184,6,",nn,",reviewed,1538102072185,"M 0.6 - 44km N of Spanish Springs, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538186663061,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658627 +,,61788246,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61788246&format=geojson,0.03407,,340.0,",av61788246,",0.4,ml,,av,4.0,"47km W of Tanaga Volcano, Alaska",0.23,2,",av,",reviewed,1538101847560,"M 0.4 - 47km W of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538170990930,https://earthquake.usgs.gov/earthquakes/eventpage/av61788246 +,,20265968,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265968&format=geojson,,,,",ak20265968,us1000h3l0,",2.4,ml,,ak,,"73km SSW of Kaktovik, Alaska",0.51,89,",ak,us,",reviewed,1538101776547,"M 2.4 - 73km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539127541040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265968 +,,73090751,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73090751&format=geojson,0.01526,,94.0,",nc73090751,",0.17,md,,nc,8.0,"9km E of Mammoth Lakes, CA",0.03,0,",nc,",reviewed,1538100226300,"M 0.2 - 9km E of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538103003002,https://earthquake.usgs.gov/earthquakes/eventpage/nc73090751 +,,2018271006,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018271006&format=geojson,0.6317,,321.0,",pr2018271006,",2.55,md,,pr,9.0,"67km NNW of San Antonio, Puerto Rico",0.24,100,",pr,",reviewed,1538100108810,"M 2.6 - 67km NNW of San Antonio, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538131844583,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018271006 +,,70251523,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ismpkansas70251523&format=geojson,0.1356,,243.0,",ismpkansas70251523,",1.71,ml,,ismpkansas,10.0,"12km SW of Wellington, Kansas",0.04,45,",ismpkansas,",reviewed,1538100029570,"M 1.7 - 12km SW of Wellington, Kansas",0,earthquake,",geoserve,origin,phase-data,",-360.0,1538161710320,https://earthquake.usgs.gov/earthquakes/eventpage/ismpkansas70251523 +,,37372410,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37372410&format=geojson,0.02294,,59.0,",ci37372410,",1.02,ml,,ci,34.0,"8km E of Yucaipa, CA",0.13,16,",ci,",reviewed,1538099426560,"M 1.0 - 8km E of Yucaipa, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538140794845,https://earthquake.usgs.gov/earthquakes/eventpage/ci37372410 +,,1000h71w,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h71w&format=geojson,3.564,,123.0,",us1000h71w,",4.2,mb,,us,,"281km N of Ndoi Island, Fiji",0.62,271,",us,",reviewed,1538099094250,"M 4.2 - 281km N of Ndoi Island, Fiji",0,earthquake,",geoserve,origin,phase-data,",-720.0,1539125898040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h71w +,,70616952,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70616952&format=geojson,0.03603,,61.0,",hv70616952,",2.32,ml,,hv,47.0,"22km ENE of Honaunau-Napoopoo, Hawaii",0.13,83,",hv,",reviewed,1538099072350,"M 2.3 - 22km ENE of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538102662850,https://earthquake.usgs.gov/earthquakes/eventpage/hv70616952 +,,37372378,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37372378&format=geojson,0.04702,,98.0,",ci37372378,",0.59,ml,,ci,24.0,"8km S of Idyllwild, CA",0.17,5,",ci,",reviewed,1538098861400,"M 0.6 - 8km S of Idyllwild, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538140811012,https://earthquake.usgs.gov/earthquakes/eventpage/ci37372378 +,,20265958,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265958&format=geojson,,,,",ak20265958,us1000h3ku,",3.4,ml,3.35,ak,,"77km SW of Kaktovik, Alaska",0.7,178,",ak,us,",reviewed,1538098837926,"M 3.4 - 77km SW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,shakemap,",-540.0,1539221796040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265958 +,,20265955,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265955&format=geojson,,,,",ak20265955,us1000h915,",2.1,ml,,ak,,"37km S of Redoubt Volcano, Alaska",0.61,68,",ak,us,",reviewed,1538098722574,"M 2.1 - 37km S of Redoubt Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539059162040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265955 +,,20273690,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273690&format=geojson,,,,",ak20273690,",1.8,ml,,ak,,"49km SSE of Tanaga Volcano, Alaska",0.6,50,",ak,",reviewed,1538098563593,"M 1.8 - 49km SSE of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539039023352,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273690 +,,37372362,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37372362&format=geojson,0.0181,,97.0,",ci37372362,",0.42,ml,,ci,20.0,"9km NE of Aguanga, CA",0.08,3,",ci,",reviewed,1538098363930,"M 0.4 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538153141536,https://earthquake.usgs.gov/earthquakes/eventpage/ci37372362 +,,37372346,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37372346&format=geojson,0.02689,,25.0,",ci37372346,",1.31,ml,,ci,71.0,"3km W of Cabazon, CA",0.16,26,",ci,",reviewed,1538098020810,"M 1.3 - 3km W of Cabazon, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538146493900,https://earthquake.usgs.gov/earthquakes/eventpage/ci37372346 +,,37372338,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37372338&format=geojson,0.1758,,75.0,",ci37372338,",1.44,ml,,ci,31.0,"20km NNW of Tehachapi, CA",0.12,32,",ci,",reviewed,1538097736850,"M 1.4 - 20km NNW of Tehachapi, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538145642050,https://earthquake.usgs.gov/earthquakes/eventpage/ci37372338 +,,70616922,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70616922&format=geojson,0.03396,,64.0,",hv70616922,",1.02,md,,hv,23.0,"22km ENE of Honaunau-Napoopoo, Hawaii",0.13,16,",hv,",reviewed,1538097691750,"M 1.0 - 22km ENE of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538382010120,https://earthquake.usgs.gov/earthquakes/eventpage/hv70616922 +,,20265948,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265948&format=geojson,,,,",ak20265948,",0.8,ml,,ak,,"20km E of Eielson Air Force Base, Alaska",0.79,10,",ak,",reviewed,1538097454940,"M 0.8 - 20km E of Eielson Air Force Base, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539039022786,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265948 +,,20265947,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265947&format=geojson,,,,",ak20265947,",1.8,ml,,ak,,"74km SSW of Kaktovik, Alaska",0.58,50,",ak,",reviewed,1538097384862,"M 1.8 - 74km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539039022268,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265947 +,,20273687,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273687&format=geojson,,,,",ak20273687,",1.4,ml,,ak,,"28km SW of Tanaga Volcano, Alaska",0.96,30,",ak,",reviewed,1538097330834,"M 1.4 - 28km SW of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539039021729,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273687 +,,20273686,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273686&format=geojson,,,,",ak20273686,",1.1,ml,,ak,,"97km NNW of Kobuk, Alaska",0.88,19,",ak,",reviewed,1538097068525,"M 1.1 - 97km NNW of Kobuk, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539039021186,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273686 +,,20265945,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265945&format=geojson,,,,",ak20265945,",1.8,ml,,ak,,"59km WNW of Skagway, Alaska",0.68,50,",ak,",reviewed,1538096953698,"M 1.8 - 59km WNW of Skagway, Alaska",0,earthquake,",geoserve,origin,phase-data,",-480.0,1539039020634,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265945 +,,1000h3ki,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3ki&format=geojson,1.334,,147.0,",us1000h3ki,",4.7,mb,,us,,"148km E of Petropavlovsk-Kamchatskiy, Russia",1.38,340,",us,",reviewed,1538096770270,"M 4.7 - 148km E of Petropavlovsk-Kamchatskiy, Russia",0,earthquake,",geoserve,origin,phase-data,",660.0,1539058057040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3ki +,,80311554,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80311554&format=geojson,0.137,,111.0,",mb80311554,",0.99,ml,,mb,10.0,"16km ESE of Lincoln, Montana",0.19,15,",mb,",reviewed,1538096700530,"M 1.0 - 16km ESE of Lincoln, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538145741360,https://earthquake.usgs.gov/earthquakes/eventpage/mb80311554 +,,20265943,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265943&format=geojson,,,,",ak20265943,",1.3,ml,,ak,,"63km NNW of Talkeetna, Alaska",0.46,26,",ak,",reviewed,1538096531481,"M 1.3 - 63km NNW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539039020046,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265943 +,,20265942,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265942&format=geojson,,,,",ak20265942,",1.4,ml,,ak,,"81km W of Haines, Alaska",0.84,30,",ak,",reviewed,1538096494728,"M 1.4 - 81km W of Haines, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539039019496,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265942 +,,37372330,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37372330&format=geojson,0.003034,,55.0,",ci37372330,",0.35,ml,,ci,25.0,"10km NE of Aguanga, CA",0.14,2,",ci,",reviewed,1538096173490,"M 0.4 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538145195027,https://earthquake.usgs.gov/earthquakes/eventpage/ci37372330 +,,37372322,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37372322&format=geojson,0.02157,,35.0,",ci37372322,",1.02,ml,,ci,45.0,"9km NE of Aguanga, CA",0.21,16,",ci,",reviewed,1538096061970,"M 1.0 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538140906520,https://earthquake.usgs.gov/earthquakes/eventpage/ci37372322 +,,1000h3k1,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3k1&format=geojson,0.123,,51.0,",ismpkansas70251508,us1000h3k1,",2.1,mb_lg,,us,,"13km SW of Wellington, Kansas",0.48,68,",ismpkansas,us,",reviewed,1538095913240,"M 2.1 - 13km SW of Wellington, Kansas",0,earthquake,",geoserve,origin,phase-data,",-360.0,1539312768040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3k1 +,,37372314,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37372314&format=geojson,0.006175,,31.0,",ci37372314,",1.46,ml,,ci,48.0,"9km NE of Aguanga, CA",0.2,33,",ci,",reviewed,1538095855390,"M 1.5 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538140909460,https://earthquake.usgs.gov/earthquakes/eventpage/ci37372314 +,,37372306,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37372306&format=geojson,0.08245,,51.0,",ci37372306,",0.87,ml,,ci,21.0,"30km NNW of Searles Valley, CA",0.16,12,",ci,",reviewed,1538095659660,"M 0.9 - 30km NNW of Searles Valley, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538144708626,https://earthquake.usgs.gov/earthquakes/eventpage/ci37372306 +,,20265939,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265939&format=geojson,,,,",ak20265939,",1.1,ml,,ak,,"22km NNE of Badger, Alaska",0.73,19,",ak,",reviewed,1538095391929,"M 1.1 Explosion - 22km NNE of Badger, Alaska",0,explosion,",geoserve,origin,phase-data,",-540.0,1539039018928,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265939 +,,00658655,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658655&format=geojson,0.027,,153.72,",nn00658655,",-0.4,ml,,nn,7.0,"55km ENE of Beatty, Nevada",0.1803,0,",nn,",reviewed,1538095372398,"M -0.4 - 55km ENE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538186669649,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658655 +,,70616857,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70616857&format=geojson,0.002821,,80.0,",hv70616857,",0.69,md,,hv,8.0,"27km E of Honaunau-Napoopoo, Hawaii",0.09,7,",hv,",reviewed,1538095354860,"M 0.7 - 27km E of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538099838420,https://earthquake.usgs.gov/earthquakes/eventpage/hv70616857 +,,2018271000,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018271000&format=geojson,0.4049,,216.0,",pr2018271000,us1000h3n9,",2.65,md,,pr,13.0,"53km NW of San Antonio, Puerto Rico",0.45,108,",pr,us,",reviewed,1538095324940,"M 2.7 - 53km NW of San Antonio, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1539312977040,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018271000 +,,20265936,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265936&format=geojson,,,,",ak20265936,",1.5,ml,,ak,,"49km WSW of Willow, Alaska",0.55,35,",ak,",reviewed,1538095140555,"M 1.5 - 49km WSW of Willow, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539039018359,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265936 +,,37372298,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37372298&format=geojson,0.004624,,42.0,",ci37372298,",0.34,ml,,ci,24.0,"10km NE of Aguanga, CA",0.16,2,",ci,",reviewed,1538094906340,"M 0.3 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538144419870,https://earthquake.usgs.gov/earthquakes/eventpage/ci37372298 +,,00658510,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658510&format=geojson,0.024,,67.01,",nn00658510,",0.3,ml,,nn,33.0,"55km ENE of Beatty, Nevada",0.1519,1,",nn,",reviewed,1538094820063,"M 0.3 - 55km ENE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538186625923,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658510 +,,20265935,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265935&format=geojson,,,,",ak20265935,",1.7,ml,,ak,,"105km NNW of Arctic Village, Alaska",0.94,44,",ak,",reviewed,1538094778014,"M 1.7 - 105km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539039017798,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265935 +,,70805084,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70805084&format=geojson,0.01068,,110.0,",av70805084,",-0.27,ml,,av,7.0,"11km W of Akutan, Alaska",0.21,0,",av,",reviewed,1538094546850,"M -0.3 - 11km W of Akutan, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538171732230,https://earthquake.usgs.gov/earthquakes/eventpage/av70805084 +,,37372290,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37372290&format=geojson,0.1588,,71.0,",ci37372290,",1.15,ml,,ci,19.0,"21km ENE of Boron, CA",0.13,20,",ci,",reviewed,1538094419620,"M 1.2 - 21km ENE of Boron, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538143904823,https://earthquake.usgs.gov/earthquakes/eventpage/ci37372290 +,2.0,1000h3jv,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3jv&format=geojson,0.556,2.0,96.0,",us1000h3jv,",4.0,mb,,us,,"23km NW of Antalya, Turkey",0.83,247,",us,",reviewed,1538094390550,"M 4.0 - 23km NW of Antalya, Turkey",0,earthquake,",dyfi,geoserve,origin,phase-data,",120.0,1538095645445,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3jv +,,20265933,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265933&format=geojson,,,,",ak20265933,",1.3,ml,,ak,,"54km NNE of Yakutat, Alaska",0.77,26,",ak,",reviewed,1538094303795,"M 1.3 - 54km NNE of Yakutat, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539039017162,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265933 +,,70616827,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70616827&format=geojson,0.07189,,51.0,",hv70616827,",1.76,md,,hv,48.0,"16km N of Pahala, Hawaii",0.26,48,",hv,",automatic,1538093903960,"M 1.8 - 16km N of Pahala, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538094100730,https://earthquake.usgs.gov/earthquakes/eventpage/hv70616827 +,,20273678,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273678&format=geojson,,,,",ak20273678,",1.6,ml,,ak,,"81km SW of Kaktovik, Alaska",0.93,39,",ak,",reviewed,1538093380478,"M 1.6 - 81km SW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539039016555,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273678 +,,20273677,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20273677&format=geojson,,,,",ak20273677,",1.6,ml,,ak,,"78km SSE of Akutan, Alaska",0.47,39,",ak,",reviewed,1538093072860,"M 1.6 - 78km SSE of Akutan, Alaska",0,earthquake,",geoserve,origin,phase-data,",-660.0,1539042750570,https://earthquake.usgs.gov/earthquakes/eventpage/ak20273677 +,,1000h71u,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h71u&format=geojson,4.83,,140.0,",us1000h71u,",4.3,mb,,us,,"22km ESE of Padong, Philippines",0.74,284,",us,",reviewed,1538092992680,"M 4.3 - 22km ESE of Padong, Philippines",0,earthquake,",geoserve,origin,phase-data,",480.0,1539491425040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h71u +,,20271765,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271765&format=geojson,,,,",ak20271765,",1.7,ml,,ak,,"26km SW of Tanaga Volcano, Alaska",0.41,44,",ak,",reviewed,1538091929940,"M 1.7 - 26km SW of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538767649634,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271765 +,,73090711,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73090711&format=geojson,0.03186,,113.0,",nc73090711,",0.62,md,,nc,15.0,"12km ENE of Mammoth Lakes, CA",0.04,6,",nc,",reviewed,1538091624910,"M 0.6 - 12km ENE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538100002693,https://earthquake.usgs.gov/earthquakes/eventpage/nc73090711 +,,1000h6ed,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h6ed&format=geojson,4.478,,92.0,",us1000h6ed,",4.1,mb,,us,,"298km NNE of Vostok, Russia",0.84,259,",us,",reviewed,1538091517150,"M 4.1 - 298km NNE of Vostok, Russia",0,earthquake,",geoserve,origin,phase-data,",600.0,1539475239040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h6ed +,,37372258,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37372258&format=geojson,0.01834,,56.0,",ci37372258,",0.36,ml,,ci,21.0,"10km NE of Aguanga, CA",0.09,2,",ci,",reviewed,1538091412240,"M 0.4 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538094511363,https://earthquake.usgs.gov/earthquakes/eventpage/ci37372258 +,,1000h3jr,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3jr&format=geojson,2.81,,65.0,",us1000h3jr,",4.5,mb,,us,,"Kepulauan Barat Daya, Indonesia",1.03,312,",us,",reviewed,1538091411500,"M 4.5 - Kepulauan Barat Daya, Indonesia",0,earthquake,",geoserve,origin,phase-data,",540.0,1538094586040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3jr +,,20265930,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265930&format=geojson,,,,",ak20265930,",1.1,ml,,ak,,"67km NE of Talkeetna, Alaska",0.46,19,",ak,",reviewed,1538091175986,"M 1.1 - 67km NE of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767649107,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265930 +,,37372250,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37372250&format=geojson,0.1187,,112.0,",ci37372250,",0.93,ml,,ci,19.0,"5km S of Redlands, CA",0.19,13,",ci,",reviewed,1538090871300,"M 0.9 - 5km S of Redlands, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538094313533,https://earthquake.usgs.gov/earthquakes/eventpage/ci37372250 +,,20265927,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265927&format=geojson,,,,",ak20265927,",2.0,ml,,ak,,"26km SW of Tanaga Volcano, Alaska",0.42,62,",ak,",reviewed,1538090136487,"M 2.0 - 26km SW of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538767648570,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265927 +,,61788161,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61788161&format=geojson,0.02793,,305.0,",av61788161,",0.76,ml,,av,4.0,"44km WSW of Tanaga Volcano, Alaska",0.1,9,",av,",reviewed,1538090085680,"M 0.8 - 44km WSW of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538163297770,https://earthquake.usgs.gov/earthquakes/eventpage/av61788161 +,,20265925,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265925&format=geojson,,,,",ak20265925,",2.3,ml,,ak,,"16km SW of Atka, Alaska",0.43,81,",ak,",reviewed,1538089954854,"M 2.3 - 16km SW of Atka, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538767648073,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265925 +,,00659072,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659072&format=geojson,0.031,,74.29,",nn00659072,",0.2,ml,,nn,10.0,"4km WSW of Tahoe Vista, California",0.0995,1,",nn,",reviewed,1538089000899,"M 0.2 - 4km WSW of Tahoe Vista, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538417795121,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659072 +,,20265924,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265924&format=geojson,,,,",ak20265924,",1.3,ml,,ak,,"114km NW of Arctic Village, Alaska",0.4,26,",ak,",reviewed,1538088960107,"M 1.3 - 114km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767647561,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265924 +,,37372234,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37372234&format=geojson,0.01003,,44.0,",ci37372234,",0.61,ml,,ci,22.0,"9km NE of Aguanga, CA",0.12,6,",ci,",reviewed,1538088921930,"M 0.6 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538094114120,https://earthquake.usgs.gov/earthquakes/eventpage/ci37372234 +,,37372202,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37372202&format=geojson,0.01799,,27.0,",ci37372202,",2.0,ml,,ci,67.0,"8km NE of Aguanga, CA",0.18,62,",ci,",reviewed,1538087679790,"M 2.0 - 8km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538093806910,https://earthquake.usgs.gov/earthquakes/eventpage/ci37372202 +,,37372186,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37372186&format=geojson,0.02011,,60.0,",ci37372186,",0.53,ml,,ci,23.0,"9km NE of Aguanga, CA",0.08,4,",ci,",reviewed,1538087232850,"M 0.5 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538093562140,https://earthquake.usgs.gov/earthquakes/eventpage/ci37372186 +green,,1000h3iv,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3iv&format=geojson,3.55,,34.0,",us1000h3iv,",5.5,mww,1.92,us,,"279km N of Ndoi Island, Fiji",1.1,465,",us,",reviewed,1538087143970,"M 5.5 - 279km N of Ndoi Island, Fiji",0,earthquake,",geoserve,losspager,origin,phase-data,shakemap,",-720.0,1538094472125,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3iv +,,37372170,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37372170&format=geojson,0.07658,,94.0,",ci37372170,",0.33,ml,,ci,19.0,"10km NE of Aguanga, CA",0.18,2,",ci,",reviewed,1538086958320,"M 0.3 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538093383097,https://earthquake.usgs.gov/earthquakes/eventpage/ci37372170 +,,20265897,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265897&format=geojson,,,,",ak20265897,",1.8,ml,,ak,,"127km NNW of Arctic Village, Alaska",0.41,50,",ak,",reviewed,1538086923937,"M 1.8 - 127km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767646989,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265897 +,,00658486,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658486&format=geojson,0.033,,159.83,",nn00658486,",0.7,ml,,nn,6.0,"24km NW of Gabbs, Nevada",0.0617,8,",nn,",reviewed,1538086887525,"M 0.7 - 24km NW of Gabbs, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538100356135,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658486 +,,20265899,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265899&format=geojson,,,,",ak20265899,",1.2,ml,,ak,,"55km NNE of Yakutat, Alaska",0.43,22,",ak,",reviewed,1538086724908,"M 1.2 Ice Quake - 55km NNE of Yakutat, Alaska",0,ice quake,",geoserve,origin,phase-data,",-540.0,1538767646462,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265899 +,,70616637,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70616637&format=geojson,0.02243,,101.0,",hv70616637,",2.26,ml,,hv,46.0,"14km S of Volcano, Hawaii",0.09,79,",hv,",reviewed,1538086718530,"M 2.3 - 14km S of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538099372210,https://earthquake.usgs.gov/earthquakes/eventpage/hv70616637 +,,20265894,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265894&format=geojson,,,,",ak20265894,",1.3,ml,,ak,,"103km NW of Arctic Village, Alaska",0.62,26,",ak,",reviewed,1538086680084,"M 1.3 - 103km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767645935,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265894 +,,73090691,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73090691&format=geojson,0.05223,,161.0,",nc73090691,",1.26,md,,nc,9.0,"10km NNE of Brooktrails, CA",0.05,24,",nc,",reviewed,1538086270210,"M 1.3 - 10km NNE of Brooktrails, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538102222937,https://earthquake.usgs.gov/earthquakes/eventpage/nc73090691 +,,20265887,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265887&format=geojson,,,,",ak20265887,",1.6,ml,,ak,,"120km WNW of Arctic Village, Alaska",0.41,39,",ak,",reviewed,1538086119839,"M 1.6 - 120km WNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767645385,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265887 +,,70616607,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70616607&format=geojson,0.02985,,66.0,",hv70616607,",0.99,md,,hv,14.0,"23km ENE of Honaunau-Napoopoo, Hawaii",0.11,15,",hv,",reviewed,1538085852700,"M 1.0 - 23km ENE of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538387729750,https://earthquake.usgs.gov/earthquakes/eventpage/hv70616607 +,,37372130,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37372130&format=geojson,0.008277,,36.0,",ci37372130,",0.52,ml,,ci,26.0,"10km NE of Aguanga, CA",0.18,4,",ci,",reviewed,1538085765150,"M 0.5 - 10km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538093991020,https://earthquake.usgs.gov/earthquakes/eventpage/ci37372130 +,,37372122,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37372122&format=geojson,0.003674,,38.0,",ci37372122,",0.71,ml,,ci,27.0,"10km NE of Aguanga, CA",0.14,8,",ci,",reviewed,1538085651850,"M 0.7 - 10km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538093170880,https://earthquake.usgs.gov/earthquakes/eventpage/ci37372122 +,,20265877,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265877&format=geojson,,,,",ak20265877,us1000h3i5,",2.4,ml,,ak,,"58km SW of Manley Hot Springs, Alaska",0.54,89,",ak,us,",reviewed,1538085640458,"M 2.4 - 58km SW of Manley Hot Springs, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767644665,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265877 +,3.8,1000h3i7,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3i7&format=geojson,0.649,9.0,100.0,",us1000h3i7,",4.8,mb,,us,,"55km N of Santa Eulalia, Peru",0.76,358,",us,",reviewed,1538085621110,"M 4.8 - 55km N of Santa Eulalia, Peru",0,earthquake,",dyfi,geoserve,origin,phase-data,",-300.0,1538149361058,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3i7 +,,00658477,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658477&format=geojson,0.124,,89.33,",nn00658477,",1.3,ml,,nn,15.0,"28km WSW of Hawthorne, Nevada",0.1681,26,",nn,",reviewed,1538084928805,"M 1.3 - 28km WSW of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538100354689,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658477 +,,1000h3j7,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3j7&format=geojson,2.636,,194.0,",ak20265871,us1000h3j7,",3.4,ml,,us,,"284km ESE of Kodiak, Alaska",0.7,178,",ak,us,",reviewed,1538084713880,"M 3.4 - 284km ESE of Kodiak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539311981040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3j7 +,,20265870,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265870&format=geojson,,,,",ak20265870,",1.1,ml,,ak,,"67km SSW of Kobuk, Alaska",0.52,19,",ak,",reviewed,1538084584872,"M 1.1 - 67km SSW of Kobuk, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767643317,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265870 +,,1000h6e7,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h6e7&format=geojson,4.663,,68.0,",us1000h6e7,",4.4,mb,,us,,"252km NE of Ndoi Island, Fiji",0.53,298,",us,",reviewed,1538084482290,"M 4.4 - 252km NE of Ndoi Island, Fiji",0,earthquake,",geoserve,origin,phase-data,",-720.0,1539403392040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h6e7 +,,37372098,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37372098&format=geojson,0.007799,,52.0,",ci37372098,",0.64,ml,,ci,23.0,"10km NE of Aguanga, CA",0.14,6,",ci,",reviewed,1538084290600,"M 0.6 - 10km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538092983020,https://earthquake.usgs.gov/earthquakes/eventpage/ci37372098 +,,37372082,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37372082&format=geojson,0.009472,,142.0,",ci37372082,",0.42,ml,,ci,18.0,"9km NE of Aguanga, CA",0.1,3,",ci,",reviewed,1538083962850,"M 0.4 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538085609792,https://earthquake.usgs.gov/earthquakes/eventpage/ci37372082 +,,20265864,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265864&format=geojson,,,,",ak20265864,",1.4,ml,,ak,,"107km N of Arctic Village, Alaska",0.57,30,",ak,",reviewed,1538083761275,"M 1.4 - 107km N of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767642790,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265864 +,,37372074,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37372074&format=geojson,0.009954,,22.0,",ci37372074,",2.28,ml,,ci,84.0,"8km NE of Aguanga, CA",0.2,80,",ci,",reviewed,1538083738140,"M 2.3 - 8km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538085379390,https://earthquake.usgs.gov/earthquakes/eventpage/ci37372074 +,,00658474,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658474&format=geojson,0.148,,223.08,",nn00658474,",1.5,ml,,nn,15.0,"79km S of Austin, Nevada",0.4946,35,",nn,",reviewed,1538082986803,"M 1.5 Explosion - 79km S of Austin, Nevada",0,explosion,",geoserve,origin,phase-data,",-480.0,1538086080890,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658474 +,,1000h3gn,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3gn&format=geojson,6.209,,29.0,",us1000h3gn,",5.1,mb,,us,,"131km NE of Rutog, China",0.7,400,",us,",reviewed,1538082799690,"M 5.1 - 131km NE of Rutog, China",0,earthquake,",geoserve,origin,phase-data,",480.0,1538083862040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3gn +,,73090676,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73090676&format=geojson,0.1728,,138.0,",nc73090676,",2.05,md,,nc,13.0,"9km W of Lake Wildwood, CA",0.07,65,",nc,",reviewed,1538082542140,"M 2.1 Quarry Blast - 9km W of Lake Wildwood, CA",0,quarry blast,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538091319591,https://earthquake.usgs.gov/earthquakes/eventpage/nc73090676 +,,20265646,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265646&format=geojson,,,,",ak20265646,",1.9,ml,,ak,,"29km SW of Tanaga Volcano, Alaska",0.45,56,",ak,",reviewed,1538082025653,"M 1.9 - 29km SW of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538767642269,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265646 +,,00659063,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659063&format=geojson,0.136,,204.78,",nn00659063,",0.3,ml,,nn,8.0,"39km SSE of Goldfield, Nevada",0.1574,1,",nn,",reviewed,1538081819888,"M 0.3 - 39km SSE of Goldfield, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538417416477,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659063 +,,37372034,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37372034&format=geojson,0.01733,,137.0,",ci37372034,",0.38,ml,,ci,16.0,"9km NE of Aguanga, CA",0.09,2,",ci,",reviewed,1538081803590,"M 0.4 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538084654712,https://earthquake.usgs.gov/earthquakes/eventpage/ci37372034 +,,70805064,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70805064&format=geojson,0.02492,,189.0,",av70805064,",-1.02,ml,,av,4.0,"42km ENE of Adak, Alaska",0.07,0,",av,",reviewed,1538081606180,"M -1.0 - 42km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538162744500,https://earthquake.usgs.gov/earthquakes/eventpage/av70805064 +,,00658466,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658466&format=geojson,0.622,,203.21,",nn00658466,",0.5,ml,,nn,10.0,"24km SSE of Warm Springs, Nevada",0.1199,4,",nn,",reviewed,1538081576632,"M 0.5 - 24km SSE of Warm Springs, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538100352802,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658466 +,,20265645,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265645&format=geojson,,,,",ak20265645,",1.5,ml,,ak,,"131km NW of Arctic Village, Alaska",0.41,35,",ak,",reviewed,1538081562610,"M 1.5 - 131km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767641754,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265645 +,,20265643,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265643&format=geojson,,,,",ak20265643,",1.8,ml,,ak,,"116km NW of Arctic Village, Alaska",0.37,50,",ak,",reviewed,1538081314356,"M 1.8 - 116km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767641193,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265643 +,,61423587,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61423587&format=geojson,0.1663,,286.0,",uw61423587,",1.26,ml,,uw,14.0,"15km SW of Morton, Washington",0.13,24,",uw,",reviewed,1538081207160,"M 1.3 Explosion - 15km SW of Morton, Washington",0,explosion,",geoserve,origin,phase-data,",-480.0,1538163806990,https://earthquake.usgs.gov/earthquakes/eventpage/uw61423587 +,,20271749,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271749&format=geojson,,,,",ak20271749,",1.6,ml,,ak,,"78km SSW of Kaktovik, Alaska",0.59,39,",ak,",reviewed,1538081199372,"M 1.6 - 78km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767640681,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271749 +,,00659052,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659052&format=geojson,0.134,,208.65,",nn00659052,",0.0,ml,,nn,7.0,"39km SSE of Goldfield, Nevada",0.1111,0,",nn,",reviewed,1538080930487,"M 0.0 - 39km SSE of Goldfield, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538416677189,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659052 +,,73090671,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73090671&format=geojson,0.2172,,258.0,",nc73090671,",2.36,md,,nc,27.0,"28km WNW of Petrolia, CA",0.2,86,",nc,",reviewed,1538080806160,"M 2.4 - 28km WNW of Petrolia, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538115542390,https://earthquake.usgs.gov/earthquakes/eventpage/nc73090671 +,,20265639,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265639&format=geojson,,,,",ak20265639,",3.0,ml,,ak,,"276km SE of Kodiak, Alaska",0.61,138,",ak,",reviewed,1538080799161,"M 3.0 - 276km SE of Kodiak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538767640069,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265639 +,,37372010,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37372010&format=geojson,0.02119,,98.0,",ci37372010,",1.08,ml,,ci,23.0,"2km ESE of Lytle Creek, CA",0.14,18,",ci,",reviewed,1538080679840,"M 1.1 - 2km ESE of Lytle Creek, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538084214741,https://earthquake.usgs.gov/earthquakes/eventpage/ci37372010 +,,73090666,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73090666&format=geojson,0.1358,,107.0,",nc73090666,",1.82,md,,nc,14.0,"37km NNW of Alder Springs, CA",0.15,51,",nc,",reviewed,1538080627960,"M 1.8 - 37km NNW of Alder Springs, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538114644309,https://earthquake.usgs.gov/earthquakes/eventpage/nc73090666 +,,20265635,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265635&format=geojson,,,,",ak20265635,",2.7,ml,,ak,,"79km S of Kaktovik, Alaska",0.6,112,",ak,",reviewed,1538080468256,"M 2.7 - 79km S of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767639427,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265635 +,2.0,61423582,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61423582&format=geojson,0.4115,1.0,166.0,",uw61423582,",1.74,ml,,uw,9.0,"10km NE of Dallas, Oregon",0.76,47,",uw,",reviewed,1538080374350,"M 1.7 Explosion - 10km NE of Dallas, Oregon",0,explosion,",dyfi,geoserve,origin,phase-data,",-480.0,1538157698467,https://earthquake.usgs.gov/earthquakes/eventpage/uw61423582 +,,73090661,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73090661&format=geojson,0.1018,,61.0,",nc73090661,",1.61,md,,nc,17.0,"23km NNE of Redway, CA",0.14,40,",nc,",reviewed,1538080366480,"M 1.6 - 23km NNE of Redway, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538099282618,https://earthquake.usgs.gov/earthquakes/eventpage/nc73090661 +,,60298142,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60298142&format=geojson,0.1865,,141.0,",uu60298142,",1.63,md,,uu,6.0,"13km SSE of East Carbon City, Utah",0.28,41,",uu,",reviewed,1538080044880,"M 1.6 - 13km SSE of East Carbon City, Utah",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538081390350,https://earthquake.usgs.gov/earthquakes/eventpage/uu60298142 +,,00659051,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659051&format=geojson,0.135,,227.73,",nn00659051,",-0.1,ml,,nn,7.0,"39km SSE of Goldfield, Nevada",0.1691,0,",nn,",reviewed,1538079977895,"M -0.1 - 39km SSE of Goldfield, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538416300794,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659051 +,,37372002,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37372002&format=geojson,0.01847,,174.0,",ci37372002,",0.36,ml,,ci,16.0,"9km NE of Aguanga, CA",0.08,2,",ci,",reviewed,1538079902340,"M 0.4 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538083836462,https://earthquake.usgs.gov/earthquakes/eventpage/ci37372002 +,,37371994,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37371994&format=geojson,0.007519,,65.0,",ci37371994,",0.37,ml,,ci,22.0,"10km NE of Aguanga, CA",0.14,2,",ci,",reviewed,1538079596830,"M 0.4 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538082852516,https://earthquake.usgs.gov/earthquakes/eventpage/ci37371994 +,,37371978,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37371978&format=geojson,0.02354,,28.0,",ci37371978,",1.96,ml,,ci,70.0,"8km NE of Aguanga, CA",0.18,59,",ci,",reviewed,1538079388820,"M 2.0 - 8km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538082589390,https://earthquake.usgs.gov/earthquakes/eventpage/ci37371978 +,,00659050,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659050&format=geojson,0.122,,124.21,",nn00659050,",1.0,ml,,nn,11.0,"32km SE of Bridgeport, California",0.1122,15,",nn,",reviewed,1538078955197,"M 1.0 - 32km SE of Bridgeport, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538415377873,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659050 +,,20265628,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265628&format=geojson,,,,",ak20265628,",1.6,ml,,ak,,"127km NNW of Arctic Village, Alaska",0.64,39,",ak,",reviewed,1538078593841,"M 1.6 - 127km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767638876,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265628 +,,20265627,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265627&format=geojson,,,,",ak20265627,",1.7,ml,,ak,,"89km WNW of Skagway, Alaska",0.32,44,",ak,",reviewed,1538078588574,"M 1.7 - 89km WNW of Skagway, Alaska",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538767638342,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265627 +,2.7,73090651,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73090651&format=geojson,0.03521,2.0,37.0,",nc73090651,",2.46,md,,nc,69.0,"2km N of Pinnacles, CA",0.08,94,",nc,",reviewed,1538078469770,"M 2.5 - 2km N of Pinnacles, CA",0,earthquake,",dyfi,focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538113023146,https://earthquake.usgs.gov/earthquakes/eventpage/nc73090651 +,,37371954,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37371954&format=geojson,0.03487,,68.0,",ci37371954,",0.82,ml,,ci,34.0,"6km SSW of Idyllwild, CA",0.11,10,",ci,",reviewed,1538078137560,"M 0.8 - 6km SSW of Idyllwild, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538079135470,https://earthquake.usgs.gov/earthquakes/eventpage/ci37371954 +,,20265625,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265625&format=geojson,,,,",ak20265625,",1.1,ml,,ak,,"102km WNW of Talkeetna, Alaska",0.7,19,",ak,",reviewed,1538078011145,"M 1.1 - 102km WNW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767637800,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265625 +,,20265622,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265622&format=geojson,,,,",ak20265622,",1.8,ml,,ak,,"45km SSE of Tanaga Volcano, Alaska",0.23,50,",ak,",reviewed,1538077837256,"M 1.8 - 45km SSE of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538767637257,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265622 +,,20265624,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265624&format=geojson,,,,",ak20265624,",1.7,ml,,ak,,"58km WSW of Anchor Point, Alaska",0.41,44,",ak,",reviewed,1538077547901,"M 1.7 - 58km WSW of Anchor Point, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538767636744,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265624 +,,20265896,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265896&format=geojson,,,,",ak20265896,",1.8,ml,,ak,,"28km SW of Tanaga Volcano, Alaska",0.48,50,",ak,",reviewed,1538077275470,"M 1.8 - 28km SW of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538767636225,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265896 +,2.0,2018270015,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018270015&format=geojson,0.1948,1.0,131.0,",pr2018270015,",2.11,md,,pr,5.0,"2km E of San Sebastian, Puerto Rico",0.05,69,",pr,",reviewed,1538077275150,"M 2.1 - 2km E of San Sebastian, Puerto Rico",0,earthquake,",dyfi,geoserve,origin,phase-data,",-240.0,1538093715232,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018270015 +,,20265615,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265615&format=geojson,,,,",ak20265615,",1.8,ml,,ak,,"111km NNW of Arctic Village, Alaska",0.63,50,",ak,",reviewed,1538077261052,"M 1.8 - 111km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767635677,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265615 +,,20265612,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265612&format=geojson,,,,",ak20265612,",1.4,ml,,ak,,"111km NNW of Arctic Village, Alaska",0.47,30,",ak,",reviewed,1538077202635,"M 1.4 - 111km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767635157,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265612 +,,20265610,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265610&format=geojson,,,,",ak20265610,",1.6,ml,,ak,,"145km NNW of Unalakleet, Alaska",0.44,39,",ak,",reviewed,1538076790156,"M 1.6 - 145km NNW of Unalakleet, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767634648,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265610 +,,00658462,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658462&format=geojson,0.008,,57.06,",nn00658462,",-0.2,ml,,nn,24.0,"57km ENE of Beatty, Nevada",0.1408,0,",nn,",reviewed,1538076584704,"M -0.2 - 57km ENE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538100350983,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658462 +,,20271737,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271737&format=geojson,,,,",ak20271737,",1.0,ml,,ak,,"109km W of Cantwell, Alaska",0.28,15,",ak,",reviewed,1538076477228,"M 1.0 - 109km W of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767634145,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271737 +,,20265608,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265608&format=geojson,,,,",ak20265608,",1.4,ml,,ak,,"112km NNW of Arctic Village, Alaska",0.65,30,",ak,",reviewed,1538076433954,"M 1.4 - 112km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767633596,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265608 +,,73090641,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73090641&format=geojson,0.009607,,90.0,",nc73090641,",1.18,md,,nc,15.0,"2km WNW of Cobb, CA",0.05,21,",nc,",automatic,1538076229380,"M 1.2 - 2km WNW of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538093042823,https://earthquake.usgs.gov/earthquakes/eventpage/nc73090641 +,,80311499,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80311499&format=geojson,0.085,,101.0,",mb80311499,",1.86,ml,,mb,20.0,"10km ESE of Bozeman, Montana",0.18,53,",mb,",reviewed,1538076044390,"M 1.9 - 10km ESE of Bozeman, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538077050460,https://earthquake.usgs.gov/earthquakes/eventpage/mb80311499 +,,20265582,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265582&format=geojson,,,,",ak20265582,",1.9,ml,,ak,,"24km WSW of Amatignak Island, Alaska",0.31,56,",ak,",reviewed,1538075329024,"M 1.9 - 24km WSW of Amatignak Island, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538767633107,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265582 +,,80311484,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80311484&format=geojson,0.192,,105.0,",mb80311484,",1.52,ml,,mb,10.0,"4km ENE of Butte, Montana",0.13,36,",mb,",reviewed,1538074787790,"M 1.5 Quarry Blast - 4km ENE of Butte, Montana",0,quarry blast,",geoserve,origin,phase-data,",-420.0,1538077298150,https://earthquake.usgs.gov/earthquakes/eventpage/mb80311484 +,,2018270014,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018270014&format=geojson,0.1884,,130.0,",pr2018270014,",1.91,md,,pr,4.0,"5km ESE of Adjuntas, Puerto Rico",0.1,56,",pr,",reviewed,1538074692370,"M 1.9 - 5km ESE of Adjuntas, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538077852409,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018270014 +,,20265580,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265580&format=geojson,,,,",ak20265580,",1.6,ml,,ak,,"24km SW of Tanaga Volcano, Alaska",0.53,39,",ak,",reviewed,1538074034649,"M 1.6 - 24km SW of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538767632582,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265580 +,,20265576,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265576&format=geojson,,,,",ak20265576,",1.8,ml,,ak,,"84km SW of Kaktovik, Alaska",0.79,50,",ak,",reviewed,1538073648867,"M 1.8 - 84km SW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767632038,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265576 +,,61423547,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61423547&format=geojson,0.02147,,93.0,",uw61423547,",0.48,ml,,uw,7.0,"28km NNW of Packwood, Washington",0.07,4,",uw,",reviewed,1538073449040,"M 0.5 - 28km NNW of Packwood, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538084645980,https://earthquake.usgs.gov/earthquakes/eventpage/uw61423547 +,,20265574,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265574&format=geojson,,,,",ak20265574,",1.7,ml,,ak,,"74km SSW of Kaktovik, Alaska",0.46,44,",ak,",reviewed,1538073335786,"M 1.7 - 74km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767631521,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265574 +,,61788026,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61788026&format=geojson,0.02682,,305.0,",av61788026,",0.51,ml,,av,5.0,"43km WSW of Tanaga Volcano, Alaska",0.21,4,",av,",reviewed,1538073020100,"M 0.5 - 43km WSW of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538162458470,https://earthquake.usgs.gov/earthquakes/eventpage/av61788026 +,,73090631,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73090631&format=geojson,0.1184,,177.0,",nc73090631,",1.12,md,,nc,23.0,"18km SW of Toms Place, CA",0.05,19,",nc,",reviewed,1538072681590,"M 1.1 - 18km SW of Toms Place, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538091302655,https://earthquake.usgs.gov/earthquakes/eventpage/nc73090631 +,,73090626,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73090626&format=geojson,0.02317,,52.0,",nc73090626,",1.37,md,,nc,17.0,"2km E of Aromas, CA",0.12,29,",nc,",reviewed,1538072176520,"M 1.4 Quarry Blast - 2km E of Aromas, CA",0,quarry blast,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538097029378,https://earthquake.usgs.gov/earthquakes/eventpage/nc73090626 +,,20271731,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271731&format=geojson,,,,",ak20271731,",1.7,ml,,ak,,"78km SSW of Kaktovik, Alaska",0.46,44,",ak,",reviewed,1538072010754,"M 1.7 - 78km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767631014,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271731 +,,37371778,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37371778&format=geojson,0.09934,,201.0,",ci37371778,",1.35,ml,,ci,7.0,"47km NNW of Los Algodones, B.C., MX",0.24,28,",ci,",reviewed,1538071642180,"M 1.4 Quarry Blast - 47km NNW of Los Algodones, B.C., MX",0,quarry blast,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538073000113,https://earthquake.usgs.gov/earthquakes/eventpage/ci37371778 +,,20271730,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271730&format=geojson,,,,",ak20271730,",1.4,ml,,ak,,"29km SW of Tanaga Volcano, Alaska",0.36,30,",ak,",reviewed,1538071559799,"M 1.4 - 29km SW of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538767630537,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271730 +,,20271729,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271729&format=geojson,,,,",ak20271729,",1.6,ml,,ak,,"77km SSW of Kaktovik, Alaska",0.48,39,",ak,",reviewed,1538071467167,"M 1.6 - 77km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767630027,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271729 +,,80311474,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80311474&format=geojson,0.329,,143.0,",mb80311474,",1.42,ml,,mb,7.0,"6km W of Townsend, Montana",0.22,31,",mb,",reviewed,1538071435590,"M 1.4 Quarry Blast - 6km W of Townsend, Montana",0,quarry blast,",geoserve,origin,phase-data,",-420.0,1538076501430,https://earthquake.usgs.gov/earthquakes/eventpage/mb80311474 +,,20265570,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265570&format=geojson,,,,",ak20265570,",1.1,ml,,ak,,"81km NW of Arctic Village, Alaska",0.6,19,",ak,",reviewed,1538071270822,"M 1.1 - 81km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767629519,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265570 +,,20265383,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265383&format=geojson,,,,",ak20265383,",2.5,ml,,ak,,"56km WNW of Skagway, Alaska",0.77,96,",ak,",reviewed,1538070892748,"M 2.5 - 56km WNW of Skagway, Alaska",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538767628931,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265383 +,,20265382,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265382&format=geojson,,,,",ak20265382,",1.7,ml,,ak,,"28km SW of Tanaga Volcano, Alaska",0.4,44,",ak,",reviewed,1538070892141,"M 1.7 - 28km SW of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538767628438,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265382 +,,73090616,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73090616&format=geojson,0.01281,,182.0,",nc73090616,",0.88,md,,nc,8.0,"4km SE of The Geysers, CA",0.03,12,",nc,",automatic,1538070699300,"M 0.9 - 4km SE of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538070864368,https://earthquake.usgs.gov/earthquakes/eventpage/nc73090616 +,,37371714,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37371714&format=geojson,0.1003,,80.0,",ci37371714,",1.11,ml,,ci,26.0,"13km NE of Ojai, CA",0.24,19,",ci,",reviewed,1538070663290,"M 1.1 - 13km NE of Ojai, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538072081332,https://earthquake.usgs.gov/earthquakes/eventpage/ci37371714 +,,73090611,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73090611&format=geojson,0.0104,,65.0,",nc73090611,",1.67,md,,nc,40.0,"4km SW of Anderson Springs, CA",0.08,43,",nc,",reviewed,1538070580690,"M 1.7 - 4km SW of Anderson Springs, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538098803404,https://earthquake.usgs.gov/earthquakes/eventpage/nc73090611 +,,70805059,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70805059&format=geojson,0.01896,,132.0,",av70805059,",-0.68,ml,,av,5.0,"40km ENE of Adak, Alaska",0.21,0,",av,",reviewed,1538070542100,"M -0.7 - 40km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538162354640,https://earthquake.usgs.gov/earthquakes/eventpage/av70805059 +,,20265378,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265378&format=geojson,,,,",ak20265378,",1.7,ml,,ak,,"29km WSW of Tanaga Volcano, Alaska",0.31,44,",ak,",reviewed,1538069805464,"M 1.7 - 29km WSW of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538767627958,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265378 +,,80311469,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80311469&format=geojson,0.104,,133.0,",mb80311469,",2.01,ml,,mb,14.0,"9km WNW of Lincoln, Montana",0.15,62,",mb,",reviewed,1538069704180,"M 2.0 - 9km WNW of Lincoln, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538074642490,https://earthquake.usgs.gov/earthquakes/eventpage/mb80311469 +,2.0,1000h3d9,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3d9&format=geojson,0.742,1.0,140.0,",us1000h3d9,",4.4,mb,,us,,"7km SSW of Puerto Madero, Mexico",0.77,298,",us,",reviewed,1538069533920,"M 4.4 - 7km SSW of Puerto Madero, Mexico",0,earthquake,",dyfi,geoserve,origin,phase-data,",-360.0,1538077718389,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3d9 +,,2018270013,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018270013&format=geojson,0.215,,315.0,",pr2018270013,",2.32,md,,pr,5.0,"15km WSW of Puerto Real, Puerto Rico",0.18,83,",pr,",reviewed,1538069476070,"M 2.3 - 15km WSW of Puerto Real, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538076841882,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018270013 +,,37371682,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37371682&format=geojson,0.1108,,42.0,",ci37371682,",1.57,ml,,ci,27.0,"14km NE of Ojai, CA",0.19,38,",ci,",reviewed,1538069469330,"M 1.6 - 14km NE of Ojai, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538072297809,https://earthquake.usgs.gov/earthquakes/eventpage/ci37371682 +,,70616282,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70616282&format=geojson,0.02996,,163.0,",hv70616282,",1.72,md,,hv,34.0,"5km SE of Pahala, Hawaii",0.09,46,",hv,",reviewed,1538069305160,"M 1.7 - 5km SE of Pahala, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538083143590,https://earthquake.usgs.gov/earthquakes/eventpage/hv70616282 +,,73090601,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73090601&format=geojson,0.03981,,73.0,",nc73090601,",1.22,md,,nc,18.0,"15km E of Seven Trees, CA",0.03,23,",nc,",reviewed,1538069223690,"M 1.2 - 15km E of Seven Trees, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538106902532,https://earthquake.usgs.gov/earthquakes/eventpage/nc73090601 +,,73090606,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73090606&format=geojson,0.1804,,151.0,",nc73090606,",1.15,md,,nc,7.0,"38km NE of Covelo, CA",0.1,20,",nc,",reviewed,1538069169150,"M 1.2 - 38km NE of Covelo, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538100722766,https://earthquake.usgs.gov/earthquakes/eventpage/nc73090606 +,2.7,37371666,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37371666&format=geojson,0.006607,1.0,73.0,",ci37371666,",0.41,ml,,ci,22.0,"10km NE of Aguanga, CA",0.11,3,",ci,",reviewed,1538069090550,"M 0.4 - 10km NE of Aguanga, CA",0,earthquake,",dyfi,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538321522560,https://earthquake.usgs.gov/earthquakes/eventpage/ci37371666 +,,20265375,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265375&format=geojson,,,,",ak20265375,",1.9,ml,,ak,,"28km SW of Tanaga Volcano, Alaska",0.53,56,",ak,",reviewed,1538068845640,"M 1.9 - 28km SW of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538767627436,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265375 +,,20265367,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265367&format=geojson,,,,",ak20265367,",2.9,ml,,ak,,"27km SW of Tanaga Volcano, Alaska",0.6,129,",ak,",reviewed,1538068475969,"M 2.9 - 27km SW of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538767626894,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265367 +,,73090591,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73090591&format=geojson,0.02292,,103.0,",nc73090591,",1.3,md,,nc,17.0,"3km NNW of Pinnacles, CA",0.07,26,",nc,",reviewed,1538068460780,"M 1.3 - 3km NNW of Pinnacles, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538105344101,https://earthquake.usgs.gov/earthquakes/eventpage/nc73090591 +,,20265369,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265369&format=geojson,,,,",ak20265369,",0.9,ml,,ak,,"156km NNE of Cape Yakataga, Alaska",0.43,12,",ak,",reviewed,1538068448746,"M 0.9 - 156km NNE of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538767626324,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265369 +,,20265366,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265366&format=geojson,,,,",ak20265366,",2.9,ml,,ak,,"97km WSW of Amatignak Island, Alaska",0.53,129,",ak,",reviewed,1538068381861,"M 2.9 - 97km WSW of Amatignak Island, Alaska",0,earthquake,",geoserve,origin,phase-data,",720.0,1538767625802,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265366 +,,20265365,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265365&format=geojson,,,,",ak20265365,",2.0,ml,,ak,,"57km W of Larsen Bay, Alaska",0.62,62,",ak,",reviewed,1538068346399,"M 2.0 - 57km W of Larsen Bay, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767625289,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265365 +,,73090586,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73090586&format=geojson,0.02308,,97.0,",nc73090586,",1.13,md,,nc,19.0,"3km NNW of Pinnacles, CA",0.07,20,",nc,",reviewed,1538068276050,"M 1.1 - 3km NNW of Pinnacles, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538112123067,https://earthquake.usgs.gov/earthquakes/eventpage/nc73090586 +,,20265363,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265363&format=geojson,,,,",ak20265363,",2.8,ml,,ak,,"113km SSE of False Pass, Alaska",0.61,121,",ak,",reviewed,1538068194742,"M 2.8 - 113km SSE of False Pass, Alaska",0,earthquake,",geoserve,origin,phase-data,",-660.0,1538767624764,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265363 +,,20271718,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271718&format=geojson,,,,",ak20271718,",1.5,ml,,ak,,"80km SSW of Kaktovik, Alaska",0.38,35,",ak,",reviewed,1538067813603,"M 1.5 - 80km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767624263,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271718 +,,20265362,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265362&format=geojson,,,,",ak20265362,",1.2,ml,,ak,,"70km NE of Whittier, Alaska",0.37,22,",ak,",reviewed,1538067797176,"M 1.2 Ice Quake - 70km NE of Whittier, Alaska",0,ice quake,",geoserve,origin,phase-data,",-540.0,1538767623755,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265362 +,,20271716,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271716&format=geojson,,,,",ak20271716,",1.4,ml,,ak,,"83km S of Kaktovik, Alaska",0.55,30,",ak,",reviewed,1538067598147,"M 1.4 - 83km S of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767623262,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271716 +,,37371618,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37371618&format=geojson,0.07532,,151.0,",ci37371618,",0.02,ml,,ci,12.0,"10km NE of Aguanga, CA",0.05,0,",ci,",reviewed,1538067117790,"M 0.0 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538069937696,https://earthquake.usgs.gov/earthquakes/eventpage/ci37371618 +,,20271715,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271715&format=geojson,,,,",ak20271715,",1.6,ml,,ak,,"80km SSW of Kaktovik, Alaska",0.72,39,",ak,",reviewed,1538067080952,"M 1.6 - 80km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767622715,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271715 +,,37371610,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37371610&format=geojson,0.01053,,102.0,",ci37371610,",1.02,ml,,ci,41.0,"14km N of Cabazon, CA",0.15,16,",ci,",reviewed,1538066948180,"M 1.0 - 14km N of Cabazon, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538070411898,https://earthquake.usgs.gov/earthquakes/eventpage/ci37371610 +,,37410925,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37410925&format=geojson,0.1031,,78.0,",ci37410925,",0.52,ml,,ci,18.0,"19km N of Borrego Springs, CA",0.13,4,",ci,",reviewed,1538066939250,"M 0.5 - 19km N of Borrego Springs, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538070779784,https://earthquake.usgs.gov/earthquakes/eventpage/ci37410925 +,,1000h3bt,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3bt&format=geojson,0.474,,44.0,",us1000h3bt,",4.3,mb,,us,,"129km ESE of Iquique, Chile",1.22,284,",us,",reviewed,1538066879970,"M 4.3 - 129km ESE of Iquique, Chile",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538150367040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3bt +,,80311464,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80311464&format=geojson,0.021,,189.0,",mb80311464,",1.11,ml,,mb,7.0,"27km NW of Lima, Montana",0.04,19,",mb,",reviewed,1538066645960,"M 1.1 - 27km NW of Lima, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538068516320,https://earthquake.usgs.gov/earthquakes/eventpage/mb80311464 +,,00659044,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659044&format=geojson,0.126,,161.08,",nn00659044,",1.0,ml,,nn,13.0,"27km WSW of Truckee, California",0.1569,15,",nn,",reviewed,1538066541994,"M 1.0 - 27km WSW of Truckee, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538414267345,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659044 +,,37371602,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37371602&format=geojson,0.01751,,34.0,",ci37371602,",0.9,ml,,ci,41.0,"3km ESE of Lake Henshaw, CA",0.18,12,",ci,",reviewed,1538066518420,"M 0.9 - 3km ESE of Lake Henshaw, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538069968114,https://earthquake.usgs.gov/earthquakes/eventpage/ci37371602 +,,73090566,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73090566&format=geojson,0.1039,,103.0,",nc73090566,",1.49,md,,nc,25.0,"6km E of Atascadero, CA",0.1,34,",nc,",reviewed,1538066510830,"M 1.5 Quarry Blast - 6km E of Atascadero, CA",0,quarry blast,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538092251296,https://earthquake.usgs.gov/earthquakes/eventpage/nc73090566 +,,1000h3ds,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3ds&format=geojson,2.825,,188.0,",ak20265357,us1000h3ds,",3.6,ml,,us,,Gulf of Alaska,0.82,199,",ak,us,",reviewed,1538066284040,M 3.6 - Gulf of Alaska,0,earthquake,",geoserve,origin,phase-data,",-600.0,1538767622035,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3ds +,2.0,1000h3h0,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3h0&format=geojson,0.685,1.0,98.0,",us1000h3h0,",3.3,ml,,us,,"9km SSE of Villa Vasquez, Dominican Republic",0.59,168,",us,",reviewed,1538066104600,"M 3.3 - 9km SSE of Villa Vasquez, Dominican Republic",0,earthquake,",dyfi,geoserve,origin,phase-data,",-240.0,1538147963363,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3h0 +,,20265355,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265355&format=geojson,,,,",ak20265355,",1.3,ml,,ak,,"114km NNW of Arctic Village, Alaska",0.55,26,",ak,",reviewed,1538066099259,"M 1.3 - 114km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767621509,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265355 +,,60298047,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60298047&format=geojson,0.1187,,131.0,",uu60298047,",0.85,md,,uu,11.0,"11km E of Providence, Utah",0.08,11,",uu,",reviewed,1538065669740,"M 0.9 - 11km E of Providence, Utah",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538081827590,https://earthquake.usgs.gov/earthquakes/eventpage/uu60298047 +,,73090561,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73090561&format=geojson,0.05376,,252.0,",nc73090561,",1.34,md,,nc,13.0,"21km SSW of New Idria, CA",0.04,28,",nc,",reviewed,1538065571560,"M 1.3 - 21km SSW of New Idria, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538080143449,https://earthquake.usgs.gov/earthquakes/eventpage/nc73090561 +,,20265348,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265348&format=geojson,,,,",ak20265348,",2.1,ml,,ak,,"63km NNE of Yakutat, Alaska",0.53,68,",ak,",reviewed,1538065486450,"M 2.1 - 63km NNE of Yakutat, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767620885,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265348 +,,1000h3bk,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3bk&format=geojson,2.511,,103.0,",us1000h3bk,",4.9,mb,,us,,"194km W of Ile Hunter, New Caledonia",1.03,369,",us,",reviewed,1538065400600,"M 4.9 - 194km W of Ile Hunter, New Caledonia",0,earthquake,",geoserve,origin,phase-data,",660.0,1538149208040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3bk +,,20265343,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265343&format=geojson,,,,",ak20265343,",2.2,ml,,ak,,"103km S of Seward, Alaska",0.68,74,",ak,",reviewed,1538065067314,"M 2.2 - 103km S of Seward, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538767620221,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265343 +,3.1,37371570,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37371570&format=geojson,0.04176,1.0,41.0,",ci37371570,",1.33,ml,,ci,54.0,"5km N of Lake Elsinore, CA",0.2,28,",ci,",reviewed,1538064713740,"M 1.3 Quarry Blast - 5km N of Lake Elsinore, CA",0,quarry blast,",dyfi,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538069654350,https://earthquake.usgs.gov/earthquakes/eventpage/ci37371570 +,,20265344,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265344&format=geojson,,,,",ak20265344,",1.2,ml,,ak,,"129km NW of Arctic Village, Alaska",0.5,22,",ak,",reviewed,1538064664968,"M 1.2 - 129km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767619684,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265344 +,,37371554,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37371554&format=geojson,0.08788,,69.0,",ci37371554,",0.65,ml,,ci,27.0,"4km NNW of Valle Vista, CA",0.16,6,",ci,",reviewed,1538064484970,"M 0.7 - 4km NNW of Valle Vista, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538069140501,https://earthquake.usgs.gov/earthquakes/eventpage/ci37371554 +,,37371546,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37371546&format=geojson,0.06251,,123.0,",ci37371546,",0.9,ml,,ci,16.0,"23km N of Yucca Valley, CA",0.11,12,",ci,",reviewed,1538064095300,"M 0.9 - 23km N of Yucca Valley, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538068272611,https://earthquake.usgs.gov/earthquakes/eventpage/ci37371546 +,,20265323,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265323&format=geojson,,,,",ak20265323,",2.8,ml,,ak,,"92km NW of Sand Point, Alaska",0.37,121,",ak,",reviewed,1538063982397,"M 2.8 - 92km NW of Sand Point, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767619154,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265323 +,,80311459,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80311459&format=geojson,0.098,,217.0,",mb80311459,",0.42,ml,,mb,4.0,"5km ENE of Driggs, Idaho",0.08,3,",mb,",reviewed,1538063773210,"M 0.4 - 5km ENE of Driggs, Idaho",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538068764320,https://earthquake.usgs.gov/earthquakes/eventpage/mb80311459 +,,1000h3a7,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3a7&format=geojson,3.103,,13.0,",us1000h3a7,",5.2,mww,,us,,"91km WNW of Panguna, Papua New Guinea",0.73,416,",us,",reviewed,1538063612790,"M 5.2 - 91km WNW of Panguna, Papua New Guinea",1,earthquake,",geoserve,moment-tensor,origin,phase-data,",660.0,1538145611040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3a7 +,,37371530,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37371530&format=geojson,0.05477,,46.0,",ci37371530,",0.92,ml,,ci,35.0,"6km WSW of Palomar Observatory, CA",0.21,13,",ci,",reviewed,1538063498770,"M 0.9 - 6km WSW of Palomar Observatory, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538067793869,https://earthquake.usgs.gov/earthquakes/eventpage/ci37371530 +,,37371522,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37371522&format=geojson,0.05674,,46.0,",ci37371522,",0.61,ml,,ci,30.0,"6km WSW of Palomar Observatory, CA",0.15,6,",ci,",reviewed,1538063452510,"M 0.6 - 6km WSW of Palomar Observatory, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538068209900,https://earthquake.usgs.gov/earthquakes/eventpage/ci37371522 +,,20271708,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271708&format=geojson,,,,",ak20271708,",1.4,ml,,ak,,"94km NNW of Arctic Village, Alaska",0.31,30,",ak,",reviewed,1538063282990,"M 1.4 - 94km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767618646,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271708 +,,20265320,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265320&format=geojson,,,,",ak20265320,",2.0,ml,,ak,,"29km SW of Tanaga Volcano, Alaska",0.6,62,",ak,",reviewed,1538062788915,"M 2.0 - 29km SW of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538767618133,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265320 +,,73090546,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73090546&format=geojson,0.0302,,160.0,",nc73090546,",0.27,md,,nc,9.0,"10km ENE of Mammoth Lakes, CA",0.05,1,",nc,",reviewed,1538062456660,"M 0.3 - 10km ENE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538069505164,https://earthquake.usgs.gov/earthquakes/eventpage/nc73090546 +,,00659041,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659041&format=geojson,0.171,,166.58,",nn00659041,",0.0,ml,,nn,4.0,"62km WNW of Beatty, Nevada",0.085,0,",nn,",reviewed,1538062298567,"M 0.0 - 62km WNW of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538412782133,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659041 +,,73090536,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73090536&format=geojson,0.03187,,208.0,",nc73090536,",0.54,md,,nc,13.0,"11km ENE of Mammoth Lakes, CA",0.08,4,",nc,",reviewed,1538062273610,"M 0.5 - 11km ENE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538070183487,https://earthquake.usgs.gov/earthquakes/eventpage/nc73090536 +,,37371490,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37371490&format=geojson,0.005614,,59.0,",ci37371490,",0.41,ml,,ci,16.0,"10km NE of Aguanga, CA",0.12,3,",ci,",reviewed,1538062045020,"M 0.4 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538067811402,https://earthquake.usgs.gov/earthquakes/eventpage/ci37371490 +,,20265319,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265319&format=geojson,,,,",ak20265319,",2.2,ml,,ak,,"73km E of Akutan, Alaska",0.45,74,",ak,",reviewed,1538062021187,"M 2.2 - 73km E of Akutan, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767617591,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265319 +,,37371482,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37371482&format=geojson,0.07561,,217.0,",ci37371482,",0.44,ml,,ci,13.0,"11km ENE of Aguanga, CA",0.07,3,",ci,",reviewed,1538061766980,"M 0.4 - 11km ENE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538069752537,https://earthquake.usgs.gov/earthquakes/eventpage/ci37371482 +,,20265314,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265314&format=geojson,,,,",ak20265314,",3.3,ml,,ak,,"267km SE of Kodiak, Alaska",0.78,168,",ak,",reviewed,1538061544785,"M 3.3 - 267km SE of Kodiak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538767616932,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265314 +,,1000h39i,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h39i&format=geojson,4.472,,102.0,",us1000h39i,",4.2,mb,,us,,"18km SW of Great Swan Island, Honduras",0.74,271,",us,",reviewed,1538061280620,"M 4.2 - 18km SW of Great Swan Island, Honduras",0,earthquake,",geoserve,origin,phase-data,",-360.0,1538143961040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h39i +,,20271704,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271704&format=geojson,,,,",ak20271704,",1.6,ml,,ak,,"41km SW of Adak, Alaska",0.42,39,",ak,",reviewed,1538061093281,"M 1.6 - 41km SW of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538767616432,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271704 +,,20265305,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265305&format=geojson,,,,",ak20265305,us1000h39h,",3.2,ml,,ak,,"128km NNW of Arctic Village, Alaska",0.66,158,",ak,us,",reviewed,1538060832683,"M 3.2 - 128km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539040776906,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265305 +,,2018270012,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018270012&format=geojson,0.1789,,189.0,",pr2018270012,",2.39,md,,pr,10.0,"10km NW of Puerto Real, Puerto Rico",0.22,88,",pr,",reviewed,1538060546150,"M 2.4 - 10km NW of Puerto Real, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538075752604,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018270012 +,,61423482,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61423482&format=geojson,0.02231,,53.0,",uw61423482,",2.02,ml,,uw,25.0,"5km SSE of Poulsbo, Washington",0.22,63,",uw,",reviewed,1538060196260,"M 2.0 - 5km SSE of Poulsbo, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538069584200,https://earthquake.usgs.gov/earthquakes/eventpage/uw61423482 +,,37410917,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37410917&format=geojson,0.05562,,100.0,",ci37410917,",0.97,ml,,ci,20.0,"7km SSW of Morongo Valley, CA",0.11,14,",ci,",reviewed,1538060079750,"M 1.0 - 7km SSW of Morongo Valley, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538069582888,https://earthquake.usgs.gov/earthquakes/eventpage/ci37410917 +,,37371466,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37371466&format=geojson,0.05898,,96.0,",ci37371466,",1.06,ml,,ci,39.0,"7km SSW of Morongo Valley, CA",0.13,17,",ci,",reviewed,1538060060310,"M 1.1 - 7km SSW of Morongo Valley, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538069255550,https://earthquake.usgs.gov/earthquakes/eventpage/ci37371466 +,,73090526,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73090526&format=geojson,0.02713,,124.0,",nc73090526,",0.91,md,,nc,19.0,"11km ENE of Mammoth Lakes, CA",0.06,13,",nc,",reviewed,1538059977830,"M 0.9 - 11km ENE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538067424126,https://earthquake.usgs.gov/earthquakes/eventpage/nc73090526 +,,37371458,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37371458&format=geojson,0.05766,,65.0,",ci37371458,",0.9,ml,,ci,31.0,"7km SSW of Morongo Valley, CA",0.09,12,",ci,",reviewed,1538059975460,"M 0.9 - 7km SSW of Morongo Valley, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538068776571,https://earthquake.usgs.gov/earthquakes/eventpage/ci37371458 +,,37371450,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37371450&format=geojson,0.0958,,63.0,",ci37371450,",1.47,ml,,ci,51.0,"5km NE of Cabazon, CA",0.21,33,",ci,",reviewed,1538059871440,"M 1.5 - 5km NE of Cabazon, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538067929080,https://earthquake.usgs.gov/earthquakes/eventpage/ci37371450 +,,2018270007,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018270007&format=geojson,1.0642,,272.0,",pr2018270007,",3.34,md,,pr,18.0,"110km NNE of Punta Cana, Dominican Republic",0.32,172,",pr,",reviewed,1538058720450,"M 3.3 - 110km NNE of Punta Cana, Dominican Republic",0,earthquake,",geoserve,origin,phase-data,",-300.0,1538063454326,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018270007 +,,00658425,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658425&format=geojson,0.135,,155.09,",nn00658425,",0.9,ml,,nn,10.0,"29km SW of Hawthorne, Nevada",0.1463,12,",nn,",reviewed,1538058548003,"M 0.9 - 29km SW of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538100343109,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658425 +,,73091071,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73091071&format=geojson,0.01495,,180.0,",nc73091071,",-0.15,md,,nc,5.0,"15km NNE of Mineral, CA",0.03,0,",nc,",reviewed,1538058452440,"M -0.2 - 15km NNE of Mineral, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538156946211,https://earthquake.usgs.gov/earthquakes/eventpage/nc73091071 +,,2018270009,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018270009&format=geojson,0.9435,,293.0,",pr2018270009,",3.2,md,,pr,8.0,"97km NNE of Punta Cana, Dominican Republic",0.22,158,",pr,",reviewed,1538058367220,"M 3.2 - 97km NNE of Punta Cana, Dominican Republic",0,earthquake,",geoserve,origin,phase-data,",-300.0,1538068563174,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018270009 +,,20265304,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265304&format=geojson,,,,",ak20265304,",1.5,ml,,ak,,"95km NNW of Arctic Village, Alaska",0.42,35,",ak,",reviewed,1538058343850,"M 1.5 - 95km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767615142,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265304 +,,37371426,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37371426&format=geojson,0.02115,,98.0,",ci37371426,",0.44,ml,,ci,22.0,"9km NE of Aguanga, CA",0.08,3,",ci,",reviewed,1538058261950,"M 0.4 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538068440066,https://earthquake.usgs.gov/earthquakes/eventpage/ci37371426 +,,37371418,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37371418&format=geojson,0.02407,,28.0,",ci37371418,",1.1,ml,,ci,57.0,"8km NE of Aguanga, CA",0.18,19,",ci,",reviewed,1538058135320,"M 1.1 - 8km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538068780490,https://earthquake.usgs.gov/earthquakes/eventpage/ci37371418 +,,61787866,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61787866&format=geojson,0.06962,,254.0,",av61787866,",0.67,ml,,av,5.0,"94km SE of King Salmon, Alaska",0.16,7,",av,",reviewed,1538057974580,"M 0.7 - 94km SE of King Salmon, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538161219200,https://earthquake.usgs.gov/earthquakes/eventpage/av61787866 +,,20265300,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265300&format=geojson,,,,",ak20265300,",1.7,ml,,ak,,"113km NNW of Arctic Village, Alaska",0.62,44,",ak,",reviewed,1538057634314,"M 1.7 - 113km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767614579,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265300 +,,20265298,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265298&format=geojson,,,,",ak20265298,",1.5,ml,,ak,,"112km NNW of Arctic Village, Alaska",0.62,35,",ak,",reviewed,1538057412534,"M 1.5 - 112km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767614047,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265298 +,,80311439,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80311439&format=geojson,0.094,,112.0,",mb80311439,",1.55,ml,,mb,8.0,"10km SE of Challis, Idaho",0.13,37,",mb,",reviewed,1538057187520,"M 1.6 - 10km SE of Challis, Idaho",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538059585040,https://earthquake.usgs.gov/earthquakes/eventpage/mb80311439 +,,37371402,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37371402&format=geojson,0.08022,,69.0,",ci37371402,",0.34,ml,,ci,18.0,"10km NE of Aguanga, CA",0.22,2,",ci,",reviewed,1538056609830,"M 0.3 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538060137545,https://earthquake.usgs.gov/earthquakes/eventpage/ci37371402 +,,80311434,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80311434&format=geojson,0.126,,102.0,",mb80311434,",1.32,ml,,mb,9.0,"18km ESE of Butte, Montana",0.2,27,",mb,",reviewed,1538056542780,"M 1.3 - 18km ESE of Butte, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538060283220,https://earthquake.usgs.gov/earthquakes/eventpage/mb80311434 +,,73090516,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73090516&format=geojson,0.1916,,192.0,",nc73090516,ci37371394,",2.6,md,,nc,54.0,"12km W of Guadalupe, CA",0.17,104,",nc,ci,",reviewed,1538056217230,"M 2.6 - 12km W of Guadalupe, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538062623062,https://earthquake.usgs.gov/earthquakes/eventpage/nc73090516 +,,20265295,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265295&format=geojson,,,,",ak20265295,",0.9,ml,,ak,,"71km W of Cantwell, Alaska",0.4,12,",ak,",reviewed,1538055968640,"M 0.9 - 71km W of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767613547,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265295 +,,37371386,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37371386&format=geojson,0.02158,,67.0,",ci37371386,",0.8,ml,,ci,31.0,"8km NE of Aguanga, CA",0.18,10,",ci,",reviewed,1538055851590,"M 0.8 - 8km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538060154489,https://earthquake.usgs.gov/earthquakes/eventpage/ci37371386 +,,20265291,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265291&format=geojson,,,,",ak20265291,",1.7,ml,,ak,,"85km W of Willow, Alaska",0.48,44,",ak,",reviewed,1538055773551,"M 1.7 - 85km W of Willow, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767612885,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265291 +,,37371378,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37371378&format=geojson,0.03644,,15.0,",ci37371378,",2.26,ml,,ci,102.0,"8km ENE of Aguanga, CA",0.21,79,",ci,",reviewed,1538055556420,"M 2.3 - 8km ENE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538066608630,https://earthquake.usgs.gov/earthquakes/eventpage/ci37371378 +,,20265289,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265289&format=geojson,,,,",ak20265289,",1.0,ml,,ak,,"91km NW of Cape Yakataga, Alaska",0.64,15,",ak,",reviewed,1538055469663,"M 1.0 - 91km NW of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767612312,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265289 +,,20265287,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265287&format=geojson,,,,",ak20265287,",1.6,ml,,ak,,"75km SSW of Kaktovik, Alaska",0.76,39,",ak,",reviewed,1538055214179,"M 1.6 - 75km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767611811,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265287 +,,00658423,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658423&format=geojson,0.002,,71.53,",nn00658423,",-0.1,ml,,nn,20.0,"58km NNW of Pahrump, Nevada",0.1339,0,",nn,",reviewed,1538055182212,"M -0.1 - 58km NNW of Pahrump, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538100340613,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658423 +,,20265285,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265285&format=geojson,,,,",ak20265285,",1.2,ml,,ak,,"140km WNW of Arctic Village, Alaska",0.52,22,",ak,",reviewed,1538055066111,"M 1.2 - 140km WNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767611274,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265285 +,,20265283,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265283&format=geojson,,,,",ak20265283,",1.6,ml,,ak,,"89km NW of Arctic Village, Alaska",0.51,39,",ak,",reviewed,1538054952347,"M 1.6 - 89km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767610689,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265283 +,,73090501,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73090501&format=geojson,0.0972,,115.0,",nc73090501,",1.34,md,,nc,19.0,"14km NE of San Simeon, CA",0.06,28,",nc,",reviewed,1538054907150,"M 1.3 - 14km NE of San Simeon, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538070602525,https://earthquake.usgs.gov/earthquakes/eventpage/nc73090501 +,,37371346,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37371346&format=geojson,0.0531,,269.0,",ci37371346,",0.82,ml,,ci,8.0,"11km W of Niland, CA",0.18,10,",ci,",reviewed,1538054732860,"M 0.8 - 11km W of Niland, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538065249487,https://earthquake.usgs.gov/earthquakes/eventpage/ci37371346 +,,2018270010,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018270010&format=geojson,0.9722,,294.0,",pr2018270010,",3.03,md,,pr,12.0,"100km NNE of Punta Cana, Dominican Republic",0.46,141,",pr,",reviewed,1538054235540,"M 3.0 - 100km NNE of Punta Cana, Dominican Republic",0,earthquake,",geoserve,origin,phase-data,",-300.0,1538069881132,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018270010 +,,2018270011,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018270011&format=geojson,1.0684,,300.0,",pr2018270011,",3.2,md,,pr,4.0,"111km NNE of Punta Cana, Dominican Republic",0.41,158,",pr,",reviewed,1538053949980,"M 3.2 - 111km NNE of Punta Cana, Dominican Republic",0,earthquake,",geoserve,origin,phase-data,",-300.0,1538070795739,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018270011 +,,20265279,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265279&format=geojson,,,,",ak20265279,",1.9,ml,,ak,,"71km SSW of Redoubt Volcano, Alaska",0.76,56,",ak,",reviewed,1538053785082,"M 1.9 - 71km SSW of Redoubt Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767610137,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265279 +,,20265278,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265278&format=geojson,,,,",ak20265278,",1.1,ml,,ak,,"13km NNE of Willow, Alaska",1.13,19,",ak,",reviewed,1538053628896,"M 1.1 - 13km NNE of Willow, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767609601,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265278 +,,70805054,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70805054&format=geojson,0.01994,,127.0,",av70805054,",-0.49,ml,,av,4.0,"41km ENE of Adak, Alaska",0.21,0,",av,",reviewed,1538053520870,"M -0.5 - 41km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538160926550,https://earthquake.usgs.gov/earthquakes/eventpage/av70805054 +,,2018270008,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018270008&format=geojson,1.4872,,345.0,",pr2018270008,",3.28,md,,pr,3.0,"84km NNE of Punta Cana, Dominican Republic",0.16,166,",pr,",reviewed,1538053462570,"M 3.3 - 84km NNE of Punta Cana, Dominican Republic",0,earthquake,",geoserve,origin,phase-data,",-300.0,1538068247470,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018270008 +,,20271691,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271691&format=geojson,,,,",ak20271691,",2.0,ml,,ak,,"101km ENE of Kodiak, Alaska",0.67,62,",ak,",reviewed,1538053291020,"M 2.0 - 101km ENE of Kodiak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538767609080,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271691 +,,20265275,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265275&format=geojson,,,,",ak20265275,",1.0,ml,,ak,,"42km SE of Glennallen, Alaska",0.32,15,",ak,",reviewed,1538053238706,"M 1.0 - 42km SE of Glennallen, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767608564,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265275 +,,70615797,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70615797&format=geojson,0.03334,,118.0,",hv70615797,",1.86,md,,hv,42.0,"3km SE of Pahala, Hawaii",0.11,53,",hv,",automatic,1538053082790,"M 1.9 - 3km SE of Pahala, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538053282950,https://earthquake.usgs.gov/earthquakes/eventpage/hv70615797 +,,73090491,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73090491&format=geojson,0.004907,,73.0,",nc73090491,",0.88,md,,nc,18.0,"3km NW of The Geysers, CA",0.05,12,",nc,",automatic,1538053057240,"M 0.9 - 3km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538055003690,https://earthquake.usgs.gov/earthquakes/eventpage/nc73090491 +,,20265273,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265273&format=geojson,,,,",ak20265273,",2.2,ml,,ak,,"78km SSW of Kaktovik, Alaska",0.58,74,",ak,",reviewed,1538053005689,"M 2.2 - 78km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767607932,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265273 +,,20271688,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271688&format=geojson,,,,",ak20271688,",1.5,ml,,ak,,"39km W of Anchor Point, Alaska",0.35,35,",ak,",reviewed,1538052771240,"M 1.5 - 39km W of Anchor Point, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767607361,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271688 +,,61787841,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61787841&format=geojson,0.009976,,214.0,",av61787841,",-0.78,ml,,av,4.0,"99km ESE of King Salmon, Alaska",0.09,0,",av,",reviewed,1538052402390,"M -0.8 - 99km ESE of King Salmon, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538160512370,https://earthquake.usgs.gov/earthquakes/eventpage/av61787841 +,,20265271,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265271&format=geojson,,,,",ak20265271,",1.8,ml,,ak,,"30km SW of Tanaga Volcano, Alaska",0.47,50,",ak,",reviewed,1538052250821,"M 1.8 - 30km SW of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538767606817,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265271 +,,70615762,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70615762&format=geojson,0.004365,,101.0,",hv70615762,",1.8,ml,,hv,15.0,"3km W of Volcano, Hawaii",0.26,50,",hv,",automatic,1538052032340,"M 1.8 - 3km W of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538052373290,https://earthquake.usgs.gov/earthquakes/eventpage/hv70615762 +,,37371338,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37371338&format=geojson,0.006308,,70.0,",ci37371338,",0.36,ml,,ci,16.0,"10km NE of Aguanga, CA",0.12,2,",ci,",reviewed,1538051889340,"M 0.4 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538054751284,https://earthquake.usgs.gov/earthquakes/eventpage/ci37371338 +,,60297997,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60297997&format=geojson,0.2365,,46.0,",uu60297997,",1.13,ml,,uu,23.0,"8km WNW of Junction, Utah",0.18,20,",uu,",reviewed,1538051875570,"M 1.1 - 8km WNW of Junction, Utah",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538066481990,https://earthquake.usgs.gov/earthquakes/eventpage/uu60297997 +,,20265269,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265269&format=geojson,,,,",ak20265269,",2.3,ml,,ak,,"31km SW of Tanaga Volcano, Alaska",0.61,81,",ak,",reviewed,1538051867202,"M 2.3 - 31km SW of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538767606226,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265269 +,3.8,70615757,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70615757&format=geojson,0.003747,1.0,82.0,",hv70615757,",2.35,ml,,hv,34.0,"3km W of Volcano, Hawaii",0.12,85,",hv,",reviewed,1538051847840,"M 2.4 - 3km W of Volcano, Hawaii",0,earthquake,",dyfi,geoserve,origin,phase-data,",-600.0,1538081796499,https://earthquake.usgs.gov/earthquakes/eventpage/hv70615757 +,,20265264,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265264&format=geojson,,,,",ak20265264,",2.8,ml,,ak,,"111km NNW of Arctic Village, Alaska",0.5,121,",ak,",reviewed,1538051422071,"M 2.8 - 111km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767605539,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265264 +,,00659039,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659039&format=geojson,0.137,,228.92,",nn00659039,",-0.3,ml,,nn,7.0,"38km SSE of Goldfield, Nevada",0.1656,0,",nn,",reviewed,1538050374901,"M -0.3 - 38km SSE of Goldfield, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538412412987,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659039 +,,20265263,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265263&format=geojson,,,,",ak20265263,",1.4,ml,,ak,,"93km NNW of Arctic Village, Alaska",0.37,30,",ak,",reviewed,1538050365110,"M 1.4 - 93km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767605004,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265263 +,,00658421,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658421&format=geojson,0.139,,133.42,",nn00658421,",0.7,ml,,nn,18.0,"38km SSE of Goldfield, Nevada",0.2021,8,",nn,",reviewed,1538049989108,"M 0.7 - 38km SSE of Goldfield, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538100337081,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658421 +,,00659038,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00659038&format=geojson,0.582,,183.78,",nn00659038,",0.2,ml,,nn,7.0,"42km SE of Warm Springs, Nevada",0.1643,1,",nn,",reviewed,1538049651627,"M 0.2 - 42km SE of Warm Springs, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538412043156,https://earthquake.usgs.gov/earthquakes/eventpage/nn00659038 +,,20265251,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265251&format=geojson,,,,",ak20265251,",2.9,ml,,ak,,"108km NNW of Arctic Village, Alaska",0.72,129,",ak,",reviewed,1538049528411,"M 2.9 - 108km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767604344,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265251 +,,20265245,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265245&format=geojson,,,,",ak20265245,",2.3,ml,,ak,,"16km NNW of Whittier, Alaska",0.63,81,",ak,",reviewed,1538049461633,"M 2.3 - 16km NNW of Whittier, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767603701,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265245 +,,20271681,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271681&format=geojson,,,,",ak20271681,",2.1,ml,,ak,,"145km NNW of Chirikof Island, Alaska",0.4,68,",ak,",reviewed,1538049341051,"M 2.1 - 145km NNW of Chirikof Island, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767603114,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271681 +,,20265241,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265241&format=geojson,,,,",ak20265241,",2.3,ml,,ak,,"109km NNW of Arctic Village, Alaska",0.59,81,",ak,",reviewed,1538049310231,"M 2.3 - 109km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767602310,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265241 +,,20265238,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265238&format=geojson,,,,",ak20265238,",2.0,ml,,ak,,"94km NNW of Arctic Village, Alaska",0.33,62,",ak,",reviewed,1538049224636,"M 2.0 - 94km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767601709,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265238 +,,37371322,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37371322&format=geojson,0.03078,,72.0,",ci37371322,",0.12,ml,,ci,25.0,"9km ENE of Aguanga, CA",0.11,0,",ci,",reviewed,1538049117510,"M 0.1 - 9km ENE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538065635529,https://earthquake.usgs.gov/earthquakes/eventpage/ci37371322 +,,20265209,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265209&format=geojson,,,,",ak20265209,",2.4,ml,,ak,,"28km SW of Tanaga Volcano, Alaska",0.63,89,",ak,",reviewed,1538048922844,"M 2.4 - 28km SW of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538767601177,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265209 +,,20265210,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265210&format=geojson,,,,",ak20265210,",2.9,ml,,ak,,"95km NNW of Arctic Village, Alaska",0.59,129,",ak,",reviewed,1538048905505,"M 2.9 - 95km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767600371,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265210 +,,61423462,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61423462&format=geojson,0.101,,99.0,",uw61423462,",1.84,ml,,uw,31.0,"11km N of Packwood, Washington",0.16,52,",uw,",reviewed,1538048880980,"M 1.8 - 11km N of Packwood, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538083992310,https://earthquake.usgs.gov/earthquakes/eventpage/uw61423462 +,,20265206,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265206&format=geojson,,,,",ak20265206,",1.2,ml,,ak,,"23km SE of Cohoe, Alaska",0.45,22,",ak,",reviewed,1538048829651,"M 1.2 - 23km SE of Cohoe, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767599796,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265206 +,,1000h382,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h382&format=geojson,1.105,,131.0,",us1000h382,",4.6,mb,,us,,"156km ENE of Nago, Japan",0.55,326,",us,",reviewed,1538048754220,"M 4.6 - 156km ENE of Nago, Japan",0,earthquake,",geoserve,origin,phase-data,",540.0,1538050682040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h382 +,,20265204,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265204&format=geojson,,,,",ak20265204,",1.9,ml,,ak,,"72km SSW of Kaktovik, Alaska",0.79,56,",ak,",reviewed,1538048702906,"M 1.9 - 72km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767599170,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265204 +,,20271673,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271673&format=geojson,,,,",ak20271673,",1.9,ml,,ak,,"88km NNW of Arctic Village, Alaska",0.46,56,",ak,",reviewed,1538048643078,"M 1.9 - 88km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767598468,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271673 +,,37371314,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37371314&format=geojson,0.0684,,67.0,",ci37371314,",0.53,ml,,ci,19.0,"10km SW of Anza, CA",0.12,4,",ci,",reviewed,1538048336470,"M 0.5 - 10km SW of Anza, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538054768613,https://earthquake.usgs.gov/earthquakes/eventpage/ci37371314 +,,60297992,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60297992&format=geojson,0.02954,,127.0,",uu60297992,",0.58,md,,uu,16.0,"24km NE of West Yellowstone, Montana",0.21,5,",uu,",reviewed,1538048272550,"M 0.6 - 24km NE of West Yellowstone, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538057612870,https://earthquake.usgs.gov/earthquakes/eventpage/uu60297992 +,,20265200,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265200&format=geojson,,,,",ak20265200,",1.6,ml,,ak,,"117km NNW of Arctic Village, Alaska",0.64,39,",ak,",reviewed,1538048219074,"M 1.6 - 117km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539040776320,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265200 +,,73090476,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73090476&format=geojson,0.05547,,261.0,",nc73090476,nn00658420,",0.75,md,,nc,20.0,"15km SE of Mammoth Lakes, CA",0.04,9,",nc,nn,",reviewed,1538048108290,"M 0.8 - 15km SE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538078496728,https://earthquake.usgs.gov/earthquakes/eventpage/nc73090476 +,,20265199,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265199&format=geojson,,,,",ak20265199,",1.2,ml,,ak,,"90km SE of Whittier, Alaska",0.76,22,",ak,",reviewed,1538048066578,"M 1.2 - 90km SE of Whittier, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767597258,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265199 +,,37371298,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37371298&format=geojson,0.008263,,60.0,",ci37371298,",0.46,ml,,ci,28.0,"9km NE of Aguanga, CA",0.14,3,",ci,",reviewed,1538047942620,"M 0.5 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538067064130,https://earthquake.usgs.gov/earthquakes/eventpage/ci37371298 +,,37371290,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37371290&format=geojson,0.007206,,60.0,",ci37371290,",0.56,ml,,ci,22.0,"10km NE of Aguanga, CA",0.17,5,",ci,",reviewed,1538047727430,"M 0.6 - 10km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538054846320,https://earthquake.usgs.gov/earthquakes/eventpage/ci37371290 +,,37371282,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37371282&format=geojson,0.00796,,60.0,",ci37371282,",0.56,ml,,ci,22.0,"10km NE of Aguanga, CA",0.16,5,",ci,",reviewed,1538047688600,"M 0.6 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538054803923,https://earthquake.usgs.gov/earthquakes/eventpage/ci37371282 +,,70805049,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70805049&format=geojson,0.01005,,101.0,",av70805049,",-0.67,ml,,av,7.0,"13km W of Akutan, Alaska",0.12,0,",av,",reviewed,1538047106360,"M -0.7 - 13km W of Akutan, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538160380600,https://earthquake.usgs.gov/earthquakes/eventpage/av70805049 +,,73090471,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73090471&format=geojson,0.009702,,84.0,",nc73090471,",0.63,md,,nc,20.0,"6km NW of The Geysers, CA",0.03,6,",nc,",reviewed,1538047004850,"M 0.6 - 6km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538061721967,https://earthquake.usgs.gov/earthquakes/eventpage/nc73090471 +,,20265195,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265195&format=geojson,,,,",ak20265195,",2.6,ml,,ak,,"86km NNW of Arctic Village, Alaska",0.42,104,",ak,",reviewed,1538046971381,"M 2.6 - 86km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767596652,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265195 +,,37371266,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37371266&format=geojson,0.0165,,31.0,",ci37371266,",1.62,ml,,ci,65.0,"8km NE of Aguanga, CA",0.22,40,",ci,",reviewed,1538046774560,"M 1.6 - 8km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538054909480,https://earthquake.usgs.gov/earthquakes/eventpage/ci37371266 +,,80311449,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80311449&format=geojson,0.132,,99.0,",mb80311449,",0.86,ml,,mb,9.0,"16km SE of Lincoln, Montana",0.09,11,",mb,",reviewed,1538046686400,"M 0.9 - 16km SE of Lincoln, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538060899580,https://earthquake.usgs.gov/earthquakes/eventpage/mb80311449 +,,20265194,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265194&format=geojson,,,,",ak20265194,",2.2,ml,,ak,,"25km SW of Tanaga Volcano, Alaska",0.65,74,",ak,",reviewed,1538046651187,"M 2.2 - 25km SW of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538767596074,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265194 +,,37371258,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37371258&format=geojson,0.1072,,75.0,",ci37371258,",0.65,ml,,ci,25.0,"6km WNW of Calimesa, CA",0.12,6,",ci,",reviewed,1538046638400,"M 0.7 - 6km WNW of Calimesa, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538067905370,https://earthquake.usgs.gov/earthquakes/eventpage/ci37371258 +,,20265192,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265192&format=geojson,,,,",ak20265192,",1.8,ml,,ak,,"31km SW of Tanaga Volcano, Alaska",0.36,50,",ak,",reviewed,1538046496142,"M 1.8 - 31km SW of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538767595526,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265192 +,,20265190,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265190&format=geojson,,,,",ak20265190,",2.1,ml,,ak,,"30km SW of Tanaga Volcano, Alaska",0.41,68,",ak,",reviewed,1538046023256,"M 2.1 - 30km SW of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538767594983,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265190 +,,61787721,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61787721&format=geojson,0.03497,,230.0,",av61787721,",0.27,ml,,av,7.0,"94km SE of King Salmon, Alaska",0.13,1,",av,",reviewed,1538045585410,"M 0.3 - 94km SE of King Salmon, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538158135200,https://earthquake.usgs.gov/earthquakes/eventpage/av61787721 +,,37371242,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37371242&format=geojson,0.0371,,22.0,",ci37371242,",2.15,ml,,ci,108.0,"7km W of Calimesa, CA",0.15,71,",ci,",reviewed,1538045570450,"M 2.2 - 7km W of Calimesa, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538067797540,https://earthquake.usgs.gov/earthquakes/eventpage/ci37371242 +,,20265184,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265184&format=geojson,,,,",ak20265184,",2.9,ml,,ak,,"108km NNW of Arctic Village, Alaska",0.59,129,",ak,",reviewed,1538045355307,"M 2.9 - 108km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767594227,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265184 +,,37371234,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37371234&format=geojson,0.07417,,69.0,",ci37371234,",0.37,ml,,ci,15.0,"10km NE of Aguanga, CA",0.12,2,",ci,",reviewed,1538045158530,"M 0.4 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538054821512,https://earthquake.usgs.gov/earthquakes/eventpage/ci37371234 +,,00658416,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658416&format=geojson,0.173,,150.04,",nn00658416,",0.6,ml,,nn,28.0,"55km WSW of Alamo, Nevada",0.1592,6,",nn,",reviewed,1538044821959,"M 0.6 - 55km WSW of Alamo, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538100332824,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658416 +,,20265177,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265177&format=geojson,,,,",ak20265177,",2.3,ml,,ak,,"54km W of Anchorage, Alaska",0.65,81,",ak,",reviewed,1538044594279,"M 2.3 - 54km W of Anchorage, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767593473,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265177 +,,1000h375,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h375&format=geojson,5.96,,136.0,",us1000h375,",4.8,mb,,us,,Kuril Islands,0.75,354,",us,",reviewed,1538044335730,M 4.8 - Kuril Islands,0,earthquake,",geoserve,origin,phase-data,",600.0,1538045673040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h375 +green,,1000h36v,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h36v&format=geojson,13.815,,67.0,",us1000h36v,",5.7,mww,0.0,us,,East of the South Sandwich Islands,0.68,500,",us,",reviewed,1538043947600,M 5.7 - East of the South Sandwich Islands,0,earthquake,",geoserve,losspager,moment-tensor,origin,phase-data,shakemap,",-60.0,1538071479040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h36v +,3.6,1000h36s,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h36s&format=geojson,3.19,9.0,49.0,",us1000h36s,",5.2,mb,,us,,"28km W of Methoni, Greece",1.4,419,",us,",reviewed,1538043709770,"M 5.2 - 28km W of Methoni, Greece",0,earthquake,",dyfi,geoserve,moment-tensor,origin,phase-data,",60.0,1538256048742,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h36s +,,70805044,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70805044&format=geojson,0.06709,,134.0,",av70805044,",-0.17,ml,,av,5.0,"21km W of Dutch Harbor, Alaska",0.13,0,",av,",reviewed,1538043517660,"M -0.2 - 21km W of Dutch Harbor, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538158734160,https://earthquake.usgs.gov/earthquakes/eventpage/av70805044 +,,20265167,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265167&format=geojson,,,,",ak20265167,",2.0,ml,,ak,,"28km SW of Tanaga Volcano, Alaska",0.57,62,",ak,",reviewed,1538043463778,"M 2.0 - 28km SW of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538767592944,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265167 +,,20265165,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265165&format=geojson,,,,",ak20265165,",1.5,ml,,ak,,"118km NNW of Arctic Village, Alaska",0.6,35,",ak,",reviewed,1538043300533,"M 1.5 - 118km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767592404,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265165 +,,20265162,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265162&format=geojson,,,,",ak20265162,",2.0,ml,,ak,,"77km NE of Kodiak, Alaska",0.59,62,",ak,",reviewed,1538043200525,"M 2.0 - 77km NE of Kodiak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538767591808,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265162 +,,37371218,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37371218&format=geojson,0.008151,,69.0,",ci37371218,",0.24,ml,,ci,13.0,"10km NE of Aguanga, CA",0.13,1,",ci,",reviewed,1538042980600,"M 0.2 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538054838938,https://earthquake.usgs.gov/earthquakes/eventpage/ci37371218 +,,73090451,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73090451&format=geojson,0.03553,,95.0,",nc73090451,",1.12,md,,nc,34.0,"5km W of Templeton, CA",0.08,19,",nc,",reviewed,1538042957340,"M 1.1 - 5km W of Templeton, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538103843081,https://earthquake.usgs.gov/earthquakes/eventpage/nc73090451 +,,2018270006,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018270006&format=geojson,1.6802,,345.0,",pr2018270006,",3.03,md,,pr,3.0,"149km NNE of Punta Cana, Dominican Republic",0.26,141,",pr,",reviewed,1538042926490,"M 3.0 - 149km NNE of Punta Cana, Dominican Republic",0,earthquake,",geoserve,origin,phase-data,",-300.0,1538051577864,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018270006 +,,20265152,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265152&format=geojson,,,,",ak20265152,",1.7,ml,,ak,,"57km NNE of Chitina, Alaska",0.85,44,",ak,",automatic,1538042146471,"M 1.7 - 57km NNE of Chitina, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538042395273,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265152 +,,20265150,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265150&format=geojson,,,,",ak20265150,",2.5,ml,,ak,,"81km WNW of Yakutat, Alaska",0.73,96,",ak,",reviewed,1538042136003,"M 2.5 - 81km WNW of Yakutat, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767591094,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265150 +,,70804929,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804929&format=geojson,0.05287,,130.0,",av70804929,",0.07,ml,,av,6.0,"58km NNE of Chitina, Alaska",0.09,0,",av,",reviewed,1538042081660,"M 0.1 - 58km NNE of Chitina, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538096056740,https://earthquake.usgs.gov/earthquakes/eventpage/av70804929 +,,70804924,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804924&format=geojson,0.06179,,169.0,",av70804924,",-0.48,ml,,av,5.0,"57km NNE of Chitina, Alaska",0.07,0,",av,",reviewed,1538042044060,"M -0.5 - 57km NNE of Chitina, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538148861700,https://earthquake.usgs.gov/earthquakes/eventpage/av70804924 +,,70804989,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804989&format=geojson,0.05673,,177.0,",av70804989,",-0.56,ml,,av,4.0,"58km NNE of Chitina, Alaska",0.2,0,",av,",reviewed,1538041923500,"M -0.6 - 58km NNE of Chitina, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538149115030,https://earthquake.usgs.gov/earthquakes/eventpage/av70804989 +,,20265148,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265148&format=geojson,,,,",ak20265148,",1.8,ml,,ak,,"33km SSW of Tanaga Volcano, Alaska",0.35,50,",ak,",reviewed,1538041811326,"M 1.8 - 33km SSW of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538767590555,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265148 +,,70804939,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804939&format=geojson,0.05446,,168.0,",av70804939,",-0.35,ml,,av,5.0,"58km NNE of Chitina, Alaska",0.04,0,",av,",reviewed,1538041802940,"M -0.4 - 58km NNE of Chitina, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538097127390,https://earthquake.usgs.gov/earthquakes/eventpage/av70804939 +,,20265146,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265146&format=geojson,,,,",ak20265146,",1.3,ml,,ak,,"83km NW of Nikiski, Alaska",0.69,26,",ak,",reviewed,1538041795857,"M 1.3 - 83km NW of Nikiski, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767589946,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265146 +,,70804914,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804914&format=geojson,0.05955,,207.0,",av70804914,",-0.16,ml,,av,4.0,"58km NNE of Chitina, Alaska",0.24,0,",av,",reviewed,1538041741000,"M -0.2 - 58km NNE of Chitina, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538150480200,https://earthquake.usgs.gov/earthquakes/eventpage/av70804914 +,,20265145,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265145&format=geojson,,,,",ak20265145,",2.2,ml,,ak,,"32km SW of Tanaga Volcano, Alaska",0.63,74,",ak,",reviewed,1538041551902,"M 2.2 - 32km SW of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538767589406,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265145 +,,73090446,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73090446&format=geojson,0.03566,,75.0,",nc73090446,",0.88,md,,nc,19.0,"20km E of Alum Rock, CA",0.07,12,",nc,",reviewed,1538041269670,"M 0.9 - 20km E of Alum Rock, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538091602684,https://earthquake.usgs.gov/earthquakes/eventpage/nc73090446 +,,20271656,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271656&format=geojson,,,,",ak20271656,",1.6,ml,,ak,,"31km SW of Tanaga Volcano, Alaska",0.47,39,",ak,",reviewed,1538040834727,"M 1.6 - 31km SW of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538767588893,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271656 +,,37410909,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37410909&format=geojson,0.02598,,94.0,",ci37410909,",0.29,ml,,ci,22.0,"9km NE of Aguanga, CA",0.08,1,",ci,",reviewed,1538040825870,"M 0.3 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538064776333,https://earthquake.usgs.gov/earthquakes/eventpage/ci37410909 +,,37371210,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37371210&format=geojson,0.08973,,195.0,",ci37371210,",0.14,ml,,ci,13.0,"6km ESE of Valle Vista, CA",0.11,0,",ci,",reviewed,1538040818570,"M 0.1 - 6km ESE of Valle Vista, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538064869102,https://earthquake.usgs.gov/earthquakes/eventpage/ci37371210 +,,20265144,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265144&format=geojson,,,,",ak20265144,",2.1,ml,,ak,,"62km SE of Adak, Alaska",0.11,68,",ak,",reviewed,1538040816205,"M 2.1 - 62km SE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-720.0,1538767588405,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265144 +,,37371202,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37371202&format=geojson,0.005781,,128.0,",ci37371202,",0.45,ml,,ci,9.0,"16km NE of Little Lake, CA",0.05,3,",ci,",reviewed,1538040624380,"M 0.5 - 16km NE of Little Lake, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538064210980,https://earthquake.usgs.gov/earthquakes/eventpage/ci37371202 +,,1000h36e,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h36e&format=geojson,6.115,,106.0,",us1000h36e,",4.2,mb,,us,,"11km S of Shari-i-Tajan, Iran",0.34,271,",us,",reviewed,1538040340310,"M 4.2 - 11km S of Shari-i-Tajan, Iran",0,earthquake,",geoserve,origin,phase-data,",210.0,1538042129040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h36e +,,20265141,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265141&format=geojson,,,,",ak20265141,",2.3,ml,,ak,,"30km SW of Tanaga Volcano, Alaska",0.5,81,",ak,",reviewed,1538040128092,"M 2.3 - 30km SW of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538767587879,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265141 +,,20265140,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265140&format=geojson,,,,",ak20265140,",1.0,ml,,ak,,"107km W of Cantwell, Alaska",0.47,15,",ak,",reviewed,1538039692189,"M 1.0 - 107km W of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767587362,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265140 +,,00658507,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658507&format=geojson,0.066,,95.64,",nn00658507,",-0.1,ml,,nn,8.0,"10km SE of Dollar Point, California",0.155,0,",nn,",reviewed,1538039581346,"M -0.1 - 10km SE of Dollar Point, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538100372699,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658507 +,,20265138,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265138&format=geojson,,,,",ak20265138,",1.1,ml,,ak,,"84km WNW of Cape Yakataga, Alaska",0.42,19,",ak,",reviewed,1538039238648,"M 1.1 - 84km WNW of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767586781,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265138 +,,37371194,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37371194&format=geojson,0.08603,,39.0,",ci37371194,",0.53,ml,,ci,25.0,"9km NE of Aguanga, CA",0.17,4,",ci,",reviewed,1538039148010,"M 0.5 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538054915900,https://earthquake.usgs.gov/earthquakes/eventpage/ci37371194 +,,37371186,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37371186&format=geojson,0.02034,,57.0,",ci37371186,",0.06,ml,,ci,27.0,"9km NE of Aguanga, CA",0.14,0,",ci,",reviewed,1538038795450,"M 0.1 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538066730532,https://earthquake.usgs.gov/earthquakes/eventpage/ci37371186 +,,61423437,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61423437&format=geojson,0.419,,167.0,",uw61423437,",2.01,ml,,uw,10.0,"47km SE of Hope, Canada",0.53,62,",uw,",reviewed,1538038772230,"M 2.0 - 47km SE of Hope, Canada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538070899790,https://earthquake.usgs.gov/earthquakes/eventpage/uw61423437 +,,37371178,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37371178&format=geojson,0.02784,,32.0,",ci37371178,",0.49,ml,,ci,38.0,"9km NE of Aguanga, CA",0.15,4,",ci,",reviewed,1538038758950,"M 0.5 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538066121710,https://earthquake.usgs.gov/earthquakes/eventpage/ci37371178 +,,20265136,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265136&format=geojson,,,,",ak20265136,",1.7,ml,,ak,,"37km SSW of Tanaga Volcano, Alaska",0.75,44,",ak,",reviewed,1538038333794,"M 1.7 - 37km SSW of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538767586280,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265136 +,,20271650,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271650&format=geojson,,,,",ak20271650,",2.3,ml,,ak,,"123km SE of Cold Bay, Alaska",0.54,81,",ak,",reviewed,1538037808599,"M 2.3 - 123km SE of Cold Bay, Alaska",0,earthquake,",geoserve,origin,phase-data,",-660.0,1538767585791,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271650 +,,20265132,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265132&format=geojson,,,,",ak20265132,",2.1,ml,,ak,,"31km SW of Tanaga Volcano, Alaska",0.46,68,",ak,",reviewed,1538037772192,"M 2.1 - 31km SW of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538767585284,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265132 +,,70615492,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70615492&format=geojson,0.1364,,259.0,",hv70615492,",1.96,md,,hv,45.0,"25km S of Pahala, Hawaii",0.19,59,",hv,",automatic,1538037726860,"M 2.0 - 25km S of Pahala, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538037938170,https://earthquake.usgs.gov/earthquakes/eventpage/hv70615492 +,,20265128,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265128&format=geojson,,,,",ak20265128,",1.4,ml,,ak,,"18km ENE of Nikiski, Alaska",0.52,30,",ak,",reviewed,1538037660591,"M 1.4 - 18km ENE of Nikiski, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767584672,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265128 +,,37371170,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37371170&format=geojson,0.0208,,37.0,",ci37371170,",0.73,ml,,ci,37.0,"8km NE of Aguanga, CA",0.15,8,",ci,",reviewed,1538037247930,"M 0.7 - 8km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538065632439,https://earthquake.usgs.gov/earthquakes/eventpage/ci37371170 +,,37371162,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37371162&format=geojson,0.01228,,25.0,",ci37371162,",1.37,ml,,ci,87.0,"3km S of San Bernardino, CA",0.15,29,",ci,",reviewed,1538037215240,"M 1.4 - 3km S of San Bernardino, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538065321500,https://earthquake.usgs.gov/earthquakes/eventpage/ci37371162 +,,20265119,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265119&format=geojson,,,,",ak20265119,",1.9,ml,,ak,,"34km SW of Tanaga Volcano, Alaska",0.28,56,",ak,",reviewed,1538037194859,"M 1.9 - 34km SW of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538767584142,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265119 +,,20265114,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265114&format=geojson,,,,",ak20265114,us1000h35z,",2.5,ml,,ak,,"75km WSW of Cantwell, Alaska",0.4,96,",ak,us,",reviewed,1538037134098,"M 2.5 - 75km WSW of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767583365,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265114 +,,20265112,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265112&format=geojson,,,,",ak20265112,",1.2,ml,,ak,,"47km NNW of Valdez, Alaska",0.73,22,",ak,",reviewed,1538037035712,"M 1.2 - 47km NNW of Valdez, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767582771,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265112 +,,2018270005,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018270005&format=geojson,0.97,,303.0,",pr2018270005,",2.26,md,,pr,4.0,"95km NE of Miches, Dominican Republic",0.27,79,",pr,",reviewed,1538036666410,"M 2.3 - 95km NE of Miches, Dominican Republic",0,earthquake,",geoserve,origin,phase-data,",-300.0,1538051559760,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018270005 +,,20265109,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265109&format=geojson,,,,",ak20265109,",1.7,ml,,ak,,"32km SSW of Tanaga Volcano, Alaska",0.38,44,",ak,",reviewed,1538036664326,"M 1.7 - 32km SSW of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538767582237,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265109 +,,20265108,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265108&format=geojson,,,,",ak20265108,",1.7,ml,,ak,,"30km SW of Tanaga Volcano, Alaska",0.28,44,",ak,",reviewed,1538036317091,"M 1.7 - 30km SW of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538767581714,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265108 +,,2018270004,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018270004&format=geojson,0.9519,,328.0,",pr2018270004,us1000h38l,",2.79,md,,pr,4.0,"45km N of Punta Cana, Dominican Republic",0.53,120,",pr,us,",reviewed,1538036307810,"M 2.8 - 45km N of Punta Cana, Dominican Republic",0,earthquake,",geoserve,origin,phase-data,",-300.0,1538114996040,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018270004 +,,20265103,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265103&format=geojson,,,,",ak20265103,",1.0,ml,,ak,,"21km SSW of Talkeetna, Alaska",0.52,15,",ak,",reviewed,1538036267732,"M 1.0 - 21km SSW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767581189,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265103 +,,00658506,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658506&format=geojson,0.059,,93.24,",nn00658506,",-0.3,ml,,nn,8.0,"11km SSE of Kings Beach, California",0.1282,0,",nn,",reviewed,1538036137382,"M -0.3 - 11km SSE of Kings Beach, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538100371103,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658506 +,,20265099,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265099&format=geojson,,,,",ak20265099,",1.6,ml,,ak,,"76km WNW of Skagway, Alaska",0.5,39,",ak,",reviewed,1538036082154,"M 1.6 - 76km WNW of Skagway, Alaska",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538767580631,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265099 +,,80311429,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80311429&format=geojson,0.113,,123.0,",mb80311429,",1.25,ml,,mb,8.0,"14km ESE of Lincoln, Montana",0.05,24,",mb,",reviewed,1538036070990,"M 1.3 - 14km ESE of Lincoln, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538056930630,https://earthquake.usgs.gov/earthquakes/eventpage/mb80311429 +,,80311404,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80311404&format=geojson,0.109,,111.0,",mb80311404,",1.9,ml,,mb,12.0,"13km ESE of Lincoln, Montana",0.1,56,",mb,",reviewed,1538036028360,"M 1.9 - 13km ESE of Lincoln, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538056588370,https://earthquake.usgs.gov/earthquakes/eventpage/mb80311404 +,,20265091,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265091&format=geojson,,,,",ak20265091,",2.0,ml,,ak,,"85km SW of Kaktovik, Alaska",0.56,62,",ak,",reviewed,1538035773312,"M 2.0 - 85km SW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767580013,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265091 +,,37371154,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37371154&format=geojson,0.06328,,107.0,",ci37371154,",0.53,ml,,ci,9.0,"11km NE of Aguanga, CA",0.08,4,",ci,",reviewed,1538035565660,"M 0.5 - 11km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538054918015,https://earthquake.usgs.gov/earthquakes/eventpage/ci37371154 +,,20265089,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265089&format=geojson,,,,",ak20265089,",1.1,ml,,ak,,"16km WSW of Big Lake, Alaska",0.6,19,",ak,",reviewed,1538035470353,"M 1.1 - 16km WSW of Big Lake, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767579432,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265089 +,,2018270003,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018270003&format=geojson,0.5916,,268.0,",pr2018270003,us1000h38j,",3.08,md,,pr,6.0,"91km N of Punta Cana, Dominican Republic",0.37,146,",pr,us,",reviewed,1538035364230,"M 3.1 - 91km N of Punta Cana, Dominican Republic",0,earthquake,",geoserve,origin,phase-data,",-300.0,1538112939040,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018270003 +,,20265087,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265087&format=geojson,,,,",ak20265087,",1.1,ml,,ak,,"38km E of Healy, Alaska",0.44,19,",ak,",reviewed,1538035328467,"M 1.1 - 38km E of Healy, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767578846,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265087 +,,00658415,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658415&format=geojson,0.03,,64.08,",nn00658415,",-0.1,ml,,nn,17.0,"29km ENE of Beatty, Nevada",0.1403,0,",nn,",reviewed,1538034824768,"M -0.1 - 29km ENE of Beatty, Nevada",0,earthquake,",focal-mechanism,geoserve,origin,phase-data,",-480.0,1538418447030,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658415 +,,1000h35m,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h35m&format=geojson,7.501,,132.0,",us1000h35m,",4.9,mb,,us,,"103km NE of Bristol Island, South Sandwich Islands",0.86,369,",us,",reviewed,1538034781860,"M 4.9 - 103km NE of Bristol Island, South Sandwich Islands",0,earthquake,",geoserve,origin,phase-data,",-120.0,1538035729040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h35m +,,20271637,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271637&format=geojson,,,,",ak20271637,",1.5,ml,,ak,,"44km NNW of Kodiak Station, Alaska",0.32,35,",ak,",reviewed,1538034650349,"M 1.5 - 44km NNW of Kodiak Station, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767578347,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271637 +,,20265086,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265086&format=geojson,,,,",ak20265086,",0.9,ml,,ak,,"59km WNW of Valdez, Alaska",0.51,12,",ak,",reviewed,1538034130556,"M 0.9 - 59km WNW of Valdez, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767577789,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265086 +,,73090436,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73090436&format=geojson,0.01971,,72.0,",nc73090436,",0.24,md,,nc,16.0,"1km ESE of Mammoth Lakes, CA",0.03,1,",nc,",reviewed,1538033838580,"M 0.2 - 1km ESE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538072162671,https://earthquake.usgs.gov/earthquakes/eventpage/nc73090436 +,,20271635,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271635&format=geojson,,,,",ak20271635,",2.5,ml,,ak,,"297km SE of Kodiak, Alaska",0.34,96,",ak,",reviewed,1538033659695,"M 2.5 - 297km SE of Kodiak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538767577287,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271635 +,,20265082,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265082&format=geojson,,,,",ak20265082,",1.0,ml,,ak,,"47km ENE of Cape Yakataga, Alaska",0.5,15,",ak,",reviewed,1538033280733,"M 1.0 Ice Quake - 47km ENE of Cape Yakataga, Alaska",0,ice quake,",geoserve,origin,phase-data,",-540.0,1538767576756,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265082 +,,37371122,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37371122&format=geojson,0.03232,,109.0,",ci37371122,",0.27,ml,,ci,14.0,"8km ENE of Aguanga, CA",0.14,1,",ci,",reviewed,1538033146210,"M 0.3 - 8km ENE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538054936803,https://earthquake.usgs.gov/earthquakes/eventpage/ci37371122 +,,20265077,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265077&format=geojson,,,,",ak20265077,",1.7,ml,,ak,,"142km WNW of Arctic Village, Alaska",0.76,44,",ak,",reviewed,1538032877636,"M 1.7 - 142km WNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767576180,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265077 +,,20265075,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265075&format=geojson,,,,",ak20265075,",3.1,ml,,ak,,"28km SW of Tanaga Volcano, Alaska",0.41,148,",ak,",reviewed,1538032686236,"M 3.1 - 28km SW of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538767575642,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265075 +,,20265064,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265064&format=geojson,,,,",ak20265064,",1.3,ml,,ak,,"68km SSW of Kobuk, Alaska",0.29,26,",ak,",reviewed,1538032380452,"M 1.3 - 68km SSW of Kobuk, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767575071,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265064 +,,20265065,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265065&format=geojson,,,,",ak20265065,",3.0,ml,,ak,,"253km SE of Kodiak, Alaska",0.73,138,",ak,",reviewed,1538032360943,"M 3.0 - 253km SE of Kodiak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538767574366,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265065 +,,73090431,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73090431&format=geojson,0.02262,,144.0,",nc73090431,",0.29,md,,nc,9.0,"11km E of Mammoth Lakes, CA",0.12,1,",nc,",reviewed,1538032354970,"M 0.3 - 11km E of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538064904297,https://earthquake.usgs.gov/earthquakes/eventpage/nc73090431 +,,20265063,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265063&format=geojson,,,,",ak20265063,",0.9,ml,,ak,,"26km N of Sutton-Alpine, Alaska",0.53,12,",ak,",reviewed,1538032214541,"M 0.9 - 26km N of Sutton-Alpine, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767573864,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265063 +,,37371114,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37371114&format=geojson,0.1067,,101.0,",ci37371114,",0.61,ml,,ci,15.0,"12km NE of Coachella, CA",0.11,6,",ci,",reviewed,1538032073820,"M 0.6 - 12km NE of Coachella, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538054982140,https://earthquake.usgs.gov/earthquakes/eventpage/ci37371114 +,,80311454,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80311454&format=geojson,0.321,,204.0,",mb80311454,",0.08,md,,mb,8.0,"42km N of Seeley Lake, Montana",0.17,0,",mb,",reviewed,1538031862160,"M 0.1 - 42km N of Seeley Lake, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538061414990,https://earthquake.usgs.gov/earthquakes/eventpage/mb80311454 +,,20271628,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271628&format=geojson,,,,",ak20271628,",1.8,ml,,ak,,"29km SW of Tanaga Volcano, Alaska",0.4,50,",ak,",reviewed,1538031803199,"M 1.8 - 29km SW of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538767573372,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271628 +,3.1,73090426,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73090426&format=geojson,0.2227,1.0,112.0,",nc73090426,nn00658411,",1.73,md,,nc,12.0,"4km NNW of Canyondam, CA",0.08,46,",nc,nn,",reviewed,1538031743140,"M 1.7 - 4km NNW of Canyondam, CA",0,earthquake,",dyfi,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538101382828,https://earthquake.usgs.gov/earthquakes/eventpage/nc73090426 +,,1000h35e,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h35e&format=geojson,1.269,,61.0,",us1000h35e,",4.0,mb,,us,,"104km NW of Vinchina, Argentina",0.78,246,",us,",reviewed,1538031671010,"M 4.0 - 104km NW of Vinchina, Argentina",0,earthquake,",geoserve,origin,phase-data,",-180.0,1538112465040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h35e +,,20265062,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265062&format=geojson,,,,",ak20265062,",1.2,ml,,ak,,"101km NW of Arctic Village, Alaska",0.55,22,",ak,",reviewed,1538031619617,"M 1.2 - 101km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767572858,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265062 +,,73090421,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73090421&format=geojson,0.04341,,135.0,",nc73090421,",0.66,md,,nc,14.0,"4km NNE of Pinnacles, CA",0.07,7,",nc,",reviewed,1538031330140,"M 0.7 - 4km NNE of Pinnacles, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538090882614,https://earthquake.usgs.gov/earthquakes/eventpage/nc73090421 +,,1000h35c,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h35c&format=geojson,0.091,,32.0,",us1000h35c,",2.3,mb_lg,,us,,"2km NE of Langston, Oklahoma",0.19,81,",us,",reviewed,1538031296880,"M 2.3 - 2km NE of Langston, Oklahoma",0,earthquake,",geoserve,origin,phase-data,",-360.0,1538034725040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h35c +,,20271626,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271626&format=geojson,,,,",ak20271626,",2.7,ml,,ak,,"294km SE of Kodiak, Alaska",0.49,112,",ak,",reviewed,1538031243792,"M 2.7 - 294km SE of Kodiak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538767572301,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271626 +,,37371106,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37371106&format=geojson,0.02171,,134.0,",ci37371106,",0.19,ml,,ci,10.0,"7km NNE of Little Lake, CA",0.05,1,",ci,",reviewed,1538030809890,"M 0.2 - 7km NNE of Little Lake, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538064055634,https://earthquake.usgs.gov/earthquakes/eventpage/ci37371106 +,,00658504,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658504&format=geojson,0.537,,336.38,",nn00658504,",0.6,ml,,nn,10.0,"35km SSW of Alamo, Nevada",0.1426,6,",nn,",reviewed,1538030768961,"M 0.6 - 35km SSW of Alamo, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538100368594,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658504 +,,20265056,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265056&format=geojson,,,,",ak20265056,",1.5,ml,,ak,,"91km WNW of Arctic Village, Alaska",0.84,35,",ak,",reviewed,1538030246475,"M 1.5 - 91km WNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767571777,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265056 +,,20265052,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265052&format=geojson,,,,",ak20265052,us1000h357,",3.0,ml,,ak,,"64km SSW of Kaktovik, Alaska",0.51,138,",ak,us,",reviewed,1538030064886,"M 3.0 - 64km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767570999,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265052 +,,20265045,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265045&format=geojson,,,,",ak20265045,",1.8,ml,,ak,,"71km ENE of Cantwell, Alaska",0.7,50,",ak,",reviewed,1538029804176,"M 1.8 - 71km ENE of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539040775708,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265045 +,,20265042,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265042&format=geojson,,,,",ak20265042,",1.3,ml,,ak,,"6km S of Willow, Alaska",0.53,26,",ak,",reviewed,1538029694251,"M 1.3 - 6km S of Willow, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767569764,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265042 +,,20271621,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271621&format=geojson,,,,",ak20271621,",1.6,ml,,ak,,"88km SW of Kaktovik, Alaska",0.6,39,",ak,",reviewed,1538029650220,"M 1.6 - 88km SW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767569210,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271621 +,,20265040,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265040&format=geojson,,,,",ak20265040,",2.0,ml,,ak,,"27km SW of Tanaga Volcano, Alaska",0.35,62,",ak,",reviewed,1538029556507,"M 2.0 - 27km SW of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538767568689,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265040 +,,20265039,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265039&format=geojson,,,,",ak20265039,",0.5,ml,,ak,,"84km NW of Nikiski, Alaska",0.56,4,",ak,",reviewed,1538029510138,"M 0.5 - 84km NW of Nikiski, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767568147,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265039 +,,80311394,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80311394&format=geojson,0.113,,111.0,",mb80311394,",1.06,ml,,mb,11.0,"14km ESE of Lincoln, Montana",0.05,17,",mb,",reviewed,1538029243270,"M 1.1 - 14km ESE of Lincoln, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538057390400,https://earthquake.usgs.gov/earthquakes/eventpage/mb80311394 +,,20265037,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265037&format=geojson,,,,",ak20265037,",1.0,ml,,ak,,"36km W of Willow, Alaska",0.39,15,",ak,",reviewed,1538029103710,"M 1.0 - 36km W of Willow, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767567587,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265037 +,,20271617,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271617&format=geojson,,,,",ak20271617,",1.9,ml,,ak,,"30km SW of Tanaga Volcano, Alaska",0.46,56,",ak,",reviewed,1538029087260,"M 1.9 - 30km SW of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538767567080,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271617 +,,73090406,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73090406&format=geojson,0.238,,298.0,",nc73090406,nn00658408,",1.26,md,,nc,13.0,"2km W of Round Valley, CA",0.03,24,",nc,nn,",reviewed,1538028833060,"M 1.3 - 2km W of Round Valley, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538100323206,https://earthquake.usgs.gov/earthquakes/eventpage/nc73090406 +,,37371098,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37371098&format=geojson,0.08811,,41.0,",ci37371098,",0.35,ml,,ci,21.0,"9km ENE of Aguanga, CA",0.23,2,",ci,",reviewed,1538028808680,"M 0.4 - 9km ENE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538054955523,https://earthquake.usgs.gov/earthquakes/eventpage/ci37371098 +,,20265032,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265032&format=geojson,,,,",ak20265032,",1.5,ml,,ak,,"66km WSW of Kobuk, Alaska",0.43,35,",ak,",reviewed,1538028711282,"M 1.5 - 66km WSW of Kobuk, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767566536,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265032 +,,20265030,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265030&format=geojson,,,,",ak20265030,",2.4,ml,,ak,,"31km SSW of Tanaga Volcano, Alaska",0.43,89,",ak,",reviewed,1538028641706,"M 2.4 - 31km SSW of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538767566010,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265030 +,,20271614,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271614&format=geojson,,,,",ak20271614,",2.0,ml,,ak,,"26km SW of Tanaga Volcano, Alaska",0.61,62,",ak,",reviewed,1538028532876,"M 2.0 - 26km SW of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538767565474,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271614 +,,37371090,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37371090&format=geojson,0.003637,,66.0,",ci37371090,",0.44,ml,,ci,16.0,"10km NE of Aguanga, CA",0.15,3,",ci,",reviewed,1538028256510,"M 0.4 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538054953201,https://earthquake.usgs.gov/earthquakes/eventpage/ci37371090 +,,61423412,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61423412&format=geojson,0.08882,,288.0,",uw61423412,",0.21,ml,,uw,8.0,"33km E of Castle Rock, Washington",0.11,1,",uw,",reviewed,1538028122730,"M 0.2 - 33km E of Castle Rock, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538082571410,https://earthquake.usgs.gov/earthquakes/eventpage/uw61423412 +,,20271613,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271613&format=geojson,,,,",ak20271613,",2.9,ml,,ak,,"30km SW of Tanaga Volcano, Alaska",0.62,129,",ak,",reviewed,1538027820961,"M 2.9 - 30km SW of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538767564952,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271613 +,,1000h34x,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h34x&format=geojson,0.875,,125.0,",ak20265006,us1000h34x,",4.8,mb,,us,,"48km SSW of Tanaga Volcano, Alaska",0.85,354,",ak,us,",reviewed,1538027709890,"M 4.8 - 48km SSW of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538767564370,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h34x +,,20265004,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265004&format=geojson,,,,",ak20265004,",1.3,ml,,ak,,"22km N of Sutton-Alpine, Alaska",0.65,26,",ak,",reviewed,1538027570614,"M 1.3 - 22km N of Sutton-Alpine, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767563794,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265004 +,,20265000,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265000&format=geojson,,,,",ak20265000,",2.0,ml,,ak,,"131km NW of Arctic Village, Alaska",0.55,62,",ak,",reviewed,1538027380056,"M 2.0 - 131km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767563216,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265000 +,,20264994,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20264994&format=geojson,,,,",ak20264994,",1.4,ml,,ak,,"111km NNW of Arctic Village, Alaska",0.63,30,",ak,",reviewed,1538026861878,"M 1.4 - 111km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767562641,https://earthquake.usgs.gov/earthquakes/eventpage/ak20264994 +,,37371082,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37371082&format=geojson,0.0701,,33.0,",ci37371082,",1.18,ml,,ci,47.0,"9km WSW of Aguanga, CA",0.22,21,",ci,",reviewed,1538026840000,"M 1.2 - 9km WSW of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538055048320,https://earthquake.usgs.gov/earthquakes/eventpage/ci37371082 +,,37371074,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37371074&format=geojson,0.1201,,222.0,",ci37371074,",0.81,ml,,ci,13.0,"11km NE of Borrego Springs, CA",0.19,10,",ci,",reviewed,1538026507530,"M 0.8 - 11km NE of Borrego Springs, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538054977392,https://earthquake.usgs.gov/earthquakes/eventpage/ci37371074 +,,73090396,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73090396&format=geojson,0.1526,,180.0,",nc73090396,",1.48,md,,nc,29.0,"22km SW of Toms Place, CA",0.03,34,",nc,",reviewed,1538026492920,"M 1.5 - 22km SW of Toms Place, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538069103368,https://earthquake.usgs.gov/earthquakes/eventpage/nc73090396 +,,1000h34s,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h34s&format=geojson,1.083,,94.0,",us1000h34s,",5.1,mb,,us,,"117km N of Saumlaki, Indonesia",1.13,400,",us,",reviewed,1538026140750,"M 5.1 - 117km N of Saumlaki, Indonesia",1,earthquake,",geoserve,origin,phase-data,",540.0,1538027116040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h34s +,,61787506,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61787506&format=geojson,0.07273,,119.0,",av61787506,",0.46,ml,,av,7.0,"79km SE of King Salmon, Alaska",0.1,3,",av,",reviewed,1538026067080,"M 0.5 - 79km SE of King Salmon, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538156579430,https://earthquake.usgs.gov/earthquakes/eventpage/av61787506 +,,20271608,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271608&format=geojson,,,,",ak20271608,",1.4,ml,,ak,,"67km W of Anchor Point, Alaska",0.3,30,",ak,",reviewed,1538025850843,"M 1.4 - 67km W of Anchor Point, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767562089,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271608 +,,20264990,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20264990&format=geojson,,,,",ak20264990,",0.9,ml,,ak,,"12km E of Willow, Alaska",0.53,12,",ak,",reviewed,1538025843441,"M 0.9 - 12km E of Willow, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767561545,https://earthquake.usgs.gov/earthquakes/eventpage/ak20264990 +,,73090386,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73090386&format=geojson,0.01136,,90.0,",nc73090386,",0.96,md,,nc,13.0,"3km E of The Geysers, CA",0.03,14,",nc,",automatic,1538025740690,"M 1.0 - 3km E of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538027343016,https://earthquake.usgs.gov/earthquakes/eventpage/nc73090386 +,,37371066,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37371066&format=geojson,0.4073,,158.0,",ci37371066,",1.64,ml,,ci,29.0,"47km SSW of San Clemente, CA",0.19,41,",ci,",reviewed,1538025710600,"M 1.6 - 47km SSW of San Clemente, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538064549417,https://earthquake.usgs.gov/earthquakes/eventpage/ci37371066 +,,20264986,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20264986&format=geojson,,,,",ak20264986,",0.6,ml,,ak,,"31km E of Anchorage, Alaska",0.55,6,",ak,",reviewed,1538025707750,"M 0.6 - 31km E of Anchorage, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767561036,https://earthquake.usgs.gov/earthquakes/eventpage/ak20264986 +,,00658502,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658502&format=geojson,0.096,,172.78,",nn00658502,",0.5,ml,,nn,6.0,"8km SE of Johnson Lane, Nevada",0.1812,4,",nn,",reviewed,1538025613691,"M 0.5 - 8km SE of Johnson Lane, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538100366705,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658502 +,,20264983,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20264983&format=geojson,,,,",ak20264983,",1.2,ml,,ak,,"111km W of Talkeetna, Alaska",0.42,22,",ak,",reviewed,1538025439559,"M 1.2 - 111km W of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767560434,https://earthquake.usgs.gov/earthquakes/eventpage/ak20264983 +,,00658500,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658500&format=geojson,0.248,,314.6,",nn00658500,",-0.4,ml,,nn,5.0,"51km NW of Beatty, Nevada",0.0819,0,",nn,",reviewed,1538025238324,"M -0.4 - 51km NW of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538100364850,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658500 +,,20264976,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20264976&format=geojson,,,,",ak20264976,",1.3,ml,,ak,,"74km NNW of Cape Yakataga, Alaska",0.76,26,",ak,",reviewed,1538025122937,"M 1.3 - 74km NNW of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767559785,https://earthquake.usgs.gov/earthquakes/eventpage/ak20264976 +,,20264978,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20264978&format=geojson,,,,",ak20264978,",1.2,ml,,ak,,"78km W of Cantwell, Alaska",0.45,22,",ak,",reviewed,1538025122660,"M 1.2 - 78km W of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767559236,https://earthquake.usgs.gov/earthquakes/eventpage/ak20264978 +,,61787501,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61787501&format=geojson,0.2616,,262.0,",av61787501,",1.68,ml,,av,9.0,"49km SW of Nikolski, Alaska",0.21,43,",av,",reviewed,1538025111890,"M 1.7 - 49km SW of Nikolski, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538156449230,https://earthquake.usgs.gov/earthquakes/eventpage/av61787501 +,,20264973,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20264973&format=geojson,,,,",ak20264973,",1.7,ml,,ak,,"102km NNW of Arctic Village, Alaska",0.69,44,",ak,",reviewed,1538024838471,"M 1.7 - 102km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767453194,https://earthquake.usgs.gov/earthquakes/eventpage/ak20264973 +,,1000h34l,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h34l&format=geojson,0.382,,74.0,",us1000h34l,",4.3,mb,,us,,"16km NNE of Loboniki, Indonesia",1.02,284,",us,",reviewed,1538024633910,"M 4.3 - 16km NNE of Loboniki, Indonesia",0,earthquake,",geoserve,origin,phase-data,",480.0,1538025949040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h34l +,,20264961,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20264961&format=geojson,,,,",ak20264961,",1.5,ml,,ak,,"15km WSW of Talkeetna, Alaska",0.45,35,",ak,",reviewed,1538024488089,"M 1.5 - 15km WSW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767452556,https://earthquake.usgs.gov/earthquakes/eventpage/ak20264961 +,,37371050,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37371050&format=geojson,0.06653,,49.0,",ci37371050,",0.9,ml,,ci,40.0,"6km NNE of Beaumont, CA",0.14,12,",ci,",reviewed,1538023928100,"M 0.9 - 6km NNE of Beaumont, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538064088324,https://earthquake.usgs.gov/earthquakes/eventpage/ci37371050 +,,61423357,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61423357&format=geojson,0.08256,,87.0,",uw61423357,",1.51,ml,,uw,22.0,"13km S of Riverbend, Washington",0.13,35,",uw,",reviewed,1538023777650,"M 1.5 - 13km S of Riverbend, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538082257110,https://earthquake.usgs.gov/earthquakes/eventpage/uw61423357 +,,61423352,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61423352&format=geojson,0.1559,,180.0,",uw61423352,",0.97,ml,,uw,20.0,"26km E of Castle Rock, Washington",0.11,14,",uw,",reviewed,1538023721120,"M 1.0 - 26km E of Castle Rock, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538081599930,https://earthquake.usgs.gov/earthquakes/eventpage/uw61423352 +,,73090371,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73090371&format=geojson,0.1268,,293.0,",nc73090371,",0.66,md,,nc,12.0,"20km SSE of Mammoth Lakes, CA",0.04,7,",nc,",reviewed,1538023488270,"M 0.7 - 20km SSE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538064184627,https://earthquake.usgs.gov/earthquakes/eventpage/nc73090371 +,,1000h34j,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h34j&format=geojson,3.374,,98.0,",us1000h34j,",5.0,mb,,us,,"45km NNE of San Isidro, Philippines",0.99,385,",us,",reviewed,1538023471260,"M 5.0 - 45km NNE of San Isidro, Philippines",0,earthquake,",geoserve,origin,phase-data,",480.0,1538027112040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h34j +,,1000h34i,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h34i&format=geojson,3.413,,106.0,",us1000h34i,",4.7,mb,,us,,"49km N of Santa Monica, Philippines",0.51,340,",us,",reviewed,1538023419080,"M 4.7 - 49km N of Santa Monica, Philippines",0,earthquake,",geoserve,origin,phase-data,",480.0,1538028036040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h34i +,,20271600,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271600&format=geojson,,,,",ak20271600,",1.6,ml,,ak,,"75km SSW of Kaktovik, Alaska",0.67,39,",ak,",reviewed,1538023191474,"M 1.6 - 75km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767452041,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271600 +,,73090366,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73090366&format=geojson,0.005202,,95.0,",nc73090366,",0.88,md,,nc,12.0,"5km NW of The Geysers, CA",0.04,12,",nc,",automatic,1538023151770,"M 0.9 - 5km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538024102568,https://earthquake.usgs.gov/earthquakes/eventpage/nc73090366 +,,37371026,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37371026&format=geojson,0.08104,,63.0,",ci37371026,",0.29,ml,,ci,17.0,"9km NE of Aguanga, CA",0.18,1,",ci,",reviewed,1538021762850,"M 0.3 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538054981231,https://earthquake.usgs.gov/earthquakes/eventpage/ci37371026 +,,20264951,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20264951&format=geojson,,,,",ak20264951,",1.1,ml,,ak,,"36km WNW of Kalifornsky, Alaska",0.53,19,",ak,",reviewed,1538021753517,"M 1.1 - 36km WNW of Kalifornsky, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767451382,https://earthquake.usgs.gov/earthquakes/eventpage/ak20264951 +,,20264949,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20264949&format=geojson,,,,",ak20264949,",1.1,ml,,ak,,"6km NNE of Talkeetna, Alaska",0.73,19,",ak,",reviewed,1538021680274,"M 1.1 - 6km NNE of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767450794,https://earthquake.usgs.gov/earthquakes/eventpage/ak20264949 +,,37371010,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37371010&format=geojson,0.007305,,39.0,",ci37371010,",0.48,ml,,ci,25.0,"10km NE of Aguanga, CA",0.17,4,",ci,",reviewed,1538021516200,"M 0.5 - 10km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538055054700,https://earthquake.usgs.gov/earthquakes/eventpage/ci37371010 +,,20264946,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20264946&format=geojson,,,,",ak20264946,",0.5,ml,,ak,,"44km SW of North Nenana, Alaska",0.49,4,",ak,",reviewed,1538021396330,"M 0.5 - 44km SW of North Nenana, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767450276,https://earthquake.usgs.gov/earthquakes/eventpage/ak20264946 +,,20271596,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271596&format=geojson,,,,",ak20271596,",1.5,ml,,ak,,"77km SSW of Kaktovik, Alaska",0.39,35,",ak,",reviewed,1538021370300,"M 1.5 - 77km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767449774,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271596 +,,37370994,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37370994&format=geojson,0.08229,,67.0,",ci37370994,",0.34,ml,,ci,13.0,"9km NE of Aguanga, CA",0.12,2,",ci,",reviewed,1538021348590,"M 0.3 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538054994381,https://earthquake.usgs.gov/earthquakes/eventpage/ci37370994 +,,20264941,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20264941&format=geojson,,,,",ak20264941,",2.1,ml,,ak,,"103km SW of Homer, Alaska",0.57,68,",ak,",reviewed,1538020846772,"M 2.1 - 103km SW of Homer, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538767449060,https://earthquake.usgs.gov/earthquakes/eventpage/ak20264941 +,2.0,73090356,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73090356&format=geojson,0.4288,1.0,329.0,",nn00658391,nc73090356,",1.58,md,,nc,11.0,"17km S of Bridgeport, CA",0.05,39,",nn,nc,",reviewed,1538020788650,"M 1.6 - 17km S of Bridgeport, CA",0,earthquake,",dyfi,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538075403988,https://earthquake.usgs.gov/earthquakes/eventpage/nc73090356 +,,00658454,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658454&format=geojson,0.245,,76.21,",nn00658454,",1.4,ml,,nn,16.0,"8km S of Bridgeport, California",0.18,30,",nn,",reviewed,1538020787748,"M 1.4 - 8km S of Bridgeport, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538100349055,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658454 +,,00658393,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658393&format=geojson,0.063,,167.41,",nn00658393,",0.7,ml,,nn,6.0,"35km ESE of Hawthorne, Nevada",0.1343,8,",nn,",reviewed,1538020772210,"M 0.7 - 35km ESE of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538100317921,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658393 +,,61787481,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61787481&format=geojson,0.01992,,116.0,",av61787481,",0.3,ml,,av,5.0,"41km ENE of Adak, Alaska",0.09,1,",av,",reviewed,1538020679550,"M 0.3 - 41km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538152037450,https://earthquake.usgs.gov/earthquakes/eventpage/av61787481 +,4.9,1000h33v,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h33v&format=geojson,0.09,8.0,32.0,",us1000h33v,",3.1,mb_lg,,us,,"2km NE of Langston, Oklahoma",0.16,152,",us,",reviewed,1538019970940,"M 3.1 - 2km NE of Langston, Oklahoma",0,earthquake,",dyfi,geoserve,origin,phase-data,",-360.0,1538367233430,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h33v +,2.2,37370970,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37370970&format=geojson,0.04586,2.0,15.0,",ci37370970,",2.07,ml,,ci,98.0,"7km SSW of Idyllwild, CA",0.17,66,",ci,",reviewed,1538019898030,"M 2.1 - 7km SSW of Idyllwild, CA",0,earthquake,",dyfi,focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538063698910,https://earthquake.usgs.gov/earthquakes/eventpage/ci37370970 +,3.0,70615022,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70615022&format=geojson,0.09146,13.0,152.0,",us1000h33u,hv70615022,",3.11,ml,,hv,52.0,"15km NNW of Waikoloa Village, Hawaii",0.11,153,",us,hv,",reviewed,1538019744240,"M 3.1 - 15km NNW of Waikoloa Village, Hawaii",0,earthquake,",dyfi,geoserve,origin,phase-data,",-600.0,1538158637564,https://earthquake.usgs.gov/earthquakes/eventpage/hv70615022 +,,00658388,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658388&format=geojson,0.343,,178.36,",nn00658388,",0.6,ml,,nn,7.0,"30km SW of Hawthorne, Nevada",0.1859,6,",nn,",reviewed,1538019034735,"M 0.6 - 30km SW of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538100316488,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658388 +,,20264931,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20264931&format=geojson,,,,",ak20264931,",0.7,ml,,ak,,"29km S of Ester, Alaska",0.6,8,",ak,",reviewed,1538019022370,"M 0.7 - 29km S of Ester, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767448522,https://earthquake.usgs.gov/earthquakes/eventpage/ak20264931 +,,80311379,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80311379&format=geojson,0.098,,217.0,",mb80311379,",0.37,ml,,mb,5.0,"4km ENE of Driggs, Idaho",0.29,2,",mb,",reviewed,1538018772100,"M 0.4 - 4km ENE of Driggs, Idaho",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538058060250,https://earthquake.usgs.gov/earthquakes/eventpage/mb80311379 +,,37370954,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37370954&format=geojson,0.02627,,37.0,",ci37370954,",1.01,ml,,ci,48.0,"8km NE of Aguanga, CA",0.21,16,",ci,",reviewed,1538018520910,"M 1.0 - 8km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538055121260,https://earthquake.usgs.gov/earthquakes/eventpage/ci37370954 +,,2018270002,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018270002&format=geojson,0.1563,,292.0,",pr2018270002,",2.08,md,,pr,5.0,"5km NW of Puerto Real, Puerto Rico",0.29,67,",pr,",reviewed,1538018448780,"M 2.1 - 5km NW of Puerto Real, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538037691742,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018270002 +,,61787466,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61787466&format=geojson,0.01966,,116.0,",av61787466,",-0.1,ml,,av,5.0,"41km ENE of Adak, Alaska",0.09,0,",av,",reviewed,1538018398820,"M -0.1 - 41km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538153146040,https://earthquake.usgs.gov/earthquakes/eventpage/av61787466 +,,20264929,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20264929&format=geojson,,,,",ak20264929,",2.2,ml,,ak,,"76km SSW of Kaktovik, Alaska",0.54,74,",ak,",reviewed,1538018371755,"M 2.2 - 76km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767447874,https://earthquake.usgs.gov/earthquakes/eventpage/ak20264929 +,,00658387,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658387&format=geojson,0.061,,170.53,",nn00658387,",0.7,ml,,nn,6.0,"35km ESE of Hawthorne, Nevada",0.0561,8,",nn,",reviewed,1538018338310,"M 0.7 - 35km ESE of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538100315024,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658387 +,,20264926,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20264926&format=geojson,,,,",ak20264926,",2.1,ml,,ak,,"77km S of Kaktovik, Alaska",0.52,68,",ak,",reviewed,1538018276379,"M 2.1 - 77km S of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767447252,https://earthquake.usgs.gov/earthquakes/eventpage/ak20264926 +,,70805019,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70805019&format=geojson,0.0256,,104.0,",av70805019,",-0.84,ml,,av,6.0,"12km W of Akutan, Alaska",0.14,0,",av,",reviewed,1538018198960,"M -0.8 - 12km W of Akutan, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538155017130,https://earthquake.usgs.gov/earthquakes/eventpage/av70805019 +,,70805004,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70805004&format=geojson,0.02649,,206.0,",av70805004,",-0.62,ml,,av,4.0,"93km SE of King Salmon, Alaska",0.09,0,",av,",reviewed,1538018135300,"M -0.6 - 93km SE of King Salmon, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538154028950,https://earthquake.usgs.gov/earthquakes/eventpage/av70805004 +,,00658386,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658386&format=geojson,0.533,,228.74,",nn00658386,",0.4,ml,,nn,6.0,"44km N of Fort Irwin, California",0.1955,2,",nn,",reviewed,1538018009055,"M 0.4 - 44km N of Fort Irwin, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538100313607,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658386 +,,37370938,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37370938&format=geojson,0.0629,,60.0,",ci37370938,",1.7,ml,,ci,41.0,"23km N of Yucca Valley, CA",0.19,44,",ci,",reviewed,1538017699110,"M 1.7 - 23km N of Yucca Valley, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538055012186,https://earthquake.usgs.gov/earthquakes/eventpage/ci37370938 +,,70805009,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70805009&format=geojson,0.01984,,94.0,",av70805009,",0.47,ml,,av,10.0,"12km W of Akutan, Alaska",0.31,3,",av,",reviewed,1538017598560,"M 0.5 - 12km W of Akutan, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538154731920,https://earthquake.usgs.gov/earthquakes/eventpage/av70805009 +,,37410901,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37410901&format=geojson,0.03124,,56.0,",ci37410901,",0.61,ml,,ci,27.0,"8km ENE of Aguanga, CA",0.19,6,",ci,",reviewed,1538017557750,"M 0.6 - 8km ENE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538062916518,https://earthquake.usgs.gov/earthquakes/eventpage/ci37410901 +,,37370930,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37370930&format=geojson,0.03537,,33.0,",ci37370930,",0.85,ml,,ci,44.0,"8km ENE of Aguanga, CA",0.19,11,",ci,",reviewed,1538017544320,"M 0.9 - 8km ENE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538062649940,https://earthquake.usgs.gov/earthquakes/eventpage/ci37370930 +,,20264925,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20264925&format=geojson,,,,",ak20264925,",2.2,ml,,ak,,"275km S of Cape Yakataga, Alaska",0.58,74,",ak,",reviewed,1538017172227,"M 2.2 - 275km S of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538767446652,https://earthquake.usgs.gov/earthquakes/eventpage/ak20264925 +,,73090346,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73090346&format=geojson,0.1472,,178.0,",nc73090346,",0.96,md,,nc,22.0,"14km SSW of Toms Place, CA",0.04,14,",nc,",reviewed,1538017165210,"M 1.0 - 14km SSW of Toms Place, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538064303234,https://earthquake.usgs.gov/earthquakes/eventpage/nc73090346 +,,37370922,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37370922&format=geojson,0.06146,,71.0,",ci37370922,",1.61,ml,,ci,38.0,"23km N of Yucca Valley, CA",0.18,40,",ci,",reviewed,1538017127510,"M 1.6 - 23km N of Yucca Valley, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538055125420,https://earthquake.usgs.gov/earthquakes/eventpage/ci37370922 +,,61787451,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61787451&format=geojson,0.05257,,88.0,",av61787451,",0.12,ml,,av,10.0,"109km ESE of King Salmon, Alaska",0.23,0,",av,",reviewed,1538016910610,"M 0.1 - 109km ESE of King Salmon, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538149607050,https://earthquake.usgs.gov/earthquakes/eventpage/av61787451 +,,73090341,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73090341&format=geojson,0.008872,,75.0,",nc73090341,",1.12,md,,nc,12.0,"6km NW of The Geysers, CA",0.04,19,",nc,",automatic,1538016616460,"M 1.1 - 6km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538029564225,https://earthquake.usgs.gov/earthquakes/eventpage/nc73090341 +,,37370914,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37370914&format=geojson,0.0597,,87.0,",ci37370914,",0.85,ml,,ci,43.0,"10km NE of Borrego Springs, CA",0.2,11,",ci,",reviewed,1538016603330,"M 0.9 - 10km NE of Borrego Springs, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538062217996,https://earthquake.usgs.gov/earthquakes/eventpage/ci37370914 +,,37370898,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37370898&format=geojson,0.01021,,37.0,",ci37370898,",0.62,ml,,ci,38.0,"9km NE of Aguanga, CA",0.16,6,",ci,",reviewed,1538016373720,"M 0.6 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538061641550,https://earthquake.usgs.gov/earthquakes/eventpage/ci37370898 +,,2018270001,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018270001&format=geojson,0.4526,,267.0,",pr2018270001,",2.75,md,,pr,15.0,"48km N of Brenas, Puerto Rico",0.27,116,",pr,",reviewed,1538016275750,"M 2.8 - 48km N of Brenas, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538029594850,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018270001 +,,20264923,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20264923&format=geojson,,,,",ak20264923,",1.6,ml,,ak,,"88km E of Eagle Village, Alaska",0.44,39,",ak,",reviewed,1538016166867,"M 1.6 - 88km E of Eagle Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538767446101,https://earthquake.usgs.gov/earthquakes/eventpage/ak20264923 +,,73090336,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73090336&format=geojson,0.03665,,174.0,",nc73090336,",0.21,md,,nc,11.0,"11km ENE of Mammoth Lakes, CA",0.03,1,",nc,",reviewed,1538016134670,"M 0.2 - 11km ENE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538063522159,https://earthquake.usgs.gov/earthquakes/eventpage/nc73090336 +,,73090331,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73090331&format=geojson,0.02083,,88.0,",nc73090331,",0.6,md,,nc,12.0,"2km NNW of The Geysers, CA",0.03,6,",nc,",automatic,1538015950310,"M 0.6 - 2km NNW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538017083843,https://earthquake.usgs.gov/earthquakes/eventpage/nc73090331 +,,1000h33k,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h33k&format=geojson,4.614,,109.0,",us1000h33k,",4.7,mb,,us,,"21km SE of Port-Vila, Vanuatu",0.62,340,",us,",reviewed,1538015820790,"M 4.7 - 21km SE of Port-Vila, Vanuatu",0,earthquake,",geoserve,origin,phase-data,",660.0,1538018469040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h33k +,,20264915,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20264915&format=geojson,,,,",ak20264915,",1.8,ml,,ak,,"81km NNW of Cape Yakataga, Alaska",0.9,50,",ak,",automatic,1538015086309,"M 1.8 - 81km NNW of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,",-540.0,1538015424015,https://earthquake.usgs.gov/earthquakes/eventpage/ak20264915 +,,20264901,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20264901&format=geojson,,,,",ak20264901,",3.0,ml,,ak,,"59km SW of Anchor Point, Alaska",0.86,138,",ak,",reviewed,1538014960189,"M 3.0 - 59km SW of Anchor Point, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539040774743,https://earthquake.usgs.gov/earthquakes/eventpage/ak20264901 +,,20264899,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20264899&format=geojson,,,,",ak20264899,",0.5,ml,,ak,,"81km NNE of Sutton-Alpine, Alaska",0.26,4,",ak,",reviewed,1538014833666,"M 0.5 - 81km NNE of Sutton-Alpine, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767444419,https://earthquake.usgs.gov/earthquakes/eventpage/ak20264899 +,,20264893,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20264893&format=geojson,,,,",ak20264893,",1.3,ml,,ak,,"64km SSW of Cantwell, Alaska",0.52,26,",ak,",reviewed,1538014307145,"M 1.3 - 64km SSW of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767443762,https://earthquake.usgs.gov/earthquakes/eventpage/ak20264893 +,,20264895,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20264895&format=geojson,,,,",ak20264895,",3.0,ml,,ak,,Gulf of Alaska,0.75,138,",ak,",reviewed,1538014303428,M 3.0 - Gulf of Alaska,0,earthquake,",geoserve,origin,phase-data,",-600.0,1538767443087,https://earthquake.usgs.gov/earthquakes/eventpage/ak20264895 +,,37370882,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37370882&format=geojson,0.02469,,32.0,",ci37370882,",0.73,ml,,ci,38.0,"8km NE of Aguanga, CA",0.16,8,",ci,",reviewed,1538014228990,"M 0.7 - 8km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538061152620,https://earthquake.usgs.gov/earthquakes/eventpage/ci37370882 +,,37370866,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37370866&format=geojson,0.0348,,33.0,",ci37370866,",0.83,ml,,ci,39.0,"8km ENE of Aguanga, CA",0.16,11,",ci,",reviewed,1538014096730,"M 0.8 - 8km ENE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538060727070,https://earthquake.usgs.gov/earthquakes/eventpage/ci37370866 +,,00658498,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658498&format=geojson,0.337,,176.59,",nn00658498,",0.9,ml,,nn,8.0,"29km SW of Hawthorne, Nevada",0.0973,12,",nn,",reviewed,1538014083625,"M 0.9 - 29km SW of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538100363174,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658498 +,,70804994,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804994&format=geojson,0.009497,,56.0,",av70804994,",0.29,ml,,av,11.0,"13km W of Akutan, Alaska",0.23,1,",av,",reviewed,1538013922680,"M 0.3 - 13km W of Akutan, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538150803810,https://earthquake.usgs.gov/earthquakes/eventpage/av70804994 +,,20264890,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20264890&format=geojson,,,,",ak20264890,",2.0,ml,,ak,,"63km SSW of Redoubt Volcano, Alaska",0.55,62,",ak,",reviewed,1538013621857,"M 2.0 - 63km SSW of Redoubt Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767442371,https://earthquake.usgs.gov/earthquakes/eventpage/ak20264890 +,,20271584,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271584&format=geojson,,,,",ak20271584,",2.7,ml,,ak,,"246km SE of Kodiak, Alaska",0.57,112,",ak,",reviewed,1538013369700,"M 2.7 - 246km SE of Kodiak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538767441802,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271584 +,4.0,1000h335,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h335&format=geojson,0.302,2.0,107.0,",us1000h335,",2.8,mb_lg,,us,,"19km NNE of Taloga, Oklahoma",0.33,121,",us,",reviewed,1538013352350,"M 2.8 - 19km NNE of Taloga, Oklahoma",0,earthquake,",dyfi,geoserve,origin,phase-data,",-360.0,1538018479682,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h335 +,,73090326,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73090326&format=geojson,0.01115,,178.0,",nc73090326,",0.47,md,,nc,12.0,"5km SW of Mammoth Lakes, CA",0.05,3,",nc,",reviewed,1538013308210,"M 0.5 - 5km SW of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538066102985,https://earthquake.usgs.gov/earthquakes/eventpage/nc73090326 +,,20264888,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20264888&format=geojson,,,,",ak20264888,",0.9,ml,,ak,,"66km WSW of Kobuk, Alaska",0.46,12,",ak,",reviewed,1538012805262,"M 0.9 - 66km WSW of Kobuk, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767441216,https://earthquake.usgs.gov/earthquakes/eventpage/ak20264888 +,,20264886,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20264886&format=geojson,,,,",ak20264886,",0.6,ml,,ak,,"23km S of Ester, Alaska",0.61,6,",ak,",reviewed,1538012727459,"M 0.6 - 23km S of Ester, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767440664,https://earthquake.usgs.gov/earthquakes/eventpage/ak20264886 +,,20271581,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271581&format=geojson,,,,",ak20271581,",2.6,ml,,ak,,"261km SE of Kodiak, Alaska",0.45,104,",ak,",reviewed,1538012639566,"M 2.6 - 261km SE of Kodiak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538767439971,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271581 +,,37370850,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37370850&format=geojson,0.01039,,47.0,",ci37370850,",0.56,ml,,ci,22.0,"10km NE of Aguanga, CA",0.15,5,",ci,",reviewed,1538012543030,"M 0.6 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538055078050,https://earthquake.usgs.gov/earthquakes/eventpage/ci37370850 +,,37370842,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37370842&format=geojson,0.01012,,38.0,",ci37370842,",0.24,ml,,ci,27.0,"10km NE of Aguanga, CA",0.15,1,",ci,",reviewed,1538012533760,"M 0.2 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538060060517,https://earthquake.usgs.gov/earthquakes/eventpage/ci37370842 +,,70614892,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70614892&format=geojson,0.003873,,143.0,",hv70614892,",1.71,md,,hv,13.0,"2km WSW of Volcano, Hawaii",0.18,45,",hv,",automatic,1538011795530,"M 1.7 - 2km WSW of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538012135780,https://earthquake.usgs.gov/earthquakes/eventpage/hv70614892 +,,70614887,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70614887&format=geojson,0.02915,,166.0,",hv70614887,",1.7,md,,hv,24.0,"5km SE of Pahala, Hawaii",0.09,44,",hv,",reviewed,1538011771980,"M 1.7 - 5km SE of Pahala, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538017065270,https://earthquake.usgs.gov/earthquakes/eventpage/hv70614887 +,,20271580,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271580&format=geojson,,,,",ak20271580,",1.1,ml,,ak,,"63km ENE of Cape Yakataga, Alaska",0.5,19,",ak,",reviewed,1538011688961,"M 1.1 Ice Quake - 63km ENE of Cape Yakataga, Alaska",0,ice quake,",geoserve,origin,phase-data,",-540.0,1538767439440,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271580 +,,20264884,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20264884&format=geojson,,,,",ak20264884,",1.0,ml,,ak,,"49km NNW of Yakutat, Alaska",0.67,15,",ak,",reviewed,1538011476880,"M 1.0 - 49km NNW of Yakutat, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767438819,https://earthquake.usgs.gov/earthquakes/eventpage/ak20264884 +,,73090321,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73090321&format=geojson,0.009864,,90.0,",nc73090321,",1.03,md,,nc,11.0,"11km WNW of The Geysers, CA",0.03,16,",nc,",automatic,1538011461960,"M 1.0 - 11km WNW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538011560287,https://earthquake.usgs.gov/earthquakes/eventpage/nc73090321 +,,37370826,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37370826&format=geojson,0.006902,,54.0,",ci37370826,",0.23,ml,,ci,22.0,"10km NE of Aguanga, CA",0.13,1,",ci,",reviewed,1538011364540,"M 0.2 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538059681060,https://earthquake.usgs.gov/earthquakes/eventpage/ci37370826 +,,37370818,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37370818&format=geojson,0.03284,,39.0,",ci37370818,",0.76,ml,,ci,26.0,"8km ENE of Aguanga, CA",0.14,9,",ci,",reviewed,1538011279400,"M 0.8 - 8km ENE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538055189540,https://earthquake.usgs.gov/earthquakes/eventpage/ci37370818 +,,37370802,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37370802&format=geojson,0.04616,,83.0,",ci37370802,",1.13,ml,,ci,47.0,"8km N of Cabazon, CA",0.14,20,",ci,",reviewed,1538010673130,"M 1.1 - 8km N of Cabazon, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538059483149,https://earthquake.usgs.gov/earthquakes/eventpage/ci37370802 +,,00658358,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658358&format=geojson,0.346,,177.79,",nn00658358,",0.6,ml,,nn,6.0,"30km WSW of Hawthorne, Nevada",0.1998,6,",nn,",reviewed,1538010622503,"M 0.6 - 30km WSW of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538100310171,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658358 +,,20264880,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20264880&format=geojson,,,,",ak20264880,",0.8,ml,,ak,,"21km NNE of Badger, Alaska",0.34,10,",ak,",reviewed,1538010529463,"M 0.8 Explosion - 21km NNE of Badger, Alaska",0,explosion,",geoserve,origin,phase-data,",-540.0,1538767438285,https://earthquake.usgs.gov/earthquakes/eventpage/ak20264880 +,,20264882,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20264882&format=geojson,,,,",ak20264882,",1.6,ml,,ak,,"79km SSW of Kaktovik, Alaska",0.54,39,",ak,",reviewed,1538010520840,"M 1.6 - 79km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767437750,https://earthquake.usgs.gov/earthquakes/eventpage/ak20264882 +,,37370794,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37370794&format=geojson,0.07456,,51.0,",ci37370794,",0.83,ml,,ci,43.0,"13km WSW of Ocotillo Wells, CA",0.18,11,",ci,",reviewed,1538010420490,"M 0.8 - 13km WSW of Ocotillo Wells, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538058967727,https://earthquake.usgs.gov/earthquakes/eventpage/ci37370794 +,,73090316,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73090316&format=geojson,0.01319,,60.0,",nc73090316,",1.65,md,,nc,49.0,"6km WNW of The Geysers, CA",0.06,42,",nc,",reviewed,1538010401820,"M 1.7 - 6km WNW of The Geysers, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538025183669,https://earthquake.usgs.gov/earthquakes/eventpage/nc73090316 +,,37370778,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37370778&format=geojson,0.0772,,38.0,",ci37370778,",2.56,ml,,ci,92.0,"13km WSW of Ocotillo Wells, CA",0.19,101,",ci,",reviewed,1538010228430,"M 2.6 - 13km WSW of Ocotillo Wells, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538058059870,https://earthquake.usgs.gov/earthquakes/eventpage/ci37370778 +,,00658354,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658354&format=geojson,0.247,,121.31,",nn00658354,",0.6,ml,,nn,7.0,"45km WNW of Gabbs, Nevada",0.1334,6,",nn,",reviewed,1538010194986,"M 0.6 - 45km WNW of Gabbs, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538100308880,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658354 +,,20264877,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20264877&format=geojson,,,,",ak20264877,",1.6,ml,,ak,,"123km NNW of Arctic Village, Alaska",0.49,39,",ak,",reviewed,1538010165605,"M 1.6 - 123km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767437131,https://earthquake.usgs.gov/earthquakes/eventpage/ak20264877 +,,20264874,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20264874&format=geojson,,,,",ak20264874,",0.6,ml,,ak,,"68km WSW of Willow, Alaska",0.4,6,",ak,",reviewed,1538009903263,"M 0.6 - 68km WSW of Willow, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767436529,https://earthquake.usgs.gov/earthquakes/eventpage/ak20264874 +,,20271574,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271574&format=geojson,,,,",ak20271574,",1.2,ml,,ak,,"39km SW of Anchor Point, Alaska",0.33,22,",ak,",reviewed,1538009750240,"M 1.2 - 39km SW of Anchor Point, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538767436009,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271574 +,,37370762,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37370762&format=geojson,0.08681,,56.0,",ci37370762,",0.33,ml,,ci,24.0,"9km ENE of Aguanga, CA",0.11,2,",ci,",reviewed,1538009738960,"M 0.3 - 9km ENE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538057015836,https://earthquake.usgs.gov/earthquakes/eventpage/ci37370762 +,,73090306,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73090306&format=geojson,0.05004,,191.0,",nc73090306,",1.33,md,,nc,4.0,"16km ENE of Pinnacles, CA",0.04,27,",nc,",reviewed,1538009722440,"M 1.3 - 16km ENE of Pinnacles, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538022543394,https://earthquake.usgs.gov/earthquakes/eventpage/nc73090306 +,,70614832,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70614832&format=geojson,0.0306,,147.0,",hv70614832,",1.77,md,,hv,43.0,"4km SE of Pahala, Hawaii",0.09,48,",hv,",reviewed,1538009678740,"M 1.8 - 4km SE of Pahala, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538012661910,https://earthquake.usgs.gov/earthquakes/eventpage/hv70614832 +,,20264872,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20264872&format=geojson,,,,",ak20264872,",1.6,ml,,ak,,"123km NNW of Arctic Village, Alaska",0.78,39,",ak,",reviewed,1538009428474,"M 1.6 - 123km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767435433,https://earthquake.usgs.gov/earthquakes/eventpage/ak20264872 +,,20264870,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20264870&format=geojson,,,,",ak20264870,",1.4,ml,,ak,,"91km NW of Talkeetna, Alaska",0.46,30,",ak,",reviewed,1538009320995,"M 1.4 - 91km NW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767434794,https://earthquake.usgs.gov/earthquakes/eventpage/ak20264870 +,2.0,73090296,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73090296&format=geojson,0.09743,1.0,105.0,",nc73090296,",2.89,md,,nc,67.0,"14km NE of San Simeon, CA",0.06,129,",nc,",reviewed,1538008913380,"M 2.9 - 14km NE of San Simeon, CA",0,earthquake,",dyfi,focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538105255901,https://earthquake.usgs.gov/earthquakes/eventpage/nc73090296 +,,73090301,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73090301&format=geojson,0.003072,,49.0,",nc73090301,",0.75,md,,nc,13.0,"4km W of Mammoth Lakes, CA",0.04,9,",nc,",reviewed,1538008784340,"M 0.8 - 4km W of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538013003908,https://earthquake.usgs.gov/earthquakes/eventpage/nc73090301 +,,73090291,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73090291&format=geojson,0.0187,,233.0,",nc73090291,",0.11,md,,nc,8.0,"1km SW of Mammoth Lakes, CA",0.04,0,",nc,",reviewed,1538008665100,"M 0.1 - 1km SW of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538011624393,https://earthquake.usgs.gov/earthquakes/eventpage/nc73090291 +,,73090286,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73090286&format=geojson,0.05583,,106.0,",nc73090286,nn00658350,",1.36,md,,nc,20.0,"20km SE of Bodie, CA",0.06,28,",nc,nn,",reviewed,1538008613510,"M 1.4 - 20km SE of Bodie, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538100307177,https://earthquake.usgs.gov/earthquakes/eventpage/nc73090286 +,,60297907,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60297907&format=geojson,0.3678,,117.0,",uu60297907,",1.4,ml,,uu,14.0,"20km WNW of Montpelier, Idaho",0.18,30,",uu,",reviewed,1538008054840,"M 1.4 - 20km WNW of Montpelier, Idaho",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538081578450,https://earthquake.usgs.gov/earthquakes/eventpage/uu60297907 +,,20264866,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20264866&format=geojson,,,,",ak20264866,us1000h328,",2.5,ml,,ak,,"128km NNW of Arctic Village, Alaska",0.77,96,",ak,us,",reviewed,1538007623984,"M 2.5 - 128km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539402727040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20264866 +,,1000h327,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h327&format=geojson,2.367,,127.0,",us1000h327,",4.1,mb,,us,,"35km ESE of Minab, Iran",0.82,259,",us,",reviewed,1538007248420,"M 4.1 - 35km ESE of Minab, Iran",0,earthquake,",geoserve,origin,phase-data,",210.0,1539402280040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h327 +,,20264861,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20264861&format=geojson,,,,",ak20264861,",2.1,ml,,ak,,"126km NNW of Arctic Village, Alaska",0.63,68,",ak,",reviewed,1538006867611,"M 2.1 - 126km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538767433320,https://earthquake.usgs.gov/earthquakes/eventpage/ak20264861 +,,2018270000,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018270000&format=geojson,0.1237,,224.0,",pr2018270000,us1000h32d,",2.27,md,,pr,16.0,"4km WNW of Pole Ojea, Puerto Rico",0.2,79,",pr,us,",reviewed,1538006860360,"M 2.3 - 4km WNW of Pole Ojea, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1539401919040,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018270000 +,,73090281,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73090281&format=geojson,0.2945,,51.0,",nc73090281,",1.57,md,,nc,21.0,"8km N of Lake Pillsbury, CA",0.15,38,",nc,",reviewed,1538006729000,"M 1.6 - 8km N of Lake Pillsbury, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538020923226,https://earthquake.usgs.gov/earthquakes/eventpage/nc73090281 +,,00658333,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658333&format=geojson,0.047,,89.45,",nn00658333,",-0.4,ml,,nn,17.0,"45km ESE of Beatty, Nevada",0.123,0,",nn,",reviewed,1538006212185,"M -0.4 - 45km ESE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538014018957,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658333 +,,37370714,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37370714&format=geojson,0.1096,,86.0,",ci37370714,",0.84,ml,,ci,16.0,"27km E of Coso Junction, CA",0.09,11,",ci,",reviewed,1538006177360,"M 0.8 - 27km E of Coso Junction, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538007017478,https://earthquake.usgs.gov/earthquakes/eventpage/ci37370714 +,,37370706,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37370706&format=geojson,0.004888,,42.0,",ci37370706,",0.54,ml,,ci,21.0,"10km NE of Aguanga, CA",0.13,4,",ci,",reviewed,1538006121890,"M 0.5 - 10km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538006973070,https://earthquake.usgs.gov/earthquakes/eventpage/ci37370706 +,,20264857,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20264857&format=geojson,,,,",ak20264857,",2.0,ml,,ak,,"89km NW of Arctic Village, Alaska",0.61,62,",ak,",reviewed,1538005721107,"M 2.0 - 89km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621439633,https://earthquake.usgs.gov/earthquakes/eventpage/ak20264857 +,,20264853,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20264853&format=geojson,,,,",ak20264853,us1000h31q,",2.6,ml,,ak,,"74km SW of Kaktovik, Alaska",0.44,104,",ak,us,",reviewed,1538005418247,"M 2.6 - 74km SW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539401555040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20264853 +,,1000h5s0,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h5s0&format=geojson,5.862,,99.0,",us1000h5s0,",4.4,mb,,us,,South of the Fiji Islands,0.75,298,",us,",reviewed,1538005000720,M 4.4 - South of the Fiji Islands,0,earthquake,",geoserve,origin,phase-data,",-720.0,1539401298040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h5s0 +,,00658321,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658321&format=geojson,0.049,,45.17,",nn00658321,",1.1,ml,,nn,31.0,"45km ESE of Beatty, Nevada",0.0962,19,",nn,",reviewed,1538004711581,"M 1.1 - 45km ESE of Beatty, Nevada",0,earthquake,",focal-mechanism,geoserve,origin,phase-data,",-480.0,1538420368884,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658321 +,,1000h5rx,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h5rx&format=geojson,2.044,,157.0,",us1000h5rx,",4.4,mb,,us,,"78km ESE of Yamada, Japan",0.6,298,",us,",reviewed,1538003928830,"M 4.4 - 78km ESE of Yamada, Japan",0,earthquake,",geoserve,origin,phase-data,",600.0,1539400764040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h5rx +,,37370658,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37370658&format=geojson,0.009126,,172.0,",ci37370658,",0.31,ml,,ci,19.0,"9km NE of Aguanga, CA",0.08,1,",ci,",reviewed,1538003629420,"M 0.3 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538006131576,https://earthquake.usgs.gov/earthquakes/eventpage/ci37370658 +,,37370642,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37370642&format=geojson,0.008175,,61.0,",ci37370642,",0.38,ml,,ci,18.0,"10km NE of Aguanga, CA",0.11,2,",ci,",reviewed,1538003327370,"M 0.4 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538004428753,https://earthquake.usgs.gov/earthquakes/eventpage/ci37370642 +,,20264850,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20264850&format=geojson,,,,",ak20264850,",1.8,ml,,ak,,"106km NNW of Arctic Village, Alaska",0.48,50,",ak,",reviewed,1538003261575,"M 1.8 - 106km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621438447,https://earthquake.usgs.gov/earthquakes/eventpage/ak20264850 +,,60297897,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60297897&format=geojson,0.07856,,76.0,",uu60297897,",1.35,ml,,uu,16.0,"24km NNE of Toquerville, Utah",0.16,28,",uu,",reviewed,1538003228080,"M 1.4 - 24km NNE of Toquerville, Utah",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538064448430,https://earthquake.usgs.gov/earthquakes/eventpage/uu60297897 +,,37370634,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37370634&format=geojson,0.1016,,91.0,",ci37370634,",1.11,ml,,ci,27.0,"10km NE of Coachella, CA",0.17,19,",ci,",reviewed,1538003104230,"M 1.1 - 10km NE of Coachella, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538003972458,https://earthquake.usgs.gov/earthquakes/eventpage/ci37370634 +,,73090271,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73090271&format=geojson,0.1458,,165.0,",nc73090271,",1.53,md,,nc,16.0,"8km E of Lopez Point, CA",0.06,36,",nc,",reviewed,1538002919010,"M 1.5 - 8km E of Lopez Point, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538019184052,https://earthquake.usgs.gov/earthquakes/eventpage/nc73090271 +,,20264848,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20264848&format=geojson,,,,",ak20264848,",2.0,ml,,ak,,"123km NNW of Arctic Village, Alaska",0.71,62,",ak,",reviewed,1538002790453,"M 2.0 - 123km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621437865,https://earthquake.usgs.gov/earthquakes/eventpage/ak20264848 +,,37370626,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37370626&format=geojson,0.00771,,98.0,",ci37370626,",0.36,ml,,ci,17.0,"9km NE of Aguanga, CA",0.08,2,",ci,",reviewed,1538002788720,"M 0.4 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538003592752,https://earthquake.usgs.gov/earthquakes/eventpage/ci37370626 +,,37370618,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37370618&format=geojson,0.003975,,40.0,",ci37370618,",0.49,ml,,ci,24.0,"10km NE of Aguanga, CA",0.13,4,",ci,",reviewed,1538002737780,"M 0.5 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538004230662,https://earthquake.usgs.gov/earthquakes/eventpage/ci37370618 +,,73090261,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73090261&format=geojson,0.09543,,120.0,",nc73090261,",1.46,md,,nc,7.0,"7km SE of Boonville, CA",0.06,33,",nc,",reviewed,1538002593180,"M 1.5 - 7km SE of Boonville, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538016722807,https://earthquake.usgs.gov/earthquakes/eventpage/nc73090261 +,,20270619,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270619&format=geojson,,,,",ak20270619,",2.1,ml,,ak,,"55km S of Nikolski, Alaska",0.73,68,",ak,",reviewed,1538002456675,"M 2.1 - 55km S of Nikolski, Alaska",0,earthquake,",geoserve,origin,phase-data,",-660.0,1538683652176,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270619 +,,20264841,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20264841&format=geojson,,,,",ak20264841,us1000h30w,",2.6,ml,,ak,,"128km NNW of Arctic Village, Alaska",0.59,104,",ak,us,",reviewed,1538002388575,"M 2.6 - 128km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539400260040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20264841 +,,60297887,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60297887&format=geojson,0.07452,,55.0,",uu60297887,",1.57,ml,,uu,17.0,"23km NE of Toquerville, Utah",0.16,38,",uu,",reviewed,1538002169680,"M 1.6 - 23km NE of Toquerville, Utah",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538058323100,https://earthquake.usgs.gov/earthquakes/eventpage/uu60297887 +,,70614572,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70614572&format=geojson,0.04998,,88.0,",hv70614572,",1.89,ml,,hv,43.0,"12km SSE of Volcano, Hawaii",0.15,55,",hv,",automatic,1538002145640,"M 1.9 - 12km SSE of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538002484950,https://earthquake.usgs.gov/earthquakes/eventpage/hv70614572 +,,20264836,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20264836&format=geojson,,,,",ak20264836,",1.1,ml,,ak,,"137km WNW of Arctic Village, Alaska",0.47,19,",ak,",reviewed,1538002118529,"M 1.1 - 137km WNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621436115,https://earthquake.usgs.gov/earthquakes/eventpage/ak20264836 +,,20270616,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270616&format=geojson,,,,",ak20270616,",1.0,ml,,ak,,"88km WNW of Skagway, Alaska",0.73,15,",ak,",reviewed,1538001955051,"M 1.0 - 88km WNW of Skagway, Alaska",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538621435582,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270616 +,,61787401,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61787401&format=geojson,0.01889,,207.0,",av61787401,",-0.44,ml,,av,4.0,"42km ENE of Adak, Alaska",0.07,0,",av,",reviewed,1538001746350,"M -0.4 - 42km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538087726060,https://earthquake.usgs.gov/earthquakes/eventpage/av61787401 +,,1000h30j,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h30j&format=geojson,0.698,,107.0,",us1000h30j,",4.4,mb,,us,,"23km ENE of Lais, Philippines",0.65,298,",us,",reviewed,1538001628000,"M 4.4 - 23km ENE of Lais, Philippines",0,earthquake,",geoserve,origin,phase-data,",480.0,1539399966040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h30j +,,61423282,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61423282&format=geojson,0.01566,,250.0,",uw61423282,",1.19,md,,uw,3.0,"20km ENE of Cle Elum, Washington",0.22,22,",uw,",reviewed,1538001311420,"M 1.2 Explosion - 20km ENE of Cle Elum, Washington",0,explosion,",geoserve,origin,phase-data,",-480.0,1538009364460,https://earthquake.usgs.gov/earthquakes/eventpage/uw61423282 +,,20264834,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20264834&format=geojson,,,,",ak20264834,",1.1,ml,,ak,,"43km WSW of Whittier, Alaska",0.79,19,",ak,",reviewed,1538001269247,"M 1.1 - 43km WSW of Whittier, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621435074,https://earthquake.usgs.gov/earthquakes/eventpage/ak20264834 +,,37370554,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37370554&format=geojson,0.048,,83.0,",ci37370554,",0.58,ml,,ci,21.0,"8km NNE of Anza, CA",0.07,5,",ci,",reviewed,1537999793390,"M 0.6 - 8km NNE of Anza, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538002957613,https://earthquake.usgs.gov/earthquakes/eventpage/ci37370554 +,,73090256,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73090256&format=geojson,0.007105,,52.0,",nc73090256,",0.44,md,,nc,23.0,"7km NW of The Geysers, CA",0.05,3,",nc,",reviewed,1537999774870,"M 0.4 - 7km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538005083017,https://earthquake.usgs.gov/earthquakes/eventpage/nc73090256 +,,1000h303,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h303&format=geojson,3.485,,28.0,",us1000h303,",4.9,mb,,us,,Fiji region,0.7,369,",us,",reviewed,1537998795490,M 4.9 - Fiji region,0,earthquake,",geoserve,origin,phase-data,",-720.0,1539399618040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h303 +,,20264826,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20264826&format=geojson,,,,",ak20264826,",0.7,ml,,ak,,"138km SSW of Old Crow, Canada",0.35,8,",ak,",reviewed,1537998757528,"M 0.7 - 138km SSW of Old Crow, Canada",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621434576,https://earthquake.usgs.gov/earthquakes/eventpage/ak20264826 +,,20264844,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20264844&format=geojson,,,,",ak20264844,",1.2,ml,,ak,,"74km NW of Arctic Village, Alaska",0.45,22,",ak,",reviewed,1537998739495,"M 1.2 - 74km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621434009,https://earthquake.usgs.gov/earthquakes/eventpage/ak20264844 +,2.0,1000h300,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h300&format=geojson,,2.0,63.0,",us1000h300,",3.0,ml,,us,,"12km S of Wilson, Oklahoma",0.76,139,",us,",reviewed,1537998469000,"M 3.0 - 12km S of Wilson, Oklahoma",0,earthquake,",dyfi,geoserve,origin,phase-data,",-360.0,1539396048136,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h300 +,,1000h301,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h301&format=geojson,27.656,,63.0,",us1000h301,",4.8,mb,,us,,Southern East Pacific Rise,0.65,354,",us,",reviewed,1537997802500,M 4.8 - Southern East Pacific Rise,0,earthquake,",geoserve,origin,phase-data,",-420.0,1539395652040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h301 +,,00658303,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658303&format=geojson,0.155,,135.34,",nn00658303,",1.5,ml,,nn,17.0,"71km N of Tonopah, Nevada",0.2554,35,",nn,",reviewed,1537997639567,"M 1.5 Explosion - 71km N of Tonopah, Nevada",0,explosion,",geoserve,origin,phase-data,",-480.0,1538014010767,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658303 +,,20264820,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20264820&format=geojson,,,,",ak20264820,",1.6,ml,,ak,,"67km WSW of Cantwell, Alaska",0.5,39,",ak,",reviewed,1537997545194,"M 1.6 - 67km WSW of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621433345,https://earthquake.usgs.gov/earthquakes/eventpage/ak20264820 +,,37370498,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37370498&format=geojson,0.01931,,57.0,",ci37370498,",0.56,ml,,ci,27.0,"9km NE of Aguanga, CA",0.15,5,",ci,",reviewed,1537997316230,"M 0.6 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538001288637,https://earthquake.usgs.gov/earthquakes/eventpage/ci37370498 +,,1000h30n,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h30n&format=geojson,0.954,,206.0,",ak20264818,us1000h30n,",2.6,ml,,us,,"118km SE of Cold Bay, Alaska",0.48,104,",ak,us,",reviewed,1537997242780,"M 2.6 - 118km SE of Cold Bay, Alaska",0,earthquake,",geoserve,origin,phase-data,",-660.0,1539394808040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h30n +,,37370482,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37370482&format=geojson,0.06984,,38.0,",ci37370482,",0.56,ml,,ci,24.0,"10km NE of Aguanga, CA",0.14,5,",ci,",reviewed,1537997197860,"M 0.6 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538001607294,https://earthquake.usgs.gov/earthquakes/eventpage/ci37370482 +,,37370466,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37370466&format=geojson,0.006022,,30.0,",ci37370466,",1.07,ml,,ci,44.0,"9km NE of Aguanga, CA",0.19,18,",ci,",reviewed,1537997133110,"M 1.1 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537998397520,https://earthquake.usgs.gov/earthquakes/eventpage/ci37370466 +,,1000h5rs,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h5rs&format=geojson,2.186,,169.0,",us1000h5rs,",3.8,mb,,us,,"180km WNW of Attu Station, Alaska",1.03,222,",us,",reviewed,1537997035910,"M 3.8 - 180km WNW of Attu Station, Alaska",0,earthquake,",geoserve,origin,phase-data,",660.0,1539394694040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h5rs +,,20264822,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20264822&format=geojson,,,,",ak20264822,",1.0,ml,,ak,,"17km E of Manley Hot Springs, Alaska",0.45,15,",ak,",reviewed,1537996996694,"M 1.0 - 17km E of Manley Hot Springs, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538683651125,https://earthquake.usgs.gov/earthquakes/eventpage/ak20264822 +,,20264816,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20264816&format=geojson,,,,",ak20264816,",0.7,ml,,ak,,"24km S of Ester, Alaska",0.57,8,",ak,",reviewed,1537996924129,"M 0.7 - 24km S of Ester, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621431725,https://earthquake.usgs.gov/earthquakes/eventpage/ak20264816 +,,37370450,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37370450&format=geojson,0.02569,,30.0,",ci37370450,",1.21,ml,,ci,46.0,"4km SSE of Lake Henshaw, CA",0.23,23,",ci,",reviewed,1537996759910,"M 1.2 - 4km SSE of Lake Henshaw, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537998401310,https://earthquake.usgs.gov/earthquakes/eventpage/ci37370450 +,,37370442,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37370442&format=geojson,0.02779,,62.0,",ci37370442,",0.65,ml,,ci,19.0,"4km SSE of Lake Henshaw, CA",0.18,6,",ci,",reviewed,1537996646170,"M 0.7 - 4km SSE of Lake Henshaw, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537998336546,https://earthquake.usgs.gov/earthquakes/eventpage/ci37370442 +,,61423237,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61423237&format=geojson,0.5607,,173.0,",uw61423237,",2.25,ml,,uw,10.0,"12km SSW of Princeton, Canada",0.5,78,",uw,",reviewed,1537996279720,"M 2.3 Explosion - 12km SSW of Princeton, Canada",0,explosion,",geoserve,origin,phase-data,",-480.0,1538006560790,https://earthquake.usgs.gov/earthquakes/eventpage/uw61423237 +,,00658315,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658315&format=geojson,0.307,,232.41,",nn00658315,",0.6,ml,,nn,11.0,"30km W of Alamo, Nevada",0.1427,6,",nn,",reviewed,1537996089624,"M 0.6 - 30km W of Alamo, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538014014065,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658315 +,,73090251,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73090251&format=geojson,0.01993,,127.0,",nc73090251,",0.66,md,,nc,8.0,"5km NNW of Pinnacles, CA",0.02,7,",nc,",reviewed,1537995426550,"M 0.7 - 5km NNW of Pinnacles, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538007303299,https://earthquake.usgs.gov/earthquakes/eventpage/nc73090251 +,,00658312,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658312&format=geojson,0.03,,91.47,",nn00658312,",-0.3,ml,,nn,8.0,"4km WSW of Tahoe Vista, California",0.1031,0,",nn,",reviewed,1537995411215,"M -0.3 - 4km WSW of Tahoe Vista, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538014012584,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658312 +,,20264809,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20264809&format=geojson,,,,",ak20264809,",1.4,ml,,ak,,"24km NNE of Badger, Alaska",0.47,30,",ak,",reviewed,1537995386713,"M 1.4 Explosion - 24km NNE of Badger, Alaska",0,explosion,",geoserve,origin,phase-data,",-540.0,1538621431194,https://earthquake.usgs.gov/earthquakes/eventpage/ak20264809 +,,60297862,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60297862&format=geojson,0.06255,,126.0,",uu60297862,",0.98,md,,uu,8.0,"5km NW of Milford, Utah",0.18,15,",uu,",reviewed,1537995242370,"M 1.0 - 5km NW of Milford, Utah",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538080738830,https://earthquake.usgs.gov/earthquakes/eventpage/uu60297862 +,,20264805,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20264805&format=geojson,,,,",ak20264805,",1.3,ml,,ak,,"96km NNW of Talkeetna, Alaska",0.31,26,",ak,",reviewed,1537995167611,"M 1.3 - 96km NNW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621430606,https://earthquake.usgs.gov/earthquakes/eventpage/ak20264805 +,,37370386,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37370386&format=geojson,0.00729,,43.0,",ci37370386,",0.4,ml,,ci,23.0,"10km NE of Aguanga, CA",0.11,2,",ci,",reviewed,1537994651340,"M 0.4 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538002123327,https://earthquake.usgs.gov/earthquakes/eventpage/ci37370386 +,,20264803,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20264803&format=geojson,,,,",ak20264803,",1.2,ml,,ak,,"76km NW of Arctic Village, Alaska",0.75,22,",ak,",reviewed,1537994558623,"M 1.2 - 76km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621430086,https://earthquake.usgs.gov/earthquakes/eventpage/ak20264803 +,,20264801,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20264801&format=geojson,,,,",ak20264801,",1.0,ml,,ak,,"61km SE of Kobuk, Alaska",0.59,15,",ak,",reviewed,1537994247085,"M 1.0 - 61km SE of Kobuk, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621429517,https://earthquake.usgs.gov/earthquakes/eventpage/ak20264801 +,,73090246,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73090246&format=geojson,0.04855,,92.0,",nc73090246,",1.57,md,,nc,16.0,"3km NNE of Shasta, CA",0.13,38,",nc,",reviewed,1537993817810,"M 1.6 - 3km NNE of Shasta, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538013183441,https://earthquake.usgs.gov/earthquakes/eventpage/nc73090246 +,,20264799,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20264799&format=geojson,,,,",ak20264799,",1.3,ml,,ak,,"82km SW of Kaktovik, Alaska",0.48,26,",ak,",reviewed,1537993595223,"M 1.3 - 82km SW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621429013,https://earthquake.usgs.gov/earthquakes/eventpage/ak20264799 +,,70614452,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70614452&format=geojson,0.01358,,203.0,",hv70614452,",1.2,md,,hv,12.0,"18km SSW of Volcano, Hawaii",0.12,22,",hv,",reviewed,1537993297080,"M 1.2 - 18km SSW of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537996802330,https://earthquake.usgs.gov/earthquakes/eventpage/hv70614452 +,,20264795,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20264795&format=geojson,,,,",ak20264795,",1.8,ml,,ak,,"76km SSW of Kaktovik, Alaska",0.58,50,",ak,",reviewed,1537992797943,"M 1.8 - 76km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621428435,https://earthquake.usgs.gov/earthquakes/eventpage/ak20264795 +,,20264792,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20264792&format=geojson,,,,",ak20264792,",1.4,ml,,ak,,"30km W of Anchor Point, Alaska",0.34,30,",ak,",reviewed,1537992073670,"M 1.4 - 30km W of Anchor Point, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621427825,https://earthquake.usgs.gov/earthquakes/eventpage/ak20264792 +,,37370330,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37370330&format=geojson,0.07823,,92.0,",ci37370330,",0.8,ml,,ci,22.0,"1km S of Home Gardens, CA",0.16,10,",ci,",reviewed,1537991854030,"M 0.8 Quarry Blast - 1km S of Home Gardens, CA",0,quarry blast,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538000183733,https://earthquake.usgs.gov/earthquakes/eventpage/ci37370330 +,,20264788,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20264788&format=geojson,,,,",ak20264788,",1.1,ml,,ak,,"59km NE of Healy, Alaska",0.62,19,",ak,",reviewed,1537991845225,"M 1.1 - 59km NE of Healy, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621427265,https://earthquake.usgs.gov/earthquakes/eventpage/ak20264788 +,2.0,20264784,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20264784&format=geojson,,1.0,,",ak20264784,",1.7,ml,,ak,,"58km WNW of Talkeetna, Alaska",0.4,45,",ak,",reviewed,1537991282456,"M 1.7 - 58km WNW of Talkeetna, Alaska",0,earthquake,",dyfi,geoserve,origin,phase-data,",-540.0,1538621641210,https://earthquake.usgs.gov/earthquakes/eventpage/ak20264784 +,,37370306,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37370306&format=geojson,0.007264,,43.0,",ci37370306,",0.46,ml,,ci,22.0,"10km NE of Aguanga, CA",0.12,3,",ci,",reviewed,1537991103210,"M 0.5 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537999879868,https://earthquake.usgs.gov/earthquakes/eventpage/ci37370306 +,,00658301,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658301&format=geojson,0.124,,82.14,",nn00658301,",1.1,ml,,nn,15.0,"32km SE of Bridgeport, California",0.1523,19,",nn,",reviewed,1537990306540,"M 1.1 - 32km SE of Bridgeport, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538014008790,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658301 +,,20264779,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20264779&format=geojson,,,,",ak20264779,",0.9,ml,,ak,,"6km SSW of Badger, Alaska",0.68,12,",ak,",reviewed,1537990205792,"M 0.9 - 6km SSW of Badger, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621426037,https://earthquake.usgs.gov/earthquakes/eventpage/ak20264779 +,,20264774,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20264774&format=geojson,,,,",ak20264774,",1.2,ml,,ak,,"59km W of Cantwell, Alaska",0.39,22,",ak,",reviewed,1537990006165,"M 1.2 - 59km W of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621425555,https://earthquake.usgs.gov/earthquakes/eventpage/ak20264774 +,,00658300,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658300&format=geojson,0.404,,192.61,",nn00658300,",0.8,ml,,nn,13.0,"37km SE of Warm Springs, Nevada",0.1965,10,",nn,",reviewed,1537989864020,"M 0.8 - 37km SE of Warm Springs, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538014006344,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658300 +,,1000h2wr,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h2wr&format=geojson,4.746,,177.0,",us1000h2wr,",4.5,mb,,us,,"99km ESE of Kuril'sk, Russia",0.46,312,",us,",reviewed,1537989763630,"M 4.5 - 99km ESE of Kuril'sk, Russia",0,earthquake,",geoserve,origin,phase-data,",600.0,1538005052040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h2wr +,,20264773,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20264773&format=geojson,,,,",ak20264773,",1.2,ml,,ak,,"121km NNW of Arctic Village, Alaska",0.76,22,",ak,",reviewed,1537989540545,"M 1.2 - 121km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621425032,https://earthquake.usgs.gov/earthquakes/eventpage/ak20264773 +,,70804899,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804899&format=geojson,0.006228,,180.0,",av70804899,",-0.63,ml,,av,4.0,"93km ESE of Old Iliamna, Alaska",0.1,0,",av,",reviewed,1537989420670,"M -0.6 - 93km ESE of Old Iliamna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538087437960,https://earthquake.usgs.gov/earthquakes/eventpage/av70804899 +,,37370258,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37370258&format=geojson,0.1376,,67.0,",ci37370258,",0.98,ml,,ci,30.0,"17km ESE of Julian, CA",0.15,15,",ci,",reviewed,1537989394400,"M 1.0 - 17km ESE of Julian, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537999681680,https://earthquake.usgs.gov/earthquakes/eventpage/ci37370258 +,,61787346,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61787346&format=geojson,0.0428,,237.0,",av61787346,",0.24,ml,,av,8.0,"95km SE of King Salmon, Alaska",0.18,1,",av,",reviewed,1537989263100,"M 0.2 - 95km SE of King Salmon, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538087243680,https://earthquake.usgs.gov/earthquakes/eventpage/av61787346 +,,1000h2w1,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h2w1&format=geojson,0.545,,122.0,",us1000h2w1,",4.4,mb,,us,,"47km NNE of Vicuna, Chile",0.81,298,",us,",reviewed,1537989181960,"M 4.4 - 47km NNE of Vicuna, Chile",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538004106040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h2w1 +,,73090236,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73090236&format=geojson,0.01348,,70.0,",nc73090236,",0.87,md,,nc,16.0,"8km ENE of Gilroy, CA",0.09,12,",nc,",reviewed,1537988837880,"M 0.9 - 8km ENE of Gilroy, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538001422659,https://earthquake.usgs.gov/earthquakes/eventpage/nc73090236 +,,80311304,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80311304&format=geojson,0.531,,136.0,",mb80311304,",2.28,ml,,mb,13.0,"22km SE of Sandpoint, Idaho",0.16,80,",mb,",reviewed,1537988401490,"M 2.3 - 22km SE of Sandpoint, Idaho",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537993343590,https://earthquake.usgs.gov/earthquakes/eventpage/mb80311304 +,,37370234,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37370234&format=geojson,0.05101,,109.0,",ci37370234,",1.03,ml,,ci,14.0,"3km WNW of Grand Terrace, CA",0.26,16,",ci,",reviewed,1537988340360,"M 1.0 Quarry Blast - 3km WNW of Grand Terrace, CA",0,quarry blast,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538002607871,https://earthquake.usgs.gov/earthquakes/eventpage/ci37370234 +,,00658285,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658285&format=geojson,0.008,,148.78,",nn00658285,",1.5,ml,,nn,5.0,"40km NW of Carlin, Nevada",0.4141,35,",nn,",reviewed,1537988208589,"M 1.5 Explosion - 40km NW of Carlin, Nevada",0,explosion,",geoserve,origin,phase-data,",-480.0,1537989549322,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658285 +,,61423212,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61423212&format=geojson,0.1314,,290.0,",uw61423212,",0.43,ml,,uw,8.0,"33km E of Castle Rock, Washington",0.08,3,",uw,",reviewed,1537988116010,"M 0.4 - 33km E of Castle Rock, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537988801430,https://earthquake.usgs.gov/earthquakes/eventpage/uw61423212 +,,20264768,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20264768&format=geojson,,,,",ak20264768,",2.5,ml,,ak,,"88km N of Kobuk, Alaska",0.54,96,",ak,",reviewed,1537988010134,"M 2.5 - 88km N of Kobuk, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621424247,https://earthquake.usgs.gov/earthquakes/eventpage/ak20264768 +,,70804894,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804894&format=geojson,0.0462,,321.0,",av70804894,",-0.44,ml,,av,4.0,"32km WSW of Dutch Harbor, Alaska",0.06,0,",av,",reviewed,1537987762020,"M -0.4 - 32km WSW of Dutch Harbor, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538087078790,https://earthquake.usgs.gov/earthquakes/eventpage/av70804894 +,,20264573,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20264573&format=geojson,,,,",ak20264573,",1.5,ml,,ak,,"124km NNW of Arctic Village, Alaska",0.54,35,",ak,",reviewed,1537987600944,"M 1.5 - 124km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621423700,https://earthquake.usgs.gov/earthquakes/eventpage/ak20264573 +,,20264572,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20264572&format=geojson,,,,",ak20264572,",0.8,ml,,ak,,"121km W of Cantwell, Alaska",0.86,10,",ak,",reviewed,1537987520451,"M 0.8 - 121km W of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621423139,https://earthquake.usgs.gov/earthquakes/eventpage/ak20264572 +,,20264570,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20264570&format=geojson,,,,",ak20264570,",1.2,ml,,ak,,"38km E of Redoubt Volcano, Alaska",0.5,22,",ak,",reviewed,1537987423527,"M 1.2 - 38km E of Redoubt Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621422538,https://earthquake.usgs.gov/earthquakes/eventpage/ak20264570 +,,20264569,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20264569&format=geojson,,,,",ak20264569,",1.1,ml,,ak,,"109km NNW of Arctic Village, Alaska",0.88,19,",ak,",reviewed,1537987307401,"M 1.1 - 109km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621422022,https://earthquake.usgs.gov/earthquakes/eventpage/ak20264569 +,,73090231,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73090231&format=geojson,0.01024,,97.0,",nc73090231,",0.4,md,,nc,17.0,"8km E of Mammoth Lakes, CA",0.07,2,",nc,",reviewed,1537986908560,"M 0.4 - 8km E of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537992782827,https://earthquake.usgs.gov/earthquakes/eventpage/nc73090231 +,,20270590,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270590&format=geojson,,,,",ak20270590,",1.2,ml,,ak,,"15km E of Yakutat, Alaska",0.63,22,",ak,",reviewed,1537986836642,"M 1.2 - 15km E of Yakutat, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621421443,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270590 +,,37370186,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37370186&format=geojson,0.1094,,69.0,",ci37370186,",0.88,ml,,ci,30.0,"3km NNE of San Jacinto, CA",0.15,12,",ci,",reviewed,1537985936290,"M 0.9 - 3km NNE of San Jacinto, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537991988518,https://earthquake.usgs.gov/earthquakes/eventpage/ci37370186 +,,70804889,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804889&format=geojson,0.0168,,218.0,",av70804889,",-0.81,ml,,av,5.0,"101km ESE of King Salmon, Alaska",0.15,0,",av,",reviewed,1537985846430,"M -0.8 - 101km ESE of King Salmon, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538086913870,https://earthquake.usgs.gov/earthquakes/eventpage/av70804889 +,,20264565,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20264565&format=geojson,,,,",ak20264565,",2.1,ml,,ak,,"12km SSE of Unalaska, Alaska",0.31,68,",ak,",reviewed,1537985773984,"M 2.1 - 12km SSE of Unalaska, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621420926,https://earthquake.usgs.gov/earthquakes/eventpage/ak20264565 +,2.0,70614292,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70614292&format=geojson,0.003287,2.0,56.0,",hv70614292,",2.71,ml,,hv,38.0,"4km WSW of Volcano, Hawaii",0.12,113,",hv,",reviewed,1537985268410,"M 2.7 - 4km WSW of Volcano, Hawaii",0,earthquake,",dyfi,geoserve,origin,phase-data,",-600.0,1538021957544,https://earthquake.usgs.gov/earthquakes/eventpage/hv70614292 +,,73090221,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73090221&format=geojson,0.01246,,98.0,",nc73090221,",1.34,md,,nc,13.0,"3km S of Loyola, CA",0.08,28,",nc,",reviewed,1537985137160,"M 1.3 Quarry Blast - 3km S of Loyola, CA",0,quarry blast,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538001495430,https://earthquake.usgs.gov/earthquakes/eventpage/nc73090221 +,,80311294,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80311294&format=geojson,0.276,,171.0,",mb80311294,",1.76,ml,,mb,10.0,"10km ENE of Three Forks, Montana",0.15,48,",mb,",reviewed,1537985009470,"M 1.8 Quarry Blast - 10km ENE of Three Forks, Montana",0,quarry blast,",geoserve,origin,phase-data,",-420.0,1537992918360,https://earthquake.usgs.gov/earthquakes/eventpage/mb80311294 +,,20264559,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20264559&format=geojson,,,,",ak20264559,",1.5,ml,,ak,,"121km NNW of Arctic Village, Alaska",0.75,35,",ak,",reviewed,1537984971517,"M 1.5 - 121km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621420372,https://earthquake.usgs.gov/earthquakes/eventpage/ak20264559 +,,20264351,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20264351&format=geojson,,,,",ak20264351,",1.4,ml,,ak,,"135km ENE of Anaktuvuk Pass, Alaska",0.68,30,",ak,",reviewed,1537984547959,"M 1.4 - 135km ENE of Anaktuvuk Pass, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621419766,https://earthquake.usgs.gov/earthquakes/eventpage/ak20264351 +,3.1,1000h2u2,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h2u2&format=geojson,1.099,2.0,31.0,",us1000h2u2,",5.1,mww,,us,,"19km WNW of Langsa, Indonesia",1.25,401,",us,",reviewed,1537984301360,"M 5.1 - 19km WNW of Langsa, Indonesia",1,earthquake,",dyfi,geoserve,origin,phase-data,",420.0,1537989593711,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h2u2 +,,20264348,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20264348&format=geojson,,,,",ak20264348,",1.1,ml,,ak,,"111km NW of Arctic Village, Alaska",0.46,19,",ak,",reviewed,1537984167965,"M 1.1 - 111km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621419153,https://earthquake.usgs.gov/earthquakes/eventpage/ak20264348 +,,20264346,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20264346&format=geojson,,,,",ak20264346,",2.0,ml,,ak,,"59km W of Cantwell, Alaska",0.37,62,",ak,",reviewed,1537984118052,"M 2.0 Other Event - 59km W of Cantwell, Alaska",0,other event,",geoserve,origin,phase-data,",-540.0,1538683650613,https://earthquake.usgs.gov/earthquakes/eventpage/ak20264346 +,,37370162,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37370162&format=geojson,0.03803,,101.0,",ci37370162,",0.48,ml,,ci,21.0,"14km ESE of Anza, CA",0.11,4,",ci,",reviewed,1537984112630,"M 0.5 - 14km ESE of Anza, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537988324362,https://earthquake.usgs.gov/earthquakes/eventpage/ci37370162 +,,20264345,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20264345&format=geojson,,,,",ak20264345,",2.7,ml,,ak,,"32km SE of Little Sitkin Island, Alaska",0.41,112,",ak,",reviewed,1537983697478,"M 2.7 - 32km SE of Little Sitkin Island, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538621418126,https://earthquake.usgs.gov/earthquakes/eventpage/ak20264345 +,,37370130,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37370130&format=geojson,0.03199,,63.0,",ci37370130,",1.34,ml,,ci,34.0,"4km N of La Verne, CA",0.16,28,",ci,",reviewed,1537983536810,"M 1.3 - 4km N of La Verne, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537992476365,https://earthquake.usgs.gov/earthquakes/eventpage/ci37370130 +,,37370122,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37370122&format=geojson,0.03872,,145.0,",ci37370122,",0.92,ml,,ci,15.0,"7km NE of Coso Junction, CA",0.08,13,",ci,",reviewed,1537983531240,"M 0.9 - 7km NE of Coso Junction, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537992704179,https://earthquake.usgs.gov/earthquakes/eventpage/ci37370122 +,,1000h2tp,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h2tp&format=geojson,27.509,,61.0,",us1000h2tp,",5.0,mb,,us,,Southern East Pacific Rise,0.99,385,",us,",reviewed,1537983215650,M 5.0 - Southern East Pacific Rise,0,earthquake,",geoserve,moment-tensor,origin,phase-data,",-420.0,1538071191040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h2tp +,,37370098,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37370098&format=geojson,0.09498,,100.0,",ci37370098,",0.46,ml,,ci,12.0,"8km NE of Aguanga, CA",0.23,3,",ci,",reviewed,1537982992650,"M 0.5 - 8km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537983785387,https://earthquake.usgs.gov/earthquakes/eventpage/ci37370098 +,,20264343,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20264343&format=geojson,,,,",ak20264343,",1.2,ml,,ak,,"77km SSW of Kaktovik, Alaska",0.58,22,",ak,",reviewed,1537982626014,"M 1.2 - 77km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621417614,https://earthquake.usgs.gov/earthquakes/eventpage/ak20264343 +,,61787271,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61787271&format=geojson,0.0269,,261.0,",av61787271,",-0.24,ml,,av,5.0,"43km NE of Adak, Alaska",0.26,0,",av,",reviewed,1537982552460,"M -0.2 - 43km NE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538085517130,https://earthquake.usgs.gov/earthquakes/eventpage/av61787271 +,,37370066,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37370066&format=geojson,0.06434,,42.0,",ci37370066,",0.95,ml,,ci,33.0,"7km WNW of Lake Henshaw, CA",0.11,14,",ci,",reviewed,1537982235290,"M 1.0 - 7km WNW of Lake Henshaw, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537993314070,https://earthquake.usgs.gov/earthquakes/eventpage/ci37370066 +,,37370050,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37370050&format=geojson,0.07448,,69.0,",ci37370050,",1.14,ml,,ci,25.0,"11km N of Victorville, CA",0.16,20,",ci,",reviewed,1537981933950,"M 1.1 Quarry Blast - 11km N of Victorville, CA",0,quarry blast,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537984262622,https://earthquake.usgs.gov/earthquakes/eventpage/ci37370050 +,,73090131,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73090131&format=geojson,0.008778,,93.0,",nc73090131,",0.52,md,,nc,15.0,"8km W of Cobb, CA",0.01,4,",nc,",reviewed,1537981641520,"M 0.5 - 8km W of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537999744502,https://earthquake.usgs.gov/earthquakes/eventpage/nc73090131 +,,73090121,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73090121&format=geojson,0.09034,,108.0,",nc73090121,",0.99,md,,nc,11.0,"9km WSW of San Ardo, CA",0.03,15,",nc,",reviewed,1537981050610,"M 1.0 - 9km WSW of San Ardo, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538003703887,https://earthquake.usgs.gov/earthquakes/eventpage/nc73090121 +,,37370026,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37370026&format=geojson,0.00875,,103.0,",ci37370026,",0.4,ml,,ci,18.0,"11km NE of Aguanga, CA",0.12,2,",ci,",reviewed,1537981041440,"M 0.4 - 11km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537987598337,https://earthquake.usgs.gov/earthquakes/eventpage/ci37370026 +,,70804884,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804884&format=geojson,0.0686,,143.0,",av70804884,",0.08,ml,,av,5.0,"22km W of Dutch Harbor, Alaska",0.11,0,",av,",reviewed,1537980945980,"M 0.1 - 22km W of Dutch Harbor, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538085293540,https://earthquake.usgs.gov/earthquakes/eventpage/av70804884 +,,00658298,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658298&format=geojson,0.09,,178.76,",nn00658298,",0.1,ml,,nn,18.0,"67km N of Pahrump, Nevada",0.1838,0,",nn,",reviewed,1537980939621,"M 0.1 - 67km N of Pahrump, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538014004273,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658298 +,,1000h5ri,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h5ri&format=geojson,3.478,,249.0,",us1000h5ri,",4.4,mb,,us,,"7km SE of Isangel, Vanuatu",0.72,298,",us,",reviewed,1537980634090,"M 4.4 - 7km SE of Isangel, Vanuatu",0,earthquake,",geoserve,origin,phase-data,",660.0,1538976257040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h5ri +,,20270582,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270582&format=geojson,,,,",ak20270582,",0.9,ml,,ak,,"124km NW of Arctic Village, Alaska",0.54,12,",ak,",reviewed,1537980461025,"M 0.9 - 124km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621417122,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270582 +,,73090106,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73090106&format=geojson,0.03791,,58.0,",nc73090106,",1.73,md,,nc,37.0,"21km E of Alum Rock, CA",0.07,46,",nc,",reviewed,1537980393680,"M 1.7 - 21km E of Alum Rock, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538005623147,https://earthquake.usgs.gov/earthquakes/eventpage/nc73090106 +,,20264335,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20264335&format=geojson,,,,",ak20264335,",1.1,ml,,ak,,"36km W of Talkeetna, Alaska",0.5,19,",ak,",reviewed,1537980240200,"M 1.1 - 36km W of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621416550,https://earthquake.usgs.gov/earthquakes/eventpage/ak20264335 +,,00658297,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658297&format=geojson,0.084,,139.19,",nn00658297,",-0.5,ml,,nn,12.0,"29km NNE of Beatty, Nevada",0.1803,0,",nn,",reviewed,1537980074497,"M -0.5 - 29km NNE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538014002636,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658297 +,,20264329,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20264329&format=geojson,,,,",ak20264329,",2.1,ml,,ak,,"58km WSW of Talkeetna, Alaska",0.6,68,",ak,",reviewed,1537980062492,"M 2.1 - 58km WSW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621415661,https://earthquake.usgs.gov/earthquakes/eventpage/ak20264329 +,,73090091,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73090091&format=geojson,0.01732,,80.0,",nc73090091,",0.71,md,,nc,9.0,"2km NNW of The Geysers, CA",0.04,8,",nc,",automatic,1537979169670,"M 0.7 - 2km NNW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537987144184,https://earthquake.usgs.gov/earthquakes/eventpage/nc73090091 +,,20264325,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20264325&format=geojson,,,,",ak20264325,",1.2,ml,,ak,,"149km NW of Kobuk, Alaska",0.64,22,",ak,",reviewed,1537978395332,"M 1.2 - 149km NW of Kobuk, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621415154,https://earthquake.usgs.gov/earthquakes/eventpage/ak20264325 +,,20264322,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20264322&format=geojson,,,,",ak20264322,",1.6,ml,,ak,,"102km NE of Cape Yakataga, Alaska",0.78,39,",ak,",automatic,1537978216520,"M 1.6 - 102km NE of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537978493608,https://earthquake.usgs.gov/earthquakes/eventpage/ak20264322 +,,20264317,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20264317&format=geojson,,,,",ak20264317,",1.2,ml,,ak,,"137km WNW of Arctic Village, Alaska",0.5,22,",ak,",reviewed,1537977703084,"M 1.2 - 137km WNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621414613,https://earthquake.usgs.gov/earthquakes/eventpage/ak20264317 +,,73090061,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73090061&format=geojson,0.01127,,112.0,",nc73090061,",0.89,md,,nc,9.0,"2km WSW of Anderson Springs, CA",0.02,12,",nc,",automatic,1537977566000,"M 0.9 - 2km WSW of Anderson Springs, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537983783518,https://earthquake.usgs.gov/earthquakes/eventpage/nc73090061 +,,20264314,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20264314&format=geojson,,,,",ak20264314,",1.3,ml,,ak,,"67km WNW of Talkeetna, Alaska",0.58,26,",ak,",reviewed,1537977352173,"M 1.3 - 67km WNW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621414041,https://earthquake.usgs.gov/earthquakes/eventpage/ak20264314 +,,37369914,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37369914&format=geojson,0.005709,,22.0,",ci37369914,",2.11,ml,,ci,79.0,"9km NE of Aguanga, CA",0.2,68,",ci,",reviewed,1537977167920,"M 2.1 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537993010010,https://earthquake.usgs.gov/earthquakes/eventpage/ci37369914 +,,37369906,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37369906&format=geojson,0.004594,,58.0,",ci37369906,",0.88,ml,,ci,32.0,"10km NE of Aguanga, CA",0.15,12,",ci,",reviewed,1537977128930,"M 0.9 - 10km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537981477680,https://earthquake.usgs.gov/earthquakes/eventpage/ci37369906 +,,37369898,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37369898&format=geojson,0.004409,,31.0,",ci37369898,",1.04,ml,,ci,41.0,"10km NE of Aguanga, CA",0.16,17,",ci,",reviewed,1537977091550,"M 1.0 - 10km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537989758150,https://earthquake.usgs.gov/earthquakes/eventpage/ci37369898 +,,37369882,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37369882&format=geojson,0.00802,,30.0,",ci37369882,",1.69,ml,,ci,58.0,"9km NE of Aguanga, CA",0.21,44,",ci,",reviewed,1537976996130,"M 1.7 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537981484330,https://earthquake.usgs.gov/earthquakes/eventpage/ci37369882 +,,1000h5rn,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h5rn&format=geojson,3.691,,156.0,",us1000h5rn,",4.1,mb,,us,,"215km NE of Dili, East Timor",0.4,259,",us,",reviewed,1537976922560,"M 4.1 - 215km NE of Dili, East Timor",0,earthquake,",geoserve,origin,phase-data,",480.0,1538975786040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h5rn +,2.2,73090046,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73090046&format=geojson,0.008645,2.0,42.0,",nc73090046,",1.81,md,,nc,47.0,"2km E of San Leandro, CA",0.08,51,",nc,",reviewed,1537976620840,"M 1.8 - 2km E of San Leandro, CA",0,earthquake,",dyfi,focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537989423398,https://earthquake.usgs.gov/earthquakes/eventpage/nc73090046 +,,2000hk75,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hk75&format=geojson,0.847,,44.0,",us2000hk75,",4.5,mwr,,us,,"120km NNE of Calama, Chile",1.22,312,",us,",reviewed,1537976574880,"M 4.5 - 120km NNE of Calama, Chile",0,earthquake,",geoserve,moment-tensor,origin,phase-data,",-240.0,1538975490040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hk75 +,,1000h2zb,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h2zb&format=geojson,2.245,,208.0,",ak20264176,us1000h2zb,",2.9,ml,,us,,"242km SE of Kodiak, Alaska",0.83,129,",ak,us,",reviewed,1537975583280,"M 2.9 - 242km SE of Kodiak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538974540040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h2zb +,,20264170,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20264170&format=geojson,,,,",ak20264170,",1.9,ml,,ak,,"77km SSW of Kaktovik, Alaska",0.63,56,",ak,",reviewed,1537975144940,"M 1.9 - 77km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621412847,https://earthquake.usgs.gov/earthquakes/eventpage/ak20264170 +,,20264171,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20264171&format=geojson,,,,",ak20264171,",1.1,ml,,ak,,"117km NNW of Talkeetna, Alaska",0.82,19,",ak,",reviewed,1537975141646,"M 1.1 - 117km NNW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621412319,https://earthquake.usgs.gov/earthquakes/eventpage/ak20264171 +,,20270573,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270573&format=geojson,,,,",ak20270573,",1.7,ml,,ak,,"83km WSW of Healy, Alaska",0.83,44,",ak,",reviewed,1537974769270,"M 1.7 - 83km WSW of Healy, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621411728,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270573 +,,20264166,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20264166&format=geojson,,,,",ak20264166,",1.4,ml,,ak,,"103km NNW of Arctic Village, Alaska",0.81,30,",ak,",reviewed,1537974436940,"M 1.4 - 103km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621411194,https://earthquake.usgs.gov/earthquakes/eventpage/ak20264166 +,,20264165,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20264165&format=geojson,,,,",ak20264165,",1.5,ml,,ak,,"75km SW of Kaktovik, Alaska",0.76,35,",ak,",reviewed,1537974286042,"M 1.5 - 75km SW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621410675,https://earthquake.usgs.gov/earthquakes/eventpage/ak20264165 +,,20264162,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20264162&format=geojson,,,,",ak20264162,",1.2,ml,,ak,,"130km NW of Arctic Village, Alaska",0.5,22,",ak,",reviewed,1537973463867,"M 1.2 - 130km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621410124,https://earthquake.usgs.gov/earthquakes/eventpage/ak20264162 +,,73090026,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73090026&format=geojson,0.05195,,267.0,",nc73090026,",0.86,md,,nc,8.0,"2km NE of Pinnacles, CA",0.03,11,",nc,",reviewed,1537973198680,"M 0.9 - 2km NE of Pinnacles, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537985082168,https://earthquake.usgs.gov/earthquakes/eventpage/nc73090026 +,,2000hk6q,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hk6q&format=geojson,1.073,,158.0,",us2000hk6q,",4.0,mb,,us,,"13km SE of Ilo, Peru",1.18,246,",us,",reviewed,1537973168440,"M 4.0 - 13km SE of Ilo, Peru",0,earthquake,",geoserve,origin,phase-data,",-300.0,1538115814040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hk6q +,,2000hk6p,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hk6p&format=geojson,2.458,,208.0,",ak20264158,us2000hk6p,",3.4,ml,,us,,"266km SE of Kodiak, Alaska",0.86,178,",ak,us,",reviewed,1537973021270,"M 3.4 - 266km SE of Kodiak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538621409288,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hk6p +,,20264153,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20264153&format=geojson,,,,",ak20264153,",1.2,ml,,ak,,"70km WSW of Cantwell, Alaska",0.38,22,",ak,",reviewed,1537972223391,"M 1.2 - 70km WSW of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621408699,https://earthquake.usgs.gov/earthquakes/eventpage/ak20264153 +,,20270567,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270567&format=geojson,,,,",ak20270567,",1.1,ml,,ak,,"75km WSW of Larsen Bay, Alaska",0.25,19,",ak,",reviewed,1537972118437,"M 1.1 - 75km WSW of Larsen Bay, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538621408170,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270567 +,,20264148,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20264148&format=geojson,,,,",ak20264148,",2.0,ml,,ak,,"67km NE of McGrath, Alaska",0.68,62,",ak,",reviewed,1537972000040,"M 2.0 - 67km NE of McGrath, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621407620,https://earthquake.usgs.gov/earthquakes/eventpage/ak20264148 +,,20264151,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20264151&format=geojson,,,,",ak20264151,",1.0,ml,,ak,,"127km WNW of Arctic Village, Alaska",0.63,15,",ak,",reviewed,1537971879047,"M 1.0 - 127km WNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621407108,https://earthquake.usgs.gov/earthquakes/eventpage/ak20264151 +,,20264145,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20264145&format=geojson,,,,",ak20264145,",1.4,ml,,ak,,"33km N of Sterling, Alaska",0.57,30,",ak,",reviewed,1537971787399,"M 1.4 - 33km N of Sterling, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621406471,https://earthquake.usgs.gov/earthquakes/eventpage/ak20264145 +,,2000hk6l,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hk6l&format=geojson,0.262,,191.0,",us2000hk6l,",4.6,mb,,us,,"33km ENE of Codrington, Barbuda",0.55,326,",us,",reviewed,1537971534440,"M 4.6 - 33km ENE of Codrington, Barbuda",0,earthquake,",geoserve,origin,phase-data,",-240.0,1537972753040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hk6l +,,73090006,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73090006&format=geojson,0.07199,,161.0,",nc73090006,",0.54,md,,nc,13.0,"10km S of Mammoth Lakes, CA",0.04,4,",nc,",reviewed,1537970531990,"M 0.5 - 10km S of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537980122857,https://earthquake.usgs.gov/earthquakes/eventpage/nc73090006 +,,20264139,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20264139&format=geojson,,,,",ak20264139,",1.9,ml,,ak,,"121km NNW of Arctic Village, Alaska",0.66,56,",ak,",reviewed,1537970191339,"M 1.9 - 121km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621405862,https://earthquake.usgs.gov/earthquakes/eventpage/ak20264139 +,,20264137,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20264137&format=geojson,,,,",ak20264137,",2.6,ml,,ak,,"43km ESE of Akutan, Alaska",0.29,104,",ak,",reviewed,1537970152201,"M 2.6 - 43km ESE of Akutan, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538621405306,https://earthquake.usgs.gov/earthquakes/eventpage/ak20264137 +,,37369794,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37369794&format=geojson,0.004899,,66.0,",ci37369794,",0.48,ml,,ci,19.0,"10km NE of Aguanga, CA",0.19,4,",ci,",reviewed,1537969831460,"M 0.5 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537970170659,https://earthquake.usgs.gov/earthquakes/eventpage/ci37369794 +,,37369786,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37369786&format=geojson,0.08258,,67.0,",ci37369786,",0.38,ml,,ci,15.0,"9km NE of Aguanga, CA",0.09,2,",ci,",reviewed,1537969281530,"M 0.4 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537970187564,https://earthquake.usgs.gov/earthquakes/eventpage/ci37369786 +,,37410885,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37410885&format=geojson,0.006688,,228.0,",ci37410885,",-0.26,ml,,ci,8.0,"10km NE of Aguanga, CA",0.06,0,",ci,",reviewed,1537969036110,"M -0.3 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537990614707,https://earthquake.usgs.gov/earthquakes/eventpage/ci37410885 +,,37369778,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37369778&format=geojson,0.007822,,60.0,",ci37369778,",0.28,ml,,ci,20.0,"10km NE of Aguanga, CA",0.12,1,",ci,",reviewed,1537969000500,"M 0.3 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537990325857,https://earthquake.usgs.gov/earthquakes/eventpage/ci37369778 +,,37369762,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37369762&format=geojson,0.008608,,142.0,",ci37369762,",0.24,ml,,ci,17.0,"9km NE of Aguanga, CA",0.07,1,",ci,",reviewed,1537968958970,"M 0.2 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537989385675,https://earthquake.usgs.gov/earthquakes/eventpage/ci37369762 +,,20264135,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20264135&format=geojson,,,,",ak20264135,",0.5,ml,,ak,,"24km S of Ester, Alaska",0.57,4,",ak,",reviewed,1537968889262,"M 0.5 - 24km S of Ester, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621404785,https://earthquake.usgs.gov/earthquakes/eventpage/ak20264135 +,,37369754,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37369754&format=geojson,0.01981,,96.0,",ci37369754,",0.21,ml,,ci,21.0,"9km NE of Aguanga, CA",0.1,1,",ci,",reviewed,1537968878130,"M 0.2 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537985081851,https://earthquake.usgs.gov/earthquakes/eventpage/ci37369754 +,,37410893,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37410893&format=geojson,0.007539,,69.0,",ci37410893,",0.35,ml,,ci,22.0,"10km NE of Aguanga, CA",0.15,2,",ci,",reviewed,1537968860110,"M 0.4 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537991548066,https://earthquake.usgs.gov/earthquakes/eventpage/ci37410893 +,,37369746,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37369746&format=geojson,0.00522,,48.0,",ci37369746,",0.81,ml,,ci,34.0,"10km NE of Aguanga, CA",0.16,10,",ci,",reviewed,1537968845090,"M 0.8 - 10km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537991047440,https://earthquake.usgs.gov/earthquakes/eventpage/ci37369746 +,,70804869,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804869&format=geojson,0.01379,,115.0,",av70804869,",-0.95,ml,,av,4.0,"44km ENE of Adak, Alaska",0.12,0,",av,",reviewed,1537968843610,"M -1.0 - 44km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538084403320,https://earthquake.usgs.gov/earthquakes/eventpage/av70804869 +,,20264134,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20264134&format=geojson,,,,",ak20264134,",0.2,ml,,ak,,"34km NW of North Nenana, Alaska",0.53,1,",ak,",reviewed,1537968730300,"M 0.2 - 34km NW of North Nenana, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621404290,https://earthquake.usgs.gov/earthquakes/eventpage/ak20264134 +,,73089991,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73089991&format=geojson,0.01521,,80.0,",nc73089991,",1.05,md,,nc,26.0,"15km NW of Parkfield, CA",0.06,17,",nc,",reviewed,1537968231030,"M 1.1 - 15km NW of Parkfield, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537985063915,https://earthquake.usgs.gov/earthquakes/eventpage/nc73089991 +,,00658260,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658260&format=geojson,0.431,,130.92,",nn00658260,",0.8,ml,,nn,9.0,"63km NNE of Dixon Lane-Meadow Creek, California",0.0786,10,",nn,",reviewed,1537967952119,"M 0.8 - 63km NNE of Dixon Lane-Meadow Creek, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538013977041,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658260 +,,20264132,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20264132&format=geojson,,,,",ak20264132,",0.5,ml,,ak,,"25km S of Ester, Alaska",0.63,4,",ak,",reviewed,1537967731089,"M 0.5 - 25km S of Ester, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621403751,https://earthquake.usgs.gov/earthquakes/eventpage/ak20264132 +,,20263997,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263997&format=geojson,,,,",ak20263997,",1.3,ml,,ak,,"23km S of Ester, Alaska",0.61,26,",ak,",reviewed,1537967470394,"M 1.3 - 23km S of Ester, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621403177,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263997 +,,20263994,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263994&format=geojson,,,,",ak20263994,",1.6,ml,,ak,,"107km NNW of Arctic Village, Alaska",0.88,39,",ak,",reviewed,1537966617662,"M 1.6 - 107km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621402633,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263994 +,,20263992,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263992&format=geojson,,,,",ak20263992,",1.1,ml,,ak,,"80km NNW of Talkeetna, Alaska",0.36,19,",ak,",reviewed,1537966421324,"M 1.1 - 80km NNW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621402096,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263992 +,,20263990,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263990&format=geojson,,,,",ak20263990,",1.9,ml,,ak,,"72km SSW of Kaktovik, Alaska",0.64,56,",ak,",reviewed,1537966375314,"M 1.9 - 72km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621401533,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263990 +,,20263988,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263988&format=geojson,,,,",ak20263988,",1.1,ml,,ak,,"125km NNW of Arctic Village, Alaska",0.59,19,",ak,",reviewed,1537966223162,"M 1.1 - 125km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621401046,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263988 +,,20270553,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270553&format=geojson,,,,",ak20270553,",2.4,ml,,ak,,"129km NNE of Atka, Alaska",0.43,89,",ak,",reviewed,1537966197516,"M 2.4 - 129km NNE of Atka, Alaska",0,earthquake,",geoserve,origin,phase-data,",-720.0,1538683650077,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270553 +,,37369690,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37369690&format=geojson,0.007541,,31.0,",ci37369690,",1.01,ml,,ci,41.0,"9km NE of Aguanga, CA",0.16,16,",ci,",reviewed,1537965243520,"M 1.0 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537992400810,https://earthquake.usgs.gov/earthquakes/eventpage/ci37369690 +,,37369682,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37369682&format=geojson,0.002446,,70.0,",ci37369682,",0.66,ml,,ci,23.0,"10km NE of Aguanga, CA",0.15,7,",ci,",reviewed,1537964990710,"M 0.7 - 10km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537968319190,https://earthquake.usgs.gov/earthquakes/eventpage/ci37369682 +,,37369674,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37369674&format=geojson,0.006281,,57.0,",ci37369674,",0.35,ml,,ci,22.0,"10km NE of Aguanga, CA",0.19,2,",ci,",reviewed,1537964793360,"M 0.4 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537968279570,https://earthquake.usgs.gov/earthquakes/eventpage/ci37369674 +,,20263986,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263986&format=geojson,,,,",ak20263986,",1.3,ml,,ak,,"122km WNW of Arctic Village, Alaska",0.71,26,",ak,",reviewed,1537964752948,"M 1.3 - 122km WNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621400013,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263986 +,,20263985,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263985&format=geojson,,,,",ak20263985,",0.6,ml,,ak,,"105km SE of Coldfoot, Alaska",0.6,6,",ak,",reviewed,1537964498927,"M 0.6 - 105km SE of Coldfoot, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621399502,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263985 +,,37369658,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37369658&format=geojson,0.0105,,31.0,",ci37369658,",1.18,ml,,ci,52.0,"9km NE of Aguanga, CA",0.19,21,",ci,",reviewed,1537964187220,"M 1.2 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537968383790,https://earthquake.usgs.gov/earthquakes/eventpage/ci37369658 +,,37369642,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37369642&format=geojson,0.00829,,46.0,",ci37369642,",0.85,ml,,ci,37.0,"9km NE of Aguanga, CA",0.17,11,",ci,",reviewed,1537964152710,"M 0.9 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537968386330,https://earthquake.usgs.gov/earthquakes/eventpage/ci37369642 +,,20263982,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263982&format=geojson,,,,",ak20263982,",1.1,ml,,ak,,"61km WNW of Valdez, Alaska",0.6,19,",ak,",reviewed,1537963769842,"M 1.1 Ice Quake - 61km WNW of Valdez, Alaska",0,ice quake,",geoserve,origin,phase-data,",-540.0,1538621398996,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263982 +,,70804864,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804864&format=geojson,0.01692,,92.0,",av70804864,",0.41,ml,,av,10.0,"12km W of Akutan, Alaska",0.23,3,",av,",reviewed,1537963671650,"M 0.4 - 12km W of Akutan, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538084182580,https://earthquake.usgs.gov/earthquakes/eventpage/av70804864 +,,20263979,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263979&format=geojson,,,,",ak20263979,",2.1,ml,,ak,,"81km SW of Kaktovik, Alaska",0.73,68,",ak,",reviewed,1537963366926,"M 2.1 - 81km SW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621398333,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263979 +,,00658295,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658295&format=geojson,0.082,,263.08,",nn00658295,",0.0,ml,,nn,10.0,"31km WNW of Beatty, Nevada",0.1707,0,",nn,",reviewed,1537963299431,"M 0.0 - 31km WNW of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538014000816,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658295 +,,20263978,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263978&format=geojson,,,,",ak20263978,",1.1,ml,,ak,,"80km NNW of Arctic Village, Alaska",0.64,19,",ak,",reviewed,1537963224416,"M 1.1 - 80km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621397776,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263978 +,,61423117,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61423117&format=geojson,0.02437,,201.0,",uw61423117,",1.69,ml,,uw,8.0,"3km WNW of Brookings, Oregon",0.12,44,",uw,",reviewed,1537962674730,"M 1.7 - 3km WNW of Brookings, Oregon",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538077837280,https://earthquake.usgs.gov/earthquakes/eventpage/uw61423117 +,,73089951,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73089951&format=geojson,0.002427,,37.0,",nc73089951,",1.07,md,,nc,38.0,"7km NW of The Geysers, CA",0.04,18,",nc,",reviewed,1537961723780,"M 1.1 - 7km NW of The Geysers, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537986123080,https://earthquake.usgs.gov/earthquakes/eventpage/nc73089951 +,,73089956,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73089956&format=geojson,0.3428,,332.0,",nc73089956,nn00658259,",1.23,md,,nc,11.0,"34km E of Lee Vining, CA",0.06,23,",nc,nn,",reviewed,1537961699370,"M 1.2 - 34km E of Lee Vining, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538013975229,https://earthquake.usgs.gov/earthquakes/eventpage/nc73089956 +,,37369626,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37369626&format=geojson,0.03325,,71.0,",ci37369626,",0.5,ml,,ci,20.0,"9km N of Anza, CA",0.05,4,",ci,",reviewed,1537961327900,"M 0.5 - 9km N of Anza, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537983851550,https://earthquake.usgs.gov/earthquakes/eventpage/ci37369626 +,,37410877,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37410877&format=geojson,0.005682,,138.0,",ci37410877,",-0.17,ml,,ci,10.0,"10km NE of Aguanga, CA",0.1,0,",ci,",reviewed,1537961274230,"M -0.2 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537987187615,https://earthquake.usgs.gov/earthquakes/eventpage/ci37410877 +,,37369618,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37369618&format=geojson,0.005213,,73.0,",ci37369618,",0.09,ml,,ci,18.0,"10km NE of Aguanga, CA",0.12,0,",ci,",reviewed,1537961241830,"M 0.1 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537987033565,https://earthquake.usgs.gov/earthquakes/eventpage/ci37369618 +,,20263976,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263976&format=geojson,,,,",ak20263976,",1.5,ml,,ak,,"32km SW of Tanaga Volcano, Alaska",0.5,35,",ak,",reviewed,1537961204622,"M 1.5 - 32km SW of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538621397267,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263976 +,,00658251,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658251&format=geojson,0.092,,82.47,",nn00658251,",1.0,ml,,nn,50.0,"31km NNE of Beatty, Nevada",0.2214,15,",nn,",reviewed,1537960554488,"M 1.0 - 31km NNE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538013973124,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658251 +,,37369610,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37369610&format=geojson,0.0792,,87.0,",ci37369610,",0.26,ml,,ci,13.0,"10km ENE of Aguanga, CA",0.2,1,",ci,",reviewed,1537960513610,"M 0.3 - 10km ENE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537968302049,https://earthquake.usgs.gov/earthquakes/eventpage/ci37369610 +,,20263964,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263964&format=geojson,,,,",ak20263964,us2000hk65,",3.4,ml,,ak,,"73km SSW of Kaktovik, Alaska",0.6,178,",ak,us,",reviewed,1537960051059,"M 3.4 - 73km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538754198040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263964 +,,20263963,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263963&format=geojson,,,,",ak20263963,",0.8,ml,,ak,,"64km SSW of Deltana, Alaska",0.67,10,",ak,",reviewed,1537959820669,"M 0.8 - 64km SSW of Deltana, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621395922,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263963 +,,20263959,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263959&format=geojson,,,,",ak20263959,",2.2,ml,,ak,,"76km SSW of Kaktovik, Alaska",0.73,74,",ak,",reviewed,1537959704798,"M 2.2 - 76km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621395280,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263959 +,,70804859,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804859&format=geojson,0.08981,,177.0,",av70804859,",0.4,ml,,av,10.0,"105km NNW of Larsen Bay, Alaska",0.2,2,",av,",reviewed,1537959608530,"M 0.4 - 105km NNW of Larsen Bay, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538083891100,https://earthquake.usgs.gov/earthquakes/eventpage/av70804859 +,,61787131,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61787131&format=geojson,0.05225,,258.0,",av61787131,",0.79,ml,,av,8.0,"47km NE of Adak, Alaska",0.23,10,",av,",reviewed,1537959574020,"M 0.8 - 47km NE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538082212780,https://earthquake.usgs.gov/earthquakes/eventpage/av61787131 +,,20263948,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263948&format=geojson,,,,",ak20263948,",2.8,ml,,ak,,"105km W of Cantwell, Alaska",0.67,121,",ak,",reviewed,1537959476922,"M 2.8 - 105km W of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621394304,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263948 +,,37369594,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37369594&format=geojson,0.008302,,30.0,",ci37369594,",1.23,ml,,ci,58.0,"9km NE of Aguanga, CA",0.2,23,",ci,",reviewed,1537959399400,"M 1.2 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537968390370,https://earthquake.usgs.gov/earthquakes/eventpage/ci37369594 +,,37369586,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37369586&format=geojson,0.004856,,46.0,",ci37369586,",0.71,ml,,ci,30.0,"10km NE of Aguanga, CA",0.13,8,",ci,",reviewed,1537959373540,"M 0.7 - 10km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537968393870,https://earthquake.usgs.gov/earthquakes/eventpage/ci37369586 +,,20270542,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270542&format=geojson,,,,",ak20270542,",1.2,ml,,ak,,"5km NW of Kodiak, Alaska",0.42,22,",ak,",reviewed,1537959349515,"M 1.2 - 5km NW of Kodiak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621393816,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270542 +,,37369578,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37369578&format=geojson,0.07619,,94.0,",ci37369578,",0.11,ml,,ci,9.0,"10km NE of Aguanga, CA",0.05,0,",ci,",reviewed,1537959314590,"M 0.1 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537968338044,https://earthquake.usgs.gov/earthquakes/eventpage/ci37369578 +,,37369570,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37369570&format=geojson,0.03065,,81.0,",ci37369570,",0.25,ml,,ci,20.0,"6km S of Idyllwild, CA",0.07,1,",ci,",reviewed,1537959191120,"M 0.3 - 6km S of Idyllwild, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537991804722,https://earthquake.usgs.gov/earthquakes/eventpage/ci37369570 +,,20263946,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263946&format=geojson,,,,",ak20263946,",0.6,ml,,ak,,"22km S of Ester, Alaska",0.64,6,",ak,",reviewed,1537958827381,"M 0.6 - 22km S of Ester, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621393277,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263946 +,,20270540,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270540&format=geojson,,,,",ak20270540,",1.3,ml,,ak,,"53km S of Adak, Alaska",0.2,26,",ak,",reviewed,1537958625937,"M 1.3 - 53km S of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-720.0,1538683648736,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270540 +,,70613807,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70613807&format=geojson,0.08915,,206.0,",hv70613807,",1.93,ml,,hv,28.0,"13km SSW of Leilani Estates, Hawaii",0.1,57,",hv,",reviewed,1537958071450,"M 1.9 - 13km SSW of Leilani Estates, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537981939500,https://earthquake.usgs.gov/earthquakes/eventpage/hv70613807 +,,20263945,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263945&format=geojson,,,,",ak20263945,",1.5,ml,,ak,,"96km NNW of Yakutat, Alaska",0.29,35,",ak,",reviewed,1537958061564,"M 1.5 Ice Quake - 96km NNW of Yakutat, Alaska",0,ice quake,",geoserve,origin,phase-data,",-480.0,1538621392314,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263945 +,,2000hk5w,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hk5w&format=geojson,1.351,,67.0,",us2000hk5w,",4.5,mb,,us,,"156km N of Calama, Chile",1.09,312,",us,",reviewed,1537957265220,"M 4.5 - 156km N of Calama, Chile",0,earthquake,",geoserve,origin,phase-data,",-240.0,1537958716040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hk5w +,,00658294,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658294&format=geojson,0.167,,211.95,",nn00658294,",-0.4,ml,,nn,6.0,"38km SSE of Goldfield, Nevada",0.125,0,",nn,",reviewed,1537957191743,"M -0.4 - 38km SSE of Goldfield, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538013999223,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658294 +,,20263943,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263943&format=geojson,,,,",ak20263943,",1.6,ml,,ak,,"77km SSW of Kaktovik, Alaska",0.6,39,",ak,",reviewed,1537956799870,"M 1.6 - 77km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621391701,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263943 +,,80311264,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80311264&format=geojson,0.091,,101.0,",mb80311264,",-0.24,md,,mb,7.0,"17km NNW of Polson, Montana",0.14,0,",mb,",reviewed,1537956719380,"M -0.2 - 17km NNW of Polson, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537977079950,https://earthquake.usgs.gov/earthquakes/eventpage/mb80311264 +,,70613772,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70613772&format=geojson,0.02399,,143.0,",hv70613772,",1.83,md,,hv,44.0,"11km ENE of Pahala, Hawaii",0.12,52,",hv,",automatic,1537956554850,"M 1.8 - 11km ENE of Pahala, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537956738250,https://earthquake.usgs.gov/earthquakes/eventpage/hv70613772 +,,20263941,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263941&format=geojson,,,,",ak20263941,",2.9,ml,,ak,,"14km W of Kiska Volcano, Alaska",0.5,129,",ak,",reviewed,1537956373145,"M 2.9 - 14km W of Kiska Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538683648226,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263941 +,,00658284,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658284&format=geojson,0.055,,227.76,",nn00658284,",0.6,ml,,nn,6.0,"18km NNE of Hawthorne, Nevada",0.1043,6,",nn,",reviewed,1537956113980,"M 0.6 - 18km NNE of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538013995970,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658284 +,,20263932,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263932&format=geojson,,,,",ak20263932,",3.1,ml,,ak,,"77km SSW of Kaktovik, Alaska",0.65,148,",ak,",reviewed,1537955800350,"M 3.1 - 77km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621390343,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263932 +,,20263928,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263928&format=geojson,,,,",ak20263928,",1.4,ml,,ak,,"79km NW of Talkeetna, Alaska",0.47,30,",ak,",reviewed,1537955240618,"M 1.4 - 79km NW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621389731,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263928 +,,00658242,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658242&format=geojson,0.091,,61.62,",nn00658242,",1.7,ml,,nn,55.0,"30km NNE of Beatty, Nevada",0.2251,44,",nn,",reviewed,1537955054976,"M 1.7 - 30km NNE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538013970123,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658242 +,,20263923,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263923&format=geojson,,,,",ak20263923,",2.0,ml,,ak,,"124km NW of Arctic Village, Alaska",0.72,62,",ak,",reviewed,1537954870859,"M 2.0 - 124km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621317939,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263923 +,,37369554,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37369554&format=geojson,0.006398,,62.0,",ci37369554,",0.29,ml,,ci,22.0,"10km NE of Aguanga, CA",0.15,1,",ci,",reviewed,1537954817480,"M 0.3 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537968353786,https://earthquake.usgs.gov/earthquakes/eventpage/ci37369554 +,,70804849,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804849&format=geojson,0.007911,,61.0,",av70804849,",-0.08,ml,,av,10.0,"13km W of Akutan, Alaska",0.2,0,",av,",reviewed,1537954712640,"M -0.1 - 13km W of Akutan, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538081917680,https://earthquake.usgs.gov/earthquakes/eventpage/av70804849 +,,20263916,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263916&format=geojson,,,,",ak20263916,",1.2,ml,,ak,,"86km NW of Arctic Village, Alaska",0.74,22,",ak,",reviewed,1537954582362,"M 1.2 - 86km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621317425,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263916 +,,70804844,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804844&format=geojson,0.02472,,286.0,",av70804844,",-0.91,ml,,av,5.0,"3km ESE of Unalaska, Alaska",0.09,0,",av,",reviewed,1537954356000,"M -0.9 - 3km ESE of Unalaska, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538081655960,https://earthquake.usgs.gov/earthquakes/eventpage/av70804844 +,,2018269006,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018269006&format=geojson,1.9981,,314.0,",pr2018269006,",3.42,md,,pr,12.0,"140km N of Road Town, British Virgin Islands",0.44,180,",pr,",reviewed,1537954345380,"M 3.4 - 140km N of Road Town, British Virgin Islands",0,earthquake,",geoserve,origin,phase-data,",-240.0,1537955825217,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018269006 +,,37369538,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37369538&format=geojson,0.06956,,71.0,",ci37369538,",0.17,ml,,ci,13.0,"10km NE of Aguanga, CA",0.1,0,",ci,",reviewed,1537954245280,"M 0.2 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537968449668,https://earthquake.usgs.gov/earthquakes/eventpage/ci37369538 +,,20263914,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263914&format=geojson,,,,",ak20263914,",1.3,ml,,ak,,"105km NW of Arctic Village, Alaska",0.78,26,",ak,",reviewed,1537954225878,"M 1.3 - 105km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621316872,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263914 +,,2000hk57,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hk57&format=geojson,2.422,,41.0,",us2000hk57,",5.0,mww,,us,,"85km W of Manokwari, Indonesia",0.81,385,",us,",reviewed,1537954061090,"M 5.0 - 85km W of Manokwari, Indonesia",1,earthquake,",geoserve,origin,phase-data,",540.0,1537955304040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hk57 +,,00658238,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658238&format=geojson,0.058,,48.32,",nn00658238,",0.8,ml,,nn,18.0,"10km ESE of Dollar Point, California",0.1772,10,",nn,",reviewed,1537954052696,"M 0.8 - 10km ESE of Dollar Point, California",0,earthquake,",focal-mechanism,geoserve,origin,phase-data,",-480.0,1538420023677,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658238 +,,00658233,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658233&format=geojson,0.059,,49.01,",nn00658233,",1.3,ml,,nn,16.0,"10km ESE of Dollar Point, California",0.1241,26,",nn,",reviewed,1537953882566,"M 1.3 - 10km ESE of Dollar Point, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538013954947,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658233 +,,37369530,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37369530&format=geojson,0.01016,,31.0,",ci37369530,",1.21,ml,,ci,54.0,"9km NE of Aguanga, CA",0.21,23,",ci,",reviewed,1537953837960,"M 1.2 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537968519460,https://earthquake.usgs.gov/earthquakes/eventpage/ci37369530 +,2.7,37369522,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37369522&format=geojson,0.03503,1.0,105.0,",ci37369522,",1.55,ml,,ci,47.0,"2km NW of Marina del Rey, CA",0.2,37,",ci,",reviewed,1537953797000,"M 1.6 - 2km NW of Marina del Rey, CA",0,earthquake,",dyfi,focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537991608861,https://earthquake.usgs.gov/earthquakes/eventpage/ci37369522 +,,37369514,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37369514&format=geojson,0.01272,,29.0,",ci37369514,",1.47,ml,,ci,65.0,"9km NE of Aguanga, CA",0.23,33,",ci,",reviewed,1537953765060,"M 1.5 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537968523660,https://earthquake.usgs.gov/earthquakes/eventpage/ci37369514 +,,70804839,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804839&format=geojson,0.02467,,236.0,",av70804839,",-0.51,ml,,av,4.0,"52km SSW of Redoubt Volcano, Alaska",0.05,0,",av,",reviewed,1537953656390,"M -0.5 - 52km SSW of Redoubt Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538081117830,https://earthquake.usgs.gov/earthquakes/eventpage/av70804839 +,,20263912,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263912&format=geojson,,,,",ak20263912,",1.0,ml,,ak,,"23km ENE of Willow, Alaska",0.53,15,",ak,",reviewed,1537953568182,"M 1.0 - 23km ENE of Willow, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621316315,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263912 +,,00658281,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658281&format=geojson,0.125,,92.58,",nn00658281,",0.9,ml,,nn,8.0,"7km NW of Bridgeport, California",0.1341,12,",nn,",reviewed,1537953294145,"M 0.9 - 7km NW of Bridgeport, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538013994487,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658281 +,,20263906,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263906&format=geojson,,,,",ak20263906,",2.3,ml,,ak,,"74km NNW of Atka, Alaska",0.65,81,",ak,",reviewed,1537952868452,"M 2.3 - 74km NNW of Atka, Alaska",0,earthquake,",geoserve,origin,phase-data,",-720.0,1538683647701,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263906 +,,00658270,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658270&format=geojson,0.06,,181.55,",nn00658270,",-0.1,ml,,nn,4.0,"33km SE of Hawthorne, Nevada",0.1015,0,",nn,",reviewed,1537952741718,"M -0.1 - 33km SE of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538013979918,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658270 +,,2000hk51,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hk51&format=geojson,2.355,,190.0,",ak20263894,us2000hk51,",3.8,ml,,us,,"253km SE of Kodiak, Alaska",0.51,222,",ak,us,",reviewed,1537952710210,"M 3.8 - 253km SE of Kodiak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538621314760,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hk51 +,,37369506,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37369506&format=geojson,0.003695,,50.0,",ci37369506,",0.22,ml,,ci,23.0,"10km NE of Aguanga, CA",0.13,1,",ci,",reviewed,1537952403660,"M 0.2 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537983233732,https://earthquake.usgs.gov/earthquakes/eventpage/ci37369506 +,,00658269,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658269&format=geojson,0.227,,170.82,",nn00658269,",0.2,ml,,nn,5.0,"8km NW of Bridgeport, California",0.1864,1,",nn,",reviewed,1537952393176,"M 0.2 - 8km NW of Bridgeport, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538013978556,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658269 +,,70804834,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804834&format=geojson,0.01034,,145.0,",av70804834,",-0.23,ml,,av,6.0,"94km ESE of Old Iliamna, Alaska",0.2,0,",av,",reviewed,1537952330320,"M -0.2 - 94km ESE of Old Iliamna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538079246450,https://earthquake.usgs.gov/earthquakes/eventpage/av70804834 +,,20263887,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263887&format=geojson,,,,",ak20263887,",2.1,ml,,ak,,"125km NW of Arctic Village, Alaska",0.51,68,",ak,",reviewed,1537952320969,"M 2.1 - 125km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621314065,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263887 +,,20263886,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263886&format=geojson,,,,",ak20263886,",1.4,ml,,ak,,"75km SSW of Kaktovik, Alaska",0.64,30,",ak,",reviewed,1537952220581,"M 1.4 - 75km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621313523,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263886 +,,70613692,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70613692&format=geojson,0.04027,,125.0,",hv70613692,",2.06,ml,,hv,32.0,"14km S of Waimea, Hawaii",0.14,65,",hv,",reviewed,1537952176120,"M 2.1 - 14km S of Waimea, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537981182040,https://earthquake.usgs.gov/earthquakes/eventpage/hv70613692 +,2.0,73089936,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73089936&format=geojson,0.1356,1.0,82.0,",nc73089936,nn00658227,",2.23,md,,nc,32.0,"6km WNW of Bridgeport, CA",0.07,77,",nc,nn,",reviewed,1537952080910,"M 2.2 - 6km WNW of Bridgeport, CA",0,earthquake,",dyfi,focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538419661192,https://earthquake.usgs.gov/earthquakes/eventpage/nc73089936 +,,20263884,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263884&format=geojson,,,,",ak20263884,",0.8,ml,,ak,,"20km W of Anchorage, Alaska",0.65,10,",ak,",reviewed,1537951951900,"M 0.8 - 20km W of Anchorage, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621312966,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263884 +,2.0,73089931,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73089931&format=geojson,0.135,1.0,82.0,",nc73089931,nn00658221,",2.46,md,,nc,36.0,"6km WNW of Bridgeport, CA",0.08,93,",nc,nn,",reviewed,1537951924840,"M 2.5 - 6km WNW of Bridgeport, CA",0,earthquake,",dyfi,focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538419514037,https://earthquake.usgs.gov/earthquakes/eventpage/nc73089931 +,,37369482,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37369482&format=geojson,0.11,,98.0,",ci37369482,",1.07,ml,,ci,39.0,"11km NNE of Borrego Springs, CA",0.22,18,",ci,",reviewed,1537951835870,"M 1.1 - 11km NNE of Borrego Springs, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537968481939,https://earthquake.usgs.gov/earthquakes/eventpage/ci37369482 +,,20263891,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263891&format=geojson,,,,",ak20263891,",1.8,ml,,ak,,"77km SSW of Unalaska, Alaska",0.34,50,",ak,",reviewed,1537951827001,"M 1.8 - 77km SSW of Unalaska, Alaska",0,earthquake,",geoserve,origin,phase-data,",-660.0,1538621312367,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263891 +,,20263882,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263882&format=geojson,,,,",ak20263882,",0.7,ml,,ak,,"8km S of Fairbanks, Alaska",0.56,8,",ak,",reviewed,1537951764141,"M 0.7 - 8km S of Fairbanks, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621311823,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263882 +,,00658278,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658278&format=geojson,0.036,,112.39,",nn00658278,",-0.3,ml,,nn,5.0,"3km WSW of Tahoe Vista, California",0.0266,0,",nn,",reviewed,1537951609193,"M -0.3 - 3km WSW of Tahoe Vista, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538013992840,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658278 +,,37369474,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37369474&format=geojson,0.04869,,49.0,",ci37369474,",1.13,ml,,ci,37.0,"5km SSE of Julian, CA",0.18,20,",ci,",reviewed,1537951541290,"M 1.1 - 5km SSE of Julian, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537968588210,https://earthquake.usgs.gov/earthquakes/eventpage/ci37369474 +,,61787001,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61787001&format=geojson,0.05074,,299.0,",av61787001,",-0.4,ml,,av,5.0,"104km NW of Larsen Bay, Alaska",0.09,0,",av,",reviewed,1537950704570,"M -0.4 - 104km NW of Larsen Bay, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538078706770,https://earthquake.usgs.gov/earthquakes/eventpage/av61787001 +,,20263880,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263880&format=geojson,,,,",ak20263880,",1.5,ml,,ak,,"115km NW of Arctic Village, Alaska",0.81,35,",ak,",reviewed,1537950606370,"M 1.5 - 115km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621311227,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263880 +,,37369466,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37369466&format=geojson,0.003776,,49.0,",ci37369466,",0.19,ml,,ci,21.0,"10km NE of Aguanga, CA",0.14,1,",ci,",reviewed,1537950424090,"M 0.2 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537968486916,https://earthquake.usgs.gov/earthquakes/eventpage/ci37369466 +,,00658213,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658213&format=geojson,0.457,,141.54,",nn00658213,",2.8,ml,,nn,22.0,"70km N of Battle Mountain, Nevada",0.2438,121,",nn,",reviewed,1537950063727,"M 2.8 - 70km N of Battle Mountain, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538013938839,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658213 +,,20263874,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263874&format=geojson,,,,",ak20263874,",1.8,ml,,ak,,"47km N of Nikiski, Alaska",0.56,50,",ak,",reviewed,1537950052981,"M 1.8 - 47km N of Nikiski, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621310399,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263874 +,,20270521,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270521&format=geojson,,,,",ak20270521,",1.5,ml,,ak,,"79km SSW of Homer, Alaska",0.51,35,",ak,",reviewed,1537949792562,"M 1.5 - 79km SSW of Homer, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538621309851,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270521 +,,00658276,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658276&format=geojson,0.032,,72.24,",nn00658276,",-0.1,ml,,nn,8.0,"4km WSW of Tahoe Vista, California",0.1796,0,",nn,",reviewed,1537949710203,"M -0.1 - 4km WSW of Tahoe Vista, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538013989836,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658276 +,,20263872,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263872&format=geojson,,,,",ak20263872,",1.2,ml,,ak,,"73km SSW of Kaktovik, Alaska",0.65,22,",ak,",reviewed,1537949669543,"M 1.2 - 73km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621309285,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263872 +,,20270519,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270519&format=geojson,,,,",ak20270519,",1.1,ml,,ak,,"62km WNW of Talkeetna, Alaska",0.42,19,",ak,",reviewed,1537948940084,"M 1.1 - 62km WNW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538683647150,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270519 +,,37369458,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37369458&format=geojson,0.004138,,72.0,",ci37369458,",0.04,ml,,ci,15.0,"10km NE of Aguanga, CA",0.11,0,",ci,",reviewed,1537948499600,"M 0.0 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537991255730,https://earthquake.usgs.gov/earthquakes/eventpage/ci37369458 +,,20263869,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263869&format=geojson,,,,",ak20263869,",1.3,ml,,ak,,"17km ENE of Eielson Air Force Base, Alaska",0.71,26,",ak,",reviewed,1537948446310,"M 1.3 - 17km ENE of Eielson Air Force Base, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621308139,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263869 +,,2000hk4a,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hk4a&format=geojson,2.722,,61.0,",us2000hk4a,",4.7,mb,,us,,"94km W of Dushanzi, China",1.15,340,",us,",reviewed,1537948246780,"M 4.7 - 94km W of Dushanzi, China",0,earthquake,",geoserve,origin,phase-data,",480.0,1537949737040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hk4a +,,37369450,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37369450&format=geojson,0.01013,,47.0,",ci37369450,",0.73,ml,,ci,19.0,"1km SW of Lake Henshaw, CA",0.12,8,",ci,",reviewed,1537948199600,"M 0.7 - 1km SW of Lake Henshaw, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537968501889,https://earthquake.usgs.gov/earthquakes/eventpage/ci37369450 +,,20263867,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263867&format=geojson,,,,",ak20263867,",0.8,ml,,ak,,"57km WSW of Delta Junction, Alaska",0.76,10,",ak,",reviewed,1537948141541,"M 0.8 - 57km WSW of Delta Junction, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621307612,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263867 +,,20263866,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263866&format=geojson,,,,",ak20263866,",1.9,ml,,ak,,"58km WSW of Amatignak Island, Alaska",0.41,56,",ak,",reviewed,1537948088532,"M 1.9 - 58km WSW of Amatignak Island, Alaska",0,earthquake,",geoserve,origin,phase-data,",-720.0,1538621307058,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263866 +,,20263864,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263864&format=geojson,,,,",ak20263864,",1.3,ml,,ak,,"78km SSW of Kaktovik, Alaska",0.65,26,",ak,",reviewed,1537947913593,"M 1.3 - 78km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621306519,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263864 +,,00658275,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658275&format=geojson,0.137,,90.13,",nn00658275,",1.0,ml,,nn,11.0,"5km WNW of Bridgeport, California",0.2143,15,",nn,",reviewed,1537947862249,"M 1.0 - 5km WNW of Bridgeport, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538013988125,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658275 +,,00658211,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658211&format=geojson,0.132,,68.98,",nn00658211,",1.2,ml,,nn,16.0,"28km WSW of Hawthorne, Nevada",0.2181,22,",nn,",reviewed,1537947620366,"M 1.2 - 28km WSW of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538013932508,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658211 +,,2000hk42,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hk42&format=geojson,,,34.0,",us2000hk42,",3.0,ml,,us,,"4km NNE of Okeene, Oklahoma",0.18,138,",us,",reviewed,1537947437300,"M 3.0 - 4km NNE of Okeene, Oklahoma",0,earthquake,",geoserve,origin,phase-data,",-360.0,1538064511040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hk42 +,,73089896,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73089896&format=geojson,0.01355,,51.0,",nc73089896,",1.27,md,,nc,32.0,"3km SW of Anderson Springs, CA",0.07,25,",nc,",reviewed,1537947295300,"M 1.3 - 3km SW of Anderson Springs, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538004063919,https://earthquake.usgs.gov/earthquakes/eventpage/nc73089896 +,,00658274,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658274&format=geojson,0.148,,260.9,",nn00658274,",0.2,ml,,nn,6.0,"24km W of Sunnyside-Tahoe City, California",0.1454,1,",nn,",reviewed,1537947165136,"M 0.2 - 24km W of Sunnyside-Tahoe City, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538013986665,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658274 +,,37369434,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37369434&format=geojson,0.03663,,134.0,",ci37369434,",0.2,ml,,ci,9.0,"12km NE of Little Lake, CA",0.06,1,",ci,",reviewed,1537947139470,"M 0.2 - 12km NE of Little Lake, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537987460635,https://earthquake.usgs.gov/earthquakes/eventpage/ci37369434 +,,20263860,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263860&format=geojson,,,,",ak20263860,",2.0,ml,,ak,,"85km SSW of Sand Point, Alaska",0.52,62,",ak,",reviewed,1537947116810,"M 2.0 - 85km SSW of Sand Point, Alaska",0,earthquake,",geoserve,origin,phase-data,",-660.0,1538683646623,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263860 +,,20263858,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263858&format=geojson,,,,",ak20263858,",0.3,ml,,ak,,"23km S of Ester, Alaska",0.46,1,",ak,",reviewed,1537946952261,"M 0.3 - 23km S of Ester, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621305438,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263858 +,,20263851,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263851&format=geojson,,,,",ak20263851,",1.1,ml,,ak,,"25km S of Ester, Alaska",0.77,19,",ak,",reviewed,1537946853674,"M 1.1 - 25km S of Ester, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621304777,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263851 +,,20263854,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263854&format=geojson,,,,",ak20263854,",2.6,ml,,ak,,"25km ESE of Amukta Island, Alaska",0.88,104,",ak,",reviewed,1537946845055,"M 2.6 - 25km ESE of Amukta Island, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538683646080,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263854 +,,20263841,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263841&format=geojson,,,,",ak20263841,",2.0,ml,,ak,,"48km SE of Tanaga Volcano, Alaska",0.46,62,",ak,",reviewed,1537946570715,"M 2.0 - 48km SE of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538621303664,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263841 +,,20263844,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263844&format=geojson,,,,",ak20263844,",0.8,ml,,ak,,"25km S of Ester, Alaska",0.54,10,",ak,",reviewed,1537946531090,"M 0.8 - 25km S of Ester, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621303117,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263844 +,,20263843,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263843&format=geojson,,,,",ak20263843,",0.7,ml,,ak,,"23km S of Ester, Alaska",0.61,8,",ak,",reviewed,1537946506623,"M 0.7 - 23km S of Ester, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621302582,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263843 +,,00658290,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658290&format=geojson,0.094,,215.7,",nn00658290,",0.0,ml,,nn,18.0,"33km NNW of Pahrump, Nevada",0.2532,0,",nn,",reviewed,1537946489419,"M 0.0 - 33km NNW of Pahrump, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538013997728,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658290 +,,00658273,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658273&format=geojson,0.101,,153.57,",nn00658273,",-0.2,ml,,nn,4.0,"4km N of Johnson Lane, Nevada",0.1345,0,",nn,",reviewed,1537946464184,"M -0.2 - 4km N of Johnson Lane, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538013984824,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658273 +,,73089886,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73089886&format=geojson,0.01004,,53.0,",nc73089886,",1.62,md,,nc,41.0,"3km SSW of Anderson Springs, CA",0.06,40,",nc,",reviewed,1537946417510,"M 1.6 - 3km SSW of Anderson Springs, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537996503206,https://earthquake.usgs.gov/earthquakes/eventpage/nc73089886 +,,20263840,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263840&format=geojson,,,,",ak20263840,",1.0,ml,,ak,,"29km WSW of Tanaga Volcano, Alaska",0.25,15,",ak,",reviewed,1537946262483,"M 1.0 - 29km WSW of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538621302106,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263840 +,,73089881,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73089881&format=geojson,0.04261,,225.0,",nc73089881,",0.88,md,,nc,19.0,"9km SW of The Geysers, CA",0.04,12,",nc,",reviewed,1537946107700,"M 0.9 - 9km SW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538001543672,https://earthquake.usgs.gov/earthquakes/eventpage/nc73089881 +,,20263838,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263838&format=geojson,,,,",ak20263838,",1.3,ml,,ak,,"131km ENE of Anaktuvuk Pass, Alaska",0.6,26,",ak,",reviewed,1537945834671,"M 1.3 - 131km ENE of Anaktuvuk Pass, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621301456,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263838 +,,80311274,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80311274&format=geojson,0.177,,161.0,",mb80311274,",0.1,ml,,mb,4.0,"18km NNW of Manhattan, Montana",0.05,0,",mb,",reviewed,1537945372660,"M 0.1 - 18km NNW of Manhattan, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537977565020,https://earthquake.usgs.gov/earthquakes/eventpage/mb80311274 +,,20263828,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263828&format=geojson,,,,",ak20263828,",2.1,ml,,ak,,"105km W of Cantwell, Alaska",0.7,68,",ak,",reviewed,1537944639042,"M 2.1 - 105km W of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621300788,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263828 +,,37369418,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37369418&format=geojson,0.02972,,35.0,",ci37369418,",0.41,ml,,ci,26.0,"9km ENE of Aguanga, CA",0.11,3,",ci,",reviewed,1537944492280,"M 0.4 - 9km ENE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538006436263,https://earthquake.usgs.gov/earthquakes/eventpage/ci37369418 +,,20263824,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263824&format=geojson,,,,",ak20263824,",1.6,ml,,ak,,"35km SE of Redoubt Volcano, Alaska",0.62,39,",ak,",reviewed,1537944482304,"M 1.6 - 35km SE of Redoubt Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621299933,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263824 +,,2018269005,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018269005&format=geojson,1.1253,,334.0,",pr2018269005,",2.31,md,,pr,3.0,"77km NNE of San Juan, Puerto Rico",0.17,82,",pr,",reviewed,1537944380400,"M 2.3 - 77km NNE of San Juan, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1537946251969,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018269005 +,,00658210,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658210&format=geojson,0.006,,65.99,",nn00658210,",0.0,ml,,nn,16.0,"55km N of Pahrump, Nevada",0.1546,0,",nn,",reviewed,1537944179428,"M 0.0 - 55km N of Pahrump, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538013929664,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658210 +,,20263822,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263822&format=geojson,,,,",ak20263822,",1.3,ml,,ak,,"105km NNW of Arctic Village, Alaska",0.81,26,",ak,",reviewed,1537944106476,"M 1.3 - 105km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621299361,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263822 +,,20263818,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263818&format=geojson,,,,",ak20263818,",1.6,ml,,ak,,"34km SSW of Tanaga Volcano, Alaska",0.49,39,",ak,",reviewed,1537943933519,"M 1.6 - 34km SSW of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538621298780,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263818 +,,71109644,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc71109644&format=geojson,0.003538,,95.0,",nc71109644,",1.01,md,,nc,7.0,"10km NW of The Geysers, CA",0.03,16,",nc,",reviewed,1537943560820,"M 1.0 - 10km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537999539663,https://earthquake.usgs.gov/earthquakes/eventpage/nc71109644 +,,73089851,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73089851&format=geojson,0.01096,,52.0,",nc73089851,",1.21,md,,nc,35.0,"9km WNW of Cobb, CA",0.04,23,",nc,",reviewed,1537943559380,"M 1.2 - 9km WNW of Cobb, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538011624148,https://earthquake.usgs.gov/earthquakes/eventpage/nc73089851 +,,20263815,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263815&format=geojson,,,,",ak20263815,",1.3,ml,,ak,,"82km SW of Kaktovik, Alaska",0.54,26,",ak,",reviewed,1537943458662,"M 1.3 - 82km SW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621298232,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263815 +,,73089846,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73089846&format=geojson,0.00367,,101.0,",nc73089846,",0.73,md,,nc,10.0,"5km NW of The Geysers, CA",0.04,8,",nc,",automatic,1537943352930,"M 0.7 - 5km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537944304254,https://earthquake.usgs.gov/earthquakes/eventpage/nc73089846 +,,20263811,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263811&format=geojson,,,,",ak20263811,",1.6,ml,,ak,,"47km W of Talkeetna, Alaska",0.49,39,",ak,",reviewed,1537943324358,"M 1.6 - 47km W of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538683645478,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263811 +,,20264328,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20264328&format=geojson,,,,",ak20264328,",1.4,ml,,ak,,"59km NNE of Talkeetna, Alaska",0.6,30,",ak,",reviewed,1537943323489,"M 1.4 - 59km NNE of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538683644973,https://earthquake.usgs.gov/earthquakes/eventpage/ak20264328 +,,20263681,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263681&format=geojson,,,,",ak20263681,",1.6,ml,,ak,,"28km NNW of Anchor Point, Alaska",0.64,39,",ak,",reviewed,1537942892556,"M 1.6 - 28km NNW of Anchor Point, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621296861,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263681 +,,20263678,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263678&format=geojson,,,,",ak20263678,",1.4,ml,,ak,,"75km S of Kaktovik, Alaska",0.73,30,",ak,",reviewed,1537942572263,"M 1.4 - 75km S of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621296318,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263678 +,,37369402,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37369402&format=geojson,0.08929,,96.0,",ci37369402,",0.36,ml,,ci,23.0,"8km NE of Aguanga, CA",0.12,2,",ci,",reviewed,1537942418650,"M 0.4 - 8km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537991231500,https://earthquake.usgs.gov/earthquakes/eventpage/ci37369402 +,,20270496,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270496&format=geojson,,,,",ak20270496,",1.0,ml,,ak,,"37km SW of Adak, Alaska",0.28,15,",ak,",reviewed,1537942267570,"M 1.0 - 37km SW of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538621295834,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270496 +,,20263675,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263675&format=geojson,,,,",ak20263675,",1.4,ml,,ak,,"75km SSW of Kaktovik, Alaska",0.9,30,",ak,",reviewed,1537942093182,"M 1.4 - 75km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621295273,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263675 +,,37369394,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37369394&format=geojson,0.01516,,136.0,",ci37369394,",0.3,ml,,ci,10.0,"16km E of Coso Junction, CA",0.09,1,",ci,",reviewed,1537941505170,"M 0.3 - 16km E of Coso Junction, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537986639944,https://earthquake.usgs.gov/earthquakes/eventpage/ci37369394 +,,00658277,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658277&format=geojson,0.032,,79.92,",nn00658277,",-0.2,ml,,nn,7.0,"3km SW of Tahoe Vista, California",0.0836,0,",nn,",reviewed,1537941236313,"M -0.2 - 3km SW of Tahoe Vista, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538013991412,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658277 +,,00658208,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658208&format=geojson,0.445,,157.33,",nn00658208,",0.4,ml,,nn,14.0,"33km W of Alamo, Nevada",0.1574,2,",nn,",reviewed,1537940491618,"M 0.4 - 33km W of Alamo, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538013927805,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658208 +,,37369370,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37369370&format=geojson,0.07973,,112.0,",ci37369370,",1.41,ml,,ci,17.0,"13km SW of Arvin, CA",0.18,31,",ci,",reviewed,1537940284630,"M 1.4 - 13km SW of Arvin, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537968538883,https://earthquake.usgs.gov/earthquakes/eventpage/ci37369370 +,,73089826,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73089826&format=geojson,0.09853,,236.0,",nc73089826,",0.62,md,,nc,9.0,"17km WSW of Toms Place, CA",0.11,6,",nc,",reviewed,1537940194800,"M 0.6 - 17km WSW of Toms Place, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537981142959,https://earthquake.usgs.gov/earthquakes/eventpage/nc73089826 +,,37369362,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37369362&format=geojson,0.04644,,36.0,",ci37369362,",1.92,ml,,ci,68.0,"7km NW of Morongo Valley, CA",0.13,57,",ci,",reviewed,1537940191700,"M 1.9 - 7km NW of Morongo Valley, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537990983830,https://earthquake.usgs.gov/earthquakes/eventpage/ci37369362 +,,2000hk3h,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hk3h&format=geojson,4.901,,59.0,",us2000hk3h,",4.4,mb,,us,,"123km ENE of Ndoi Island, Fiji",0.88,298,",us,",reviewed,1537940132150,"M 4.4 - 123km ENE of Ndoi Island, Fiji",0,earthquake,",geoserve,origin,phase-data,",-720.0,1537948167040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hk3h +,,37369354,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37369354&format=geojson,0.05994,,42.0,",ci37369354,",1.41,ml,,ci,45.0,"7km E of Lucerne Valley, CA",0.17,31,",ci,",reviewed,1537939875270,"M 1.4 - 7km E of Lucerne Valley, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537968535548,https://earthquake.usgs.gov/earthquakes/eventpage/ci37369354 +,,73089816,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73089816&format=geojson,0.01071,,47.0,",nc73089816,",1.18,md,,nc,23.0,"7km W of Cobb, CA",0.05,21,",nc,",automatic,1537939439600,"M 1.2 - 7km W of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537950003791,https://earthquake.usgs.gov/earthquakes/eventpage/nc73089816 +,,20263673,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263673&format=geojson,,,,",ak20263673,",1.4,ml,,ak,,"125km NNW of Arctic Village, Alaska",0.69,30,",ak,",reviewed,1537939176743,"M 1.4 - 125km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621294738,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263673 +,,20270493,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270493&format=geojson,,,,",ak20270493,",0.9,ml,,ak,,"37km W of Willow, Alaska",0.59,12,",ak,",reviewed,1537939111579,"M 0.9 - 37km W of Willow, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621294233,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270493 +,,37369346,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37369346&format=geojson,0.004921,,52.0,",ci37369346,",0.45,ml,,ci,20.0,"10km NE of Aguanga, CA",0.13,3,",ci,",reviewed,1537938852820,"M 0.5 - 10km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537968597330,https://earthquake.usgs.gov/earthquakes/eventpage/ci37369346 +,,37369338,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37369338&format=geojson,0.01122,,29.0,",ci37369338,",1.63,ml,,ci,63.0,"9km NE of Aguanga, CA",0.22,41,",ci,",reviewed,1537938618670,"M 1.6 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537968662870,https://earthquake.usgs.gov/earthquakes/eventpage/ci37369338 +,,20263670,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263670&format=geojson,,,,",ak20263670,",1.4,ml,,ak,,"78km SSW of Kaktovik, Alaska",0.68,30,",ak,",reviewed,1537938435573,"M 1.4 - 78km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621293707,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263670 +,,37369330,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37369330&format=geojson,0.004972,,54.0,",ci37369330,",0.17,ml,,ci,22.0,"10km NE of Aguanga, CA",0.13,0,",ci,",reviewed,1537938374960,"M 0.2 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537988628724,https://earthquake.usgs.gov/earthquakes/eventpage/ci37369330 +,,37369322,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37369322&format=geojson,0.04224,,48.0,",ci37369322,",0.93,ml,,ci,41.0,"5km E of Cabazon, CA",0.14,13,",ci,",reviewed,1537938232540,"M 0.9 - 5km E of Cabazon, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537983692606,https://earthquake.usgs.gov/earthquakes/eventpage/ci37369322 +,,37369314,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37369314&format=geojson,0.0504,,27.0,",ci37369314,",1.24,ml,,ci,31.0,"2km E of Lytle Creek, CA",0.18,24,",ci,",reviewed,1537938195220,"M 1.2 - 2km E of Lytle Creek, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537968558406,https://earthquake.usgs.gov/earthquakes/eventpage/ci37369314 +,,80311259,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80311259&format=geojson,0.119,,117.0,",mb80311259,",0.8,ml,,mb,6.0,"14km SE of Lincoln, Montana",0.07,10,",mb,",reviewed,1537938018920,"M 0.8 - 14km SE of Lincoln, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537976587990,https://earthquake.usgs.gov/earthquakes/eventpage/mb80311259 +,,20263668,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263668&format=geojson,,,,",ak20263668,",2.9,ml,,ak,,"276km ESE of Kodiak, Alaska",0.72,129,",ak,",reviewed,1537937980124,"M 2.9 - 276km ESE of Kodiak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538683644284,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263668 +,,20263663,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263663&format=geojson,,,,",ak20263663,",2.1,ml,,ak,,"79km SSW of Kaktovik, Alaska",0.73,68,",ak,",reviewed,1537937357951,"M 2.1 - 79km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621292371,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263663 +,,00658202,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658202&format=geojson,0.09,,117.43,",nn00658202,",0.6,ml,,nn,34.0,"29km NNE of Beatty, Nevada",0.2262,6,",nn,",reviewed,1537936726732,"M 0.6 - 29km NNE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538013926013,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658202 +,,00658272,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658272&format=geojson,0.176,,326.47,",nn00658272,",-0.2,ml,,nn,4.0,"30km SSW of Hawthorne, Nevada",0.1128,0,",nn,",reviewed,1537936406128,"M -0.2 - 30km SSW of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538013982731,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658272 +,,20263655,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263655&format=geojson,,,,",ak20263655,",0.8,ml,,ak,,"82km E of Cantwell, Alaska",0.33,10,",ak,",reviewed,1537936288647,"M 0.8 - 82km E of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621291899,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263655 +,,20263654,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263654&format=geojson,,,,",ak20263654,",1.3,ml,,ak,,"23km ENE of Noatak, Alaska",0.55,26,",ak,",reviewed,1537936220339,"M 1.3 - 23km ENE of Noatak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621291411,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263654 +,,20263651,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263651&format=geojson,,,,",ak20263651,",2.1,ml,,ak,,"81km SSW of Kaktovik, Alaska",0.81,68,",ak,",reviewed,1537936083918,"M 2.1 - 81km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621290813,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263651 +,,20263642,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263642&format=geojson,,,,",ak20263642,",2.9,ml,,ak,,"109km NNW of Arctic Village, Alaska",0.69,129,",ak,",reviewed,1537935171867,"M 2.9 - 109km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621290259,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263642 +,,00658197,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658197&format=geojson,0.091,,134.8,",nn00658197,",0.7,ml,,nn,32.0,"29km NNE of Beatty, Nevada",0.2142,8,",nn,",reviewed,1537935120456,"M 0.7 - 29km NNE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538013923798,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658197 +,,20263634,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263634&format=geojson,,,,",ak20263634,",3.4,ml,3.4,ak,,"73km SSW of Kaktovik, Alaska",0.61,178,",ak,",reviewed,1537935055582,"M 3.4 - 73km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,shakemap,",-540.0,1538621596839,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263634 +,,20263631,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263631&format=geojson,,,,",ak20263631,",2.8,ml,,ak,,"106km NNW of Arctic Village, Alaska",0.56,121,",ak,",reviewed,1537935034701,"M 2.8 - 106km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538683643734,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263631 +,,37369290,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37369290&format=geojson,0.06255,,85.0,",ci37369290,",0.69,ml,,ci,9.0,"11km ENE of Desert Hot Springs, CA",0.1,7,",ci,",reviewed,1537934795020,"M 0.7 - 11km ENE of Desert Hot Springs, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537968574209,https://earthquake.usgs.gov/earthquakes/eventpage/ci37369290 +,,70804824,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804824&format=geojson,0.01961,,110.0,",av70804824,",-1.24,ml,,av,5.0,"42km ENE of Adak, Alaska",0.26,0,",av,",reviewed,1537934601100,"M -1.2 - 42km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538076576300,https://earthquake.usgs.gov/earthquakes/eventpage/av70804824 +,,00658191,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658191&format=geojson,0.088,,132.15,",nn00658191,",0.7,ml,,nn,46.0,"30km NNE of Beatty, Nevada",0.1918,8,",nn,",reviewed,1537934326233,"M 0.7 - 30km NNE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538013921809,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658191 +,,20263629,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263629&format=geojson,,,,",ak20263629,",2.6,ml,,ak,,"178km S of Little Sitkin Island, Alaska",0.53,104,",ak,",reviewed,1537934154093,"M 2.6 - 178km S of Little Sitkin Island, Alaska",0,earthquake,",geoserve,origin,phase-data,",720.0,1538621288343,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263629 +,,00658190,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658190&format=geojson,0.283,,239.14,",nn00658190,",0.1,ml,,nn,11.0,"58km SSW of Beatty, Nevada",0.1595,0,",nn,",reviewed,1537934083714,"M 0.1 - 58km SSW of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538013917127,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658190 +,,20263628,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263628&format=geojson,,,,",ak20263628,",1.9,ml,,ak,,"115km SSW of Sand Point, Alaska",0.61,56,",ak,",reviewed,1537933980105,"M 1.9 - 115km SSW of Sand Point, Alaska",0,earthquake,",geoserve,origin,phase-data,",-660.0,1538621287797,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263628 +,,61423017,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61423017&format=geojson,0.1297,,142.0,",uw61423017,",0.14,md,,uw,4.0,"15km NW of Friday Harbor, Washington",0.12,0,",uw,",reviewed,1537933555950,"M 0.1 - 15km NW of Friday Harbor, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538072600530,https://earthquake.usgs.gov/earthquakes/eventpage/uw61423017 +,,37369282,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37369282&format=geojson,0.0273,,119.0,",ci37369282,",0.27,ml,,ci,9.0,"13km NE of Little Lake, CA",0.08,1,",ci,",reviewed,1537933350290,"M 0.3 - 13km NE of Little Lake, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537983867897,https://earthquake.usgs.gov/earthquakes/eventpage/ci37369282 +,,20263625,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263625&format=geojson,,,,",ak20263625,",1.8,ml,,ak,,"79km SSW of Kaktovik, Alaska",0.63,50,",ak,",reviewed,1537933243592,"M 1.8 - 79km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621287217,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263625 +,,20263624,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263624&format=geojson,,,,",ak20263624,",0.9,ml,,ak,,"57km NW of Cape Yakataga, Alaska",0.5,12,",ak,",reviewed,1537932744303,"M 0.9 - 57km NW of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621286672,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263624 +,,20263623,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263623&format=geojson,,,,",ak20263623,",1.5,ml,,ak,,"80km SSW of Kaktovik, Alaska",0.58,35,",ak,",reviewed,1537932570506,"M 1.5 - 80km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621286075,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263623 +,,2018269004,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018269004&format=geojson,1.485,,352.0,",pr2018269004,",3.44,md,,pr,3.0,"38km NNE of Road Town, British Virgin Islands",0.14,182,",pr,",reviewed,1537932293780,"M 3.4 - 38km NNE of Road Town, British Virgin Islands",0,earthquake,",geoserve,origin,phase-data,",-240.0,1537946242231,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018269004 +,,70804819,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804819&format=geojson,0.00767,,63.0,",av70804819,",-0.3,ml,,av,10.0,"13km W of Akutan, Alaska",0.21,0,",av,",reviewed,1537932285490,"M -0.3 - 13km W of Akutan, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538075465710,https://earthquake.usgs.gov/earthquakes/eventpage/av70804819 +,,20263622,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263622&format=geojson,,,,",ak20263622,",1.3,ml,,ak,,"103km NNW of Arctic Village, Alaska",0.66,26,",ak,",reviewed,1537932104220,"M 1.3 - 103km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621285538,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263622 +,,60297772,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60297772&format=geojson,0.1257,,121.0,",uu60297772,",0.78,md,,uu,12.0,"27km SW of Tremonton, Utah",0.19,9,",uu,",reviewed,1537932073620,"M 0.8 - 27km SW of Tremonton, Utah",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537976314420,https://earthquake.usgs.gov/earthquakes/eventpage/uu60297772 +,,60297767,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60297767&format=geojson,0.1239,,121.0,",uu60297767,",0.59,ml,,uu,13.0,"27km SW of Tremonton, Utah",0.12,5,",uu,",reviewed,1537931941760,"M 0.6 - 27km SW of Tremonton, Utah",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538077992080,https://earthquake.usgs.gov/earthquakes/eventpage/uu60297767 +,,20270477,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270477&format=geojson,,,,",ak20270477,",2.0,ml,,ak,,"9km NE of Semisopochnoi Island, Alaska",0.52,62,",ak,",reviewed,1537931656096,"M 2.0 - 9km NE of Semisopochnoi Island, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538621285054,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270477 +,,37369274,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37369274&format=geojson,0.004318,,30.0,",ci37369274,",0.93,ml,,ci,40.0,"10km NE of Aguanga, CA",0.15,13,",ci,",reviewed,1537930993830,"M 0.9 - 10km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537968669610,https://earthquake.usgs.gov/earthquakes/eventpage/ci37369274 +,,37369266,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37369266&format=geojson,0.06815,,69.0,",ci37369266,",0.39,ml,,ci,19.0,"10km NE of Aguanga, CA",0.14,2,",ci,",reviewed,1537930797830,"M 0.4 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537968592958,https://earthquake.usgs.gov/earthquakes/eventpage/ci37369266 +,,20263621,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263621&format=geojson,,,,",ak20263621,",1.0,ml,,ak,,"26km WSW of Tanaga Volcano, Alaska",0.31,15,",ak,",reviewed,1537930745221,"M 1.0 - 26km WSW of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538621284549,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263621 +,,1000h5r2,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h5r2&format=geojson,1.019,,90.0,",us1000h5r2,",4.2,mb,,us,,"113km SW of Raoul Island, New Zealand",1.39,271,",us,",reviewed,1537930461410,"M 4.2 - 113km SW of Raoul Island, New Zealand",0,earthquake,",geoserve,origin,phase-data,",-720.0,1538972478040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h5r2 +,,2000hk2d,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hk2d&format=geojson,0.563,,65.0,",us2000hk2d,",4.4,mb,,us,,"31km NE of Palaikastron, Greece",1.11,298,",us,",reviewed,1537930338000,"M 4.4 - 31km NE of Palaikastron, Greece",0,earthquake,",geoserve,origin,phase-data,",120.0,1538972184040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hk2d +,,2018269003,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018269003&format=geojson,0.203,,195.0,",pr2018269003,",2.24,md,,pr,12.0,"27km WNW of Aguadilla, Puerto Rico",0.35,77,",pr,",reviewed,1537930140540,"M 2.2 - 27km WNW of Aguadilla, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1537940505208,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018269003 +,,20263619,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263619&format=geojson,,,,",ak20263619,",1.6,ml,,ak,,"10km SW of Unalaska, Alaska",0.24,39,",ak,",reviewed,1537930137970,"M 1.6 - 10km SW of Unalaska, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538621283951,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263619 +,,73089751,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73089751&format=geojson,0.04121,,112.0,",nc73089751,",0.68,md,,nc,11.0,"8km NE of Alum Rock, CA",0.02,7,",nc,",reviewed,1537929993450,"M 0.7 - 8km NE of Alum Rock, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537997703312,https://earthquake.usgs.gov/earthquakes/eventpage/nc73089751 +,,00658176,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658176&format=geojson,0.165,,191.19,",nn00658176,",0.4,ml,,nn,22.0,"38km SSE of Goldfield, Nevada",0.2027,2,",nn,",reviewed,1537929881155,"M 0.4 - 38km SSE of Goldfield, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538013911745,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658176 +,,1000h6s1,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h6s1&format=geojson,2.472,,203.0,",ak20270474,us1000h6s1,",2.9,ml,,us,,"266km ESE of Kodiak, Alaska",0.67,129,",ak,us,",reviewed,1537929807760,"M 2.9 - 266km ESE of Kodiak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538971786040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h6s1 +,,20263616,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263616&format=geojson,,,,",ak20263616,",1.1,ml,,ak,,"118km NW of Arctic Village, Alaska",0.72,19,",ak,",reviewed,1537929114387,"M 1.1 - 118km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621282813,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263616 +,,37369250,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37369250&format=geojson,0.05832,,77.0,",ci37369250,",1.29,ml,,ci,13.0,"3km W of Brawley, CA",0.2,26,",ci,",reviewed,1537928574760,"M 1.3 - 3km W of Brawley, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537983110662,https://earthquake.usgs.gov/earthquakes/eventpage/ci37369250 +,,61786616,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61786616&format=geojson,0.02664,,119.0,",av61786616,",-0.63,ml,,av,5.0,"43km ENE of Adak, Alaska",0.08,0,",av,",reviewed,1537928531690,"M -0.6 - 43km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538073935470,https://earthquake.usgs.gov/earthquakes/eventpage/av61786616 +,,70804809,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804809&format=geojson,0.02391,,115.0,",av70804809,",-0.99,ml,,av,5.0,"42km ENE of Adak, Alaska",0.11,0,",av,",reviewed,1537928259230,"M -1.0 - 42km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538074065570,https://earthquake.usgs.gov/earthquakes/eventpage/av70804809 +,,2018269002,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018269002&format=geojson,0.7596,,293.0,",pr2018269002,us2000hk3c,",3.19,md,,pr,3.0,"90km NE of Miches, Dominican Republic",0.19,157,",pr,us,",reviewed,1537928208920,"M 3.2 - 90km NE of Miches, Dominican Republic",0,earthquake,",geoserve,origin,phase-data,",-300.0,1538971055040,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018269002 +,,73089746,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73089746&format=geojson,0.3864,,283.0,",nc73089746,",1.61,md,,nc,10.0,"42km SE of Fall River Mills, CA",0.05,40,",nc,",reviewed,1537928169500,"M 1.6 - 42km SE of Fall River Mills, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537931823078,https://earthquake.usgs.gov/earthquakes/eventpage/nc73089746 +,,20263612,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263612&format=geojson,,,,",ak20263612,",2.3,ml,,ak,,"79km SSW of Kaktovik, Alaska",0.66,81,",ak,",reviewed,1537928106732,"M 2.3 - 79km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621282095,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263612 +,,70804814,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804814&format=geojson,0.01557,,111.0,",av70804814,",-0.49,ml,,av,5.0,"41km ENE of Adak, Alaska",0.22,0,",av,",reviewed,1537928007830,"M -0.5 - 41km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538074195210,https://earthquake.usgs.gov/earthquakes/eventpage/av70804814 +,,20263608,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263608&format=geojson,,,,",ak20263608,",1.2,ml,,ak,,"38km ENE of Y, Alaska",0.65,22,",ak,",reviewed,1537927684640,"M 1.2 - 38km ENE of Y, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621281563,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263608 +,,20263607,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263607&format=geojson,,,,",ak20263607,",2.0,ml,,ak,,"79km SSW of Sand Point, Alaska",0.58,62,",ak,",reviewed,1537927602642,"M 2.0 - 79km SSW of Sand Point, Alaska",0,earthquake,",geoserve,origin,phase-data,",-660.0,1538621280895,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263607 +,,20264313,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20264313&format=geojson,,,,",ak20264313,",1.5,ml,,ak,,"81km SSW of Kaktovik, Alaska",0.58,35,",ak,",reviewed,1537927596157,"M 1.5 - 81km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621280371,https://earthquake.usgs.gov/earthquakes/eventpage/ak20264313 +,,61786596,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61786596&format=geojson,0.02173,,195.0,",av61786596,",-0.69,ml,,av,4.0,"42km ENE of Adak, Alaska",0.05,0,",av,",reviewed,1537927438670,"M -0.7 - 42km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538074735770,https://earthquake.usgs.gov/earthquakes/eventpage/av61786596 +,,20263604,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263604&format=geojson,,,,",ak20263604,",1.3,ml,,ak,,"78km W of Cantwell, Alaska",0.41,26,",ak,",reviewed,1537927031812,"M 1.3 - 78km W of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621279802,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263604 +,,00658184,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658184&format=geojson,0.322,,179.9,",nn00658184,",0.4,ml,,nn,4.0,"29km SW of Hawthorne, Nevada",0.0167,2,",nn,",reviewed,1537926764766,"M 0.4 - 29km SW of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538013914628,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658184 +,,00658170,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658170&format=geojson,0.153,,78.72,",nn00658170,",1.2,ml,,nn,18.0,"30km ENE of Bridgeport, California",0.1742,22,",nn,",reviewed,1537926528641,"M 1.2 - 30km ENE of Bridgeport, California",0,earthquake,",focal-mechanism,geoserve,origin,phase-data,",-480.0,1538419089583,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658170 +,,73089736,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73089736&format=geojson,0.04006,,107.0,",nc73089736,",1.35,md,,nc,31.0,"7km SE of Cloverdale, CA",0.06,28,",nc,",reviewed,1537926253020,"M 1.4 - 7km SE of Cloverdale, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537930382949,https://earthquake.usgs.gov/earthquakes/eventpage/nc73089736 +,,61786581,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61786581&format=geojson,0.02894,,131.0,",av61786581,",0.01,ml,,av,5.0,"43km ENE of Adak, Alaska",0.11,0,",av,",reviewed,1537926234040,"M 0.0 - 43km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538073360090,https://earthquake.usgs.gov/earthquakes/eventpage/av61786581 +,,70804804,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804804&format=geojson,0.02347,,116.0,",av70804804,",-0.24,ml,,av,5.0,"42km ENE of Adak, Alaska",0.06,0,",av,",reviewed,1537926176330,"M -0.2 - 42km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538072969640,https://earthquake.usgs.gov/earthquakes/eventpage/av70804804 +,,20263603,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263603&format=geojson,,,,",ak20263603,",1.6,ml,,ak,,"43km E of Amatignak Island, Alaska",0.43,39,",ak,",reviewed,1537926145590,"M 1.6 - 43km E of Amatignak Island, Alaska",0,earthquake,",geoserve,origin,phase-data,",-720.0,1538621279224,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263603 +,,61786571,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61786571&format=geojson,0.02673,,120.0,",av61786571,",-0.36,ml,,av,5.0,"43km ENE of Adak, Alaska",0.08,0,",av,",reviewed,1537925843510,"M -0.4 - 43km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538073101850,https://earthquake.usgs.gov/earthquakes/eventpage/av61786571 +,,00658183,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658183&format=geojson,0.021,,263.49,",nn00658183,",0.1,ml,,nn,5.0,"34km SSE of Hawthorne, Nevada",0.0381,0,",nn,",reviewed,1537925734926,"M 0.1 - 34km SSE of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538013913260,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658183 +,,2018269001,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018269001&format=geojson,0.5384,,226.0,",pr2018269001,us2000hk3b,",2.65,md,,pr,13.0,"67km ENE of Punta Cana, Dominican Republic",0.44,108,",pr,us,",reviewed,1537925254010,"M 2.7 - 67km ENE of Punta Cana, Dominican Republic",0,earthquake,",geoserve,origin,phase-data,",-300.0,1538970866040,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018269001 +,,20263600,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263600&format=geojson,,,,",ak20263600,",1.0,ml,,ak,,"63km WSW of Delta Junction, Alaska",0.55,15,",ak,",reviewed,1537925247113,"M 1.0 - 63km WSW of Delta Junction, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621278558,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263600 +,,37369242,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37369242&format=geojson,0.07096,,51.0,",ci37369242,",0.69,ml,,ci,26.0,"8km SSW of Beaumont, CA",0.11,7,",ci,",reviewed,1537925100660,"M 0.7 - 8km SSW of Beaumont, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537983510019,https://earthquake.usgs.gov/earthquakes/eventpage/ci37369242 +,,37369234,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37369234&format=geojson,0.05787,,29.0,",ci37369234,",0.9,ml,,ci,46.0,"7km WSW of Beaumont, CA",0.17,12,",ci,",reviewed,1537924990780,"M 0.9 - 7km WSW of Beaumont, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537982987201,https://earthquake.usgs.gov/earthquakes/eventpage/ci37369234 +,,20263598,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263598&format=geojson,,,,",av70804544,ak20263598,",1.2,ml,,ak,,"72km ENE of Cold Bay, Alaska",0.2,22,",av,ak,",reviewed,1537924984242,"M 1.2 - 72km ENE of Cold Bay, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621278073,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263598 +,,37410869,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37410869&format=geojson,0.004928,,71.0,",ci37410869,",0.23,ml,,ci,19.0,"10km NE of Aguanga, CA",0.1,1,",ci,",reviewed,1537924815330,"M 0.2 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537982909793,https://earthquake.usgs.gov/earthquakes/eventpage/ci37410869 +,,37369226,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37369226&format=geojson,0.01926,,55.0,",ci37369226,",0.23,ml,,ci,21.0,"10km NE of Aguanga, CA",0.11,1,",ci,",reviewed,1537924773030,"M 0.2 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537981523628,https://earthquake.usgs.gov/earthquakes/eventpage/ci37369226 +,,80311219,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80311219&format=geojson,0.113,,106.0,",mb80311219,",1.73,ml,,mb,11.0,"14km SE of Lincoln, Montana",0.11,46,",mb,",reviewed,1537924708890,"M 1.7 - 14km SE of Lincoln, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537972344390,https://earthquake.usgs.gov/earthquakes/eventpage/mb80311219 +,,2018269000,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018269000&format=geojson,0.8647,,343.0,",pr2018269000,us2000hk39,",3.4,md,,pr,5.0,"75km NNE of Otra Banda, Dominican Republic",0.38,178,",pr,us,",reviewed,1537924515290,"M 3.4 - 75km NNE of Otra Banda, Dominican Republic",0,earthquake,",geoserve,origin,phase-data,",-300.0,1538970595040,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018269000 +,,2000hk1y,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hk1y&format=geojson,1.79,,111.0,",us2000hk1y,",4.6,mb,,us,,"56km ENE of Barcelona, Philippines",1.24,326,",us,",reviewed,1537924088690,"M 4.6 - 56km ENE of Barcelona, Philippines",0,earthquake,",geoserve,origin,phase-data,",480.0,1538968626040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hk1y +,,2000hk1s,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hk1s&format=geojson,1.692,,72.0,",us2000hk1s,",4.2,mb,,us,,"28km ENE of Pucallpa, Peru",0.97,271,",us,",reviewed,1537923850060,"M 4.2 - 28km ENE of Pucallpa, Peru",0,earthquake,",geoserve,origin,phase-data,",-300.0,1538968139040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hk1s +,,20263465,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263465&format=geojson,,,,",ak20263465,",2.3,ml,,ak,,"75km SSW of Kaktovik, Alaska",0.56,81,",ak,",reviewed,1537923311971,"M 2.3 - 75km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621277479,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263465 +,,70613122,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70613122&format=geojson,0.2183,,312.0,",hv70613122,us2000hk2h,",2.45,ml,,hv,26.0,"28km NNE of Hawaiian Paradise Park, Hawaii",0.11,92,",hv,us,",reviewed,1537923127230,"M 2.5 - 28km NNE of Hawaiian Paradise Park, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538967762040,https://earthquake.usgs.gov/earthquakes/eventpage/hv70613122 +,,20263460,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263460&format=geojson,,,,",ak20263460,",1.8,ml,,ak,,"32km SSW of Tanaga Volcano, Alaska",0.64,50,",ak,",reviewed,1537923106563,"M 1.8 - 32km SSW of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538621276954,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263460 +,,2000hk1k,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hk1k&format=geojson,6.144,,61.0,",us2000hk1k,",4.9,mb,,us,,"47km ESE of Port-Olry, Vanuatu",1.09,369,",us,",reviewed,1537923070090,"M 4.9 - 47km ESE of Port-Olry, Vanuatu",0,earthquake,",geoserve,origin,phase-data,",660.0,1538967174040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hk1k +,,61786511,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61786511&format=geojson,0.02941,,118.0,",av61786511,",0.33,ml,,av,5.0,"43km ENE of Adak, Alaska",0.12,2,",av,",reviewed,1537922267850,"M 0.3 - 43km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538071382940,https://earthquake.usgs.gov/earthquakes/eventpage/av61786511 +green,,2000hk13,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hk13&format=geojson,3.689,,32.0,",us2000hk13,",5.8,mwb,2.06,us,,"297km NNE of Ndoi Island, Fiji",0.95,518,",us,",reviewed,1537922253170,"M 5.8 - 297km NNE of Ndoi Island, Fiji",0,earthquake,",geoserve,losspager,moment-tensor,origin,phase-data,shakemap,",-720.0,1538966638124,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hk13 +,,20263451,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263451&format=geojson,,,,",ak20263451,",1.1,ml,,ak,,"98km WSW of Willow, Alaska",0.53,19,",ak,",reviewed,1537921921495,"M 1.1 - 98km WSW of Willow, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621276446,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263451 +,,70613082,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70613082&format=geojson,0.002459,,60.0,",hv70613082,",2.19,ml,,hv,27.0,"6km SW of Volcano, Hawaii",0.13,74,",hv,",reviewed,1537921817020,"M 2.2 - 6km SW of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537924611700,https://earthquake.usgs.gov/earthquakes/eventpage/hv70613082 +,,2000hk0z,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hk0z&format=geojson,3.029,,87.0,",us2000hk0z,",4.1,mb,,us,,"Kepulauan Barat Daya, Indonesia",1.21,259,",us,",reviewed,1537921805140,"M 4.1 - Kepulauan Barat Daya, Indonesia",0,earthquake,",geoserve,origin,phase-data,",540.0,1538965599040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hk0z +,,73089706,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73089706&format=geojson,0.009054,,42.0,",nc73089706,",1.11,md,,nc,40.0,"6km NW of The Geysers, CA",0.04,19,",nc,",reviewed,1537921786300,"M 1.1 - 6km NW of The Geysers, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537935122377,https://earthquake.usgs.gov/earthquakes/eventpage/nc73089706 +,,37369210,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37369210&format=geojson,0.01077,,73.0,",ci37369210,",0.25,ml,,ci,23.0,"10km NE of Aguanga, CA",0.16,1,",ci,",reviewed,1537921752110,"M 0.3 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537982409833,https://earthquake.usgs.gov/earthquakes/eventpage/ci37369210 +,,73089711,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73089711&format=geojson,0.1093,,113.0,",nc73089711,",1.44,md,,nc,30.0,"17km SSW of Mammoth Lakes, CA",0.06,32,",nc,",reviewed,1537921750220,"M 1.4 - 17km SSW of Mammoth Lakes, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537936744525,https://earthquake.usgs.gov/earthquakes/eventpage/nc73089711 +,,61786501,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61786501&format=geojson,0.02771,,114.0,",av61786501,",-0.05,ml,,av,5.0,"53km SSW of Redoubt Volcano, Alaska",0.09,0,",av,",reviewed,1537921557080,"M -0.1 - 53km SSW of Redoubt Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538087795610,https://earthquake.usgs.gov/earthquakes/eventpage/av61786501 +,,00658271,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658271&format=geojson,0.374,,301.19,",nn00658271,",0.2,ml,,nn,7.0,"73km SSE of Warm Springs, Nevada",0.2068,1,",nn,",reviewed,1537921369200,"M 0.2 - 73km SSE of Warm Springs, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538013981422,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658271 +,,20270461,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20270461&format=geojson,,,,",ak20270461,",0.9,ml,,ak,,"4km SSW of Houston, Alaska",0.6,12,",ak,",reviewed,1537921182898,"M 0.9 - 4km SSW of Houston, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621275920,https://earthquake.usgs.gov/earthquakes/eventpage/ak20270461 +,,37369202,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37369202&format=geojson,0.05496,,46.0,",ci37369202,",0.59,ml,,ci,32.0,"11km SSW of Idyllwild, CA",0.11,5,",ci,",reviewed,1537920909480,"M 0.6 - 11km SSW of Idyllwild, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537981305720,https://earthquake.usgs.gov/earthquakes/eventpage/ci37369202 +,,37369194,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37369194&format=geojson,0.003984,,36.0,",ci37369194,",0.88,ml,,ci,35.0,"10km NE of Aguanga, CA",0.13,12,",ci,",reviewed,1537920662270,"M 0.9 - 10km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537968672480,https://earthquake.usgs.gov/earthquakes/eventpage/ci37369194 +,,20263440,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263440&format=geojson,,,,",ak20263440,",1.9,ml,,ak,,"67km ENE of Sutton-Alpine, Alaska",0.88,56,",ak,",reviewed,1537920463203,"M 1.9 - 67km ENE of Sutton-Alpine, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621275186,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263440 +,,20263441,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263441&format=geojson,,,,",ak20263441,",1.2,ml,,ak,,"126km NNW of Arctic Village, Alaska",0.66,22,",ak,",reviewed,1537920417926,"M 1.2 - 126km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538621274641,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263441 +,,2000hk71,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hk71&format=geojson,,,,",ak20263437,us2000hk71,",2.8,ml,,us,,"60km NNW of Atka, Alaska",0.68,121,",ak,us,",reviewed,1537920366510,"M 2.8 - 60km NNW of Atka, Alaska",0,earthquake,",geoserve,origin,phase-data,",-720.0,1538965415040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hk71 +,,20263438,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263438&format=geojson,,,,",ak20263438,",2.4,ml,,ak,,"49km NE of Adak, Alaska",0.38,89,",ak,",reviewed,1537920084141,"M 2.4 - 49km NE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538621273488,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263438 +,,2000hk0s,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hk0s&format=geojson,1.808,,119.0,",us2000hk0s,",4.4,mb,,us,,"102km E of Taron, Papua New Guinea",0.58,298,",us,",reviewed,1537920029450,"M 4.4 - 102km E of Taron, Papua New Guinea",0,earthquake,",geoserve,origin,phase-data,",600.0,1538964124040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hk0s +,,20263428,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263428&format=geojson,,,,",ak20263428,",2.1,ml,,ak,,"121km NNW of Talkeetna, Alaska",0.75,68,",ak,",reviewed,1537919931927,"M 2.1 - 121km NNW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675676746,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263428 +,,37369186,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37369186&format=geojson,0.004366,,26.0,",ci37369186,",1.42,ml,,ci,57.0,"9km NE of Aguanga, CA",0.2,31,",ci,",reviewed,1537919730290,"M 1.4 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537968736760,https://earthquake.usgs.gov/earthquakes/eventpage/ci37369186 +,,20263425,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263425&format=geojson,,,,",ak20263425,",1.6,ml,,ak,,"41km SW of Redoubt Volcano, Alaska",0.5,39,",ak,",reviewed,1537919272997,"M 1.6 - 41km SW of Redoubt Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675676196,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263425 +,,73089691,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73089691&format=geojson,0.1991,,72.0,",nn00658141,nc73089691,",2.21,md,,nc,18.0,"26km W of Sunnyside-Tahoe City, CA",0.18,75,",nn,nc,",reviewed,1537919155830,"M 2.2 - 26km W of Sunnyside-Tahoe City, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537996916817,https://earthquake.usgs.gov/earthquakes/eventpage/nc73089691 +,,37369170,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37369170&format=geojson,0.007247,,36.0,",ci37369170,",0.41,ml,,ci,29.0,"10km NE of Aguanga, CA",0.11,3,",ci,",reviewed,1537918720780,"M 0.4 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537980817893,https://earthquake.usgs.gov/earthquakes/eventpage/ci37369170 +,,20263422,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263422&format=geojson,,,,",ak20263422,",1.5,ml,,ak,,"53km NNE of Redoubt Volcano, Alaska",0.51,35,",ak,",reviewed,1537918660165,"M 1.5 - 53km NNE of Redoubt Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675675640,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263422 +,,37369162,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37369162&format=geojson,0.1611,,106.0,",ci37369162,",0.83,ml,,ci,36.0,"16km SSW of Oasis, CA",0.19,11,",ci,",reviewed,1537918467930,"M 0.8 - 16km SSW of Oasis, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537980400747,https://earthquake.usgs.gov/earthquakes/eventpage/ci37369162 +,,73089686,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73089686&format=geojson,0.01116,,107.0,",nc73089686,",0.72,md,,nc,9.0,"5km W of Cobb, CA",0.03,8,",nc,",automatic,1537918449460,"M 0.7 - 5km W of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537920903795,https://earthquake.usgs.gov/earthquakes/eventpage/nc73089686 +,,20263418,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263418&format=geojson,,,,",ak20263418,",1.1,ml,,ak,,"116km WNW of Arctic Village, Alaska",0.91,19,",ak,",reviewed,1537918259395,"M 1.1 - 116km WNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675675142,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263418 +,,1000h54t,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h54t&format=geojson,0.313,,166.0,",ak20263412,us1000h54t,",3.6,mb,,us,,"36km SSE of False Pass, Alaska",0.61,199,",ak,us,",reviewed,1537918021410,"M 3.6 - 36km SSE of False Pass, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538963593040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h54t +,,20271154,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271154&format=geojson,,,,",ak20271154,",1.3,ml,,ak,,"88km SW of Homer, Alaska",0.25,26,",ak,",reviewed,1537917562965,"M 1.3 - 88km SW of Homer, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538675674073,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271154 +,,20271153,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271153&format=geojson,,,,",ak20271153,",1.8,ml,,ak,,"75km SW of Kaktovik, Alaska",0.7,50,",ak,",reviewed,1537917504168,"M 1.8 - 75km SW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675673585,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271153 +,,20263406,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263406&format=geojson,,,,",ak20263406,",1.3,ml,,ak,,"57km NW of Nikiski, Alaska",0.45,26,",ak,",reviewed,1537917469145,"M 1.3 - 57km NW of Nikiski, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675673047,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263406 +,,37369146,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37369146&format=geojson,0.1007,,63.0,",ci37369146,",1.16,ml,,ci,20.0,"4km N of Boron, CA",0.25,21,",ci,",reviewed,1537917420790,"M 1.2 Quarry Blast - 4km N of Boron, CA",0,quarry blast,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537983431872,https://earthquake.usgs.gov/earthquakes/eventpage/ci37369146 +,,20263401,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263401&format=geojson,,,,",ak20263401,",0.8,ml,,ak,,"22km NE of Fairbanks, Alaska",0.22,10,",ak,",reviewed,1537917314503,"M 0.8 Explosion - 22km NE of Fairbanks, Alaska",0,explosion,",geoserve,origin,phase-data,",-540.0,1538675672575,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263401 +,,2018268005,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018268005&format=geojson,0.6551,,310.0,",pr2018268005,us2000hk38,",3.38,md,,pr,4.0,"89km N of Punta Cana, Dominican Republic",0.16,176,",pr,us,",reviewed,1537917290770,"M 3.4 - 89km N of Punta Cana, Dominican Republic",0,earthquake,",geoserve,origin,phase-data,",-300.0,1538952301040,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018268005 +,,20263397,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263397&format=geojson,,,,",ak20263397,",1.8,ml,,ak,,"74km SSW of Kaktovik, Alaska",0.42,50,",ak,",reviewed,1537917264793,"M 1.8 - 74km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675672070,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263397 +,,20263394,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263394&format=geojson,,,,",ak20263394,",1.2,ml,,ak,,"65km WNW of Talkeetna, Alaska",0.35,22,",ak,",reviewed,1537917167667,"M 1.2 - 65km WNW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675671560,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263394 +,,20263391,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263391&format=geojson,,,,",ak20263391,",0.8,ml,,ak,,"11km SSE of Salcha, Alaska",0.46,10,",ak,",reviewed,1537917056571,"M 0.8 - 11km SSE of Salcha, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675671061,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263391 +,,37369138,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37369138&format=geojson,0.1449,,39.0,",ci37369138,",1.11,ml,,ci,33.0,"16km E of Julian, CA",0.17,19,",ci,",reviewed,1537916750640,"M 1.1 - 16km E of Julian, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537919385710,https://earthquake.usgs.gov/earthquakes/eventpage/ci37369138 +,,2000hjzn,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hjzn&format=geojson,0.377,,59.0,",us2000hjzn,",4.3,mb,,us,,"132km E of Taltal, Chile",0.97,284,",us,",reviewed,1537916694380,"M 4.3 - 132km E of Taltal, Chile",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538951917040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hjzn +,,20271147,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271147&format=geojson,,,,",ak20271147,",1.4,ml,,ak,,"32km ESE of Unalaska, Alaska",0.24,30,",ak,",reviewed,1537916415857,"M 1.4 - 32km ESE of Unalaska, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538675670575,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271147 +,2.0,2000hjzl,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hjzl&format=geojson,3.838,2.0,101.0,",us2000hjzl,",5.2,mww,,us,,"29km ESE of Minas de Marcona, Peru",0.81,416,",us,",reviewed,1537916207550,"M 5.2 - 29km ESE of Minas de Marcona, Peru",0,earthquake,",dyfi,geoserve,origin,phase-data,",-300.0,1539394282282,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hjzl +,,20263383,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263383&format=geojson,,,,",ak20263383,",0.9,ml,,ak,,"121km NNW of Kodiak Station, Alaska",0.68,12,",ak,",reviewed,1537915926584,"M 0.9 - 121km NNW of Kodiak Station, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675670094,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263383 +,,1000h76i,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h76i&format=geojson,2.457,,245.0,",ak20271145,us1000h76i,",2.8,ml,,us,,"265km SE of Kodiak, Alaska",0.54,121,",ak,us,",reviewed,1537915607590,"M 2.8 - 265km SE of Kodiak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539233340040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h76i +,,37369106,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37369106&format=geojson,0.1335,,80.0,",ci37369106,",1.58,ml,,ci,40.0,"26km ENE of Pine Valley, CA",0.17,38,",ci,",reviewed,1537915487090,"M 1.6 - 26km ENE of Pine Valley, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537922660610,https://earthquake.usgs.gov/earthquakes/eventpage/ci37369106 +,,73089681,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73089681&format=geojson,0.06499,,80.0,",nc73089681,",2.15,md,,nc,22.0,"27km W of Hayfork, CA",0.16,71,",nc,",reviewed,1537915411910,"M 2.2 - 27km W of Hayfork, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537933623249,https://earthquake.usgs.gov/earthquakes/eventpage/nc73089681 +,,37369090,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37369090&format=geojson,0.06668,,68.0,",ci37369090,",0.36,ml,,ci,11.0,"11km NE of Aguanga, CA",0.11,2,",ci,",reviewed,1537915396480,"M 0.4 - 11km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537968658689,https://earthquake.usgs.gov/earthquakes/eventpage/ci37369090 +,,20263378,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263378&format=geojson,,,,",ak20263378,",1.5,ml,,ak,,"123km NW of Arctic Village, Alaska",0.64,35,",ak,",reviewed,1537915124120,"M 1.5 - 123km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675669096,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263378 +,,37369074,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37369074&format=geojson,0.005502,,41.0,",ci37369074,",0.8,ml,,ci,28.0,"10km NE of Aguanga, CA",0.18,10,",ci,",reviewed,1537914951460,"M 0.8 - 10km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537919389600,https://earthquake.usgs.gov/earthquakes/eventpage/ci37369074 +,,20263382,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263382&format=geojson,,,,",ak20263382,",1.4,ml,,ak,,"78km S of Dease Lake, Canada",0.73,30,",ak,",reviewed,1537914941837,"M 1.4 Other Event - 78km S of Dease Lake, Canada",0,other event,",geoserve,origin,phase-data,",-480.0,1538675668647,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263382 +,,20263372,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263372&format=geojson,,,,",ak20263372,us2000hjz9,",3.4,ml,3.3,ak,,"78km SSW of Kaktovik, Alaska",0.84,178,",ak,us,",reviewed,1537914751281,"M 3.4 - 78km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,shakemap,",-540.0,1539232993040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263372 +,,73089676,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73089676&format=geojson,0.008939,,154.0,",nc73089676,",0.4,md,,nc,9.0,"6km E of Mammoth Lakes, CA",0.02,2,",nc,",reviewed,1537914736110,"M 0.4 - 6km E of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537921623858,https://earthquake.usgs.gov/earthquakes/eventpage/nc73089676 +,,1000h76g,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h76g&format=geojson,0.697,,203.0,",ak20263370,us1000h76g,",2.8,ml,,us,,"53km SSE of Yunaska Island, Alaska",1.35,121,",ak,us,",reviewed,1537914591100,"M 2.8 - 53km SSE of Yunaska Island, Alaska",0,earthquake,",geoserve,origin,phase-data,",-660.0,1539232703040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h76g +,,20263368,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263368&format=geojson,,,,",ak20263368,",1.3,ml,,ak,,"31km E of Redoubt Volcano, Alaska",0.24,26,",ak,",reviewed,1537914343981,"M 1.3 - 31km E of Redoubt Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675666946,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263368 +,,00658121,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658121&format=geojson,0.092,,130.77,",nn00658121,",-0.2,ml,,nn,10.0,"29km NNE of Beatty, Nevada",0.1375,0,",nn,",reviewed,1537914106982,"M -0.2 - 29km NNE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537927556677,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658121 +,,20263366,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263366&format=geojson,,,,",ak20263366,",1.9,ml,,ak,,"35km SSW of Tanaga Volcano, Alaska",0.51,56,",ak,",reviewed,1537913862405,"M 1.9 - 35km SSW of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538675666428,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263366 +,,73089671,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73089671&format=geojson,0.01645,,113.0,",nc73089671,",0.55,md,,nc,8.0,"5km WNW of The Geysers, CA",0.05,5,",nc,",automatic,1537913754790,"M 0.6 - 5km WNW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537916223326,https://earthquake.usgs.gov/earthquakes/eventpage/nc73089671 +,,37369002,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37369002&format=geojson,0.08045,,93.0,",ci37369002,",1.43,ml,,ci,50.0,"9km N of Borrego Springs, CA",0.23,31,",ci,",reviewed,1537913548640,"M 1.4 - 9km N of Borrego Springs, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537919453240,https://earthquake.usgs.gov/earthquakes/eventpage/ci37369002 +,,73089661,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73089661&format=geojson,0.01572,,219.0,",nc73089661,",0.58,md,,nc,9.0,"9km NW of Cobb, CA",0.03,5,",nc,",automatic,1537913270240,"M 0.6 - 9km NW of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537919702677,https://earthquake.usgs.gov/earthquakes/eventpage/nc73089661 +,,37368994,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37368994&format=geojson,0.07167,,47.0,",ci37368994,",0.54,ml,,ci,19.0,"10km NE of Aguanga, CA",0.12,4,",ci,",reviewed,1537913074180,"M 0.5 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537919378179,https://earthquake.usgs.gov/earthquakes/eventpage/ci37368994 +,,20271138,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271138&format=geojson,,,,",ak20271138,",1.5,ml,,ak,,"79km SW of Anchor Point, Alaska",0.33,35,",ak,",reviewed,1537912638204,"M 1.5 - 79km SW of Anchor Point, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538675665888,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271138 +,,20271137,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271137&format=geojson,,,,",ak20271137,",1.1,ml,,ak,,"124km NW of Arctic Village, Alaska",0.41,19,",ak,",reviewed,1537912635265,"M 1.1 - 124km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675665411,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271137 +,,1000h54w,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h54w&format=geojson,2.388,,93.0,",us1000h54w,",4.1,mb,,us,,"264km NW of Saumlaki, Indonesia",0.82,259,",us,",reviewed,1537912531340,"M 4.1 - 264km NW of Saumlaki, Indonesia",0,earthquake,",geoserve,origin,phase-data,",540.0,1539231792040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h54w +,,73089651,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73089651&format=geojson,0.01195,,110.0,",nc73089651,",-0.1,md,,nc,9.0,"8km E of Mammoth Lakes, CA",0.07,0,",nc,",reviewed,1537912219260,"M -0.1 - 8km E of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537913648193,https://earthquake.usgs.gov/earthquakes/eventpage/nc73089651 +,,20263358,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263358&format=geojson,,,,",ak20263358,",1.7,ml,,ak,,"59km WSW of Anchor Point, Alaska",0.26,44,",ak,",reviewed,1537912151319,"M 1.7 - 59km WSW of Anchor Point, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675664820,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263358 +,,61786376,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61786376&format=geojson,0.01989,,178.0,",av61786376,",-0.06,ml,,av,5.0,"48km WSW of Tanaga Volcano, Alaska",0.12,0,",av,",reviewed,1537912057990,"M -0.1 - 48km WSW of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538006076410,https://earthquake.usgs.gov/earthquakes/eventpage/av61786376 +,,20271135,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271135&format=geojson,,,,",ak20271135,",1.3,ml,,ak,,"100km W of Larsen Bay, Alaska",0.22,26,",ak,",reviewed,1537911999057,"M 1.3 - 100km W of Larsen Bay, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675623019,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271135 +,,37368978,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37368978&format=geojson,0.06607,,72.0,",ci37368978,",0.65,ml,,ci,16.0,"7km WNW of Lake Henshaw, CA",0.12,6,",ci,",reviewed,1537911803900,"M 0.7 - 7km WNW of Lake Henshaw, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537921871013,https://earthquake.usgs.gov/earthquakes/eventpage/ci37368978 +,,20263354,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263354&format=geojson,,,,",ak20263354,us2000hjyn,",2.3,ml,,ak,,"92km NW of Arctic Village, Alaska",0.95,81,",ak,us,",reviewed,1537911476960,"M 2.3 - 92km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539231124040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263354 +,,70612802,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70612802&format=geojson,0.03901,,77.0,",hv70612802,",1.41,md,,hv,28.0,"21km E of Honaunau-Napoopoo, Hawaii",0.18,31,",hv,",reviewed,1537911427900,"M 1.4 - 21km E of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538389226320,https://earthquake.usgs.gov/earthquakes/eventpage/hv70612802 +,,37368962,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37368962&format=geojson,0.1186,,161.0,",ci37368962,",1.98,ml,,ci,22.0,"12km ESE of Puebla, B.C., MX",0.18,60,",ci,",reviewed,1537911111540,"M 2.0 - 12km ESE of Puebla, B.C., MX",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537979827428,https://earthquake.usgs.gov/earthquakes/eventpage/ci37368962 +,,20263345,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263345&format=geojson,,,,",ak20263345,",2.2,ml,,ak,,"95km NE of Sutton-Alpine, Alaska",0.48,74,",ak,",reviewed,1537911088867,"M 2.2 - 95km NE of Sutton-Alpine, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675621914,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263345 +,,20263342,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263342&format=geojson,,,,",ak20263342,",2.2,ml,,ak,,"77km SSW of Kaktovik, Alaska",0.6,74,",ak,",reviewed,1537910970095,"M 2.2 - 77km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675621365,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263342 +,,70612792,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70612792&format=geojson,0.01443,,73.0,",hv70612792,",2.19,ml,,hv,35.0,"26km E of Honaunau-Napoopoo, Hawaii",0.12,74,",hv,",reviewed,1537910921720,"M 2.2 - 26km E of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537924550150,https://earthquake.usgs.gov/earthquakes/eventpage/hv70612792 +,,20263340,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263340&format=geojson,,,,",ak20263340,",1.7,ml,,ak,,"107km SW of Homer, Alaska",0.44,44,",ak,",reviewed,1537910807964,"M 1.7 - 107km SW of Homer, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538675620823,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263340 +,,20263339,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263339&format=geojson,,,,",ak20263339,",1.4,ml,,ak,,"105km NW of Arctic Village, Alaska",0.52,30,",ak,",reviewed,1537910628253,"M 1.4 - 105km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675620297,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263339 +,,20263338,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263338&format=geojson,,,,",ak20263338,",1.1,ml,,ak,,"24km SSW of Tanaga Volcano, Alaska",0.36,19,",ak,",reviewed,1537910396451,"M 1.1 - 24km SSW of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538675619820,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263338 +,,00658155,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658155&format=geojson,0.078,,147.02,",nn00658155,",0.0,ml,,nn,5.0,"20km E of Hawthorne, Nevada",0.1544,0,",nn,",reviewed,1537910359182,"M 0.0 - 20km E of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537927564473,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658155 +,,2000hjy5,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hjy5&format=geojson,0.5,,163.0,",us2000hjy5,",4.8,mb,,us,,"89km WNW of Kuripan, Indonesia",0.64,354,",us,",reviewed,1537910211560,"M 4.8 - 89km WNW of Kuripan, Indonesia",0,earthquake,",geoserve,origin,phase-data,",420.0,1539230832040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hjy5 +,,37368946,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37368946&format=geojson,0.05621,,107.0,",nn00658112,ci37368946,",2.07,ml,,ci,11.0,"14km SW of Primm, NV",0.24,66,",nn,ci,",reviewed,1537910138720,"M 2.1 Quarry Blast - 14km SW of Primm, NV",0,quarry blast,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537995189559,https://earthquake.usgs.gov/earthquakes/eventpage/ci37368946 +,,37368938,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37368938&format=geojson,0.09874,,200.0,",ci37368938,",1.66,ml,,ci,7.0,"47km NE of Holtville, CA",0.22,42,",ci,",reviewed,1537909866550,"M 1.7 Quarry Blast - 47km NE of Holtville, CA",0,quarry blast,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537981706773,https://earthquake.usgs.gov/earthquakes/eventpage/ci37368938 +,,20271128,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271128&format=geojson,,,,",ak20271128,",1.6,ml,,ak,,"75km ESE of Amatignak Island, Alaska",0.38,39,",ak,",reviewed,1537909838784,"M 1.6 - 75km ESE of Amatignak Island, Alaska",0,earthquake,",geoserve,origin,phase-data,",-720.0,1538675619317,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271128 +,,61422867,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61422867&format=geojson,1.147,,270.0,",uw61422867,",2.1,ml,,uw,6.0,"1km NNE of Princeton, Canada",0.58,68,",uw,",reviewed,1537909826200,"M 2.1 Explosion - 1km NNE of Princeton, Canada",0,explosion,",geoserve,origin,phase-data,",-480.0,1537922273920,https://earthquake.usgs.gov/earthquakes/eventpage/uw61422867 +,,61786321,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61786321&format=geojson,0.02002,,139.0,",av61786321,",-0.34,ml,,av,5.0,"48km WSW of Tanaga Volcano, Alaska",0.04,0,",av,",reviewed,1537909646010,"M -0.3 - 48km WSW of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538007178500,https://earthquake.usgs.gov/earthquakes/eventpage/av61786321 +,,00658110,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658110&format=geojson,0.111,,228.21,",nn00658110,",1.2,ml,,nn,6.0,"76km E of Gabbs, Nevada",0.694,22,",nn,",reviewed,1537909551828,"M 1.2 Explosion - 76km E of Gabbs, Nevada",0,explosion,",geoserve,origin,phase-data,",-480.0,1537912347576,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658110 +,,2018268004,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018268004&format=geojson,0.1275,,304.0,",pr2018268004,",1.4,md,,pr,4.0,"8km S of Pole Ojea, Puerto Rico",0.26,30,",pr,",reviewed,1537909325530,"M 1.4 - 8km S of Pole Ojea, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1537919370872,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018268004 +,,61786311,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61786311&format=geojson,0.03096,,294.0,",av61786311,",-0.26,ml,,av,5.0,"52km W of Tanaga Volcano, Alaska",0.12,0,",av,",reviewed,1537909182640,"M -0.3 - 52km W of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538005789340,https://earthquake.usgs.gov/earthquakes/eventpage/av61786311 +,,00658154,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658154&format=geojson,0.354,,166.63,",nn00658154,",0.6,ml,,nn,5.0,"27km WSW of Hawthorne, Nevada",0.1275,6,",nn,",reviewed,1537908041265,"M 0.6 - 27km WSW of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537927563092,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658154 +,0.0,37368922,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37368922&format=geojson,0.1858,0.0,90.0,",ci37368922,",2.19,ml,,ci,38.0,"24km ESE of Campo, CA",0.19,74,",ci,",reviewed,1537907923500,"M 2.2 - 24km ESE of Campo, CA",0,earthquake,",dyfi,focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537979539500,https://earthquake.usgs.gov/earthquakes/eventpage/ci37368922 +,,20263318,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263318&format=geojson,,,,",ak20263318,us2000hjx7,",3.6,ml,3.68,ak,,"77km SSW of Kaktovik, Alaska",0.81,199,",ak,us,",reviewed,1537907846985,"M 3.6 - 77km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,shakemap,",-540.0,1538676072929,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263318 +,,20263314,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263314&format=geojson,,,,",ak20263314,",0.9,ml,,ak,,"21km S of Ester, Alaska",0.46,12,",ak,",reviewed,1537907804578,"M 0.9 - 21km S of Ester, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675618025,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263314 +,,20263313,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263313&format=geojson,,,,",ak20263313,",1.3,ml,,ak,,"75km SSW of Kaktovik, Alaska",0.59,26,",ak,",reviewed,1537907667577,"M 1.3 - 75km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675617543,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263313 +,,37368914,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37368914&format=geojson,0.007672,,81.0,",ci37368914,",0.3,ml,,ci,17.0,"10km NE of Aguanga, CA",0.08,1,",ci,",reviewed,1537907596720,"M 0.3 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537981105698,https://earthquake.usgs.gov/earthquakes/eventpage/ci37368914 +,,37368906,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37368906&format=geojson,0.004238,,78.0,",ci37368906,",0.46,ml,,ci,25.0,"10km NE of Aguanga, CA",0.11,3,",ci,",reviewed,1537907500160,"M 0.5 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537978835604,https://earthquake.usgs.gov/earthquakes/eventpage/ci37368906 +,,00658153,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658153&format=geojson,0.344,,184.89,",nn00658153,",0.4,ml,,nn,4.0,"28km ENE of Bridgeport, California",0.0728,2,",nn,",reviewed,1537907276569,"M 0.4 - 28km ENE of Bridgeport, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537927561449,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658153 +,,20271124,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271124&format=geojson,,,,",ak20271124,",1.5,ml,,ak,,"86km SE of Adak, Alaska",0.15,35,",ak,",reviewed,1537907057275,"M 1.5 - 86km SE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-720.0,1538675617032,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271124 +,,20271123,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271123&format=geojson,,,,",ak20271123,",1.3,ml,,ak,,"85km SSE of Adak, Alaska",0.17,26,",ak,",reviewed,1537906998191,"M 1.3 - 85km SSE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-720.0,1538675616570,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271123 +,,20263312,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263312&format=geojson,,,,",ak20263312,",1.1,ml,,ak,,"77km SSW of Kaktovik, Alaska",0.75,19,",ak,",reviewed,1537906943565,"M 1.1 - 77km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675616095,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263312 +,,20263306,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263306&format=geojson,,,,",ak20263306,",1.4,ml,,ak,,"26km SSE of Adak, Alaska",0.53,30,",ak,",reviewed,1537906739898,"M 1.4 - 26km SSE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538675615630,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263306 +,,73089631,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73089631&format=geojson,0.01657,,102.0,",nc73089631,",,,,nc,8.0,"13km NW of Parkfield, CA",0.03,0,",nc,",reviewed,1537906325240,"M ? - 13km NW of Parkfield, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537915903921,https://earthquake.usgs.gov/earthquakes/eventpage/nc73089631 +,,37368882,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37368882&format=geojson,0.004296,,42.0,",ci37368882,",0.49,ml,,ci,28.0,"10km NE of Aguanga, CA",0.18,4,",ci,",reviewed,1537906142220,"M 0.5 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537978560726,https://earthquake.usgs.gov/earthquakes/eventpage/ci37368882 +,,2000hjxi,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hjxi&format=geojson,1.557,,72.0,",us2000hjxi,",4.4,mb,,us,,"143km W of Merizo Village, Guam",0.55,298,",us,",reviewed,1537906089230,"M 4.4 - 143km W of Merizo Village, Guam",0,earthquake,",geoserve,origin,phase-data,",600.0,1538070779040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hjxi +,,20263304,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263304&format=geojson,,,,",ak20263304,",1.1,ml,,ak,,"37km ENE of Cape Yakataga, Alaska",0.37,19,",ak,",reviewed,1537905719702,"M 1.1 - 37km ENE of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675615025,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263304 +,,20263303,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263303&format=geojson,,,,",ak20263303,",1.5,ml,,ak,,"56km S of Tanaga Volcano, Alaska",0.32,35,",ak,",reviewed,1537905625599,"M 1.5 - 56km S of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538675614555,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263303 +,,20271118,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271118&format=geojson,,,,",ak20271118,",2.4,ml,,ak,,"236km SE of Kodiak, Alaska",0.64,89,",ak,",reviewed,1537905618543,"M 2.4 - 236km SE of Kodiak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538675614075,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271118 +,,37368874,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37368874&format=geojson,0.02359,,109.0,",ci37368874,",0.87,ml,,ci,31.0,"7km NE of San Diego, CA",0.26,12,",ci,",reviewed,1537905618060,"M 0.9 Quarry Blast - 7km NE of San Diego, CA",0,quarry blast,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537978106207,https://earthquake.usgs.gov/earthquakes/eventpage/ci37368874 +,,70612632,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70612632&format=geojson,0.01527,,129.0,",hv70612632,",1.85,ml,,hv,49.0,"10km ENE of Pahala, Hawaii",0.14,53,",hv,",automatic,1537905272320,"M 1.9 - 10km ENE of Pahala, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537905617030,https://earthquake.usgs.gov/earthquakes/eventpage/hv70612632 +,,70612627,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70612627&format=geojson,0.2017,,246.0,",hv70612627,",2.23,md,,hv,24.0,"35km N of Pepeekeo, Hawaii",0.14,77,",hv,",reviewed,1537905137480,"M 2.2 - 35km N of Pepeekeo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537926646410,https://earthquake.usgs.gov/earthquakes/eventpage/hv70612627 +,,37368866,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37368866&format=geojson,0.005207,,32.0,",ci37368866,",1.01,ml,,ci,44.0,"10km NE of Aguanga, CA",0.16,16,",ci,",reviewed,1537904920710,"M 1.0 - 10km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537919456850,https://earthquake.usgs.gov/earthquakes/eventpage/ci37368866 +,,20263299,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263299&format=geojson,,,,",ak20263299,",1.5,ml,,ak,,"82km S of Kaktovik, Alaska",0.55,35,",ak,",reviewed,1537904899579,"M 1.5 - 82km S of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675613556,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263299 +,,37368850,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37368850&format=geojson,0.004226,,47.0,",ci37368850,",0.34,ml,,ci,23.0,"10km NE of Aguanga, CA",0.11,2,",ci,",reviewed,1537904765940,"M 0.3 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537977818183,https://earthquake.usgs.gov/earthquakes/eventpage/ci37368850 +,,2000hjwg,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hjwg&format=geojson,3.289,,45.0,",us2000hjwg,",4.2,mb,,us,,"171km NE of Dili, East Timor",0.79,271,",us,",reviewed,1537904688410,"M 4.2 - 171km NE of Dili, East Timor",0,earthquake,",geoserve,origin,phase-data,",540.0,1538064770040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hjwg +,,20263293,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263293&format=geojson,,,,",ak20263293,us2000hjwc,",2.6,ml,,ak,,"20km NE of Fritz Creek, Alaska",0.78,104,",ak,us,",reviewed,1537904663932,"M 2.6 - 20km NE of Fritz Creek, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675612848,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263293 +,,2000hjwi,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hjwi&format=geojson,4.005,,88.0,",us2000hjwi,",5.0,mb,,us,,"188km S of L'Esperance Rock, New Zealand",0.69,385,",us,",reviewed,1537904491210,"M 5.0 - 188km S of L'Esperance Rock, New Zealand",0,earthquake,",geoserve,origin,phase-data,",-720.0,1538059894040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hjwi +,,37368818,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37368818&format=geojson,0.00763,,39.0,",ci37368818,",0.66,ml,,ci,22.0,"10km NE of Aguanga, CA",0.15,7,",ci,",reviewed,1537904335090,"M 0.7 - 10km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537919519490,https://earthquake.usgs.gov/earthquakes/eventpage/ci37368818 +,,20263291,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263291&format=geojson,,,,",ak20263291,",1.2,ml,,ak,,"40km SW of Cantwell, Alaska",0.59,22,",ak,",reviewed,1537904310384,"M 1.2 - 40km SW of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675612352,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263291 +,,20263289,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263289&format=geojson,,,,",ak20263289,",1.3,ml,,ak,,"99km NNW of Arctic Village, Alaska",0.67,26,",ak,",reviewed,1537904125477,"M 1.3 - 99km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675611853,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263289 +,,61422827,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61422827&format=geojson,,,168.0,",uw61422827,",1.7,ml,,uw,10.0,"24km NE of Glide, Oregon",0.17,44,",uw,",reviewed,1537903794860,"M 1.7 Explosion - 24km NE of Glide, Oregon",0,explosion,",geoserve,origin,phase-data,",-480.0,1537922559240,https://earthquake.usgs.gov/earthquakes/eventpage/uw61422827 +,,20263185,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263185&format=geojson,,,,",ak20263185,",1.3,ml,,ak,,"99km NNW of Arctic Village, Alaska",0.95,26,",ak,",reviewed,1537903321264,"M 1.3 - 99km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675611359,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263185 +,,73089626,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73089626&format=geojson,0.003349,,120.0,",nc73089626,",0.57,md,,nc,6.0,"9km NW of The Geysers, CA",0.02,5,",nc,",automatic,1537903178580,"M 0.6 - 9km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537904464163,https://earthquake.usgs.gov/earthquakes/eventpage/nc73089626 +,,37368794,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37368794&format=geojson,0.08684,,39.0,",ci37368794,",0.88,ml,,ci,30.0,"9km ENE of Aguanga, CA",0.17,12,",ci,",reviewed,1537903085820,"M 0.9 - 9km ENE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537919523160,https://earthquake.usgs.gov/earthquakes/eventpage/ci37368794 +,,70804714,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804714&format=geojson,0.03171,,224.0,",av70804714,",-1.04,ml,,av,4.0,"97km ESE of King Salmon, Alaska",0.18,0,",av,",reviewed,1537902954880,"M -1.0 - 97km ESE of King Salmon, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538005591370,https://earthquake.usgs.gov/earthquakes/eventpage/av70804714 +,,00658102,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658102&format=geojson,0.285,,201.04,",nn00658102,",0.8,ml,,nn,15.0,"71km E of Warm Springs, Nevada",0.1924,10,",nn,",reviewed,1537902739616,"M 0.8 - 71km E of Warm Springs, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537927552566,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658102 +,,00658101,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658101&format=geojson,0.154,,92.62,",nn00658101,",0.4,ml,,nn,7.0,"10km S of Mogul, Nevada",0.0662,2,",nn,",reviewed,1537902434561,"M 0.4 - 10km S of Mogul, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537927551105,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658101 +,,37368770,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37368770&format=geojson,0.1184,,98.0,",ci37368770,",1.61,ml,,ci,16.0,"7km S of Mojave, CA",0.15,40,",ci,",reviewed,1537902307560,"M 1.6 Quarry Blast - 7km S of Mojave, CA",0,quarry blast,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537980770038,https://earthquake.usgs.gov/earthquakes/eventpage/ci37368770 +,,37410861,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37410861&format=geojson,0.004072,,154.0,",ci37410861,",0.1,ml,,ci,8.0,"10km NE of Aguanga, CA",0.06,0,",ci,",reviewed,1537902232290,"M 0.1 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537904887227,https://earthquake.usgs.gov/earthquakes/eventpage/ci37410861 +,,37368762,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37368762&format=geojson,0.005547,,80.0,",ci37368762,",0.26,ml,,ci,19.0,"10km NE of Aguanga, CA",0.11,1,",ci,",reviewed,1537902226720,"M 0.3 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537904613767,https://earthquake.usgs.gov/earthquakes/eventpage/ci37368762 +,,37368754,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37368754&format=geojson,0.05345,,43.0,",ci37368754,",1.51,ml,,ci,38.0,"5km NE of Rancho San Diego, CA",0.28,35,",ci,",reviewed,1537902007920,"M 1.5 Quarry Blast - 5km NE of Rancho San Diego, CA",0,quarry blast,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537977512148,https://earthquake.usgs.gov/earthquakes/eventpage/ci37368754 +,,20263183,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263183&format=geojson,,,,",ak20263183,",1.4,ml,,ak,,"99km NNW of Arctic Village, Alaska",0.58,30,",ak,",reviewed,1537901942831,"M 1.4 - 99km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675610891,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263183 +,,20263181,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263181&format=geojson,,,,",ak20263181,",2.0,ml,,ak,,"79km SSW of Kaktovik, Alaska",0.52,62,",ak,",reviewed,1537901717932,"M 2.0 - 79km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675610354,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263181 +,,20263176,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263176&format=geojson,,,,",ak20263176,",1.3,ml,,ak,,"102km NNW of Arctic Village, Alaska",0.7,26,",ak,",reviewed,1537901232751,"M 1.3 - 102km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675609881,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263176 +,,37368738,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37368738&format=geojson,0.06391,,106.0,",ci37368738,",0.53,ml,,ci,14.0,"11km NE of Aguanga, CA",0.14,4,",ci,",reviewed,1537901223070,"M 0.5 - 11km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537919520531,https://earthquake.usgs.gov/earthquakes/eventpage/ci37368738 +,,70804704,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804704&format=geojson,0.05678,,143.0,",av70804704,",-0.3,ml,,av,6.0,"71km SE of King Salmon, Alaska",0.27,0,",av,",reviewed,1537901167870,"M -0.3 - 71km SE of King Salmon, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538005015530,https://earthquake.usgs.gov/earthquakes/eventpage/av70804704 +,,20263170,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263170&format=geojson,,,,",ak20263170,",1.4,ml,,ak,,"24km S of Ester, Alaska",0.64,30,",ak,",reviewed,1537901113915,"M 1.4 - 24km S of Ester, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675609366,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263170 +,,20263166,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263166&format=geojson,,,,",ak20263166,",2.3,ml,,ak,,"102km NNW of Arctic Village, Alaska",0.52,81,",ak,",reviewed,1537900990757,"M 2.3 - 102km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675608855,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263166 +,,37368730,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37368730&format=geojson,0.03515,,16.0,",ci37368730,",2.15,ml,,ci,94.0,"8km ENE of Aguanga, CA",0.2,71,",ci,",reviewed,1537900982500,"M 2.2 - 8km ENE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537976957100,https://earthquake.usgs.gov/earthquakes/eventpage/ci37368730 +,,61422817,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61422817&format=geojson,0.09258,,252.0,",uw61422817,",1.67,ml,,uw,6.0,"8km SE of Benton City, Washington",0.15,43,",uw,",reviewed,1537900859130,"M 1.7 Explosion - 8km SE of Benton City, Washington",0,explosion,",geoserve,origin,phase-data,",-480.0,1537922689540,https://earthquake.usgs.gov/earthquakes/eventpage/uw61422817 +,2.9,20263149,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263149&format=geojson,,13.0,,",ak20263149,us2000hjv2,",3.1,ml,,ak,,"24km S of Ester, Alaska",0.86,152,",ak,us,",reviewed,1537900840455,"M 3.1 - 24km S of Ester, Alaska",0,earthquake,",dyfi,geoserve,origin,phase-data,",-540.0,1538675984409,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263149 +,,37368722,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37368722&format=geojson,0.002103,,39.0,",ci37368722,",0.57,ml,,ci,24.0,"10km NE of Aguanga, CA",0.19,5,",ci,",reviewed,1537900761250,"M 0.6 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537919536349,https://earthquake.usgs.gov/earthquakes/eventpage/ci37368722 +,,37368714,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37368714&format=geojson,0.003414,,33.0,",ci37368714,",1.0,ml,,ci,39.0,"10km NE of Aguanga, CA",0.17,15,",ci,",reviewed,1537900505710,"M 1.0 - 10km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537919589180,https://earthquake.usgs.gov/earthquakes/eventpage/ci37368714 +,,20263147,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263147&format=geojson,,,,",ak20263147,",1.3,ml,,ak,,"104km NNW of Arctic Village, Alaska",0.65,26,",ak,",reviewed,1537900489932,"M 1.3 - 104km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675607626,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263147 +,,37368698,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37368698&format=geojson,0.07704,,170.0,",ci37368698,",-0.09,ml,,ci,14.0,"10km NE of Aguanga, CA",0.08,0,",ci,",reviewed,1537900461750,"M -0.1 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537979881432,https://earthquake.usgs.gov/earthquakes/eventpage/ci37368698 +,,2000hjuy,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hjuy&format=geojson,6.311,,75.0,",us2000hjuy,",4.9,mb,,us,,"108km ENE of Kiunga, Papua New Guinea",0.79,369,",us,",reviewed,1537900187320,"M 4.9 - 108km ENE of Kiunga, Papua New Guinea",0,earthquake,",geoserve,origin,phase-data,",600.0,1538058028040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hjuy +,,20263145,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263145&format=geojson,,,,",ak20263145,",1.6,ml,,ak,,"101km NNW of Arctic Village, Alaska",0.74,39,",ak,",reviewed,1537900006975,"M 1.6 - 101km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675607071,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263145 +,,20271104,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271104&format=geojson,,,,",ak20271104,",1.8,ml,,ak,,"45km SSW of Redoubt Volcano, Alaska",0.47,50,",ak,",reviewed,1537899607283,"M 1.8 - 45km SSW of Redoubt Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675606565,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271104 +,2.0,73089611,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73089611&format=geojson,0.02277,1.0,34.0,",nc73089611,",1.78,md,,nc,58.0,"5km S of Alameda, CA",0.09,49,",nc,",reviewed,1537899278320,"M 1.8 - 5km S of Alameda, CA",0,earthquake,",dyfi,focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537929123823,https://earthquake.usgs.gov/earthquakes/eventpage/nc73089611 +,,20263140,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263140&format=geojson,,,,",ak20263140,",1.4,ml,,ak,,"106km NW of Arctic Village, Alaska",0.63,30,",ak,",reviewed,1537898971208,"M 1.4 - 106km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675606071,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263140 +,,61422802,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61422802&format=geojson,0.2361,,160.0,",uw61422802,",1.78,ml,,uw,7.0,"23km ESE of Canyonville, Oregon",0.25,49,",uw,",reviewed,1537898937460,"M 1.8 Explosion - 23km ESE of Canyonville, Oregon",0,explosion,",geoserve,origin,phase-data,",-480.0,1537906595760,https://earthquake.usgs.gov/earthquakes/eventpage/uw61422802 +,,20263139,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263139&format=geojson,,,,",ak20263139,",0.9,ml,,ak,,"133km NW of Haines Junction, Canada",0.52,12,",ak,",reviewed,1537898927858,"M 0.9 - 133km NW of Haines Junction, Canada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538675605602,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263139 +,,37368666,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37368666&format=geojson,0.003963,,38.0,",ci37368666,",0.39,ml,,ci,22.0,"10km NE of Aguanga, CA",0.09,2,",ci,",reviewed,1537898925780,"M 0.4 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537975510958,https://earthquake.usgs.gov/earthquakes/eventpage/ci37368666 +,,61786166,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61786166&format=geojson,0.02724,,138.0,",av61786166,",-0.17,ml,,av,5.0,"47km WSW of Tanaga Volcano, Alaska",0.08,0,",av,",reviewed,1537898861330,"M -0.2 - 47km WSW of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538004822140,https://earthquake.usgs.gov/earthquakes/eventpage/av61786166 +,,20263136,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263136&format=geojson,,,,",ak20263136,",1.1,ml,,ak,,"105km NNW of Arctic Village, Alaska",0.66,19,",ak,",reviewed,1537898394094,"M 1.1 - 105km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675605106,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263136 +,,20263132,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263132&format=geojson,,,,",ak20263132,",1.1,ml,,ak,,"106km NNW of Arctic Village, Alaska",0.75,19,",ak,",reviewed,1537898328208,"M 1.1 - 106km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675604641,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263132 +,,20263130,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263130&format=geojson,,,,",ak20263130,",3.1,ml,,ak,,"66km SW of Atka, Alaska",0.72,148,",ak,",reviewed,1537898200797,"M 3.1 - 66km SW of Atka, Alaska",0,earthquake,",geoserve,origin,phase-data,",-720.0,1538675604117,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263130 +,,20263128,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263128&format=geojson,,,,",ak20263128,",1.4,ml,,ak,,"99km NNW of Arctic Village, Alaska",0.7,30,",ak,",reviewed,1537897969419,"M 1.4 - 99km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675603607,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263128 +,,2000hju6,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hju6&format=geojson,5.657,,68.0,",us2000hju6,",4.6,mb,,us,,"260km SSW of Ndoi Island, Fiji",0.94,326,",us,",reviewed,1537897833390,"M 4.6 - 260km SSW of Ndoi Island, Fiji",0,earthquake,",geoserve,origin,phase-data,",-720.0,1538057119040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hju6 +,,73089601,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73089601&format=geojson,0.007072,,130.0,",nc73089601,",0.57,md,,nc,7.0,"9km WNW of The Geysers, CA",0.02,5,",nc,",automatic,1537897759250,"M 0.6 - 9km WNW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537897856746,https://earthquake.usgs.gov/earthquakes/eventpage/nc73089601 +,,20263125,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263125&format=geojson,,,,",ak20263125,",1.3,ml,,ak,,"61km E of Cape Yakataga, Alaska",0.9,26,",ak,",reviewed,1537897690393,"M 1.3 Ice Quake - 61km E of Cape Yakataga, Alaska",0,ice quake,",geoserve,origin,phase-data,",-540.0,1538675603100,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263125 +,,37368610,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37368610&format=geojson,0.005226,,52.0,",ci37368610,",0.64,ml,,ci,26.0,"10km NE of Aguanga, CA",0.19,6,",ci,",reviewed,1537897620430,"M 0.6 - 10km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537919591600,https://earthquake.usgs.gov/earthquakes/eventpage/ci37368610 +,,20263123,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263123&format=geojson,,,,",ak20263123,",1.2,ml,,ak,,"103km NNW of Arctic Village, Alaska",0.77,22,",ak,",reviewed,1537897311888,"M 1.2 - 103km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675602608,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263123 +,,37368594,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37368594&format=geojson,0.08962,,73.0,",ci37368594,",0.52,ml,,ci,23.0,"9km ENE of Aguanga, CA",0.2,4,",ci,",reviewed,1537897242310,"M 0.5 - 9km ENE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537919587001,https://earthquake.usgs.gov/earthquakes/eventpage/ci37368594 +,,37368586,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37368586&format=geojson,0.00433,,55.0,",ci37368586,",0.42,ml,,ci,21.0,"10km NE of Aguanga, CA",0.11,3,",ci,",reviewed,1537897133990,"M 0.4 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537975176053,https://earthquake.usgs.gov/earthquakes/eventpage/ci37368586 +,,73089596,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73089596&format=geojson,0.006483,,61.0,",nc73089596,",0.48,md,,nc,15.0,"2km SW of Anderson Springs, CA",0.07,4,",nc,",reviewed,1537896607160,"M 0.5 - 2km SW of Anderson Springs, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537915813744,https://earthquake.usgs.gov/earthquakes/eventpage/nc73089596 +,,20271095,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271095&format=geojson,,,,",ak20271095,",1.2,ml,,ak,,"23km SSW of Adak, Alaska",0.31,22,",ak,",reviewed,1537896489533,"M 1.2 - 23km SSW of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538675602127,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271095 +,,60297662,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60297662&format=geojson,0.1722,,124.0,",uu60297662,",1.64,md,,uu,6.0,"24km SSE of Old Faithful Geyser, Wyoming",0.15,41,",uu,",reviewed,1537896392330,"M 1.6 - 24km SSE of Old Faithful Geyser, Wyoming",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537905423370,https://earthquake.usgs.gov/earthquakes/eventpage/uu60297662 +,,70612357,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70612357&format=geojson,0.04649,,84.0,",hv70612357,us2000hjtx,",2.68,ml,,hv,47.0,"11km SSE of Volcano, Hawaii",0.07,110,",hv,us,",reviewed,1537896280600,"M 2.7 - 11km SSE of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538056020040,https://earthquake.usgs.gov/earthquakes/eventpage/hv70612357 +,,37368554,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37368554&format=geojson,0.007291,,28.0,",ci37368554,",1.75,ml,,ci,65.0,"9km NE of Aguanga, CA",0.23,47,",ci,",reviewed,1537896167000,"M 1.8 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537919656170,https://earthquake.usgs.gov/earthquakes/eventpage/ci37368554 +,,00658070,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658070&format=geojson,0.089,,260.9,",nn00658070,",0.1,ml,,nn,5.0,"46km ESE of Hawthorne, Nevada",0.148,0,",nn,",reviewed,1537896025187,"M 0.1 - 46km ESE of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537927527274,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658070 +,,37368522,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37368522&format=geojson,0.03231,,36.0,",ci37368522,",0.4,ml,,ci,27.0,"11km SW of Anza, CA",0.13,2,",ci,",reviewed,1537895515300,"M 0.4 - 11km SW of Anza, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537974887654,https://earthquake.usgs.gov/earthquakes/eventpage/ci37368522 +,,70612327,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70612327&format=geojson,0.06575,,235.0,",hv70612327,",1.75,md,,hv,38.0,"8km SSE of Leilani Estates, Hawaii",0.25,47,",hv,",automatic,1537895252580,"M 1.8 - 8km SSE of Leilani Estates, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537895456340,https://earthquake.usgs.gov/earthquakes/eventpage/hv70612327 +,,20263121,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263121&format=geojson,,,,",ak20263121,",2.2,ml,,ak,,"22km SSW of Adak, Alaska",0.3,74,",ak,",reviewed,1537894728117,"M 2.2 - 22km SSW of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538675601601,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263121 +,,37368506,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37368506&format=geojson,0.005984,,36.0,",ci37368506,",1.69,ml,,ci,40.0,"10km NE of Aguanga, CA",0.17,44,",ci,",reviewed,1537894687220,"M 1.7 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537895968063,https://earthquake.usgs.gov/earthquakes/eventpage/ci37368506 +,,20271093,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271093&format=geojson,,,,",ak20271093,",1.2,ml,,ak,,"109km WSW of Talkeetna, Alaska",0.35,22,",ak,",reviewed,1537894669883,"M 1.2 - 109km WSW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675601106,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271093 +,,37368498,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37368498&format=geojson,0.004077,,26.0,",ci37368498,",2.13,ml,,ci,86.0,"9km NE of Aguanga, CA",0.2,70,",ci,",reviewed,1537894659630,"M 2.1 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537899074420,https://earthquake.usgs.gov/earthquakes/eventpage/ci37368498 +,,37368490,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37368490&format=geojson,0.00572,,42.0,",ci37368490,",0.38,ml,,ci,27.0,"10km NE of Aguanga, CA",0.14,2,",ci,",reviewed,1537894205830,"M 0.4 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537974644267,https://earthquake.usgs.gov/earthquakes/eventpage/ci37368490 +,,60241091,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nm60241091&format=geojson,0.03093,,175.0,",nm60241091,",1.14,md,,nm,5.0,"3km E of Ridgely, Tennessee",0.05,20,",nm,",reviewed,1537894193520,"M 1.1 - 3km E of Ridgely, Tennessee",0,earthquake,",geoserve,origin,phase-data,",-360.0,1537902386220,https://earthquake.usgs.gov/earthquakes/eventpage/nm60241091 +,,37368482,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37368482&format=geojson,0.008349,,28.0,",ci37368482,",1.38,ml,,ci,54.0,"9km NE of Aguanga, CA",0.2,29,",ci,",reviewed,1537894139760,"M 1.4 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537896016890,https://earthquake.usgs.gov/earthquakes/eventpage/ci37368482 +,,37368474,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37368474&format=geojson,0.007097,,35.0,",ci37368474,",1.04,ml,,ci,45.0,"9km NE of Aguanga, CA",0.18,17,",ci,",reviewed,1537893987280,"M 1.0 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537896079970,https://earthquake.usgs.gov/earthquakes/eventpage/ci37368474 +,,00658075,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658075&format=geojson,0.035,,137.96,",nn00658075,",-0.5,ml,,nn,10.0,"68km ENE of Beatty, Nevada",0.0815,0,",nn,",reviewed,1537893956555,"M -0.5 - 68km ENE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537927530257,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658075 +,,1000h54q,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h54q&format=geojson,3.639,,101.0,",us1000h54q,",4.0,mb,,us,,"66km WSW of Panguna, Papua New Guinea",0.22,246,",us,",reviewed,1537893620170,"M 4.0 - 66km WSW of Panguna, Papua New Guinea",0,earthquake,",geoserve,origin,phase-data,",600.0,1538495852040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h54q +,,00658077,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658077&format=geojson,0.321,,218.78,",nn00658077,",0.7,ml,,nn,5.0,"13km SSW of Gabbs, Nevada",0.0684,8,",nn,",reviewed,1537893597240,"M 0.7 - 13km SSW of Gabbs, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537927531831,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658077 +,,20263118,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263118&format=geojson,,,,",ak20263118,",1.3,ml,,ak,,"13km WSW of Anchor Point, Alaska",0.14,26,",ak,",reviewed,1537893287845,"M 1.3 - 13km WSW of Anchor Point, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675600634,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263118 +,,37368442,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37368442&format=geojson,0.07503,,69.0,",ci37368442,",0.58,ml,,ci,18.0,"10km NE of Aguanga, CA",0.15,5,",ci,",reviewed,1537893016810,"M 0.6 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537895992110,https://earthquake.usgs.gov/earthquakes/eventpage/ci37368442 +,,20263116,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263116&format=geojson,,,,",ak20263116,",0.8,ml,,ak,,"65km ESE of Healy, Alaska",0.55,10,",ak,",reviewed,1537892947682,"M 0.8 - 65km ESE of Healy, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675600141,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263116 +,,1000h54i,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h54i&format=geojson,2.79,,90.0,",us1000h54i,",4.4,mb,,us,,"14km NNW of Matanza, Colombia",0.4,298,",us,",reviewed,1537892890840,"M 4.4 - 14km NNW of Matanza, Colombia",0,earthquake,",geoserve,origin,phase-data,",-300.0,1538495230040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h54i +,,20263115,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263115&format=geojson,,,,",ak20263115,",0.7,ml,,ak,,"125km NNW of Ruby, Alaska",0.83,8,",ak,",reviewed,1537892746781,"M 0.7 - 125km NNW of Ruby, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675599650,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263115 +,,80311254,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80311254&format=geojson,0.161,,142.0,",mb80311254,",0.47,md,,mb,4.0,"11km WNW of Whitehall, Montana",0.07,3,",mb,",reviewed,1537892637800,"M 0.5 Quarry Blast - 11km WNW of Whitehall, Montana",0,quarry blast,",geoserve,origin,phase-data,",-420.0,1537976219980,https://earthquake.usgs.gov/earthquakes/eventpage/mb80311254 +,,80311249,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80311249&format=geojson,0.213,,176.0,",mb80311249,",0.24,ml,,mb,4.0,"17km S of Whitehall, Montana",0.09,1,",mb,",reviewed,1537892573600,"M 0.2 - 17km S of Whitehall, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537976034500,https://earthquake.usgs.gov/earthquakes/eventpage/mb80311249 +,,20263113,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263113&format=geojson,,,,",ak20263113,",1.5,ml,,ak,,"74km SSW of Kaktovik, Alaska",0.41,35,",ak,",reviewed,1537892466805,"M 1.5 - 74km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675599163,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263113 +,,20271088,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271088&format=geojson,,,,",ak20271088,",1.8,ml,,ak,,"124km SSW of Sand Point, Alaska",0.49,50,",ak,",reviewed,1537892294878,"M 1.8 - 124km SSW of Sand Point, Alaska",0,earthquake,",geoserve,origin,phase-data,",-660.0,1538675598691,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271088 +,,20263110,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263110&format=geojson,,,,",ak20263110,",0.6,ml,,ak,,"10km NW of North Nenana, Alaska",0.47,6,",ak,",reviewed,1537891705676,"M 0.6 - 10km NW of North Nenana, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675598205,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263110 +,,37368426,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37368426&format=geojson,0.01946,,184.0,",ci37368426,",0.13,ml,,ci,10.0,"9km NE of Aguanga, CA",0.08,0,",ci,",reviewed,1537891613050,"M 0.1 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537895902395,https://earthquake.usgs.gov/earthquakes/eventpage/ci37368426 +,,2000hjsk,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hjsk&format=geojson,3.225,,56.0,",us2000hjsk,",4.5,mb,,us,,"34km SE of Mountain, Colombia",0.94,312,",us,",reviewed,1537891562650,"M 4.5 - 34km SE of Mountain, Colombia",0,earthquake,",geoserve,origin,phase-data,",-300.0,1538493680040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hjsk +,,61422777,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61422777&format=geojson,0.1133,,159.0,",uw61422777,",1.38,ml,,uw,7.0,"25km NNE of Glide, Oregon",0.12,29,",uw,",reviewed,1537891520850,"M 1.4 Explosion - 25km NNE of Glide, Oregon",0,explosion,",geoserve,origin,phase-data,",-480.0,1537900236860,https://earthquake.usgs.gov/earthquakes/eventpage/uw61422777 +,,70804689,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804689&format=geojson,0.02411,,117.0,",av70804689,",-0.61,ml,,av,5.0,"42km ENE of Adak, Alaska",0.12,0,",av,",reviewed,1537890938510,"M -0.6 - 42km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538003462120,https://earthquake.usgs.gov/earthquakes/eventpage/av70804689 +,,61786076,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61786076&format=geojson,0.02183,,116.0,",av61786076,",-0.8,ml,,av,5.0,"42km ENE of Adak, Alaska",0.15,0,",av,",reviewed,1537890934100,"M -0.8 - 42km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538003329350,https://earthquake.usgs.gov/earthquakes/eventpage/av61786076 +,,37368410,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37368410&format=geojson,0.04043,,79.0,",ci37368410,",0.71,ml,,ci,32.0,"5km SE of Palomar Observatory, CA",0.19,8,",ci,",reviewed,1537890791400,"M 0.7 - 5km SE of Palomar Observatory, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537974295920,https://earthquake.usgs.gov/earthquakes/eventpage/ci37368410 +,,20271086,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271086&format=geojson,,,,",ak20271086,",1.0,ml,,ak,,"44km NNW of Valdez, Alaska",0.34,15,",ak,",reviewed,1537890639363,"M 1.0 - 44km NNW of Valdez, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675597719,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271086 +,,37368386,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37368386&format=geojson,0.0797,,41.0,",ci37368386,",1.5,ml,,ci,66.0,"16km SSE of Big Bear Lake, CA",0.16,35,",ci,",reviewed,1537890586590,"M 1.5 - 16km SSE of Big Bear Lake, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537973756250,https://earthquake.usgs.gov/earthquakes/eventpage/ci37368386 +,,00658078,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658078&format=geojson,0.058,,187.13,",nn00658078,",0.2,ml,,nn,7.0,"40km ENE of Big Pine, California",0.1454,1,",nn,",reviewed,1537890363322,"M 0.2 - 40km ENE of Big Pine, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537927533282,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658078 +,,20271085,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271085&format=geojson,,,,",ak20271085,",2.2,ml,,ak,,"55km NW of Atka, Alaska",0.54,74,",ak,",reviewed,1537890356081,"M 2.2 - 55km NW of Atka, Alaska",0,earthquake,",geoserve,origin,phase-data,",-720.0,1538675597228,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271085 +,,73089556,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73089556&format=geojson,0.08181,,48.0,",nc73089556,",1.71,md,,nc,45.0,"8km WSW of San Ardo, CA",0.08,45,",nc,",reviewed,1537890257250,"M 1.7 - 8km WSW of San Ardo, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537913162698,https://earthquake.usgs.gov/earthquakes/eventpage/nc73089556 +,,37368370,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37368370&format=geojson,0.07412,,74.0,",ci37368370,",0.56,ml,,ci,20.0,"10km NE of Aguanga, CA",0.11,5,",ci,",reviewed,1537890166460,"M 0.6 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537892641746,https://earthquake.usgs.gov/earthquakes/eventpage/ci37368370 +,,37368362,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37368362&format=geojson,0.007661,,31.0,",ci37368362,",1.1,ml,,ci,45.0,"9km NE of Aguanga, CA",0.18,19,",ci,",reviewed,1537889872960,"M 1.1 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537892694390,https://earthquake.usgs.gov/earthquakes/eventpage/ci37368362 +,,2000hjs8,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hjs8&format=geojson,0.306,,46.0,",us2000hjs8,",4.7,mb,,us,,"33km SE of Mountain, Colombia",0.72,340,",us,",reviewed,1537889834720,"M 4.7 - 33km SE of Mountain, Colombia",0,earthquake,",geoserve,origin,phase-data,",-300.0,1538493592040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hjs8 +,,20263004,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263004&format=geojson,,,,",ak20263004,",1.9,ml,,ak,,"75km SSW of Kaktovik, Alaska",0.66,56,",ak,",reviewed,1537889773938,"M 1.9 - 75km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675596704,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263004 +,,20271083,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271083&format=geojson,,,,",ak20271083,",1.4,ml,,ak,,"19km E of Fritz Creek, Alaska",0.26,30,",ak,",reviewed,1537889737671,"M 1.4 - 19km E of Fritz Creek, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675596235,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271083 +,,73089551,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73089551&format=geojson,0.01961,,169.0,",nc73089551,",0.29,md,,nc,16.0,"5km SE of Mammoth Lakes, CA",0.04,1,",nc,",reviewed,1537889568820,"M 0.3 - 5km SE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537899063488,https://earthquake.usgs.gov/earthquakes/eventpage/nc73089551 +,,20263000,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20263000&format=geojson,,,,",ak20263000,",2.0,ml,,ak,,"21km WSW of Valdez, Alaska",0.56,62,",ak,",reviewed,1537889344077,"M 2.0 - 21km WSW of Valdez, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675595657,https://earthquake.usgs.gov/earthquakes/eventpage/ak20263000 +,,37368306,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37368306&format=geojson,0.02933,,71.0,",ci37368306,",0.6,ml,,ci,24.0,"9km ENE of Aguanga, CA",0.17,6,",ci,",reviewed,1537888896340,"M 0.6 - 9km ENE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537892675499,https://earthquake.usgs.gov/earthquakes/eventpage/ci37368306 +,,37368298,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37368298&format=geojson,0.007,,125.0,",ci37368298,",0.28,ml,,ci,20.0,"10km NE of Aguanga, CA",0.08,1,",ci,",reviewed,1537888878480,"M 0.3 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537901881617,https://earthquake.usgs.gov/earthquakes/eventpage/ci37368298 +,,37368290,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37368290&format=geojson,0.006827,,75.0,",ci37368290,",0.32,ml,,ci,18.0,"10km NE of Aguanga, CA",0.15,2,",ci,",reviewed,1537888719660,"M 0.3 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537984628384,https://earthquake.usgs.gov/earthquakes/eventpage/ci37368290 +,,37368282,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37368282&format=geojson,0.08188,,70.0,",ci37368282,",0.52,ml,,ci,18.0,"10km ENE of Aguanga, CA",0.1,4,",ci,",reviewed,1537888573030,"M 0.5 - 10km ENE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537892710857,https://earthquake.usgs.gov/earthquakes/eventpage/ci37368282 +,,80311244,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80311244&format=geojson,0.206,,173.0,",mb80311244,",0.24,ml,,mb,4.0,"16km S of Whitehall, Montana",0.12,1,",mb,",reviewed,1537888481080,"M 0.2 - 16km S of Whitehall, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537975850690,https://earthquake.usgs.gov/earthquakes/eventpage/mb80311244 +,,37368274,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37368274&format=geojson,0.06963,,59.0,",ci37368274,",0.33,ml,,ci,21.0,"10km NE of Aguanga, CA",0.19,2,",ci,",reviewed,1537888470190,"M 0.3 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537893209765,https://earthquake.usgs.gov/earthquakes/eventpage/ci37368274 +,,20262998,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20262998&format=geojson,,,,",ak20262998,",1.6,ml,,ak,,"63km S of Tanaga Volcano, Alaska",0.41,39,",ak,",reviewed,1537888324834,"M 1.6 - 63km S of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-720.0,1538675595164,https://earthquake.usgs.gov/earthquakes/eventpage/ak20262998 +,,20262996,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20262996&format=geojson,,,,",ak20262996,us2000hjrh,",2.4,ml,,ak,,"74km SSW of Kaktovik, Alaska",0.55,89,",ak,us,",reviewed,1537887603933,"M 2.4 - 74km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539108602040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20262996 +,,37368266,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37368266&format=geojson,0.005318,,48.0,",ci37368266,",0.82,ml,,ci,28.0,"10km NE of Aguanga, CA",0.13,10,",ci,",reviewed,1537887474420,"M 0.8 - 10km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537894570240,https://earthquake.usgs.gov/earthquakes/eventpage/ci37368266 +,,37368242,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37368242&format=geojson,0.007194,,46.0,",ci37368242,",0.34,ml,,ci,23.0,"10km NE of Aguanga, CA",0.15,2,",ci,",reviewed,1537887001420,"M 0.3 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537972600511,https://earthquake.usgs.gov/earthquakes/eventpage/ci37368242 +,,20262994,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20262994&format=geojson,,,,",ak20262994,",1.5,ml,,ak,,"8km N of Meadow Lakes, Alaska",0.52,35,",ak,",reviewed,1537886898662,"M 1.5 - 8km N of Meadow Lakes, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675594049,https://earthquake.usgs.gov/earthquakes/eventpage/ak20262994 +,,1000h54f,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h54f&format=geojson,4.722,,123.0,",us1000h54f,",4.2,mb,,us,,South of the Fiji Islands,0.77,271,",us,",reviewed,1537886843780,M 4.2 - South of the Fiji Islands,0,earthquake,",geoserve,origin,phase-data,",-720.0,1538490214040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h54f +,,37368226,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37368226&format=geojson,0.01059,,27.0,",ci37368226,",1.98,ml,,ci,85.0,"9km NE of Aguanga, CA",0.22,60,",ci,",reviewed,1537886812220,"M 2.0 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537972366110,https://earthquake.usgs.gov/earthquakes/eventpage/ci37368226 +,,00658051,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658051&format=geojson,0.246,,115.82,",nn00658051,",0.5,ml,,nn,7.0,"53km SE of Hawthorne, Nevada",0.0938,4,",nn,",reviewed,1537886552346,"M 0.5 - 53km SE of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537927515553,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658051 +,,00658050,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658050&format=geojson,0.088,,146.08,",nn00658050,",-0.1,ml,,nn,5.0,"13km ENE of Hawthorne, Nevada",0.0614,0,",nn,",reviewed,1537886384725,"M -0.1 - 13km ENE of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537927514073,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658050 +,,73089641,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73089641&format=geojson,0.01042,,93.0,",nc73089641,",0.65,md,,nc,8.0,"10km ENE of Mount Shasta, CA",0.13,6,",nc,",reviewed,1537886292090,"M 0.7 - 10km ENE of Mount Shasta, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537916642369,https://earthquake.usgs.gov/earthquakes/eventpage/nc73089641 +,,37368210,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37368210&format=geojson,0.00736,,37.0,",ci37368210,",0.98,ml,,ci,40.0,"9km NE of Aguanga, CA",0.15,15,",ci,",reviewed,1537886108210,"M 1.0 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537978359740,https://earthquake.usgs.gov/earthquakes/eventpage/ci37368210 +,,70804679,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804679&format=geojson,0.007094,,60.0,",av70804679,",-0.42,ml,,av,10.0,"13km W of Akutan, Alaska",0.19,0,",av,",reviewed,1537886005800,"M -0.4 - 13km W of Akutan, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538003230240,https://earthquake.usgs.gov/earthquakes/eventpage/av70804679 +,,20262992,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20262992&format=geojson,,,,",ak20262992,",1.0,ml,,ak,,"80km NW of Arctic Village, Alaska",0.56,15,",ak,",reviewed,1537885951269,"M 1.0 - 80km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675593580,https://earthquake.usgs.gov/earthquakes/eventpage/ak20262992 +,,73089541,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73089541&format=geojson,0.01457,,92.0,",nc73089541,",0.78,md,,nc,14.0,"10km WNW of The Geysers, CA",0.03,9,",nc,",automatic,1537885933470,"M 0.8 - 10km WNW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537895823160,https://earthquake.usgs.gov/earthquakes/eventpage/nc73089541 +,,37368194,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37368194&format=geojson,0.07909,,53.0,",ci37368194,",1.12,ml,,ci,46.0,"9km N of Borrego Springs, CA",0.23,19,",ci,",reviewed,1537885422010,"M 1.1 - 9km N of Borrego Springs, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537892760040,https://earthquake.usgs.gov/earthquakes/eventpage/ci37368194 +,,70612067,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70612067&format=geojson,0.01291,,32.0,",hv70612067,",0.58,md,,hv,21.0,"5km WSW of Volcano, Hawaii",0.09,5,",hv,",reviewed,1537885333680,"M 0.6 - 5km WSW of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537897345860,https://earthquake.usgs.gov/earthquakes/eventpage/hv70612067 +,,20271077,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271077&format=geojson,,,,",ak20271077,",1.5,ml,,ak,,"66km E of Cold Bay, Alaska",0.11,35,",ak,",reviewed,1537885309402,"M 1.5 - 66km E of Cold Bay, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675593088,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271077 +,,00658055,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658055&format=geojson,0.046,,125.29,",nn00658055,",-0.2,ml,,nn,11.0,"48km ESE of Beatty, Nevada",0.0774,0,",nn,",reviewed,1537885138380,"M -0.2 - 48km ESE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537927517345,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658055 +,,1000h54e,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h54e&format=geojson,1.602,,121.0,",us1000h54e,",4.2,mb,,us,,"51km NE of Tobelo, Indonesia",0.39,271,",us,",reviewed,1537885105680,"M 4.2 - 51km NE of Tobelo, Indonesia",0,earthquake,",geoserve,origin,phase-data,",540.0,1538489117040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h54e +,,20262990,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20262990&format=geojson,,,,",ak20262990,",1.3,ml,,ak,,"106km NW of Arctic Village, Alaska",0.67,26,",ak,",reviewed,1537884855957,"M 1.3 - 106km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675592598,https://earthquake.usgs.gov/earthquakes/eventpage/ak20262990 +,,00658056,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658056&format=geojson,0.129,,172.85,",nn00658056,",0.3,ml,,nn,6.0,"14km NE of Big Pine, California",0.0836,1,",nn,",reviewed,1537884736394,"M 0.3 - 14km NE of Big Pine, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537927518908,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658056 +,2.0,2000hjxy,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hjxy&format=geojson,0.094,1.0,42.0,",us2000hjxy,",1.9,ml,,us,,"1km NE of Langston, Oklahoma",0.2,56,",us,",reviewed,1537884490970,"M 1.9 - 1km NE of Langston, Oklahoma",0,earthquake,",dyfi,geoserve,origin,phase-data,",-360.0,1538487290040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hjxy +,,1000h54d,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h54d&format=geojson,0.656,,194.0,",us1000h54d,",4.4,mb,,us,,"76km WNW of Raoul Island, New Zealand",1.2,298,",us,",reviewed,1537883670770,"M 4.4 - 76km WNW of Raoul Island, New Zealand",0,earthquake,",geoserve,origin,phase-data,",-720.0,1538487186040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h54d +,,73089531,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73089531&format=geojson,0.003182,,65.0,",nc73089531,",0.81,md,,nc,12.0,"10km WNW of The Geysers, CA",0.04,10,",nc,",automatic,1537883567080,"M 0.8 - 10km WNW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537884483670,https://earthquake.usgs.gov/earthquakes/eventpage/nc73089531 +,,20262983,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20262983&format=geojson,,,,",ak20262983,us2000hjpw,",3.0,ml,,ak,,"81km SSW of Kaktovik, Alaska",0.85,138,",ak,us,",reviewed,1537883539100,"M 3.0 - 81km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539108386040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20262983 +,,37368162,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37368162&format=geojson,0.07736,,137.0,",ci37368162,",0.44,ml,,ci,13.0,"3km SW of Little Lake, CA",0.08,3,",ci,",reviewed,1537883209530,"M 0.4 - 3km SW of Little Lake, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537888944905,https://earthquake.usgs.gov/earthquakes/eventpage/ci37368162 +,,80311114,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80311114&format=geojson,0.113,,109.0,",mb80311114,",1.07,ml,,mb,10.0,"14km ESE of Lincoln, Montana",0.11,18,",mb,",reviewed,1537882499860,"M 1.1 - 14km ESE of Lincoln, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537884859030,https://earthquake.usgs.gov/earthquakes/eventpage/mb80311114 +,,73089516,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73089516&format=geojson,0.02372,,78.0,",nc73089516,",0.71,md,,nc,22.0,"3km E of Mammoth Lakes, CA",0.05,8,",nc,",reviewed,1537881692230,"M 0.7 - 3km E of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537897451122,https://earthquake.usgs.gov/earthquakes/eventpage/nc73089516 +,3.8,61422757,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61422757&format=geojson,0.1266,20.0,38.0,",uw61422757,us2000hjps,",2.56,ml,,uw,43.0,"8km S of Scappoose, Oregon",0.11,108,",uw,us,",reviewed,1537881530110,"M 2.6 - 8km S of Scappoose, Oregon",0,earthquake,",dyfi,geoserve,origin,phase-data,",-480.0,1538427981040,https://earthquake.usgs.gov/earthquakes/eventpage/uw61422757 +,,20271074,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271074&format=geojson,,,,",ak20271074,",1.7,ml,,ak,,"84km E of Old Iliamna, Alaska",0.4,44,",ak,",reviewed,1537881494819,"M 1.7 - 84km E of Old Iliamna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675591403,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271074 +,,20262982,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20262982&format=geojson,,,,",ak20262982,",1.5,ml,,ak,,"82km SSW of Kaktovik, Alaska",0.64,35,",ak,",reviewed,1537881362807,"M 1.5 - 82km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675590887,https://earthquake.usgs.gov/earthquakes/eventpage/ak20262982 +,,00658057,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658057&format=geojson,0.159,,189.91,",nn00658057,",0.0,ml,,nn,11.0,"38km SSE of Goldfield, Nevada",0.1729,0,",nn,",reviewed,1537881104523,"M 0.0 - 38km SSE of Goldfield, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537927520530,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658057 +,,00658034,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658034&format=geojson,0.384,,152.13,",nn00658034,",1.2,ml,,nn,8.0,"30km WSW of Currant, Nevada",0.2189,22,",nn,",reviewed,1537880972436,"M 1.2 - 30km WSW of Currant, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537927509275,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658034 +,,20271072,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271072&format=geojson,,,,",ak20271072,",1.3,ml,,ak,,"67km W of Larsen Bay, Alaska",0.19,26,",ak,",reviewed,1537880930687,"M 1.3 - 67km W of Larsen Bay, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538675590395,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271072 +,,37368122,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37368122&format=geojson,0.05348,,125.0,",ci37368122,",0.08,ml,,ci,18.0,"15km ESE of Anza, CA",0.13,0,",ci,",reviewed,1537880891410,"M 0.1 - 15km ESE of Anza, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537895144890,https://earthquake.usgs.gov/earthquakes/eventpage/ci37368122 +,,20262978,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20262978&format=geojson,,,,",ak20262978,",1.4,ml,,ak,,"82km WSW of Cantwell, Alaska",0.33,30,",ak,",reviewed,1537880827546,"M 1.4 - 82km WSW of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675589876,https://earthquake.usgs.gov/earthquakes/eventpage/ak20262978 +,,80311109,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80311109&format=geojson,0.123,,134.0,",mb80311109,",1.18,ml,,mb,8.0,"16km E of Lincoln, Montana",0.08,21,",mb,",reviewed,1537880316380,"M 1.2 - 16km E of Lincoln, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537884833100,https://earthquake.usgs.gov/earthquakes/eventpage/mb80311109 +,,20262975,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20262975&format=geojson,,,,",ak20262975,",1.3,ml,,ak,,"3km E of Badger, Alaska",0.64,26,",ak,",reviewed,1537880244031,"M 1.3 - 3km E of Badger, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675589374,https://earthquake.usgs.gov/earthquakes/eventpage/ak20262975 +,,37368114,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37368114&format=geojson,0.005692,,74.0,",ci37368114,",0.56,ml,,ci,21.0,"10km NE of Aguanga, CA",0.13,5,",ci,",reviewed,1537880125380,"M 0.6 - 10km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537892763650,https://earthquake.usgs.gov/earthquakes/eventpage/ci37368114 +,,20262973,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20262973&format=geojson,,,,",ak20262973,",1.4,ml,,ak,,"115km NW of Arctic Village, Alaska",0.58,30,",ak,",reviewed,1537879996354,"M 1.4 - 115km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675588847,https://earthquake.usgs.gov/earthquakes/eventpage/ak20262973 +,,73089501,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73089501&format=geojson,0.02385,,73.0,",nc73089501,",0.06,md,,nc,16.0,"3km E of Mammoth Lakes, CA",0.04,0,",nc,",reviewed,1537879913580,"M 0.1 - 3km E of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537896663248,https://earthquake.usgs.gov/earthquakes/eventpage/nc73089501 +,,73089496,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73089496&format=geojson,0.02622,,71.0,",nc73089496,",0.12,md,,nc,18.0,"3km E of Mammoth Lakes, CA",0.03,0,",nc,",reviewed,1537879765980,"M 0.1 - 3km E of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537895942639,https://earthquake.usgs.gov/earthquakes/eventpage/nc73089496 +,,37368106,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37368106&format=geojson,0.006866,,58.0,",ci37368106,",0.44,ml,,ci,23.0,"10km NE of Aguanga, CA",0.13,3,",ci,",reviewed,1537879754850,"M 0.4 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537902247780,https://earthquake.usgs.gov/earthquakes/eventpage/ci37368106 +,,37368098,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37368098&format=geojson,0.104,,89.0,",ci37368098,",0.99,ml,,ci,30.0,"11km ENE of Ocotillo Wells, CA",0.15,15,",ci,",reviewed,1537879712890,"M 1.0 - 11km ENE of Ocotillo Wells, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538006728690,https://earthquake.usgs.gov/earthquakes/eventpage/ci37368098 +,,60142608,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw60142608&format=geojson,0.06273,,202.0,",uw60142608,",0.57,md,,uw,6.0,"14km WSW of Lofall, Washington",0.12,5,",uw,",reviewed,1537879465200,"M 0.6 - 14km WSW of Lofall, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537898369920,https://earthquake.usgs.gov/earthquakes/eventpage/uw60142608 +,,61422752,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61422752&format=geojson,0.07531,,204.0,",uw61422752,",0.17,ml,,uw,7.0,"11km WSW of Lofall, Washington",0.18,0,",uw,",reviewed,1537879441290,"M 0.2 - 11km WSW of Lofall, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537898170350,https://earthquake.usgs.gov/earthquakes/eventpage/uw61422752 +,,37368090,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37368090&format=geojson,0.003785,,57.0,",ci37368090,",0.47,ml,,ci,21.0,"10km NE of Aguanga, CA",0.14,3,",ci,",reviewed,1537879416790,"M 0.5 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537892780250,https://earthquake.usgs.gov/earthquakes/eventpage/ci37368090 +,,73089491,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73089491&format=geojson,0.0649,,174.0,",nc73089491,",1.24,md,,nc,14.0,"9km NNE of Pinnacles, CA",0.08,24,",nc,",reviewed,1537879293010,"M 1.2 - 9km NNE of Pinnacles, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537911602545,https://earthquake.usgs.gov/earthquakes/eventpage/nc73089491 +,,20262969,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20262969&format=geojson,,,,",ak20262969,",1.6,ml,,ak,,"93km N of Kobuk, Alaska",0.54,39,",ak,",reviewed,1537879188008,"M 1.6 - 93km N of Kobuk, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675588305,https://earthquake.usgs.gov/earthquakes/eventpage/ak20262969 +,,20262966,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20262966&format=geojson,,,,",ak20262966,",1.7,ml,,ak,,"84km SW of Kaktovik, Alaska",0.65,44,",ak,",reviewed,1537879001424,"M 1.7 - 84km SW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675587787,https://earthquake.usgs.gov/earthquakes/eventpage/ak20262966 +,,37368082,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37368082&format=geojson,0.005811,,59.0,",ci37368082,",0.17,ml,,ci,20.0,"10km NE of Aguanga, CA",0.11,0,",ci,",reviewed,1537878934630,"M 0.2 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537902537533,https://earthquake.usgs.gov/earthquakes/eventpage/ci37368082 +,,80311104,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80311104&format=geojson,0.124,,136.0,",mb80311104,",1.5,ml,,mb,12.0,"16km E of Lincoln, Montana",0.12,35,",mb,",reviewed,1537878840100,"M 1.5 - 16km E of Lincoln, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537883998960,https://earthquake.usgs.gov/earthquakes/eventpage/mb80311104 +,,20262963,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20262963&format=geojson,,,,",ak20262963,",1.7,ml,,ak,,"10km NNE of Ridgeway, Alaska",0.49,44,",ak,",reviewed,1537878810213,"M 1.7 - 10km NNE of Ridgeway, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675587212,https://earthquake.usgs.gov/earthquakes/eventpage/ak20262963 +,,00658032,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658032&format=geojson,0.155,,205.48,",nn00658032,",0.4,ml,,nn,16.0,"39km SSE of Goldfield, Nevada",0.1589,2,",nn,",reviewed,1537878723671,"M 0.4 - 39km SSE of Goldfield, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537927507460,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658032 +,,20262962,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20262962&format=geojson,,,,",ak20262962,",2.0,ml,,ak,,"37km SSE of Little Sitkin Island, Alaska",0.43,62,",ak,",reviewed,1537878672633,"M 2.0 - 37km SSE of Little Sitkin Island, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538675586740,https://earthquake.usgs.gov/earthquakes/eventpage/ak20262962 +,,37368074,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37368074&format=geojson,0.007369,,57.0,",ci37368074,",0.12,ml,,ci,18.0,"10km NE of Aguanga, CA",0.14,0,",ci,",reviewed,1537878501430,"M 0.1 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537896069337,https://earthquake.usgs.gov/earthquakes/eventpage/ci37368074 +,,00658029,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658029&format=geojson,0.167,,106.69,",nn00658029,",0.6,ml,,nn,22.0,"38km NW of Nellis Air Force Base, Nevada",0.1154,6,",nn,",reviewed,1537878480640,"M 0.6 - 38km NW of Nellis Air Force Base, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537927505348,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658029 +,,37368066,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37368066&format=geojson,0.005492,,73.0,",ci37368066,",0.12,ml,,ci,19.0,"10km NE of Aguanga, CA",0.13,0,",ci,",reviewed,1537878230220,"M 0.1 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537920825251,https://earthquake.usgs.gov/earthquakes/eventpage/ci37368066 +,,37368058,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37368058&format=geojson,0.005587,,58.0,",ci37368058,",0.18,ml,,ci,20.0,"10km NE of Aguanga, CA",0.11,0,",ci,",reviewed,1537878071030,"M 0.2 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537920673280,https://earthquake.usgs.gov/earthquakes/eventpage/ci37368058 +,,37368050,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37368050&format=geojson,0.3527,,131.0,",nn00658079,ci37368050,",0.68,ml,,ci,8.0,"45km NW of Stovepipe Wells, CA",0.15,7,",nn,ci,",reviewed,1537877799500,"M 0.7 - 45km NW of Stovepipe Wells, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537993615512,https://earthquake.usgs.gov/earthquakes/eventpage/ci37368050 +,,37368042,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37368042&format=geojson,0.00802,,31.0,",ci37368042,",1.11,ml,,ci,48.0,"9km NE of Aguanga, CA",0.17,19,",ci,",reviewed,1537877411980,"M 1.1 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537920594090,https://earthquake.usgs.gov/earthquakes/eventpage/ci37368042 +,,37368034,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37368034&format=geojson,0.006575,,31.0,",ci37368034,",1.34,ml,,ci,52.0,"9km NE of Aguanga, CA",0.2,28,",ci,",reviewed,1537877267260,"M 1.3 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537893199840,https://earthquake.usgs.gov/earthquakes/eventpage/ci37368034 +,,73089466,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73089466&format=geojson,0.02158,,77.0,",nc73089466,",0.96,md,,nc,21.0,"15km NW of Parkfield, CA",0.06,14,",nc,",reviewed,1537876835330,"M 1.0 - 15km NW of Parkfield, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537898048722,https://earthquake.usgs.gov/earthquakes/eventpage/nc73089466 +,,37368026,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37368026&format=geojson,0.007042,,27.0,",ci37368026,",2.03,ml,,ci,91.0,"8km NE of Aguanga, CA",0.21,63,",ci,",reviewed,1537876815690,"M 2.0 - 8km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537900193830,https://earthquake.usgs.gov/earthquakes/eventpage/ci37368026 +,,37368018,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37368018&format=geojson,0.0056,,57.0,",ci37368018,",0.0,ml,,ci,23.0,"10km NE of Aguanga, CA",0.12,0,",ci,",reviewed,1537876807650,"M 0.0 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537920170386,https://earthquake.usgs.gov/earthquakes/eventpage/ci37368018 +,,37368010,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37368010&format=geojson,0.0805,,63.0,",ci37368010,",0.6,ml,,ci,26.0,"9km NE of Aguanga, CA",0.18,6,",ci,",reviewed,1537876623960,"M 0.6 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537893133331,https://earthquake.usgs.gov/earthquakes/eventpage/ci37368010 +,,20262860,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20262860&format=geojson,,,,",ak20262860,",2.1,ml,,ak,,"71km ESE of Cantwell, Alaska",0.67,68,",ak,",reviewed,1537876613521,"M 2.1 - 71km ESE of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675586186,https://earthquake.usgs.gov/earthquakes/eventpage/ak20262860 +,,73089451,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73089451&format=geojson,0.06213,,174.0,",nc73089451,",1.34,md,,nc,18.0,"9km NNE of Pinnacles, CA",0.05,28,",nc,",reviewed,1537876539070,"M 1.3 - 9km NNE of Pinnacles, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537900323767,https://earthquake.usgs.gov/earthquakes/eventpage/nc73089451 +,,37368002,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37368002&format=geojson,0.007305,,60.0,",ci37368002,",0.81,ml,,ci,35.0,"10km NE of Aguanga, CA",0.14,10,",ci,",reviewed,1537876235660,"M 0.8 - 10km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537893207860,https://earthquake.usgs.gov/earthquakes/eventpage/ci37368002 +,,37367994,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37367994&format=geojson,0.07202,,73.0,",ci37367994,",0.35,ml,,ci,14.0,"10km NE of Aguanga, CA",0.13,2,",ci,",reviewed,1537876227740,"M 0.4 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537893152227,https://earthquake.usgs.gov/earthquakes/eventpage/ci37367994 +,,37367986,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37367986&format=geojson,0.008696,,83.0,",ci37367986,",1.08,ml,,ci,21.0,"13km NE of Coso Junction, CA",0.1,18,",ci,",reviewed,1537876140220,"M 1.1 - 13km NE of Coso Junction, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537903884195,https://earthquake.usgs.gov/earthquakes/eventpage/ci37367986 +,,20262858,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20262858&format=geojson,,,,",ak20262858,",1.3,ml,,ak,,"119km WNW of Arctic Village, Alaska",0.54,26,",ak,",reviewed,1537876119996,"M 1.3 - 119km WNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675585684,https://earthquake.usgs.gov/earthquakes/eventpage/ak20262858 +,,37367978,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37367978&format=geojson,0.0915,,37.0,",ci37367978,",1.16,ml,,ci,47.0,"9km ENE of Aguanga, CA",0.18,21,",ci,",reviewed,1537876071500,"M 1.2 - 9km ENE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537893216470,https://earthquake.usgs.gov/earthquakes/eventpage/ci37367978 +,,37367970,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37367970&format=geojson,0.01848,,97.0,",ci37367970,",0.01,ml,,ci,21.0,"9km NE of Aguanga, CA",0.1,0,",ci,",reviewed,1537875889110,"M 0.0 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537895647210,https://earthquake.usgs.gov/earthquakes/eventpage/ci37367970 +,,37367962,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37367962&format=geojson,0.005136,,72.0,",ci37367962,",0.26,ml,,ci,15.0,"10km NE of Aguanga, CA",0.12,1,",ci,",reviewed,1537875866490,"M 0.3 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537893185168,https://earthquake.usgs.gov/earthquakes/eventpage/ci37367962 +,,37367954,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37367954&format=geojson,0.007673,,56.0,",ci37367954,",0.35,ml,,ci,16.0,"10km NE of Aguanga, CA",0.15,2,",ci,",reviewed,1537875750900,"M 0.4 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537893203558,https://earthquake.usgs.gov/earthquakes/eventpage/ci37367954 +,,37367946,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37367946&format=geojson,0.00675,,60.0,",ci37367946,",0.8,ml,,ci,31.0,"10km NE of Aguanga, CA",0.15,10,",ci,",reviewed,1537875688350,"M 0.8 - 10km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537893280910,https://earthquake.usgs.gov/earthquakes/eventpage/ci37367946 +,,37367930,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37367930&format=geojson,0.006584,,59.0,",ci37367930,",0.14,ml,,ci,27.0,"10km NE of Aguanga, CA",0.11,0,",ci,",reviewed,1537875497520,"M 0.1 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537904219374,https://earthquake.usgs.gov/earthquakes/eventpage/ci37367930 +,,20262854,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20262854&format=geojson,,,,",ak20262854,",2.5,ml,,ak,,"121km WNW of Arctic Village, Alaska",0.58,96,",ak,",reviewed,1537875473457,"M 2.5 - 121km WNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675584988,https://earthquake.usgs.gov/earthquakes/eventpage/ak20262854 +,,60297632,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60297632&format=geojson,0.3888,,95.0,",uu60297632,",2.05,ml,,uu,19.0,"3km WNW of Montpelier, Idaho",0.24,65,",uu,",reviewed,1537875465690,"M 2.1 - 3km WNW of Montpelier, Idaho",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537891080370,https://earthquake.usgs.gov/earthquakes/eventpage/uu60297632 +,,61422727,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61422727&format=geojson,0.07442,,211.0,",uw61422727,",0.89,ml,,uw,6.0,"12km WSW of Lofall, Washington",0.16,12,",uw,",reviewed,1537875268420,"M 0.9 - 12km WSW of Lofall, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537901234960,https://earthquake.usgs.gov/earthquakes/eventpage/uw61422727 +,,37367922,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37367922&format=geojson,0.008292,,60.0,",ci37367922,",0.41,ml,,ci,18.0,"10km NE of Aguanga, CA",0.13,3,",ci,",reviewed,1537875186510,"M 0.4 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537893240108,https://earthquake.usgs.gov/earthquakes/eventpage/ci37367922 +,,73089446,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73089446&format=geojson,0.05744,,108.0,",nc73089446,",1.9,md,,nc,37.0,"9km NNE of Pinnacles, CA",0.09,56,",nc,",reviewed,1537875101020,"M 1.9 - 9km NNE of Pinnacles, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537899722712,https://earthquake.usgs.gov/earthquakes/eventpage/nc73089446 +,,00658080,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658080&format=geojson,0.101,,153.95,",nn00658080,",0.5,ml,,nn,8.0,"9km NNW of Truckee, California",0.0603,4,",nn,",reviewed,1537874893073,"M 0.5 - 9km NNW of Truckee, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537927538510,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658080 +,,20262851,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20262851&format=geojson,,,,",ak20262851,",1.1,ml,,ak,,"121km WNW of Arctic Village, Alaska",0.78,19,",ak,",reviewed,1537874471763,"M 1.1 - 121km WNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675584520,https://earthquake.usgs.gov/earthquakes/eventpage/ak20262851 +,,73089441,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73089441&format=geojson,0.05779,,103.0,",nc73089441,",1.54,md,,nc,20.0,"8km NNE of Pinnacles, CA",0.07,36,",nc,",reviewed,1537874161310,"M 1.5 - 8km NNE of Pinnacles, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537909083316,https://earthquake.usgs.gov/earthquakes/eventpage/nc73089441 +,,37367898,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37367898&format=geojson,0.008922,,102.0,",ci37367898,",-0.16,ml,,ci,15.0,"10km NE of Aguanga, CA",0.12,0,",ci,",reviewed,1537874151290,"M -0.2 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537890390734,https://earthquake.usgs.gov/earthquakes/eventpage/ci37367898 +,,73089431,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73089431&format=geojson,0.05757,,120.0,",nc73089431,",1.23,md,,nc,15.0,"8km NNE of Pinnacles, CA",0.06,23,",nc,",reviewed,1537874144680,"M 1.2 - 8km NNE of Pinnacles, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537907584462,https://earthquake.usgs.gov/earthquakes/eventpage/nc73089431 +,,37367906,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37367906&format=geojson,0.005351,,78.0,",ci37367906,",0.45,ml,,ci,21.0,"10km NE of Aguanga, CA",0.16,3,",ci,",reviewed,1537874132360,"M 0.5 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537893256447,https://earthquake.usgs.gov/earthquakes/eventpage/ci37367906 +,,37367890,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37367890&format=geojson,0.01869,,56.0,",ci37367890,",0.15,ml,,ci,22.0,"9km NE of Aguanga, CA",0.12,0,",ci,",reviewed,1537874021440,"M 0.2 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537893272959,https://earthquake.usgs.gov/earthquakes/eventpage/ci37367890 +,,73089426,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73089426&format=geojson,0.325,,168.0,",nc73089426,",1.86,md,,nc,42.0,"21km N of New Idria, CA",0.13,53,",nc,",reviewed,1537873954860,"M 1.9 - 21km N of New Idria, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537931642060,https://earthquake.usgs.gov/earthquakes/eventpage/nc73089426 +,,20262849,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20262849&format=geojson,,,,",ak20262849,",1.6,ml,,ak,,"44km E of Lazy Mountain, Alaska",0.58,39,",ak,",reviewed,1537873908776,"M 1.6 - 44km E of Lazy Mountain, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675583963,https://earthquake.usgs.gov/earthquakes/eventpage/ak20262849 +,,61422722,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61422722&format=geojson,0.07161,,247.0,",uw61422722,",0.07,ml,,uw,4.0,"12km WSW of Lofall, Washington",0.14,0,",uw,",reviewed,1537873872250,"M 0.1 - 12km WSW of Lofall, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537986088080,https://earthquake.usgs.gov/earthquakes/eventpage/uw61422722 +,,37367882,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37367882&format=geojson,0.07891,,166.0,",ci37367882,",0.6,ml,,ci,16.0,"8km ESE of Valle Vista, CA",0.18,6,",ci,",reviewed,1537873509200,"M 0.6 - 8km ESE of Valle Vista, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537893290173,https://earthquake.usgs.gov/earthquakes/eventpage/ci37367882 +,,37367874,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37367874&format=geojson,0.004663,,36.0,",ci37367874,",0.38,ml,,ci,23.0,"10km NE of Aguanga, CA",0.16,2,",ci,",reviewed,1537873355250,"M 0.4 - 10km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537893350560,https://earthquake.usgs.gov/earthquakes/eventpage/ci37367874 +,,73089421,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73089421&format=geojson,0.03334,,136.0,",nc73089421,",0.86,md,,nc,8.0,"9km E of Alum Rock, CA",0.05,11,",nc,",reviewed,1537873233410,"M 0.9 - 9km E of Alum Rock, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537902303954,https://earthquake.usgs.gov/earthquakes/eventpage/nc73089421 +,,37367866,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37367866&format=geojson,0.06389,,94.0,",ci37367866,",0.41,ml,,ci,23.0,"8km N of Anza, CA",0.11,3,",ci,",reviewed,1537873223030,"M 0.4 - 8km N of Anza, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537893383950,https://earthquake.usgs.gov/earthquakes/eventpage/ci37367866 +,,20262847,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20262847&format=geojson,,,,",ak20262847,",1.2,ml,,ak,,"120km WNW of Arctic Village, Alaska",0.6,22,",ak,",reviewed,1537873019897,"M 1.2 - 120km WNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675583424,https://earthquake.usgs.gov/earthquakes/eventpage/ak20262847 +,,20271058,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271058&format=geojson,,,,",ak20271058,",2.5,ml,,ak,,"237km SE of Kodiak, Alaska",0.67,96,",ak,",reviewed,1537872642599,"M 2.5 - 237km SE of Kodiak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538675582871,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271058 +,,37367858,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37367858&format=geojson,0.005422,,54.0,",ci37367858,",0.38,ml,,ci,19.0,"10km NE of Aguanga, CA",0.12,2,",ci,",reviewed,1537872519270,"M 0.4 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537893463341,https://earthquake.usgs.gov/earthquakes/eventpage/ci37367858 +,,61422717,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61422717&format=geojson,0.07863,,72.0,",uw61422717,",1.32,ml,,uw,14.0,"11km WSW of Lofall, Washington",0.15,27,",uw,",reviewed,1537872424040,"M 1.3 - 11km WSW of Lofall, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537986435940,https://earthquake.usgs.gov/earthquakes/eventpage/uw61422717 +,,20262846,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20262846&format=geojson,,,,",ak20262846,",1.7,ml,,ak,,"27km SW of Tanaga Volcano, Alaska",0.43,44,",ak,",reviewed,1537872334863,"M 1.7 - 27km SW of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538675582356,https://earthquake.usgs.gov/earthquakes/eventpage/ak20262846 +,,00658083,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658083&format=geojson,0.147,,142.17,",nn00658083,",0.9,ml,,nn,12.0,"24km W of Sunnyside-Tahoe City, California",0.1423,12,",nn,",reviewed,1537872172312,"M 0.9 - 24km W of Sunnyside-Tahoe City, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537927542341,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658083 +,,00658019,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658019&format=geojson,0.146,,107.19,",nn00658019,",1.6,ml,,nn,48.0,"34km SSE of Goldfield, Nevada",0.1893,39,",nn,",reviewed,1537872117173,"M 1.6 - 34km SSE of Goldfield, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537927502671,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658019 +,,61785856,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61785856&format=geojson,0.0196,,234.0,",av61785856,",0.28,ml,,av,4.0,"48km W of Tanaga Volcano, Alaska",0.09,1,",av,",reviewed,1537871896570,"M 0.3 - 48km W of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538007144180,https://earthquake.usgs.gov/earthquakes/eventpage/av61785856 +,,37367850,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37367850&format=geojson,0.006734,,30.0,",ci37367850,",1.19,ml,,ci,48.0,"9km NE of Aguanga, CA",0.19,22,",ci,",reviewed,1537871546570,"M 1.2 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537893537930,https://earthquake.usgs.gov/earthquakes/eventpage/ci37367850 +,,20271056,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271056&format=geojson,,,,",ak20271056,",1.6,ml,,ak,,"104km E of Akutan, Alaska",0.45,39,",ak,",reviewed,1537870924511,"M 1.6 - 104km E of Akutan, Alaska",0,earthquake,",geoserve,origin,phase-data,",-660.0,1538675581825,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271056 +,,20262843,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20262843&format=geojson,,,,",ak20262843,",2.0,ml,,ak,,"11km ENE of Adak, Alaska",0.29,62,",ak,",reviewed,1537870817546,"M 2.0 - 11km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538675581314,https://earthquake.usgs.gov/earthquakes/eventpage/ak20262843 +,,20262842,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20262842&format=geojson,,,,",ak20262842,",0.9,ml,,ak,,"110km SE of Arctic Village, Alaska",0.88,12,",ak,",reviewed,1537870794149,"M 0.9 - 110km SE of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675580838,https://earthquake.usgs.gov/earthquakes/eventpage/ak20262842 +,,37367842,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37367842&format=geojson,0.08734,,50.0,",ci37367842,",0.52,ml,,ci,22.0,"19km ESE of Anza, CA",0.17,4,",ci,",reviewed,1537870726990,"M 0.5 - 19km ESE of Anza, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537893483988,https://earthquake.usgs.gov/earthquakes/eventpage/ci37367842 +,,73089416,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73089416&format=geojson,0.1497,,282.0,",nc73089416,",1.05,md,,nc,17.0,"7km S of Toms Place, CA",0.06,17,",nc,",reviewed,1537870677270,"M 1.1 - 7km S of Toms Place, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537895223109,https://earthquake.usgs.gov/earthquakes/eventpage/nc73089416 +,,00658091,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658091&format=geojson,0.145,,86.73,",nn00658091,",0.1,ml,,nn,12.0,"38km SSE of Beatty, Nevada",0.1906,0,",nn,",reviewed,1537870243264,"M 0.1 - 38km SSE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537927544132,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658091 +,,37367834,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37367834&format=geojson,0.1148,,140.0,",ci37367834,",0.71,ml,,ci,23.0,"10km ENE of Borrego Springs, CA",0.21,8,",ci,",automatic,1537870203610,"M 0.7 - 10km ENE of Borrego Springs, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537914043919,https://earthquake.usgs.gov/earthquakes/eventpage/ci37367834 +,,37367826,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37367826&format=geojson,0.007401,,67.0,",ci37367826,",0.17,ml,,ci,14.0,"10km NE of Aguanga, CA",0.11,0,",ci,",reviewed,1537870107610,"M 0.2 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537893486294,https://earthquake.usgs.gov/earthquakes/eventpage/ci37367826 +,,37367818,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37367818&format=geojson,0.15,,116.0,",ci37367818,",0.8,ml,,ci,14.0,"16km ESE of Lake Isabella, CA",0.14,10,",ci,",reviewed,1537870018910,"M 0.8 - 16km ESE of Lake Isabella, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537893807261,https://earthquake.usgs.gov/earthquakes/eventpage/ci37367818 +,,80311099,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80311099&format=geojson,0.245,,137.0,",mb80311099,",1.24,ml,,mb,12.0,"20km SW of Dillon, Montana",0.12,24,",mb,",reviewed,1537869877470,"M 1.2 - 20km SW of Dillon, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537885325380,https://earthquake.usgs.gov/earthquakes/eventpage/mb80311099 +,,37367802,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37367802&format=geojson,0.005075,,59.0,",ci37367802,",0.45,ml,,ci,17.0,"10km NE of Aguanga, CA",0.1,3,",ci,",reviewed,1537869576880,"M 0.5 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537893809420,https://earthquake.usgs.gov/earthquakes/eventpage/ci37367802 +,,20271053,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271053&format=geojson,,,,",ak20271053,",2.1,ml,,ak,,"85km SSE of Yunaska Island, Alaska",0.94,68,",ak,",reviewed,1537869564660,"M 2.1 - 85km SSE of Yunaska Island, Alaska",0,earthquake,",geoserve,origin,phase-data,",-660.0,1538675580351,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271053 +,,20262839,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20262839&format=geojson,,,,",ak20262839,",1.5,ml,,ak,,"118km WNW of Arctic Village, Alaska",0.68,35,",ak,",reviewed,1537869447055,"M 1.5 - 118km WNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675579786,https://earthquake.usgs.gov/earthquakes/eventpage/ak20262839 +,,37367794,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37367794&format=geojson,0.005596,,63.0,",ci37367794,",-0.05,ml,,ci,18.0,"10km NE of Aguanga, CA",0.11,0,",ci,",reviewed,1537869151290,"M -0.1 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537913722363,https://earthquake.usgs.gov/earthquakes/eventpage/ci37367794 +,,37367786,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37367786&format=geojson,0.004952,,48.0,",ci37367786,",0.08,ml,,ci,21.0,"10km NE of Aguanga, CA",0.11,0,",ci,",reviewed,1537869061800,"M 0.1 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537913573868,https://earthquake.usgs.gov/earthquakes/eventpage/ci37367786 +,,37367778,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37367778&format=geojson,0.003761,,37.0,",ci37367778,",0.72,ml,,ci,28.0,"10km NE of Aguanga, CA",0.13,8,",ci,",reviewed,1537868946020,"M 0.7 - 10km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537893848580,https://earthquake.usgs.gov/earthquakes/eventpage/ci37367778 +,,37367770,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37367770&format=geojson,0.01135,,39.0,",ci37367770,",0.46,ml,,ci,26.0,"10km NE of Aguanga, CA",0.16,3,",ci,",reviewed,1537868929160,"M 0.5 - 10km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537893913790,https://earthquake.usgs.gov/earthquakes/eventpage/ci37367770 +,,20262834,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20262834&format=geojson,,,,",ak20262834,",3.5,ml,,ak,,"91km SW of Buldir Island, Alaska",0.97,188,",ak,",reviewed,1537868923555,"M 3.5 - 91km SW of Buldir Island, Alaska",0,earthquake,",geoserve,origin,phase-data,",720.0,1538675579286,https://earthquake.usgs.gov/earthquakes/eventpage/ak20262834 +,,20262835,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20262835&format=geojson,,,,",ak20262835,",0.5,ml,,ak,,"39km NW of Ester, Alaska",0.46,4,",ak,",reviewed,1537868880773,"M 0.5 - 39km NW of Ester, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675578773,https://earthquake.usgs.gov/earthquakes/eventpage/ak20262835 +,,20262833,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20262833&format=geojson,,,,",ak20262833,",1.0,ml,,ak,,"55km NW of Cape Yakataga, Alaska",0.18,15,",ak,",reviewed,1537868593351,"M 1.0 - 55km NW of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675578273,https://earthquake.usgs.gov/earthquakes/eventpage/ak20262833 +,,37367762,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37367762&format=geojson,0.007609,,52.0,",ci37367762,",0.11,ml,,ci,17.0,"10km NE of Aguanga, CA",0.11,0,",ci,",reviewed,1537868550660,"M 0.1 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537890327786,https://earthquake.usgs.gov/earthquakes/eventpage/ci37367762 +,,37367754,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37367754&format=geojson,0.00293,,44.0,",ci37367754,",0.67,ml,,ci,29.0,"10km NE of Aguanga, CA",0.14,7,",ci,",reviewed,1537868541600,"M 0.7 - 10km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537893916870,https://earthquake.usgs.gov/earthquakes/eventpage/ci37367754 +,,37367746,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37367746&format=geojson,0.009636,,29.0,",ci37367746,",1.34,ml,,ci,63.0,"9km NE of Aguanga, CA",0.23,28,",ci,",reviewed,1537868502040,"M 1.3 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537893919720,https://earthquake.usgs.gov/earthquakes/eventpage/ci37367746 +,,37367738,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37367738&format=geojson,0.009077,,40.0,",ci37367738,",0.38,ml,,ci,21.0,"10km NE of Aguanga, CA",0.22,2,",ci,",reviewed,1537868492700,"M 0.4 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537893929563,https://earthquake.usgs.gov/earthquakes/eventpage/ci37367738 +,,37367730,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37367730&format=geojson,0.005456,,43.0,",ci37367730,",0.33,ml,,ci,18.0,"10km NE of Aguanga, CA",0.11,2,",ci,",reviewed,1537868310500,"M 0.3 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537893962337,https://earthquake.usgs.gov/earthquakes/eventpage/ci37367730 +,,20262831,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20262831&format=geojson,,,,",ak20262831,",1.5,ml,,ak,,"164km WNW of Haines Junction, Canada",0.35,35,",ak,",reviewed,1537868041782,"M 1.5 - 164km WNW of Haines Junction, Canada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538675577728,https://earthquake.usgs.gov/earthquakes/eventpage/ak20262831 +,,37367722,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37367722&format=geojson,0.01009,,31.0,",ci37367722,",1.31,ml,,ci,60.0,"9km NE of Aguanga, CA",0.2,26,",ci,",reviewed,1537868026800,"M 1.3 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537894045810,https://earthquake.usgs.gov/earthquakes/eventpage/ci37367722 +,,60297627,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60297627&format=geojson,0.2963,,117.0,",uu60297627,",1.23,md,,uu,11.0,"17km ESE of Soda Springs, Idaho",0.19,23,",uu,",reviewed,1537867567300,"M 1.2 - 17km ESE of Soda Springs, Idaho",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537992688380,https://earthquake.usgs.gov/earthquakes/eventpage/uu60297627 +,,70804669,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804669&format=geojson,0.009966,,58.0,",av70804669,",-0.04,ml,,av,11.0,"13km W of Akutan, Alaska",0.22,0,",av,",reviewed,1537867440700,"M -0.0 - 13km W of Akutan, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538001919870,https://earthquake.usgs.gov/earthquakes/eventpage/av70804669 +,,37367714,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37367714&format=geojson,0.07245,,69.0,",ci37367714,",0.33,ml,,ci,19.0,"10km NE of Aguanga, CA",0.12,2,",ci,",reviewed,1537867325970,"M 0.3 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537913179834,https://earthquake.usgs.gov/earthquakes/eventpage/ci37367714 +,,2000hjne,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hjne&format=geojson,2.009,,52.0,",us2000hjne,",4.8,mb,,us,,"215km ENE of Port Mathurin, Mauritius",0.71,354,",us,",reviewed,1537867258440,"M 4.8 - 215km ENE of Port Mathurin, Mauritius",0,earthquake,",geoserve,origin,phase-data,",240.0,1537868555040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hjne +,,20262830,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20262830&format=geojson,,,,",ak20262830,",0.6,ml,,ak,,"40km N of North Nenana, Alaska",0.83,6,",ak,",reviewed,1537867213800,"M 0.6 - 40km N of North Nenana, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675577199,https://earthquake.usgs.gov/earthquakes/eventpage/ak20262830 +,,37367698,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37367698&format=geojson,0.005906,,70.0,",ci37367698,",0.32,ml,,ci,16.0,"10km NE of Aguanga, CA",0.11,2,",ci,",reviewed,1537866540650,"M 0.3 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537893998197,https://earthquake.usgs.gov/earthquakes/eventpage/ci37367698 +,,73089401,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73089401&format=geojson,0.3508,,48.0,",nc73089401,",1.69,md,,nc,19.0,"6km SE of Lake Pillsbury, CA",0.08,44,",nc,",reviewed,1537866491930,"M 1.7 - 6km SE of Lake Pillsbury, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537904042126,https://earthquake.usgs.gov/earthquakes/eventpage/nc73089401 +,,61422707,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61422707&format=geojson,0.173,,116.0,",uw61422707,",1.0,ml,,uw,12.0,"11km N of Friday Harbor, Washington",0.31,15,",uw,",reviewed,1537866487460,"M 1.0 - 11km N of Friday Harbor, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537894719510,https://earthquake.usgs.gov/earthquakes/eventpage/uw61422707 +,,60297622,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60297622&format=geojson,0.3089,,120.0,",uu60297622,",2.33,ml,,uu,20.0,"15km ESE of Soda Springs, Idaho",0.25,84,",uu,",reviewed,1537866485940,"M 2.3 - 15km ESE of Soda Springs, Idaho",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537891206240,https://earthquake.usgs.gov/earthquakes/eventpage/uu60297622 +,,37367690,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37367690&format=geojson,0.01317,,30.0,",ci37367690,",1.2,ml,,ci,54.0,"9km NE of Aguanga, CA",0.22,22,",ci,",reviewed,1537866345930,"M 1.2 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537894048900,https://earthquake.usgs.gov/earthquakes/eventpage/ci37367690 +,,37367682,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37367682&format=geojson,0.003761,,37.0,",ci37367682,",0.95,ml,,ci,41.0,"10km NE of Aguanga, CA",0.19,14,",ci,",reviewed,1537866298370,"M 1.0 - 10km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537894113470,https://earthquake.usgs.gov/earthquakes/eventpage/ci37367682 +,,37367666,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37367666&format=geojson,0.01186,,29.0,",ci37367666,",1.2,ml,,ci,56.0,"9km NE of Aguanga, CA",0.21,22,",ci,",reviewed,1537866025010,"M 1.2 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537894171330,https://earthquake.usgs.gov/earthquakes/eventpage/ci37367666 +,,20262820,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20262820&format=geojson,,,,",ak20262820,",1.6,ml,,ak,,"92km NW of Arctic Village, Alaska",0.83,39,",ak,",reviewed,1537865817302,"M 1.6 - 92km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675576661,https://earthquake.usgs.gov/earthquakes/eventpage/ak20262820 +,,1000h548,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h548&format=geojson,1.509,,90.0,",us1000h548,",4.0,mb,,us,,"89km N of Mbarungkeli, Indonesia",0.95,246,",us,",reviewed,1537865779570,"M 4.0 - 89km N of Mbarungkeli, Indonesia",0,earthquake,",geoserve,origin,phase-data,",480.0,1538894021040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h548 +,3.4,37367658,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37367658&format=geojson,0.01122,6.0,27.0,",ci37367658,",2.73,ml,,ci,111.0,"8km NE of Aguanga, CA",0.22,117,",ci,",reviewed,1537865658980,"M 2.7 - 8km NE of Aguanga, CA",0,earthquake,",dyfi,focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538250041455,https://earthquake.usgs.gov/earthquakes/eventpage/ci37367658 +,,2000hjmx,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hjmx&format=geojson,5.191,,82.0,",us2000hjmx,",5.1,mb,,us,,"286km SSW of Severo-Kuril'sk, Russia",1.09,400,",us,",reviewed,1537865620080,"M 5.1 - 286km SSW of Severo-Kuril'sk, Russia",0,earthquake,",geoserve,origin,phase-data,",600.0,1538893725040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hjmx +,,37367650,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37367650&format=geojson,0.006001,,53.0,",ci37367650,",0.15,ml,,ci,17.0,"10km NE of Aguanga, CA",0.1,0,",ci,",reviewed,1537865610840,"M 0.2 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538098809917,https://earthquake.usgs.gov/earthquakes/eventpage/ci37367650 +,,20262815,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20262815&format=geojson,,,,",ak20262815,us2000hjmr,",2.3,ml,,ak,,"117km WNW of Arctic Village, Alaska",0.82,81,",ak,us,",reviewed,1537865559994,"M 2.3 - 117km WNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538893467040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20262815 +,,37367642,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37367642&format=geojson,0.01334,,60.0,",ci37367642,",0.24,ml,,ci,17.0,"10km NE of Aguanga, CA",0.23,1,",ci,",reviewed,1537865555620,"M 0.2 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537894049165,https://earthquake.usgs.gov/earthquakes/eventpage/ci37367642 +,,20262814,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20262814&format=geojson,,,,",ak20262814,",1.8,ml,,ak,,"78km SSW of Kaktovik, Alaska",0.48,50,",ak,",reviewed,1537865500304,"M 1.8 - 78km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675575635,https://earthquake.usgs.gov/earthquakes/eventpage/ak20262814 +,,37367634,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37367634&format=geojson,0.004318,,70.0,",ci37367634,",0.09,ml,,ci,21.0,"10km NE of Aguanga, CA",0.11,0,",ci,",reviewed,1537865435250,"M 0.1 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537912755798,https://earthquake.usgs.gov/earthquakes/eventpage/ci37367634 +,,37367626,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37367626&format=geojson,0.0152,,31.0,",ci37367626,",1.64,ml,,ci,71.0,"9km NE of Aguanga, CA",0.22,41,",ci,",reviewed,1537865308150,"M 1.6 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537894176800,https://earthquake.usgs.gov/earthquakes/eventpage/ci37367626 +,,37367618,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37367618&format=geojson,0.01098,,70.0,",ci37367618,",0.14,ml,,ci,13.0,"11km NE of Aguanga, CA",0.14,0,",ci,",automatic,1537865281650,"M 0.1 - 11km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537912447766,https://earthquake.usgs.gov/earthquakes/eventpage/ci37367618 +,,61785766,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61785766&format=geojson,0.08716,,109.0,",av61785766,",0.22,ml,,av,8.0,"78km SE of King Salmon, Alaska",0.13,1,",av,",reviewed,1537865235790,"M 0.2 - 78km SE of King Salmon, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538001157550,https://earthquake.usgs.gov/earthquakes/eventpage/av61785766 +,,37367610,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37367610&format=geojson,0.02421,,63.0,",ci37367610,",0.19,ml,,ci,21.0,"3km E of Anza, CA",0.14,1,",ci,",reviewed,1537865074820,"M 0.2 - 3km E of Anza, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537894077634,https://earthquake.usgs.gov/earthquakes/eventpage/ci37367610 +,2.2,61422702,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61422702&format=geojson,0.1703,1.0,88.0,",uw61422702,",1.64,ml,,uw,22.0,"11km NW of Friday Harbor, Washington",0.21,42,",uw,",reviewed,1537864888550,"M 1.6 - 11km NW of Friday Harbor, Washington",0,earthquake,",dyfi,geoserve,origin,phase-data,",-480.0,1537986807232,https://earthquake.usgs.gov/earthquakes/eventpage/uw61422702 +,,61422697,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61422697&format=geojson,0.1692,,54.0,",uw61422697,",0.98,ml,,uw,16.0,"10km NW of Friday Harbor, Washington",0.31,15,",uw,",reviewed,1537864838450,"M 1.0 - 10km NW of Friday Harbor, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537988254540,https://earthquake.usgs.gov/earthquakes/eventpage/uw61422697 +,,20262812,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20262812&format=geojson,,,,",ak20262812,",1.1,ml,,ak,,"123km WNW of Arctic Village, Alaska",0.77,19,",ak,",reviewed,1537864760242,"M 1.1 - 123km WNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675575104,https://earthquake.usgs.gov/earthquakes/eventpage/ak20262812 +,,20271042,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271042&format=geojson,,,,",ak20271042,",1.3,ml,,ak,,"25km N of Nikiski, Alaska",0.21,26,",ak,",reviewed,1537864504333,"M 1.3 - 25km N of Nikiski, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675574627,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271042 +,,00658096,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658096&format=geojson,0.368,,227.27,",nn00658096,",-0.4,ml,,nn,5.0,"40km SSE of Goldfield, Nevada",0.1092,0,",nn,",reviewed,1537864237070,"M -0.4 - 40km SSE of Goldfield, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537927549546,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658096 +,,70611577,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70611577&format=geojson,0.03082,,80.0,",hv70611577,",2.0,ml,,hv,22.0,"25km E of Honaunau-Napoopoo, Hawaii",0.1,62,",hv,",reviewed,1537864010890,"M 2.0 - 25km E of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537927466580,https://earthquake.usgs.gov/earthquakes/eventpage/hv70611577 +,,20262810,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20262810&format=geojson,,,,",ak20262810,",2.0,ml,,ak,,"81km SW of Kaktovik, Alaska",0.4,62,",ak,",reviewed,1537863901622,"M 2.0 - 81km SW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675574113,https://earthquake.usgs.gov/earthquakes/eventpage/ak20262810 +,,2000hjmf,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hjmf&format=geojson,1.691,,96.0,",us2000hjmf,",4.3,mb,,us,,"121km SSW of Uyuni, Bolivia",1.18,284,",us,",reviewed,1537863658860,"M 4.3 - 121km SSW of Uyuni, Bolivia",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538893306040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hjmf +,,20262808,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20262808&format=geojson,,,,",ak20262808,",1.5,ml,,ak,,"78km SSW of Kaktovik, Alaska",0.54,35,",ak,",reviewed,1537863497533,"M 1.5 - 78km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675573605,https://earthquake.usgs.gov/earthquakes/eventpage/ak20262808 +,,00658094,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658094&format=geojson,0.117,,204.96,",nn00658094,",0.3,ml,,nn,4.0,"35km SE of Hawthorne, Nevada",0.0516,1,",nn,",reviewed,1537863192571,"M 0.3 - 35km SE of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537927548151,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658094 +,,20262807,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20262807&format=geojson,,,,",ak20262807,",1.1,ml,,ak,,"115km WNW of Arctic Village, Alaska",0.8,19,",ak,",reviewed,1537862795083,"M 1.1 - 115km WNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675573092,https://earthquake.usgs.gov/earthquakes/eventpage/ak20262807 +,,37367594,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37367594&format=geojson,0.005735,,47.0,",ci37367594,",0.11,ml,,ci,18.0,"10km NE of Aguanga, CA",0.11,0,",ci,",reviewed,1537862715930,"M 0.1 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537912003537,https://earthquake.usgs.gov/earthquakes/eventpage/ci37367594 +,,1000h765,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h765&format=geojson,2.129,,264.0,",ak20271038,us1000h765,",2.7,ml,,us,,"230km SE of Kodiak, Alaska",0.66,112,",ak,us,",reviewed,1537862609730,"M 2.7 - 230km SE of Kodiak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538891857040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h765 +,,20262805,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20262805&format=geojson,,,,",ak20262805,",1.3,ml,,ak,,"162km E of Chitina, Alaska",0.52,26,",ak,",reviewed,1537862432939,"M 1.3 - 162km E of Chitina, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675572071,https://earthquake.usgs.gov/earthquakes/eventpage/ak20262805 +,,00658092,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658092&format=geojson,0.138,,146.71,",nn00658092,",0.8,ml,,nn,10.0,"29km WSW of Hawthorne, Nevada",0.1685,10,",nn,",reviewed,1537862428453,"M 0.8 - 29km WSW of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537927546781,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658092 +,,2018268003,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018268003&format=geojson,0.9195,,315.0,",pr2018268003,us2000hjnx,",2.74,md,,pr,14.0,"65km N of Culebra, Puerto Rico",0.32,116,",pr,us,",reviewed,1537862390820,"M 2.7 - 65km N of Culebra, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538891701040,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018268003 +,,20262802,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20262802&format=geojson,,,,",ak20262802,",1.9,ml,,ak,,"122km WNW of Arctic Village, Alaska",0.69,56,",ak,",reviewed,1537861718943,"M 1.9 - 122km WNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675571558,https://earthquake.usgs.gov/earthquakes/eventpage/ak20262802 +,,70804659,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804659&format=geojson,0.06758,,142.0,",av70804659,",-0.69,ml,,av,5.0,"22km W of Unalaska, Alaska",0.16,0,",av,",reviewed,1537861709550,"M -0.7 - 22km W of Unalaska, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538000930040,https://earthquake.usgs.gov/earthquakes/eventpage/av70804659 +,,20262795,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20262795&format=geojson,,,,",ak20262795,us2000hjma,",3.2,ml,,ak,,"119km WNW of Arctic Village, Alaska",0.63,158,",ak,us,",reviewed,1537861433517,"M 3.2 - 119km WNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538891034040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20262795 +,,20262792,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20262792&format=geojson,,,,",ak20262792,",1.8,ml,,ak,,"79km SSW of Kaktovik, Alaska",0.61,50,",ak,",reviewed,1537861333548,"M 1.8 - 79km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675570325,https://earthquake.usgs.gov/earthquakes/eventpage/ak20262792 +,,73089356,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73089356&format=geojson,0.0221,,66.0,",nc73089356,",0.51,md,,nc,18.0,"1km E of Mammoth Lakes, CA",0.05,4,",nc,",reviewed,1537860942720,"M 0.5 - 1km E of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537898463426,https://earthquake.usgs.gov/earthquakes/eventpage/nc73089356 +,,60297597,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60297597&format=geojson,0.375,,147.0,",uu60297597,",1.35,ml,,uu,8.0,"2km W of Montpelier, Idaho",0.21,28,",uu,",reviewed,1537860802740,"M 1.4 - 2km W of Montpelier, Idaho",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537906413470,https://earthquake.usgs.gov/earthquakes/eventpage/uu60297597 +,,20262789,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20262789&format=geojson,,,,",ak20262789,",2.1,ml,,ak,,"78km SSW of Kaktovik, Alaska",0.48,68,",ak,",reviewed,1537860424617,"M 2.1 - 78km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675569701,https://earthquake.usgs.gov/earthquakes/eventpage/ak20262789 +,,73089336,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73089336&format=geojson,0.004615,,40.0,",nc73089336,",1.21,md,,nc,40.0,"7km NW of The Geysers, CA",0.05,23,",nc,",reviewed,1537860350970,"M 1.2 - 7km NW of The Geysers, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537927622690,https://earthquake.usgs.gov/earthquakes/eventpage/nc73089336 +,,00658010,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658010&format=geojson,0.329,,111.39,",nn00658010,",1.2,ml,,nn,15.0,"78km NNW of Alamo, Nevada",0.1536,22,",nn,",reviewed,1537860121635,"M 1.2 - 78km NNW of Alamo, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537927497973,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658010 +,,70804654,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804654&format=geojson,0.189,,300.0,",av70804654,",0.69,ml,,av,8.0,"35km SW of Unalaska, Alaska",0.22,7,",av,",reviewed,1537860013000,"M 0.7 - 35km SW of Unalaska, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538000802540,https://earthquake.usgs.gov/earthquakes/eventpage/av70804654 +,,37367586,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37367586&format=geojson,0.005891,,40.0,",ci37367586,",0.69,ml,,ci,31.0,"10km NE of Aguanga, CA",0.12,7,",ci,",reviewed,1537859875130,"M 0.7 - 10km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537894181570,https://earthquake.usgs.gov/earthquakes/eventpage/ci37367586 +,,37367578,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37367578&format=geojson,0.02645,,46.0,",ci37367578,",0.42,ml,,ci,22.0,"9km NE of Aguanga, CA",0.15,3,",ci,",reviewed,1537859756810,"M 0.4 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537894080070,https://earthquake.usgs.gov/earthquakes/eventpage/ci37367578 +,,70804649,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804649&format=geojson,0.04017,,175.0,",av70804649,",0.11,ml,,av,5.0,"49km NNE of Chitina, Alaska",0.1,0,",av,",reviewed,1537859312890,"M 0.1 - 49km NNE of Chitina, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538000639220,https://earthquake.usgs.gov/earthquakes/eventpage/av70804649 +,,70611447,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70611447&format=geojson,0.1085,,144.0,",hv70611447,",1.86,md,,hv,41.0,"2km WSW of Pahala, Hawaii",0.12,53,",hv,",automatic,1537859220230,"M 1.9 - 2km WSW of Pahala, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537859414780,https://earthquake.usgs.gov/earthquakes/eventpage/hv70611447 +,,37367562,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37367562&format=geojson,0.1504,,92.0,",ci37367562,",0.6,ml,,ci,22.0,"23km SW of Ocotillo Wells, CA",0.16,6,",ci,",reviewed,1537858837030,"M 0.6 - 23km SW of Ocotillo Wells, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538005539036,https://earthquake.usgs.gov/earthquakes/eventpage/ci37367562 +,,20262788,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20262788&format=geojson,,,,",ak20262788,",1.1,ml,,ak,,"93km NNW of Arctic Village, Alaska",0.83,19,",ak,",reviewed,1537858709269,"M 1.1 - 93km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675569117,https://earthquake.usgs.gov/earthquakes/eventpage/ak20262788 +,,00658003,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658003&format=geojson,0.143,,106.69,",nn00658003,",1.2,ml,,nn,43.0,"35km SSE of Goldfield, Nevada",0.1975,22,",nn,",reviewed,1537858331495,"M 1.2 - 35km SSE of Goldfield, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537927495762,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658003 +,,70804639,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804639&format=geojson,0.1844,,305.0,",av70804639,",0.22,ml,,av,6.0,"35km SW of Unalaska, Alaska",0.13,1,",av,",reviewed,1537858257670,"M 0.2 - 35km SW of Unalaska, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538000063400,https://earthquake.usgs.gov/earthquakes/eventpage/av70804639 +,,20262786,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20262786&format=geojson,,,,",ak20262786,",2.8,ml,,ak,,"246km ESE of Kodiak, Alaska",0.45,121,",ak,",reviewed,1537858193740,"M 2.8 - 246km ESE of Kodiak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538675568618,https://earthquake.usgs.gov/earthquakes/eventpage/ak20262786 +,,70804634,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804634&format=geojson,0.02659,,119.0,",av70804634,",-0.74,ml,,av,5.0,"43km ENE of Adak, Alaska",0.12,0,",av,",reviewed,1537858125340,"M -0.7 - 43km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537999584130,https://earthquake.usgs.gov/earthquakes/eventpage/av70804634 +,,20262784,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20262784&format=geojson,,,,",ak20262784,",1.7,ml,,ak,,"77km SSW of Kaktovik, Alaska",0.5,44,",ak,",reviewed,1537858089346,"M 1.7 - 77km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675568109,https://earthquake.usgs.gov/earthquakes/eventpage/ak20262784 +,,61785706,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61785706&format=geojson,0.03,,124.0,",av61785706,",0.32,ml,,av,5.0,"43km ENE of Adak, Alaska",0.09,2,",av,",reviewed,1537858059650,"M 0.3 - 43km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537999393920,https://earthquake.usgs.gov/earthquakes/eventpage/av61785706 +,,70804624,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804624&format=geojson,0.03068,,127.0,",av70804624,",0.51,ml,,av,5.0,"43km ENE of Adak, Alaska",0.09,4,",av,",reviewed,1537857998980,"M 0.5 - 43km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537999295210,https://earthquake.usgs.gov/earthquakes/eventpage/av70804624 +,,37367554,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37367554&format=geojson,0.01987,,32.0,",ci37367554,",0.54,ml,,ci,31.0,"2km N of Lake Henshaw, CA",0.14,4,",ci,",reviewed,1537857987140,"M 0.5 - 2km N of Lake Henshaw, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537911844250,https://earthquake.usgs.gov/earthquakes/eventpage/ci37367554 +,,61785701,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61785701&format=geojson,0.0312,,126.0,",av61785701,",0.13,ml,,av,5.0,"43km ENE of Adak, Alaska",0.1,0,",av,",reviewed,1537857980260,"M 0.1 - 43km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537999227170,https://earthquake.usgs.gov/earthquakes/eventpage/av61785701 +,,61785696,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61785696&format=geojson,0.0263,,97.0,",av61785696,",-0.33,ml,,av,5.0,"43km ENE of Adak, Alaska",0.11,0,",av,",reviewed,1537857915640,"M -0.3 - 43km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537999032350,https://earthquake.usgs.gov/earthquakes/eventpage/av61785696 +,,37367538,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37367538&format=geojson,0.02229,,36.0,",ci37367538,",0.8,ml,,ci,38.0,"9km NE of Aguanga, CA",0.17,10,",ci,",reviewed,1537857331580,"M 0.8 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537894247410,https://earthquake.usgs.gov/earthquakes/eventpage/ci37367538 +,,00657995,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657995&format=geojson,0.136,,82.35,",nn00657995,",1.9,ml,,nn,54.0,"35km SSE of Goldfield, Nevada",0.1971,56,",nn,",reviewed,1537857089597,"M 1.9 - 35km SSE of Goldfield, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537927493421,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657995 +,,20262782,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20262782&format=geojson,,,,",ak20262782,",1.3,ml,,ak,,"94km NNW of Arctic Village, Alaska",0.65,26,",ak,",reviewed,1537857069437,"M 1.3 - 94km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675567616,https://earthquake.usgs.gov/earthquakes/eventpage/ak20262782 +,,20271028,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271028&format=geojson,,,,",ak20271028,",1.3,ml,,ak,,"56km WSW of Willow, Alaska",0.25,26,",ak,",reviewed,1537856693767,"M 1.3 - 56km WSW of Willow, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675567117,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271028 +,,20262781,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20262781&format=geojson,,,,",ak20262781,",1.9,ml,,ak,,"43km WSW of Nikolski, Alaska",0.35,56,",ak,",reviewed,1537856559593,"M 1.9 - 43km WSW of Nikolski, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538675566598,https://earthquake.usgs.gov/earthquakes/eventpage/ak20262781 +,,70611382,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70611382&format=geojson,0.009048,,61.0,",hv70611382,",1.82,ml,,hv,32.0,"7km WSW of Volcano, Hawaii",0.14,51,",hv,",automatic,1537856556650,"M 1.8 - 7km WSW of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537856897260,https://earthquake.usgs.gov/earthquakes/eventpage/hv70611382 +,,80311094,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80311094&format=geojson,0.121,,99.0,",mb80311094,",1.43,ml,,mb,12.0,"14km SE of Lincoln, Montana",0.16,31,",mb,",reviewed,1537856547070,"M 1.4 - 14km SE of Lincoln, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537884272570,https://earthquake.usgs.gov/earthquakes/eventpage/mb80311094 +,,20262777,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20262777&format=geojson,,,,",ak20262777,",1.8,ml,,ak,,"54km W of Big Lake, Alaska",0.29,50,",ak,",reviewed,1537855607012,"M 1.8 - 54km W of Big Lake, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675565949,https://earthquake.usgs.gov/earthquakes/eventpage/ak20262777 +,,20262776,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20262776&format=geojson,,,,",ak20262776,",0.9,ml,,ak,,"62km NW of Healy, Alaska",0.84,12,",ak,",reviewed,1537855542326,"M 0.9 - 62km NW of Healy, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675565436,https://earthquake.usgs.gov/earthquakes/eventpage/ak20262776 +,,70804644,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804644&format=geojson,0.02504,,216.0,",av70804644,",-0.08,ml,,av,6.0,"94km SE of King Salmon, Alaska",0.08,0,",av,",reviewed,1537855280860,"M -0.1 - 94km SE of King Salmon, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538000441690,https://earthquake.usgs.gov/earthquakes/eventpage/av70804644 +,,20262773,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20262773&format=geojson,,,,",ak20262773,",2.0,ml,,ak,,"76km SSW of Kaktovik, Alaska",0.68,62,",ak,",reviewed,1537855156223,"M 2.0 - 76km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675564899,https://earthquake.usgs.gov/earthquakes/eventpage/ak20262773 +,3.1,70611357,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70611357&format=geojson,0.4336,1.0,285.0,",hv70611357,",2.32,md,,hv,28.0,"54km SW of Captain Cook, Hawaii",0.15,83,",hv,",reviewed,1537855129870,"M 2.3 - 54km SW of Captain Cook, Hawaii",0,earthquake,",dyfi,geoserve,origin,phase-data,",-600.0,1537899832521,https://earthquake.usgs.gov/earthquakes/eventpage/hv70611357 +,,20262770,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20262770&format=geojson,,,,",ak20262770,",1.8,ml,,ak,,"49km W of Anchor Point, Alaska",0.39,50,",ak,",reviewed,1537855006369,"M 1.8 - 49km W of Anchor Point, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675564318,https://earthquake.usgs.gov/earthquakes/eventpage/ak20262770 +,,20262771,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20262771&format=geojson,,,,",ak20262771,",0.9,ml,,ak,,"97km NW of Arctic Village, Alaska",0.54,12,",ak,",reviewed,1537854825539,"M 0.9 - 97km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675563836,https://earthquake.usgs.gov/earthquakes/eventpage/ak20262771 +,,73089251,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73089251&format=geojson,0.01173,,34.0,",nc73089251,",1.4,md,,nc,42.0,"6km W of Cobb, CA",0.05,30,",nc,",reviewed,1537854410980,"M 1.4 - 6km W of Cobb, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537925882642,https://earthquake.usgs.gov/earthquakes/eventpage/nc73089251 +,,20262768,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20262768&format=geojson,,,,",ak20262768,",0.3,ml,,ak,,"22km NNE of North Nenana, Alaska",0.23,1,",ak,",reviewed,1537854405372,"M 0.3 - 22km NNE of North Nenana, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675563364,https://earthquake.usgs.gov/earthquakes/eventpage/ak20262768 +,,00657994,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657994&format=geojson,0.156,,107.24,",nn00657994,",0.1,ml,,nn,12.0,"39km SSE of Goldfield, Nevada",0.1725,0,",nn,",reviewed,1537854384162,"M 0.1 - 39km SSE of Goldfield, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537927486706,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657994 +,,20262766,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20262766&format=geojson,,,,",ak20262766,",1.7,ml,,ak,,"73km SSW of Kaktovik, Alaska",0.77,44,",ak,",reviewed,1537854096434,"M 1.7 - 73km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675562828,https://earthquake.usgs.gov/earthquakes/eventpage/ak20262766 +,,73089246,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73089246&format=geojson,0.01249,,147.0,",nc73089246,",0.72,md,,nc,11.0,"11km ENE of Cloverdale, CA",0.06,8,",nc,",automatic,1537853787660,"M 0.7 - 11km ENE of Cloverdale, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537854665034,https://earthquake.usgs.gov/earthquakes/eventpage/nc73089246 +,,70804609,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804609&format=geojson,0.03064,,250.0,",av70804609,",-0.31,ml,,av,6.0,"102km ESE of King Salmon, Alaska",0.09,0,",av,",reviewed,1537853557140,"M -0.3 - 102km ESE of King Salmon, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537998486390,https://earthquake.usgs.gov/earthquakes/eventpage/av70804609 +,,70804614,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804614&format=geojson,0.02784,,200.0,",av70804614,",-0.54,ml,,av,4.0,"42km ENE of Adak, Alaska",0.07,0,",av,",reviewed,1537852890190,"M -0.5 - 42km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537998618510,https://earthquake.usgs.gov/earthquakes/eventpage/av70804614 +,,00658072,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658072&format=geojson,0.174,,199.81,",nn00658072,",0.4,ml,,nn,8.0,"3km NE of Big Pine, California",0.1697,2,",nn,",reviewed,1537852824682,"M 0.4 - 3km NE of Big Pine, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537927528935,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658072 +,,00658069,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658069&format=geojson,0.207,,257.71,",nn00658069,",-0.3,ml,,nn,3.0,"40km WNW of Gabbs, Nevada",0.1781,0,",nn,",reviewed,1537852690127,"M -0.3 - 40km WNW of Gabbs, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537927525901,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658069 +,,20262764,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20262764&format=geojson,,,,",ak20262764,",1.3,ml,,ak,,"97km NW of Arctic Village, Alaska",0.64,26,",ak,",reviewed,1537852223112,"M 1.3 - 97km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675562321,https://earthquake.usgs.gov/earthquakes/eventpage/ak20262764 +,,37367522,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37367522&format=geojson,0.1123,,76.0,",ci37367522,",0.72,ml,,ci,36.0,"10km ENE of Ocotillo Wells, CA",0.25,8,",ci,",reviewed,1537851807310,"M 0.7 - 10km ENE of Ocotillo Wells, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537894129370,https://earthquake.usgs.gov/earthquakes/eventpage/ci37367522 +,,37367514,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37367514&format=geojson,0.1083,,132.0,",ci37367514,",2.44,ml,,ci,27.0,"31km E of Primo Tapia, B.C., MX",0.19,92,",ci,",reviewed,1537851476760,"M 2.4 - 31km E of Primo Tapia, B.C., MX",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537897295593,https://earthquake.usgs.gov/earthquakes/eventpage/ci37367514 +,,20262762,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20262762&format=geojson,,,,",ak20262762,",1.4,ml,,ak,,"137km NNW of Unalakleet, Alaska",0.64,30,",ak,",reviewed,1537850875425,"M 1.4 - 137km NNW of Unalakleet, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675561808,https://earthquake.usgs.gov/earthquakes/eventpage/ak20262762 +,,37367506,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37367506&format=geojson,0.005132,,48.0,",ci37367506,",0.19,ml,,ci,23.0,"10km NE of Aguanga, CA",0.12,1,",ci,",reviewed,1537850814560,"M 0.2 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537895086606,https://earthquake.usgs.gov/earthquakes/eventpage/ci37367506 +,,73089236,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73089236&format=geojson,0.007529,,82.0,",nc73089236,",0.88,md,,nc,10.0,"1km ENE of The Geysers, CA",0.03,12,",nc,",automatic,1537850406160,"M 0.9 - 1km ENE of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537851302722,https://earthquake.usgs.gov/earthquakes/eventpage/nc73089236 +,,20262760,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20262760&format=geojson,,,,",ak20262760,",0.8,ml,,ak,,"96km NNW of Nikiski, Alaska",0.76,10,",ak,",automatic,1537850310889,"M 0.8 - 96km NNW of Nikiski, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537850528965,https://earthquake.usgs.gov/earthquakes/eventpage/ak20262760 +,,20262758,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20262758&format=geojson,,,,",ak20262758,",0.6,ml,,ak,,"94km NW of Nikiski, Alaska",0.28,6,",ak,",reviewed,1537850196363,"M 0.6 - 94km NW of Nikiski, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675561302,https://earthquake.usgs.gov/earthquakes/eventpage/ak20262758 +,,37367498,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37367498&format=geojson,0.06189,,40.0,",ci37367498,",0.57,ml,,ci,29.0,"6km WNW of Lake Henshaw, CA",0.13,5,",ci,",reviewed,1537850143740,"M 0.6 - 6km WNW of Lake Henshaw, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537911545405,https://earthquake.usgs.gov/earthquakes/eventpage/ci37367498 +,,61785596,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61785596&format=geojson,0.02808,,124.0,",av61785596,",-0.22,ml,,av,5.0,"43km ENE of Adak, Alaska",0.07,0,",av,",reviewed,1537849933470,"M -0.2 - 43km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537998132880,https://earthquake.usgs.gov/earthquakes/eventpage/av61785596 +,,37367490,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37367490&format=geojson,0.03205,,29.0,",ci37367490,",1.73,ml,,ci,61.0,"6km NE of Anza, CA",0.17,46,",ci,",reviewed,1537849503210,"M 1.7 - 6km NE of Anza, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537894251140,https://earthquake.usgs.gov/earthquakes/eventpage/ci37367490 +,,20262756,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20262756&format=geojson,,,,",ak20262756,",1.3,ml,,ak,,"42km SSW of Salcha, Alaska",0.56,26,",ak,",reviewed,1537849413924,"M 1.3 - 42km SSW of Salcha, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675560693,https://earthquake.usgs.gov/earthquakes/eventpage/ak20262756 +,,37367482,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37367482&format=geojson,0.02635,,54.0,",ci37367482,",0.81,ml,,ci,32.0,"6km NE of Anza, CA",0.12,10,",ci,",reviewed,1537849332110,"M 0.8 - 6km NE of Anza, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537894253810,https://earthquake.usgs.gov/earthquakes/eventpage/ci37367482 +,2.2,2000hjxm,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hjxm&format=geojson,2.879,1.0,142.0,",us2000hjxm,",4.5,mb,,us,,"18km NE of General Luna, Philippines",1.18,312,",us,",reviewed,1537848723320,"M 4.5 - 18km NE of General Luna, Philippines",0,earthquake,",dyfi,geoserve,origin,phase-data,",480.0,1537910230931,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hjxm +,,20262755,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20262755&format=geojson,,,,",ak20262755,",1.6,ml,,ak,,"41km SE of Tanaga Volcano, Alaska",0.5,39,",ak,",reviewed,1537848535473,"M 1.6 - 41km SE of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538675560209,https://earthquake.usgs.gov/earthquakes/eventpage/ak20262755 +,,20262754,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20262754&format=geojson,,,,",ak20262754,",1.7,ml,,ak,,"59km SSE of Whittier, Alaska",0.7,44,",ak,",reviewed,1537848434843,"M 1.7 - 59km SSE of Whittier, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675559663,https://earthquake.usgs.gov/earthquakes/eventpage/ak20262754 +,,73089221,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73089221&format=geojson,0.01224,,90.0,",nc73089221,",0.55,md,,nc,9.0,"6km W of Cobb, CA",0.02,5,",nc,",automatic,1537847872960,"M 0.6 - 6km W of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537848782495,https://earthquake.usgs.gov/earthquakes/eventpage/nc73089221 +,,20262750,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20262750&format=geojson,,,,",ak20262750,",2.8,ml,,ak,,"75km E of Akutan, Alaska",0.4,121,",ak,",reviewed,1537847326728,"M 2.8 - 75km E of Akutan, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538675559140,https://earthquake.usgs.gov/earthquakes/eventpage/ak20262750 +,4.3,2000hjlb,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hjlb&format=geojson,0.982,3.0,133.0,",us2000hjlb,",4.3,mb,,us,,"26km SSW of Barpeta, India",0.81,286,",us,",reviewed,1537847250270,"M 4.3 - 26km SSW of Barpeta, India",0,earthquake,",dyfi,geoserve,origin,phase-data,",330.0,1538158467601,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hjlb +,,20271012,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271012&format=geojson,,,,",ak20271012,",1.6,ml,,ak,,"37km E of Amatignak Island, Alaska",0.52,39,",ak,",reviewed,1537846957380,"M 1.6 - 37km E of Amatignak Island, Alaska",0,earthquake,",geoserve,origin,phase-data,",-720.0,1538675558596,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271012 +,,70804604,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804604&format=geojson,0.021,,102.0,",av70804604,",-0.57,ml,,av,8.0,"17km W of Akutan, Alaska",0.11,0,",av,",reviewed,1537846932780,"M -0.6 - 17km W of Akutan, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537997974540,https://earthquake.usgs.gov/earthquakes/eventpage/av70804604 +,,00658067,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658067&format=geojson,0.266,,163.62,",nn00658067,",0.3,ml,,nn,8.0,"55km SE of Warm Springs, Nevada",0.23,1,",nn,",reviewed,1537846911254,"M 0.3 - 55km SE of Warm Springs, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537927524618,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658067 +,,20262746,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20262746&format=geojson,,,,",ak20262746,",1.8,ml,,ak,,"79km SSW of Kaktovik, Alaska",0.56,50,",ak,",reviewed,1537846801493,"M 1.8 - 79km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675558094,https://earthquake.usgs.gov/earthquakes/eventpage/ak20262746 +,,70804599,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804599&format=geojson,0.02363,,104.0,",av70804599,",-0.72,ml,,av,7.0,"16km W of Akutan, Alaska",0.2,0,",av,",reviewed,1537846778100,"M -0.7 - 16km W of Akutan, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537997777080,https://earthquake.usgs.gov/earthquakes/eventpage/av70804599 +,,70804594,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804594&format=geojson,0.01558,,139.0,",av70804594,",-1.26,ml,,av,5.0,"17km W of Akutan, Alaska",0.09,0,",av,",reviewed,1537846638890,"M -1.3 - 17km W of Akutan, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537997519390,https://earthquake.usgs.gov/earthquakes/eventpage/av70804594 +,,2018268002,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018268002&format=geojson,0.3065,,262.0,",pr2018268002,",2.46,md,,pr,9.0,"23km NNW of Hatillo, Puerto Rico",0.2,93,",pr,",reviewed,1537846411620,"M 2.5 - 23km NNW of Hatillo, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1537862658893,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018268002 +,2.7,2000hjkw,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hjkw&format=geojson,1.426,1.0,135.0,",us2000hjkw,",4.8,mb,,us,,"58km SE of Ofunato, Japan",0.96,355,",us,",reviewed,1537846261100,"M 4.8 - 58km SE of Ofunato, Japan",0,earthquake,",dyfi,geoserve,origin,phase-data,",540.0,1537908537284,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hjkw +,,20262741,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20262741&format=geojson,,,,",ak20262741,",1.2,ml,,ak,,"24km S of Tanaga Volcano, Alaska",0.11,22,",ak,",reviewed,1537846258115,"M 1.2 - 24km S of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538675557592,https://earthquake.usgs.gov/earthquakes/eventpage/ak20262741 +,,20262740,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20262740&format=geojson,,,,",ak20262740,",1.3,ml,,ak,,"93km NNW of Nikiski, Alaska",0.45,26,",ak,",reviewed,1537846237461,"M 1.3 - 93km NNW of Nikiski, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675557052,https://earthquake.usgs.gov/earthquakes/eventpage/ak20262740 +,,20262738,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20262738&format=geojson,,,,",ak20262738,",1.7,ml,,ak,,"78km SSW of Kaktovik, Alaska",0.34,44,",ak,",reviewed,1537846134263,"M 1.7 - 78km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675556503,https://earthquake.usgs.gov/earthquakes/eventpage/ak20262738 +,,00658065,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658065&format=geojson,0.38,,353.89,",nn00658065,",0.6,ml,,nn,4.0,"70km SW of Alamo, Nevada",0.179,6,",nn,",reviewed,1537845607907,"M 0.6 - 70km SW of Alamo, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537927523041,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658065 +,,2018268001,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018268001&format=geojson,0.7916,,252.0,",pr2018268001,",3.14,md,,pr,16.0,"85km NNW of San Antonio, Puerto Rico",0.51,152,",pr,",reviewed,1537845530540,"M 3.1 - 85km NNW of San Antonio, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1537862648589,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018268001 +,,00658058,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658058&format=geojson,0.334,,354.04,",nn00658058,",0.1,ml,,nn,4.0,"69km NNE of Pahrump, Nevada",0.1289,0,",nn,",reviewed,1537845353159,"M 0.1 - 69km NNE of Pahrump, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537927521793,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658058 +,,20271007,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271007&format=geojson,,,,",ak20271007,",1.5,ml,,ak,,"32km SSE of Akutan, Alaska",0.33,35,",ak,",reviewed,1537845331435,"M 1.5 - 32km SSE of Akutan, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538675556010,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271007 +,,73089211,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73089211&format=geojson,0.008627,,56.0,",nc73089211,",0.7,md,,nc,16.0,"2km WSW of Anderson Springs, CA",0.03,8,",nc,",reviewed,1537845169380,"M 0.7 - 2km WSW of Anderson Springs, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537898890590,https://earthquake.usgs.gov/earthquakes/eventpage/nc73089211 +,,37367474,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37367474&format=geojson,0.08036,,43.0,",ci37367474,",0.79,ml,,ci,22.0,"13km S of Joshua Tree, CA",0.22,10,",ci,",reviewed,1537845113070,"M 0.8 - 13km S of Joshua Tree, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537911256120,https://earthquake.usgs.gov/earthquakes/eventpage/ci37367474 +,,20271006,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20271006&format=geojson,,,,",ak20271006,",1.4,ml,,ak,,"24km ENE of Noatak, Alaska",0.35,30,",ak,",reviewed,1537845076475,"M 1.4 - 24km ENE of Noatak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675555477,https://earthquake.usgs.gov/earthquakes/eventpage/ak20271006 +,,60297572,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60297572&format=geojson,0.2201,,110.0,",uu60297572,",1.04,md,,uu,10.0,"3km NNE of Enoch, Utah",0.14,17,",uu,",reviewed,1537844879530,"M 1.0 - 3km NNE of Enoch, Utah",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537911658050,https://earthquake.usgs.gov/earthquakes/eventpage/uu60297572 +,,73089206,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73089206&format=geojson,0.01548,,152.0,",nc73089206,",0.57,md,,nc,7.0,"10km WNW of The Geysers, CA",0.01,5,",nc,",automatic,1537844779530,"M 0.6 - 10km WNW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537846502452,https://earthquake.usgs.gov/earthquakes/eventpage/nc73089206 +,,37367466,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37367466&format=geojson,0.01338,,51.0,",ci37367466,",0.6,ml,,ci,27.0,"9km NE of Aguanga, CA",0.17,6,",ci,",reviewed,1537844456410,"M 0.6 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537894316850,https://earthquake.usgs.gov/earthquakes/eventpage/ci37367466 +,,70611077,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70611077&format=geojson,0.02915,,143.0,",hv70611077,",1.78,md,,hv,35.0,"4km SE of Pahala, Hawaii",0.11,49,",hv,",reviewed,1537843424730,"M 1.8 - 4km SE of Pahala, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537928259050,https://earthquake.usgs.gov/earthquakes/eventpage/hv70611077 +,,73089201,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73089201&format=geojson,0.007495,,259.0,",nc73089201,",0.31,md,,nc,10.0,"8km NE of Mammoth Lakes, CA",0.03,1,",nc,",reviewed,1537843326010,"M 0.3 - 8km NE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537893183925,https://earthquake.usgs.gov/earthquakes/eventpage/nc73089201 +,,2018268000,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018268000&format=geojson,0.2344,,234.0,",pr2018268000,",2.68,md,,pr,20.0,"23km N of Hatillo, Puerto Rico",0.24,110,",pr,",reviewed,1537842469600,"M 2.7 - 23km N of Hatillo, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1537843784205,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018268000 +,2.0,2000hjkn,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hjkn&format=geojson,1.065,4.0,191.0,",us2000hjkn,",4.4,mb,,us,,"7km SSW of Marquelia, Mexico",0.99,299,",us,",reviewed,1537842142490,"M 4.4 - 7km SSW of Marquelia, Mexico",0,earthquake,",dyfi,geoserve,origin,phase-data,",-360.0,1537906661551,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hjkn +,,2000hjkk,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hjkk&format=geojson,3.305,,142.0,",us2000hjkk,",4.8,mb,,us,,"38km NNE of San Isidro, Philippines",0.86,354,",us,",reviewed,1537841795850,"M 4.8 - 38km NNE of San Isidro, Philippines",0,earthquake,",geoserve,origin,phase-data,",480.0,1537842780040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hjkk +,,00657984,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657984&format=geojson,0.162,,109.1,",nn00657984,",0.6,ml,,nn,29.0,"36km SSE of Goldfield, Nevada",0.191,6,",nn,",reviewed,1537841492493,"M 0.6 - 36km SSE of Goldfield, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537927485358,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657984 +,,37367434,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37367434&format=geojson,0.01699,,55.0,",ci37367434,",1.34,ml,,ci,44.0,"2km E of Cabazon, CA",0.2,28,",ci,",reviewed,1537840583390,"M 1.3 - 2km E of Cabazon, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537894322460,https://earthquake.usgs.gov/earthquakes/eventpage/ci37367434 +,,20262734,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20262734&format=geojson,,,,",ak20262734,",2.0,ml,,ak,,"86km SW of Kaktovik, Alaska",0.9,62,",ak,",reviewed,1537840444099,"M 2.0 - 86km SW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675554907,https://earthquake.usgs.gov/earthquakes/eventpage/ak20262734 +,,73089191,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73089191&format=geojson,0.01584,,106.0,",nc73089191,",-0.01,md,,nc,12.0,"3km W of Anderson Springs, CA",0.03,0,",nc,",reviewed,1537839224610,"M -0.0 - 3km W of Anderson Springs, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537856523790,https://earthquake.usgs.gov/earthquakes/eventpage/nc73089191 +,,20262731,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20262731&format=geojson,,,,",ak20262731,",1.9,ml,,ak,,"40km SE of Tanaga Volcano, Alaska",0.42,56,",ak,",reviewed,1537838397393,"M 1.9 - 40km SE of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538675554367,https://earthquake.usgs.gov/earthquakes/eventpage/ak20262731 +,,73089186,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73089186&format=geojson,0.00506,,81.0,",nc73089186,",1.18,md,,nc,18.0,"9km WNW of Cobb, CA",0.03,21,",nc,",automatic,1537837615440,"M 1.2 - 9km WNW of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537838161817,https://earthquake.usgs.gov/earthquakes/eventpage/nc73089186 +,,37367418,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37367418&format=geojson,0.006941,,43.0,",ci37367418,",0.25,ml,,ci,22.0,"10km NE of Aguanga, CA",0.11,1,",ci,",reviewed,1537837118400,"M 0.3 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537844664282,https://earthquake.usgs.gov/earthquakes/eventpage/ci37367418 +,,70804569,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804569&format=geojson,0.005861,,176.0,",av70804569,",-0.02,ml,,av,5.0,"93km SE of King Salmon, Alaska",0.08,0,",av,",reviewed,1537837034760,"M -0.0 - 93km SE of King Salmon, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537995104140,https://earthquake.usgs.gov/earthquakes/eventpage/av70804569 +,,37367410,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37367410&format=geojson,0.004225,,37.0,",ci37367410,",0.56,ml,,ci,29.0,"10km NE of Aguanga, CA",0.12,5,",ci,",reviewed,1537837029290,"M 0.6 - 10km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537839112260,https://earthquake.usgs.gov/earthquakes/eventpage/ci37367410 +,,73089181,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73089181&format=geojson,0.1189,,122.0,",nc73089181,",0.78,md,,nc,20.0,"17km S of Mammoth Lakes, CA",0.03,9,",nc,",reviewed,1537836866970,"M 0.8 - 17km S of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537840740457,https://earthquake.usgs.gov/earthquakes/eventpage/nc73089181 +,,73089176,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73089176&format=geojson,0.1118,,175.0,",nc73089176,",0.82,md,,nc,19.0,"16km S of Mammoth Lakes, CA",0.08,10,",nc,",reviewed,1537836783910,"M 0.8 - 16km S of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537839356185,https://earthquake.usgs.gov/earthquakes/eventpage/nc73089176 +,,37410837,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37410837&format=geojson,0.0121,,108.0,",ci37410837,",0.09,ml,,ci,14.0,"9km NE of Aguanga, CA",0.08,0,",ci,",reviewed,1537836727950,"M 0.1 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537839304607,https://earthquake.usgs.gov/earthquakes/eventpage/ci37410837 +,,37367402,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37367402&format=geojson,0.01349,,97.0,",ci37367402,",0.4,ml,,ci,22.0,"9km NE of Aguanga, CA",0.11,2,",ci,",reviewed,1537836692630,"M 0.4 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537838545862,https://earthquake.usgs.gov/earthquakes/eventpage/ci37367402 +,,20262728,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20262728&format=geojson,,,,",ak20262728,",2.2,ml,,ak,,"78km SSW of Kaktovik, Alaska",0.54,74,",ak,",reviewed,1537836623140,"M 2.2 - 78km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675553761,https://earthquake.usgs.gov/earthquakes/eventpage/ak20262728 +,,20262722,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20262722&format=geojson,,,,",ak20262722,us2000hjkd,",3.3,ml,,ak,,"11km NE of Noatak, Alaska",0.69,168,",ak,us,",reviewed,1537835876458,"M 3.3 - 11km NE of Noatak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675552985,https://earthquake.usgs.gov/earthquakes/eventpage/ak20262722 +,,37367394,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37367394&format=geojson,0.08385,,107.0,",ci37367394,",0.42,ml,,ci,18.0,"9km NE of Aguanga, CA",0.18,3,",ci,",reviewed,1537835735310,"M 0.4 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537894188930,https://earthquake.usgs.gov/earthquakes/eventpage/ci37367394 +,,37367386,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37367386&format=geojson,0.08373,,60.0,",ci37367386,",0.95,ml,,ci,32.0,"8km NNE of Borrego Springs, CA",0.21,14,",ci,",reviewed,1537835424290,"M 1.0 - 8km NNE of Borrego Springs, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537894222031,https://earthquake.usgs.gov/earthquakes/eventpage/ci37367386 +,,60065023,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nm60065023&format=geojson,0.03224,,108.0,",nm60065023,",1.11,md,,nm,9.0,"3km E of Ridgely, Tennessee",0.05,19,",nm,",reviewed,1537835323780,"M 1.1 - 3km E of Ridgely, Tennessee",0,earthquake,",geoserve,origin,phase-data,",-360.0,1537890568840,https://earthquake.usgs.gov/earthquakes/eventpage/nm60065023 +,,00658044,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658044&format=geojson,0.053,,168.86,",nn00658044,",0.1,ml,,nn,7.0,"59km SSW of Goldfield, Nevada",0.1336,0,",nn,",reviewed,1537835286629,"M 0.1 - 59km SSW of Goldfield, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537927512454,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658044 +,,1000h53z,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h53z&format=geojson,3.756,,199.0,",us1000h53z,",4.3,mb,,us,,"286km NNE of Ndoi Island, Fiji",0.65,284,",us,",reviewed,1537835167270,"M 4.3 - 286km NNE of Ndoi Island, Fiji",0,earthquake,",geoserve,origin,phase-data,",-720.0,1539472633040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h53z +,,70610922,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70610922&format=geojson,0.06146,,226.0,",hv70610922,",1.76,md,,hv,22.0,"9km SSW of Leilani Estates, Hawaii",0.31,48,",hv,",automatic,1537835119830,"M 1.8 - 9km SSW of Leilani Estates, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537835313380,https://earthquake.usgs.gov/earthquakes/eventpage/hv70610922 +,,20262721,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20262721&format=geojson,,,,",ak20262721,",1.2,ml,,ak,,"114km NW of Arctic Village, Alaska",0.5,22,",ak,",reviewed,1537834996288,"M 1.2 - 114km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675552436,https://earthquake.usgs.gov/earthquakes/eventpage/ak20262721 +,,20262720,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20262720&format=geojson,,,,",ak20262720,",1.8,ml,,ak,,"77km SSW of Kaktovik, Alaska",0.65,50,",ak,",reviewed,1537834764379,"M 1.8 - 77km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675551922,https://earthquake.usgs.gov/earthquakes/eventpage/ak20262720 +,,20262716,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20262716&format=geojson,,,,",ak20262716,us2000hjka,",2.3,ml,,ak,,"25km ENE of Noatak, Alaska",0.64,81,",ak,us,",reviewed,1537834582917,"M 2.3 - 25km ENE of Noatak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675551331,https://earthquake.usgs.gov/earthquakes/eventpage/ak20262716 +,,20262714,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20262714&format=geojson,,,,",ak20262714,",1.7,ml,,ak,,"22km ENE of Noatak, Alaska",0.63,44,",ak,",reviewed,1537833970144,"M 1.7 - 22km ENE of Noatak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538675550783,https://earthquake.usgs.gov/earthquakes/eventpage/ak20262714 +,,00658043,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00658043&format=geojson,0.2,,189.14,",nn00658043,",-0.2,ml,,nn,9.0,"57km NNE of Pahrump, Nevada",0.2217,0,",nn,",reviewed,1537833687027,"M -0.2 - 57km NNE of Pahrump, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537927510915,https://earthquake.usgs.gov/earthquakes/eventpage/nn00658043 +,,37367370,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37367370&format=geojson,0.01624,,107.0,",ci37367370,",0.21,ml,,ci,19.0,"9km NE of Aguanga, CA",0.1,1,",ci,",reviewed,1537833437780,"M 0.2 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537836304398,https://earthquake.usgs.gov/earthquakes/eventpage/ci37367370 +,,73089171,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73089171&format=geojson,0.03476,,118.0,",nc73089171,",1.28,md,,nc,27.0,"21km NW of Parkfield, CA",0.05,25,",nc,",reviewed,1537833360120,"M 1.3 - 21km NW of Parkfield, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537850343638,https://earthquake.usgs.gov/earthquakes/eventpage/nc73089171 +,,37367362,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37367362&format=geojson,0.03161,,65.0,",ci37367362,",0.28,ml,,ci,21.0,"9km ENE of Aguanga, CA",0.14,1,",ci,",reviewed,1537833354690,"M 0.3 - 9km ENE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537836045888,https://earthquake.usgs.gov/earthquakes/eventpage/ci37367362 +,,37367346,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37367346&format=geojson,0.007552,,58.0,",ci37367346,",0.27,ml,,ci,24.0,"10km NE of Aguanga, CA",0.13,1,",ci,",reviewed,1537833307310,"M 0.3 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537911012038,https://earthquake.usgs.gov/earthquakes/eventpage/ci37367346 +,,20269950,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20269950&format=geojson,,,,",ak20269950,",1.9,ml,,ak,,"15km NNE of Akutan, Alaska",0.15,56,",ak,",reviewed,1537833242550,"M 1.9 - 15km NNE of Akutan, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538681075627,https://earthquake.usgs.gov/earthquakes/eventpage/ak20269950 +,,00657982,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657982&format=geojson,0.161,,241.2,",nn00657982,",-0.4,ml,,nn,6.0,"29km NW of Beatty, Nevada",0.1506,0,",nn,",reviewed,1537833128252,"M -0.4 - 29km NW of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537836402675,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657982 +,,2000hjk4,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hjk4&format=geojson,7.349,,77.0,",us2000hjk4,",4.8,mb,,us,,South of Tonga,1.15,354,",us,",reviewed,1537833029720,M 4.8 - South of Tonga,0,earthquake,",geoserve,origin,phase-data,",-720.0,1537834646040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hjk4 +,,20262702,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20262702&format=geojson,,,,",ak20262702,",2.6,ml,,ak,,"24km SSW of Valdez, Alaska",0.66,104,",ak,",reviewed,1537832250617,"M 2.6 - 24km SSW of Valdez, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538681075002,https://earthquake.usgs.gov/earthquakes/eventpage/ak20262702 +,,20262691,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20262691&format=geojson,,,,",ak20262691,",2.5,ml,,ak,,"75km NNW of Talkeetna, Alaska",0.48,96,",ak,",reviewed,1537832019308,"M 2.5 - 75km NNW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538681074259,https://earthquake.usgs.gov/earthquakes/eventpage/ak20262691 +,,37367330,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37367330&format=geojson,0.1089,,60.0,",ci37367330,",1.77,ml,,ci,22.0,"5km NNW of Boron, CA",0.19,48,",ci,",reviewed,1537831896180,"M 1.8 Quarry Blast - 5km NNW of Boron, CA",0,quarry blast,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537842517973,https://earthquake.usgs.gov/earthquakes/eventpage/ci37367330 +,,37367322,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37367322&format=geojson,0.05142,,83.0,",ci37367322,",1.37,ml,,ci,30.0,"7km ENE of Yorba Linda, CA",0.18,29,",ci,",reviewed,1537831894320,"M 1.4 - 7km ENE of Yorba Linda, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537910572207,https://earthquake.usgs.gov/earthquakes/eventpage/ci37367322 +,,73089166,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73089166&format=geojson,0.05668,,43.0,",nc73089166,",1.8,md,,nc,51.0,"11km ESE of Sunol, CA",0.09,50,",nc,",reviewed,1537831884100,"M 1.8 - 11km ESE of Sunol, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537845603374,https://earthquake.usgs.gov/earthquakes/eventpage/nc73089166 +,,20262688,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20262688&format=geojson,,,,",ak20262688,",2.2,ml,,ak,,"84km SW of Kaktovik, Alaska",0.75,74,",ak,",reviewed,1537831880991,"M 2.2 - 84km SW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530254362,https://earthquake.usgs.gov/earthquakes/eventpage/ak20262688 +,,20262685,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20262685&format=geojson,,,,",ak20262685,",1.9,ml,,ak,,"53km SSW of Kaktovik, Alaska",0.73,56,",ak,",reviewed,1537831253662,"M 1.9 - 53km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530253821,https://earthquake.usgs.gov/earthquakes/eventpage/ak20262685 +,,20269945,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20269945&format=geojson,,,,",ak20269945,",1.4,ml,,ak,,"76km NNW of Nikiski, Alaska",0.57,30,",ak,",reviewed,1537831247817,"M 1.4 - 76km NNW of Nikiski, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530253335,https://earthquake.usgs.gov/earthquakes/eventpage/ak20269945 +,,20262683,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20262683&format=geojson,,,,",ak20262683,",1.3,ml,,ak,,"20km NNE of Badger, Alaska",0.32,26,",ak,",reviewed,1537831061624,"M 1.3 Explosion - 20km NNE of Badger, Alaska",0,explosion,",geoserve,origin,phase-data,",-540.0,1538530252867,https://earthquake.usgs.gov/earthquakes/eventpage/ak20262683 +,,80311119,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80311119&format=geojson,0.115,,236.0,",mb80311119,",-0.2,md,,mb,5.0,"8km ENE of Whitehall, Montana",0.03,0,",mb,",reviewed,1537830649780,"M -0.2 Quarry Blast - 8km ENE of Whitehall, Montana",0,quarry blast,",geoserve,origin,phase-data,",-420.0,1537886203190,https://earthquake.usgs.gov/earthquakes/eventpage/mb80311119 +,,20262677,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20262677&format=geojson,,,,",ak20262677,us2000hjjh,",2.6,ml,,ak,,"78km SSW of Kaktovik, Alaska",0.74,104,",ak,us,",reviewed,1537829911364,"M 2.6 - 78km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538951499040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20262677 +,,61785406,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61785406&format=geojson,0.03454,,225.0,",av61785406,",0.24,ml,,av,4.0,"94km SE of King Salmon, Alaska",0.09,1,",av,",reviewed,1537829707550,"M 0.2 - 94km SE of King Salmon, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537989487300,https://earthquake.usgs.gov/earthquakes/eventpage/av61785406 +,,20262674,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20262674&format=geojson,,,,",ak20262674,",2.0,ml,,ak,,"51km WNW of Anchor Point, Alaska",0.34,62,",ak,",reviewed,1537829630652,"M 2.0 - 51km WNW of Anchor Point, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530251667,https://earthquake.usgs.gov/earthquakes/eventpage/ak20262674 +,,73089156,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73089156&format=geojson,0.1273,,179.0,",nc73089156,",1.52,md,,nc,31.0,"2km WNW of Kelseyville, CA",0.06,36,",nc,",reviewed,1537829586700,"M 1.5 - 2km WNW of Kelseyville, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537924202390,https://earthquake.usgs.gov/earthquakes/eventpage/nc73089156 +,,20262668,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20262668&format=geojson,,,,",ak20262668,us2000hjjc,",2.3,ml,,ak,,"25km WNW of Nikiski, Alaska",0.38,81,",ak,us,",reviewed,1537829175760,"M 2.3 - 25km WNW of Nikiski, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538951116040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20262668 +,,2000hjjb,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hjjb&format=geojson,13.528,,167.0,",us2000hjjb,",4.3,mb,,us,,Carlsberg Ridge,0.93,284,",us,",reviewed,1537828750620,M 4.3 - Carlsberg Ridge,0,earthquake,",geoserve,origin,phase-data,",240.0,1538950742040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hjjb +,,20269940,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20269940&format=geojson,,,,",ak20269940,",1.5,ml,,ak,,"100km NNW of Arctic Village, Alaska",0.88,35,",ak,",reviewed,1537828472572,"M 1.5 - 100km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530250525,https://earthquake.usgs.gov/earthquakes/eventpage/ak20269940 +,,2018267009,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018267009&format=geojson,0.9461,,312.0,",pr2018267009,",2.6,md,,pr,7.0,"72km N of Loiza, Puerto Rico",0.16,104,",pr,",reviewed,1537827762160,"M 2.6 - 72km N of Loiza, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1537832832693,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018267009 +,,73089151,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73089151&format=geojson,0.01308,,113.0,",nc73089151,",0.88,md,,nc,10.0,"3km NNW of The Geysers, CA",0.03,12,",nc,",automatic,1537827756440,"M 0.9 - 3km NNW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537830543599,https://earthquake.usgs.gov/earthquakes/eventpage/nc73089151 +,,37367266,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37367266&format=geojson,0.07428,,181.0,",ci37367266,",-0.16,ml,,ci,12.0,"10km NE of Aguanga, CA",0.08,0,",ci,",reviewed,1537827558160,"M -0.2 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537980066112,https://earthquake.usgs.gov/earthquakes/eventpage/ci37367266 +,,2018267008,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018267008&format=geojson,0.2849,,324.0,",pr2018267008,",2.4,md,,pr,5.0,"22km W of Pole Ojea, Puerto Rico",0.4,89,",pr,",reviewed,1537827103530,"M 2.4 - 22km W of Pole Ojea, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1537832821726,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018267008 +,,37367258,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37367258&format=geojson,0.06796,,72.0,",ci37367258,",0.3,ml,,ci,18.0,"10km NE of Aguanga, CA",0.09,1,",ci,",reviewed,1537827080370,"M 0.3 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537834880871,https://earthquake.usgs.gov/earthquakes/eventpage/ci37367258 +,,00657965,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657965&format=geojson,0.022,,118.55,",nn00657965,",-0.4,ml,,nn,11.0,"56km N of Pahrump, Nevada",0.0819,0,",nn,",reviewed,1537826816730,"M -0.4 - 56km N of Pahrump, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537833824208,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657965 +,,73089146,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73089146&format=geojson,0.01106,,34.0,",nc73089146,",1.38,md,,nc,44.0,"6km W of Cobb, CA",0.04,29,",nc,",reviewed,1537826582450,"M 1.4 - 6km W of Cobb, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537922523249,https://earthquake.usgs.gov/earthquakes/eventpage/nc73089146 +,,61422542,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61422542&format=geojson,0.1176,,53.0,",uw61422542,",2.01,ml,,uw,19.0,"4km NNW of Mount Hood Village, Oregon",0.2,62,",uw,",reviewed,1537826501720,"M 2.0 Explosion - 4km NNW of Mount Hood Village, Oregon",0,explosion,",geoserve,origin,phase-data,",-480.0,1537989433910,https://earthquake.usgs.gov/earthquakes/eventpage/uw61422542 +,,00657963,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657963&format=geojson,0.267,,134.46,",nn00657963,",0.9,ml,,nn,7.0,"53km NNE of Fort Irwin, California",0.1638,12,",nn,",reviewed,1537826069041,"M 0.9 - 53km NNE of Fort Irwin, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537833083578,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657963 +,,37367210,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37367210&format=geojson,0.02828,,69.0,",ci37367210,",0.78,ml,,ci,17.0,"16km E of Coso Junction, CA",0.11,9,",ci,",reviewed,1537825658300,"M 0.8 - 16km E of Coso Junction, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537844436674,https://earthquake.usgs.gov/earthquakes/eventpage/ci37367210 +,,70804564,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804564&format=geojson,0.02456,,133.0,",av70804564,",-0.79,ml,,av,4.0,"41km ENE of Adak, Alaska",0.05,0,",av,",reviewed,1537825502180,"M -0.8 - 41km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537989352010,https://earthquake.usgs.gov/earthquakes/eventpage/av70804564 +,,20262570,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20262570&format=geojson,,,,",ak20262570,",2.2,ml,,ak,,"30km E of Anchorage, Alaska",0.58,74,",ak,",reviewed,1537825453560,"M 2.2 - 30km E of Anchorage, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530249901,https://earthquake.usgs.gov/earthquakes/eventpage/ak20262570 +,,20262566,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20262566&format=geojson,,,,",ak20262566,",2.1,ml,,ak,,"45km WSW of Valdez, Alaska",0.88,68,",ak,",reviewed,1537825326137,"M 2.1 - 45km WSW of Valdez, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530249252,https://earthquake.usgs.gov/earthquakes/eventpage/ak20262566 +,,00657957,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657957&format=geojson,0.782,,212.33,",nn00657957,",1.4,ml,,nn,5.0,"43km NNE of Lovelock, Nevada",0.2609,30,",nn,",reviewed,1537825275967,"M 1.4 Explosion - 43km NNE of Lovelock, Nevada",0,explosion,",geoserve,origin,phase-data,",-480.0,1537832528653,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657957 +,,20262563,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20262563&format=geojson,,,,",ak20262563,",1.1,ml,,ak,,"8km NW of North Nenana, Alaska",0.76,19,",ak,",reviewed,1537825065811,"M 1.1 - 8km NW of North Nenana, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530248717,https://earthquake.usgs.gov/earthquakes/eventpage/ak20262563 +,,70804559,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804559&format=geojson,0.02442,,135.0,",av70804559,",-1.08,ml,,av,4.0,"41km ENE of Adak, Alaska",0.03,0,",av,",reviewed,1537824990710,"M -1.1 - 41km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537989252300,https://earthquake.usgs.gov/earthquakes/eventpage/av70804559 +,,60297562,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60297562&format=geojson,0.1415,,148.0,",uu60297562,",1.29,ml,,uu,6.0,"3km WNW of Montpelier, Idaho",0.09,26,",uu,",reviewed,1537824799080,"M 1.3 - 3km WNW of Montpelier, Idaho",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537911008820,https://earthquake.usgs.gov/earthquakes/eventpage/uu60297562 +,,70804554,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804554&format=geojson,0.023,,128.0,",av70804554,",-1.1,ml,,av,4.0,"41km ENE of Adak, Alaska",0.07,0,",av,",reviewed,1537824731560,"M -1.1 - 41km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537989151680,https://earthquake.usgs.gov/earthquakes/eventpage/av70804554 +,,00657950,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657950&format=geojson,0.146,,184.79,",nn00657950,",1.4,ml,,nn,16.0,"71km N of Tonopah, Nevada",0.5746,30,",nn,",reviewed,1537824045894,"M 1.4 Explosion - 71km N of Tonopah, Nevada",0,explosion,",geoserve,origin,phase-data,",-480.0,1537824417120,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657950 +,,20269936,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20269936&format=geojson,,,,",ak20269936,",1.8,ml,,ak,,"119km NNW of Arctic Village, Alaska",0.56,50,",ak,",reviewed,1537823764398,"M 1.8 - 119km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530248240,https://earthquake.usgs.gov/earthquakes/eventpage/ak20269936 +,,37367154,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37367154&format=geojson,0.08487,,39.0,",ci37367154,",0.67,ml,,ci,24.0,"9km NE of Aguanga, CA",0.17,7,",ci,",reviewed,1537823622580,"M 0.7 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537829522950,https://earthquake.usgs.gov/earthquakes/eventpage/ci37367154 +,,70610622,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70610622&format=geojson,0.05649,,45.0,",hv70610622,",2.23,ml,,hv,39.0,"17km NNW of Pahala, Hawaii",0.09,77,",hv,",reviewed,1537822568870,"M 2.2 - 17km NNW of Pahala, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537929229960,https://earthquake.usgs.gov/earthquakes/eventpage/hv70610622 +,,20269935,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20269935&format=geojson,,,,",ak20269935,",2.0,ml,,ak,,"78km SSW of Kaktovik, Alaska",0.57,62,",ak,",reviewed,1537822091575,"M 2.0 - 78km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530247745,https://earthquake.usgs.gov/earthquakes/eventpage/ak20269935 +,,00657955,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657955&format=geojson,0.209,,150.33,",nn00657955,",0.2,ml,,nn,10.0,"25km SSE of Goldfield, Nevada",0.2725,1,",nn,",reviewed,1537821082153,"M 0.2 - 25km SSE of Goldfield, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537824971980,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657955 +,,37367106,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37367106&format=geojson,0.08339,,101.0,",ci37367106,",1.04,ml,,ci,32.0,"9km N of Borrego Springs, CA",0.18,17,",ci,",reviewed,1537820846280,"M 1.0 - 9km N of Borrego Springs, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537829484228,https://earthquake.usgs.gov/earthquakes/eventpage/ci37367106 +,,20269934,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20269934&format=geojson,,,,",ak20269934,",2.6,ml,,ak,,"85km NW of Amukta Island, Alaska",0.86,104,",ak,",reviewed,1537820764457,"M 2.6 - 85km NW of Amukta Island, Alaska",0,earthquake,",geoserve,origin,phase-data,",-660.0,1538530247250,https://earthquake.usgs.gov/earthquakes/eventpage/ak20269934 +,,20269933,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20269933&format=geojson,,,,",ak20269933,",1.6,ml,,ak,,"86km NNW of Talkeetna, Alaska",0.39,39,",ak,",reviewed,1537820579313,"M 1.6 - 86km NNW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538681073741,https://earthquake.usgs.gov/earthquakes/eventpage/ak20269933 +,,00657942,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657942&format=geojson,0.237,,212.04,",nn00657942,",1.7,ml,,nn,7.0,"5km W of Ely, Nevada",0.3738,44,",nn,",reviewed,1537820513649,"M 1.7 Explosion - 5km W of Ely, Nevada",0,explosion,",geoserve,origin,phase-data,",-480.0,1537822752090,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657942 +,,61785296,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61785296&format=geojson,0.01075,,184.0,",av61785296,",0.4,ml,,av,5.0,"94km ESE of Old Iliamna, Alaska",0.11,2,",av,",reviewed,1537820315870,"M 0.4 - 94km ESE of Old Iliamna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537988007700,https://earthquake.usgs.gov/earthquakes/eventpage/av61785296 +,,20262400,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20262400&format=geojson,,,,",ak20262400,",1.8,ml,,ak,,"22km ENE of Willow, Alaska",0.86,50,",ak,",reviewed,1537820109589,"M 1.8 - 22km ENE of Willow, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530246175,https://earthquake.usgs.gov/earthquakes/eventpage/ak20262400 +,,20262399,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20262399&format=geojson,,,,",ak20262399,",1.7,ml,,ak,,"52km N of Amatignak Island, Alaska",0.51,44,",ak,",reviewed,1537819975049,"M 1.7 - 52km N of Amatignak Island, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538530245708,https://earthquake.usgs.gov/earthquakes/eventpage/ak20262399 +,,73089131,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73089131&format=geojson,0.02164,,229.0,",nc73089131,",0.06,md,,nc,6.0,"3km SW of Anderson Springs, CA",0.01,0,",nc,",reviewed,1537819745330,"M 0.1 - 3km SW of Anderson Springs, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537837881246,https://earthquake.usgs.gov/earthquakes/eventpage/nc73089131 +,,00657937,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657937&format=geojson,0.393,,110.43,",nn00657937,",2.4,ml,,nn,19.0,"12km SE of Carlin, Nevada",0.8634,89,",nn,",reviewed,1537819553399,"M 2.4 Explosion - 12km SE of Carlin, Nevada",0,explosion,",geoserve,origin,phase-data,",-480.0,1537820355414,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657937 +,,20262115,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20262115&format=geojson,,,,",ak20262115,",1.8,ml,,ak,,"26km NNW of Valdez, Alaska",0.69,50,",ak,",reviewed,1537819263308,"M 1.8 - 26km NNW of Valdez, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530245140,https://earthquake.usgs.gov/earthquakes/eventpage/ak20262115 +,,20269929,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20269929&format=geojson,,,,",ak20269929,",1.9,ml,,ak,,"53km WNW of Adak, Alaska",0.28,56,",ak,",reviewed,1537819052216,"M 1.9 - 53km WNW of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538530244608,https://earthquake.usgs.gov/earthquakes/eventpage/ak20269929 +,,20262112,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20262112&format=geojson,,,,",ak20262112,",1.9,ml,,ak,,"54km WNW of Willow, Alaska",0.47,56,",ak,",reviewed,1537818794971,"M 1.9 - 54km WNW of Willow, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530243998,https://earthquake.usgs.gov/earthquakes/eventpage/ak20262112 +,,20269927,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20269927&format=geojson,,,,",ak20269927,",1.4,ml,,ak,,"34km ENE of Amatignak Island, Alaska",0.5,30,",ak,",reviewed,1537818542936,"M 1.4 - 34km ENE of Amatignak Island, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538530243546,https://earthquake.usgs.gov/earthquakes/eventpage/ak20269927 +,2.0,2000hjef,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hjef&format=geojson,0.084,2.0,32.0,",us2000hjef,",2.9,mb_lg,,us,,"2km ENE of Langston, Oklahoma",0.33,130,",us,",reviewed,1537818365750,"M 2.9 - 2km ENE of Langston, Oklahoma",0,earthquake,",dyfi,geoserve,origin,phase-data,",-360.0,1537884943918,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hjef +,,20262109,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20262109&format=geojson,,,,",ak20262109,",1.5,ml,,ak,,"62km SSW of Kaktovik, Alaska",0.77,35,",ak,",reviewed,1537818305051,"M 1.5 - 62km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530243040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20262109 +,,20269925,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20269925&format=geojson,,,,",ak20269925,",1.1,ml,,ak,,"16km SSW of Talkeetna, Alaska",0.43,19,",ak,",reviewed,1537817937779,"M 1.1 - 16km SSW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530242564,https://earthquake.usgs.gov/earthquakes/eventpage/ak20269925 +,,20269924,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20269924&format=geojson,,,,",ak20269924,",1.3,ml,,ak,,"103km NNW of Arctic Village, Alaska",0.71,26,",ak,",reviewed,1537817873735,"M 1.3 - 103km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530242068,https://earthquake.usgs.gov/earthquakes/eventpage/ak20269924 +,,20261901,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261901&format=geojson,,,,",ak20261901,",1.5,ml,,ak,,"76km SSW of Kaktovik, Alaska",0.78,35,",ak,",reviewed,1537817789513,"M 1.5 - 76km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530241572,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261901 +,,20261900,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261900&format=geojson,,,,",ak20261900,",1.4,ml,,ak,,"76km SSW of Kaktovik, Alaska",0.41,30,",ak,",reviewed,1537817137821,"M 1.4 - 76km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530241083,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261900 +,,20261899,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261899&format=geojson,,,,",ak20261899,",1.5,ml,,ak,,"33km ESE of Unalaska, Alaska",0.92,35,",ak,",reviewed,1537817132412,"M 1.5 - 33km ESE of Unalaska, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538530240598,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261899 +,,73089126,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73089126&format=geojson,0.007196,,90.0,",nc73089126,",1.04,md,,nc,12.0,"9km NW of The Geysers, CA",0.04,17,",nc,",automatic,1537817029570,"M 1.0 - 9km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537817125226,https://earthquake.usgs.gov/earthquakes/eventpage/nc73089126 +,,60297542,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60297542&format=geojson,0.002018,,111.0,",uu60297542,",1.88,md,,uu,11.0,"20km E of Fairview, Utah",0.09,54,",uu,",reviewed,1537816563940,"M 1.9 - 20km E of Fairview, Utah",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537824571140,https://earthquake.usgs.gov/earthquakes/eventpage/uu60297542 +,,80311009,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80311009&format=geojson,0.155,,176.0,",mb80311009,",1.55,ml,,mb,7.0,"20km W of Hoback, Wyoming",0.12,37,",mb,",reviewed,1537816347750,"M 1.6 - 20km W of Hoback, Wyoming",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537821836300,https://earthquake.usgs.gov/earthquakes/eventpage/mb80311009 +,,20261898,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261898&format=geojson,,,,",ak20261898,",1.1,ml,,ak,,"14km N of Cantwell, Alaska",0.82,19,",ak,",reviewed,1537816312402,"M 1.1 - 14km N of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530240125,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261898 +,,80311004,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80311004&format=geojson,0.068,,201.0,",mb80311004,",1.69,ml,,mb,7.0,"5km E of Butte, Montana",0.09,44,",mb,",reviewed,1537816213930,"M 1.7 Quarry Blast - 5km E of Butte, Montana",0,quarry blast,",geoserve,origin,phase-data,",-420.0,1537817502360,https://earthquake.usgs.gov/earthquakes/eventpage/mb80311004 +,,20261897,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261897&format=geojson,,,,",ak20261897,",1.6,ml,,ak,,"42km WSW of Valdez, Alaska",0.58,39,",ak,",reviewed,1537816106867,"M 1.6 - 42km WSW of Valdez, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530239569,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261897 +,,37366986,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37366986&format=geojson,0.1139,,48.0,",ci37366986,",1.38,ml,,ci,16.0,"7km S of Mojave, CA",0.19,29,",ci,",reviewed,1537815838250,"M 1.4 Quarry Blast - 7km S of Mojave, CA",0,quarry blast,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537833755702,https://earthquake.usgs.gov/earthquakes/eventpage/ci37366986 +,,37367010,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37367010&format=geojson,0.08566,,209.0,",ci37367010,",0.39,ml,,ci,15.0,"9km NE of Aguanga, CA",0.07,2,",ci,",reviewed,1537815822790,"M 0.4 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537833356241,https://earthquake.usgs.gov/earthquakes/eventpage/ci37367010 +,,37366978,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37366978&format=geojson,0.1183,,105.0,",ci37366978,",1.7,ml,,ci,13.0,"24km W of Ludlow, CA",0.19,44,",ci,",reviewed,1537815495290,"M 1.7 Quarry Blast - 24km W of Ludlow, CA",0,quarry blast,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537834031233,https://earthquake.usgs.gov/earthquakes/eventpage/ci37366978 +,,00657914,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657914&format=geojson,0.026,,57.54,",nn00657914,",-0.3,ml,,nn,21.0,"50km ENE of Beatty, Nevada",0.2098,0,",nn,",reviewed,1537815441238,"M -0.3 - 50km ENE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537819610341,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657914 +,,00657949,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657949&format=geojson,0.021,,83.88,",nn00657949,",-0.5,ml,,nn,10.0,"58km E of Beatty, Nevada",0.1092,0,",nn,",reviewed,1537814973374,"M -0.5 - 58km E of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537824412925,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657949 +,,73089636,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73089636&format=geojson,0.06228,,164.0,",nc73089636,",0.67,md,,nc,7.0,"4km NW of McCloud, CA",0.27,7,",nc,",reviewed,1537814851640,"M 0.7 - 4km NW of McCloud, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537909744380,https://earthquake.usgs.gov/earthquakes/eventpage/nc73089636 +,,37366946,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37366946&format=geojson,0.04136,,79.0,",ci37366946,",0.48,ml,,ci,22.0,"10km S of Idyllwild, CA",0.08,4,",ci,",reviewed,1537814560140,"M 0.5 - 10km S of Idyllwild, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537818335247,https://earthquake.usgs.gov/earthquakes/eventpage/ci37366946 +,,20261890,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261890&format=geojson,,,,",ak20261890,",2.3,ml,,ak,,"70km W of Anchor Point, Alaska",0.7,81,",ak,",reviewed,1537814539022,"M 2.3 - 70km W of Anchor Point, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530238913,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261890 +,,60297522,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60297522&format=geojson,0.2528,,146.0,",uu60297522,",1.44,md,,uu,7.0,"16km E of Soda Springs, Idaho",0.11,32,",uu,",reviewed,1537814340330,"M 1.4 - 16km E of Soda Springs, Idaho",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537904711570,https://earthquake.usgs.gov/earthquakes/eventpage/uu60297522 +green,,20261879,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261879&format=geojson,,,,",ak20261879,",3.8,ml,3.86,ak,,"80km SSW of Kaktovik, Alaska",0.99,222,",ak,",reviewed,1537814330258,"M 3.8 - 80km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,ground-failure,losspager,origin,phase-data,shakemap,",-540.0,1538530679827,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261879 +,,20261877,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261877&format=geojson,,,,",ak20261877,",1.9,ml,,ak,,"79km SSW of Kaktovik, Alaska",0.91,56,",ak,",reviewed,1537814285010,"M 1.9 - 79km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530237351,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261877 +,,20261876,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261876&format=geojson,,,,",ak20261876,",1.4,ml,,ak,,"65km ENE of Cantwell, Alaska",0.52,30,",ak,",reviewed,1537813969441,"M 1.4 - 65km ENE of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538681073228,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261876 +,,37366930,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37366930&format=geojson,0.007511,,141.0,",ci37366930,",0.26,ml,,ci,17.0,"9km NE of Aguanga, CA",0.09,1,",ci,",reviewed,1537813289970,"M 0.3 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537910253825,https://earthquake.usgs.gov/earthquakes/eventpage/ci37366930 +,,20261874,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261874&format=geojson,,,,",ak20261874,",1.3,ml,,ak,,"122km NNW of Arctic Village, Alaska",0.6,26,",ak,",reviewed,1537812993132,"M 1.3 - 122km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530236282,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261874 +,,37366898,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37366898&format=geojson,0.005847,,75.0,",ci37366898,",0.67,ml,,ci,24.0,"10km NE of Aguanga, CA",0.15,7,",ci,",reviewed,1537812871470,"M 0.7 - 10km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537829528400,https://earthquake.usgs.gov/earthquakes/eventpage/ci37366898 +,,73089116,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73089116&format=geojson,0.01611,,169.0,",nc73089116,",1.44,md,,nc,8.0,"4km S of Loyola, CA",0.03,32,",nc,",reviewed,1537812515520,"M 1.4 Quarry Blast - 4km S of Loyola, CA",0,quarry blast,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537828826983,https://earthquake.usgs.gov/earthquakes/eventpage/nc73089116 +,,20261871,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261871&format=geojson,,,,",ak20261871,",1.0,ml,,ak,,"149km NE of Cape Yakataga, Alaska",0.52,15,",ak,",reviewed,1537812438092,"M 1.0 - 149km NE of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538530235802,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261871 +,,20261869,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261869&format=geojson,,,,",ak20261869,",1.2,ml,,ak,,"73km W of Fort Yukon, Alaska",0.94,22,",ak,",reviewed,1537812291338,"M 1.2 - 73km W of Fort Yukon, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530235311,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261869 +,,73089111,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73089111&format=geojson,0.02401,,130.0,",nc73089111,",0.63,md,,nc,16.0,"10km ENE of Mammoth Lakes, CA",0.07,6,",nc,",reviewed,1537811907740,"M 0.6 - 10km ENE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537823763215,https://earthquake.usgs.gov/earthquakes/eventpage/nc73089111 +,,20269911,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20269911&format=geojson,,,,",ak20269911,",1.6,ml,,ak,,"80km SSE of Akutan, Alaska",0.3,39,",ak,",reviewed,1537811887980,"M 1.6 - 80km SSE of Akutan, Alaska",0,earthquake,",geoserve,origin,phase-data,",-660.0,1538530234812,https://earthquake.usgs.gov/earthquakes/eventpage/ak20269911 +,,20269910,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20269910&format=geojson,,,,",ak20269910,",1.2,ml,,ak,,"42km NNE of Sterling, Alaska",0.56,22,",ak,",reviewed,1537811739064,"M 1.2 - 42km NNE of Sterling, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530234344,https://earthquake.usgs.gov/earthquakes/eventpage/ak20269910 +,,37366866,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37366866&format=geojson,0.02645,,139.0,",ci37366866,",0.39,ml,,ci,20.0,"9km NE of Aguanga, CA",0.12,2,",ci,",reviewed,1537811641360,"M 0.4 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537837607917,https://earthquake.usgs.gov/earthquakes/eventpage/ci37366866 +,2.0,2000hjdb,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hjdb&format=geojson,3.527,2.0,96.0,",us2000hjdb,",4.5,mb,,us,,"15km NNE of Bekasi, Indonesia",1.38,312,",us,",reviewed,1537811621030,"M 4.5 - 15km NNE of Bekasi, Indonesia",0,earthquake,",dyfi,geoserve,origin,phase-data,",420.0,1538149402378,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hjdb +,,20261866,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261866&format=geojson,,,,",ak20261866,",2.0,ml,,ak,,"22km ENE of Noatak, Alaska",0.61,62,",ak,",reviewed,1537811572416,"M 2.0 - 22km ENE of Noatak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530233782,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261866 +,,37366842,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37366842&format=geojson,0.006866,,58.0,",ci37366842,",0.68,ml,,ci,25.0,"10km NE of Aguanga, CA",0.19,7,",ci,",reviewed,1537811463340,"M 0.7 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537829520132,https://earthquake.usgs.gov/earthquakes/eventpage/ci37366842 +,,37366834,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37366834&format=geojson,0.06324,,52.0,",ci37366834,",0.92,ml,,ci,30.0,"6km WNW of Lake Henshaw, CA",0.18,13,",ci,",reviewed,1537811384800,"M 0.9 - 6km WNW of Lake Henshaw, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537829534535,https://earthquake.usgs.gov/earthquakes/eventpage/ci37366834 +,,20269908,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20269908&format=geojson,,,,",ak20269908,",1.1,ml,,ak,,"9km NE of Talkeetna, Alaska",0.71,19,",ak,",reviewed,1537811082490,"M 1.1 - 9km NE of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530233320,https://earthquake.usgs.gov/earthquakes/eventpage/ak20269908 +,,20261862,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261862&format=geojson,,,,",ak20261862,",1.0,ml,,ak,,"88km WNW of Arctic Village, Alaska",0.75,15,",ak,",reviewed,1537811008850,"M 1.0 - 88km WNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530232832,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261862 +,,73089106,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73089106&format=geojson,0.009184,,196.0,",nc73089106,",0.31,md,,nc,10.0,"7km ESE of Mammoth Lakes, CA",0.03,1,",nc,",reviewed,1537810819300,"M 0.3 - 7km ESE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537829463497,https://earthquake.usgs.gov/earthquakes/eventpage/nc73089106 +,,20261858,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261858&format=geojson,,,,",ak20261858,",2.2,ml,,ak,,"71km W of Fort Yukon, Alaska",0.91,74,",ak,",reviewed,1537810615056,"M 2.2 - 71km W of Fort Yukon, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530232232,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261858 +,,37366818,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37366818&format=geojson,0.1292,,89.0,",ci37366818,",0.58,ml,,ci,21.0,"6km SE of Beaumont, CA",0.11,5,",ci,",reviewed,1537810448610,"M 0.6 - 6km SE of Beaumont, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537844190935,https://earthquake.usgs.gov/earthquakes/eventpage/ci37366818 +,,20261854,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261854&format=geojson,,,,",ak20261854,",1.4,ml,,ak,,"63km ESE of Sutton-Alpine, Alaska",0.8,30,",ak,",reviewed,1537809610642,"M 1.4 - 63km ESE of Sutton-Alpine, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530231705,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261854 +,,37366786,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37366786&format=geojson,0.03313,,79.0,",ci37366786,",0.99,ml,,ci,28.0,"7km SSE of Home Gardens, CA",0.21,15,",ci,",reviewed,1537809439240,"M 1.0 Quarry Blast - 7km SSE of Home Gardens, CA",0,quarry blast,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537816370376,https://earthquake.usgs.gov/earthquakes/eventpage/ci37366786 +green,,2000hjd3,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hjd3&format=geojson,8.638,,73.0,",us2000hjd3,",5.4,mb,2.51,us,,"183km SSE of Bristol Island, South Sandwich Islands",1.12,449,",us,",reviewed,1537809190610,"M 5.4 - 183km SSE of Bristol Island, South Sandwich Islands",0,earthquake,",geoserve,losspager,moment-tensor,origin,phase-data,shakemap,",-120.0,1537890992040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hjd3 +,,2018267010,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018267010&format=geojson,0.896,,344.0,",pr2018267010,",2.83,md,,pr,7.0,"26km S of Charlotte Amalie, U.S. Virgin Islands",0.78,123,",pr,",reviewed,1537808792550,"M 2.8 - 26km S of Charlotte Amalie, U.S. Virgin Islands",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538143019982,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018267010 +,,73089101,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73089101&format=geojson,0.04795,,60.0,",nc73089101,",1.07,md,,nc,19.0,"9km NE of Gilroy, CA",0.06,18,",nc,",reviewed,1537808678350,"M 1.1 - 9km NE of Gilroy, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537840108419,https://earthquake.usgs.gov/earthquakes/eventpage/nc73089101 +,,20261852,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261852&format=geojson,,,,",ak20261852,",1.6,ml,,ak,,"49km S of Redoubt Volcano, Alaska",0.65,39,",ak,",reviewed,1537808668692,"M 1.6 - 49km S of Redoubt Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530231210,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261852 +,,61785161,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61785161&format=geojson,0.02172,,106.0,",av61785161,",0.09,ml,,av,5.0,"42km ENE of Adak, Alaska",0.07,0,",av,",reviewed,1537808466340,"M 0.1 - 42km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537986642000,https://earthquake.usgs.gov/earthquakes/eventpage/av61785161 +,,20269903,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20269903&format=geojson,,,,",ak20269903,",1.2,ml,,ak,,"30km SW of Tanaga Volcano, Alaska",0.33,22,",ak,",reviewed,1537808242384,"M 1.2 - 30km SW of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538530230745,https://earthquake.usgs.gov/earthquakes/eventpage/ak20269903 +,,37366762,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37366762&format=geojson,0.01107,,98.0,",ci37366762,",0.47,ml,,ci,21.0,"9km NE of Aguanga, CA",0.08,3,",ci,",reviewed,1537808235770,"M 0.5 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537910043582,https://earthquake.usgs.gov/earthquakes/eventpage/ci37366762 +,,37366754,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37366754&format=geojson,0.0593,,65.0,",ci37366754,",0.69,ml,,ci,23.0,"6km WNW of Lake Henshaw, CA",0.17,7,",ci,",reviewed,1537808180300,"M 0.7 - 6km WNW of Lake Henshaw, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537844892259,https://earthquake.usgs.gov/earthquakes/eventpage/ci37366754 +,,20269902,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20269902&format=geojson,,,,",ak20269902,",1.0,ml,,ak,,"59km WNW of Skagway, Alaska",0.32,15,",ak,",reviewed,1537807617301,"M 1.0 - 59km WNW of Skagway, Alaska",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538530230243,https://earthquake.usgs.gov/earthquakes/eventpage/ak20269902 +,,20261848,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261848&format=geojson,,,,",ak20261848,av61785151,",1.1,ml,,ak,,"80km N of Redoubt Volcano, Alaska",0.84,19,",ak,av,",reviewed,1537807435287,"M 1.1 - 80km N of Redoubt Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530229739,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261848 +,,20261844,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261844&format=geojson,,,,",ak20261844,",1.1,ml,,ak,,"116km NW of Arctic Village, Alaska",0.59,19,",ak,",reviewed,1537806921911,"M 1.1 - 116km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530229253,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261844 +,,37366698,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37366698&format=geojson,0.08708,,69.0,",ci37366698,",0.77,ml,,ci,34.0,"9km NE of Aguanga, CA",0.2,9,",ci,",reviewed,1537805934860,"M 0.8 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537829566847,https://earthquake.usgs.gov/earthquakes/eventpage/ci37366698 +,,20261840,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261840&format=geojson,,,,",ak20261840,",1.5,ml,,ak,,"74km S of Cantwell, Alaska",0.88,35,",ak,",reviewed,1537805883547,"M 1.5 - 74km S of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530228701,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261840 +,,37366690,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37366690&format=geojson,0.09292,,61.0,",ci37366690,",0.85,ml,,ci,31.0,"10km SSW of Borrego Springs, CA",0.17,11,",ci,",reviewed,1537805829300,"M 0.9 - 10km SSW of Borrego Springs, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538005934731,https://earthquake.usgs.gov/earthquakes/eventpage/ci37366690 +,,20269898,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20269898&format=geojson,,,,",ak20269898,",1.6,ml,,ak,,"165km SSW of Fort McPherson, Canada",0.9,39,",ak,",reviewed,1537805561737,"M 1.6 - 165km SSW of Fort McPherson, Canada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538530228192,https://earthquake.usgs.gov/earthquakes/eventpage/ak20269898 +,,37366682,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37366682&format=geojson,0.1023,,141.0,",ci37366682,",1.39,ml,,ci,20.0,"23km SSW of Frazier Park, CA",0.13,30,",ci,",reviewed,1537805428780,"M 1.4 - 23km SSW of Frazier Park, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537818895868,https://earthquake.usgs.gov/earthquakes/eventpage/ci37366682 +,,73089096,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73089096&format=geojson,0.002701,,90.0,",nc73089096,",0.87,md,,nc,12.0,"5km NW of The Geysers, CA",0.03,12,",nc,",automatic,1537805095350,"M 0.9 - 5km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537805193617,https://earthquake.usgs.gov/earthquakes/eventpage/nc73089096 +,,1000h3vz,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3vz&format=geojson,3.64,,75.0,",us1000h3vz,",4.5,mb,,us,,"95km NE of Finschhafen, Papua New Guinea",0.49,312,",us,",reviewed,1537804503370,"M 4.5 - 95km NE of Finschhafen, Papua New Guinea",0,earthquake,",geoserve,origin,phase-data,",600.0,1538425769040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3vz +,,37366658,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37366658&format=geojson,0.008035,,35.0,",ci37366658,",0.87,ml,,ci,32.0,"10km NE of Aguanga, CA",0.14,12,",ci,",reviewed,1537804332410,"M 0.9 - 10km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537829657100,https://earthquake.usgs.gov/earthquakes/eventpage/ci37366658 +,,73089091,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73089091&format=geojson,0.003724,,55.0,",nc73089091,",0.7,md,,nc,33.0,"5km NW of The Geysers, CA",0.05,8,",nc,",reviewed,1537804027490,"M 0.7 - 5km NW of The Geysers, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537915562263,https://earthquake.usgs.gov/earthquakes/eventpage/nc73089091 +,,1000h3vr,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3vr&format=geojson,3.305,,199.0,",us1000h3vr,",4.5,mb,,us,,"38km NNE of San Isidro, Philippines",0.65,312,",us,",reviewed,1537803845540,"M 4.5 - 38km NNE of San Isidro, Philippines",0,earthquake,",geoserve,origin,phase-data,",480.0,1538424873040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3vr +,,20261837,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261837&format=geojson,,,,",ak20261837,",1.3,ml,,ak,,"29km W of Tanana, Alaska",0.66,26,",ak,",reviewed,1537803575609,"M 1.3 - 29km W of Tanana, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530227641,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261837 +,,37366642,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37366642&format=geojson,0.02935,,70.0,",ci37366642,",0.37,ml,,ci,18.0,"8km NE of Aguanga, CA",0.22,2,",ci,",reviewed,1537803554920,"M 0.4 - 8km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537829604720,https://earthquake.usgs.gov/earthquakes/eventpage/ci37366642 +,,37366626,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37366626&format=geojson,0.07772,,215.0,",ci37366626,",0.14,ml,,ci,10.0,"10km NE of Aguanga, CA",0.12,0,",ci,",reviewed,1537802395980,"M 0.1 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537832719009,https://earthquake.usgs.gov/earthquakes/eventpage/ci37366626 +,,20269896,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20269896&format=geojson,,,,",ak20269896,",1.8,ml,,ak,,"74km ESE of Akutan, Alaska",0.36,50,",ak,",reviewed,1537802364684,"M 1.8 - 74km ESE of Akutan, Alaska",0,earthquake,",geoserve,origin,phase-data,",-660.0,1538530227110,https://earthquake.usgs.gov/earthquakes/eventpage/ak20269896 +,,00657947,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657947&format=geojson,0.088,,97.67,",nn00657947,",0.7,ml,,nn,10.0,"13km N of Incline Village, Nevada",0.1524,8,",nn,",reviewed,1537802240784,"M 0.7 - 13km N of Incline Village, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537823307399,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657947 +,,1000h615,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h615&format=geojson,0.597,,214.0,",ak20261834,us1000h615,",3.2,ml,,us,,"62km S of Nikolski, Alaska",0.52,158,",ak,us,",reviewed,1537802040430,"M 3.2 - 62km S of Nikolski, Alaska",0,earthquake,",geoserve,origin,phase-data,",-660.0,1539107969040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h615 +,,20261833,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261833&format=geojson,,,,",ak20261833,",0.8,ml,,ak,,"124km WNW of Arctic Village, Alaska",0.73,10,",ak,",reviewed,1537801599864,"M 0.8 - 124km WNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530226096,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261833 +,,20261831,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261831&format=geojson,,,,",ak20261831,us2000hjc7,",2.5,ml,,ak,,"91km NE of Kodiak, Alaska",0.68,96,",ak,us,",reviewed,1537801524165,"M 2.5 - 91km NE of Kodiak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539108135040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261831 +,,1000h3vq,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3vq&format=geojson,3.607,,157.0,",us1000h3vq,",4.5,mb,,us,,Fiji region,0.76,312,",us,",reviewed,1537801457010,M 4.5 - Fiji region,0,earthquake,",geoserve,origin,phase-data,",-720.0,1538423184040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3vq +,,37366618,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37366618&format=geojson,0.00872,,28.0,",ci37366618,",1.3,ml,,ci,51.0,"9km NE of Aguanga, CA",0.19,26,",ci,",reviewed,1537801339310,"M 1.3 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537829662640,https://earthquake.usgs.gov/earthquakes/eventpage/ci37366618 +,,37366610,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37366610&format=geojson,0.07325,,62.0,",ci37366610,",0.58,ml,,ci,24.0,"10km NE of Aguanga, CA",0.14,5,",ci,",reviewed,1537801257980,"M 0.6 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537829651820,https://earthquake.usgs.gov/earthquakes/eventpage/ci37366610 +,,1000h3vy,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3vy&format=geojson,1.567,,127.0,",us1000h3vy,",4.2,mb,,us,,"166km WSW of San Antonio de los Cobres, Argentina",0.79,271,",us,",reviewed,1537801174070,"M 4.2 - 166km WSW of San Antonio de los Cobres, Argentina",0,earthquake,",geoserve,origin,phase-data,",-180.0,1538422178040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3vy +,,20261829,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261829&format=geojson,,,,",ak20261829,",1.6,ml,,ak,,"108km NNW of Arctic Village, Alaska",0.69,39,",ak,",reviewed,1537800683220,"M 1.6 - 108km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530224945,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261829 +,,20269891,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20269891&format=geojson,,,,",ak20269891,",1.1,ml,,ak,,"52km ESE of Butte, Alaska",0.48,19,",ak,",reviewed,1537800625971,"M 1.1 - 52km ESE of Butte, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530224481,https://earthquake.usgs.gov/earthquakes/eventpage/ak20269891 +,,37366602,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37366602&format=geojson,0.07527,,109.0,",ci37366602,",1.01,ml,,ci,20.0,"17km SSE of Big Bear Lake, CA",0.1,16,",ci,",reviewed,1537800568200,"M 1.0 - 17km SSE of Big Bear Lake, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537807420799,https://earthquake.usgs.gov/earthquakes/eventpage/ci37366602 +,,73089086,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73089086&format=geojson,0.005274,,48.0,",nc73089086,",1.27,md,,nc,30.0,"2km ENE of The Geysers, CA",0.06,25,",nc,",reviewed,1537800196820,"M 1.3 - 2km ENE of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537926364236,https://earthquake.usgs.gov/earthquakes/eventpage/nc73089086 +,,20261823,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261823&format=geojson,,,,",ak20261823,",1.2,ml,,ak,,"118km NW of Arctic Village, Alaska",0.76,22,",ak,",reviewed,1537799610009,"M 1.2 - 118km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530223997,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261823 +,,60297492,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60297492&format=geojson,0.1784,,115.0,",uu60297492,",1.49,md,,uu,8.0,"20km SW of Old Faithful Geyser, Wyoming",0.21,34,",uu,",reviewed,1537799388370,"M 1.5 - 20km SW of Old Faithful Geyser, Wyoming",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537903844870,https://earthquake.usgs.gov/earthquakes/eventpage/uu60297492 +,,61422472,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61422472&format=geojson,0.09116,,76.0,",uw61422472,",1.77,ml,,uw,17.0,"13km S of Birch Bay, Washington",0.4,48,",uw,",reviewed,1537799274460,"M 1.8 - 13km S of Birch Bay, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538011433230,https://earthquake.usgs.gov/earthquakes/eventpage/uw61422472 +,,2000hjc4,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hjc4&format=geojson,2.482,,116.0,",us2000hjc4,",4.7,mb,,us,,"46km ENE of Hirara, Japan",0.48,340,",us,",reviewed,1537799121060,"M 4.7 - 46km ENE of Hirara, Japan",0,earthquake,",geoserve,origin,phase-data,",480.0,1538419499040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hjc4 +,,20261822,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261822&format=geojson,,,,",ak20261822,",1.1,ml,,ak,,"91km NNW of Arctic Village, Alaska",0.79,19,",ak,",reviewed,1537798771638,"M 1.1 - 91km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530223489,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261822 +,,20269888,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20269888&format=geojson,,,,",ak20269888,",1.9,ml,,ak,,"101km SSW of False Pass, Alaska",0.41,56,",ak,",reviewed,1537798543021,"M 1.9 - 101km SSW of False Pass, Alaska",0,earthquake,",geoserve,origin,phase-data,",-660.0,1538530222978,https://earthquake.usgs.gov/earthquakes/eventpage/ak20269888 +,,60241046,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nm60241046&format=geojson,0.03083,,67.0,",nm60241046,",1.35,md,,nm,8.0,"3km E of Ridgely, Tennessee",0.05,28,",nm,",reviewed,1537797645130,"M 1.4 - 3km E of Ridgely, Tennessee",0,earthquake,",geoserve,origin,phase-data,",-360.0,1537879523400,https://earthquake.usgs.gov/earthquakes/eventpage/nm60241046 +,,73089076,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73089076&format=geojson,0.02601,,64.0,",nc73089076,",2.04,md,,nc,30.0,"8km ENE of Pinnacles, CA",0.08,64,",nc,",reviewed,1537797505720,"M 2.0 - 8km ENE of Pinnacles, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537842426027,https://earthquake.usgs.gov/earthquakes/eventpage/nc73089076 +,,73089081,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73089081&format=geojson,0.03176,,150.0,",nc73089081,",0.8,md,,nc,13.0,"10km NW of Pinnacles, CA",0.06,10,",nc,",reviewed,1537797494880,"M 0.8 - 10km NW of Pinnacles, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537831774286,https://earthquake.usgs.gov/earthquakes/eventpage/nc73089081 +,,37366570,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37366570&format=geojson,0.01177,,62.0,",ci37366570,",0.49,ml,,ci,20.0,"10km NE of Aguanga, CA",0.12,4,",ci,",reviewed,1537797145010,"M 0.5 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537799834884,https://earthquake.usgs.gov/earthquakes/eventpage/ci37366570 +,,70804549,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804549&format=geojson,0.02495,,82.0,",av70804549,",-0.8,ml,,av,8.0,"14km W of Akutan, Alaska",0.22,0,",av,",reviewed,1537796961250,"M -0.8 - 14km W of Akutan, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537988579330,https://earthquake.usgs.gov/earthquakes/eventpage/av70804549 +,,1000h3vv,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3vv&format=geojson,1.932,,68.0,",us1000h3vv,",4.3,mb,,us,,"213km NW of Saumlaki, Indonesia",1.17,284,",us,",reviewed,1537796798800,"M 4.3 - 213km NW of Saumlaki, Indonesia",0,earthquake,",geoserve,origin,phase-data,",540.0,1538406542040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3vv +,,20261820,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261820&format=geojson,,,,",ak20261820,",1.1,ml,,ak,,"117km NW of Arctic Village, Alaska",0.77,19,",ak,",reviewed,1537796624998,"M 1.1 - 117km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530222453,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261820 +,,20269886,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20269886&format=geojson,,,,",ak20269886,",0.9,ml,,ak,,"119km NW of Arctic Village, Alaska",0.43,12,",ak,",reviewed,1537796571678,"M 0.9 - 119km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530221962,https://earthquake.usgs.gov/earthquakes/eventpage/ak20269886 +,,73089071,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73089071&format=geojson,0.009773,,70.0,",nc73089071,",1.08,md,,nc,16.0,"7km NW of The Geysers, CA",0.04,18,",nc,",automatic,1537796561790,"M 1.1 - 7km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537796729595,https://earthquake.usgs.gov/earthquakes/eventpage/nc73089071 +,,73089066,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73089066&format=geojson,0.01067,,50.0,",nc73089066,",1.6,md,,nc,41.0,"7km NW of The Geysers, CA",0.05,39,",nc,",reviewed,1537796530050,"M 1.6 - 7km NW of The Geysers, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537862042303,https://earthquake.usgs.gov/earthquakes/eventpage/nc73089066 +,,1000h3vn,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3vn&format=geojson,3.254,,153.0,",us1000h3vn,",4.3,mb,,us,,"200km SE of Pangai, Tonga",0.77,284,",us,",reviewed,1537796501100,"M 4.3 - 200km SE of Pangai, Tonga",0,earthquake,",geoserve,origin,phase-data,",-720.0,1538400524040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3vn +,,37366554,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37366554&format=geojson,0.01323,,63.0,",ci37366554,",0.71,ml,,ci,31.0,"9km NE of Aguanga, CA",0.19,8,",ci,",reviewed,1537796400390,"M 0.7 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537829728160,https://earthquake.usgs.gov/earthquakes/eventpage/ci37366554 +,,20261816,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261816&format=geojson,,,,",ak20261816,",1.3,ml,,ak,,"107km NNW of Arctic Village, Alaska",0.68,26,",ak,",reviewed,1537796309857,"M 1.3 - 107km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530221446,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261816 +,,20261814,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261814&format=geojson,,,,",ak20261814,",1.4,ml,,ak,,"36km NNE of North Nenana, Alaska",0.85,30,",ak,",reviewed,1537796288726,"M 1.4 - 36km NNE of North Nenana, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530220884,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261814 +,,20261812,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261812&format=geojson,,,,",ak20261812,",0.9,ml,,ak,,"63km WSW of Delta Junction, Alaska",0.42,12,",ak,",reviewed,1537795908396,"M 0.9 - 63km WSW of Delta Junction, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530220357,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261812 +,,70609972,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70609972&format=geojson,0.007667,,46.0,",hv70609972,",1.73,md,,hv,19.0,"5km SW of Volcano, Hawaii",0.17,46,",hv,",automatic,1537795885310,"M 1.7 - 5km SW of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537796054520,https://earthquake.usgs.gov/earthquakes/eventpage/hv70609972 +,,37366538,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37366538&format=geojson,0.01438,,64.0,",ci37366538,",0.26,ml,,ci,19.0,"9km NE of Aguanga, CA",0.11,1,",ci,",reviewed,1537795716800,"M 0.3 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537805466727,https://earthquake.usgs.gov/earthquakes/eventpage/ci37366538 +,,2000hjbb,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hjbb&format=geojson,7.183,,57.0,",us2000hjbb,",4.6,mb,,us,,"185km SW of Abepura, Indonesia",1.07,326,",us,",reviewed,1537795418520,"M 4.6 - 185km SW of Abepura, Indonesia",0,earthquake,",geoserve,origin,phase-data,",540.0,1538399646040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hjbb +,,20261808,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261808&format=geojson,,,,",ak20261808,",2.2,ml,,ak,,"78km SSW of Kaktovik, Alaska",0.8,74,",ak,",reviewed,1537795028591,"M 2.2 - 78km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530219820,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261808 +,,20261806,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261806&format=geojson,,,,",ak20261806,",1.1,ml,,ak,,"57km E of Cape Yakataga, Alaska",0.97,19,",ak,",reviewed,1537794928744,"M 1.1 Ice Quake - 57km E of Cape Yakataga, Alaska",0,ice quake,",geoserve,origin,phase-data,",-540.0,1538530219357,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261806 +,,70804539,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804539&format=geojson,0.06259,,192.0,",av70804539,",-0.21,ml,,av,5.0,"21km W of Unalaska, Alaska",0.19,0,",av,",reviewed,1537794382010,"M -0.2 - 21km W of Unalaska, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537985300180,https://earthquake.usgs.gov/earthquakes/eventpage/av70804539 +,,37366490,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37366490&format=geojson,0.01634,,99.0,",ci37366490,",0.22,ml,,ci,19.0,"9km NE of Aguanga, CA",0.12,1,",ci,",reviewed,1537794322090,"M 0.2 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537836593076,https://earthquake.usgs.gov/earthquakes/eventpage/ci37366490 +,,70609922,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70609922&format=geojson,0.007768,,133.0,",hv70609922,",1.73,ml,,hv,17.0,"2km W of Volcano, Hawaii",0.2,46,",hv,",automatic,1537794290690,"M 1.7 - 2km W of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537794634010,https://earthquake.usgs.gov/earthquakes/eventpage/hv70609922 +,,20261803,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261803&format=geojson,,,,",ak20261803,",1.5,ml,,ak,,"41km NW of Valdez, Alaska",0.72,35,",ak,",reviewed,1537794234107,"M 1.5 - 41km NW of Valdez, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530218780,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261803 +,,20269879,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20269879&format=geojson,,,,",ak20269879,",1.2,ml,,ak,,"119km NNW of Arctic Village, Alaska",0.71,22,",ak,",reviewed,1537794151597,"M 1.2 - 119km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530218308,https://earthquake.usgs.gov/earthquakes/eventpage/ak20269879 +,,00657932,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657932&format=geojson,0.141,,176.94,",nn00657932,",0.3,ml,,nn,6.0,"13km NE of Big Pine, California",0.063,1,",nn,",reviewed,1537794075869,"M 0.3 - 13km NE of Big Pine, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537818871338,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657932 +,,37366482,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37366482&format=geojson,0.08127,,62.0,",ci37366482,",0.6,ml,,ci,26.0,"9km NE of Aguanga, CA",0.19,6,",ci,",reviewed,1537793991860,"M 0.6 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537795709850,https://earthquake.usgs.gov/earthquakes/eventpage/ci37366482 +,,20269878,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20269878&format=geojson,,,,",ak20269878,",1.1,ml,,ak,,"38km NNW of Yakutat, Alaska",1.29,19,",ak,",reviewed,1537793558994,"M 1.1 Ice Quake - 38km NNW of Yakutat, Alaska",0,ice quake,",geoserve,origin,phase-data,",-540.0,1538530217795,https://earthquake.usgs.gov/earthquakes/eventpage/ak20269878 +,,20261800,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261800&format=geojson,,,,",ak20261800,",1.7,ml,,ak,,"99km NNW of Arctic Village, Alaska",0.76,44,",ak,",reviewed,1537793403979,"M 1.7 - 99km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530217271,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261800 +,,73089056,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73089056&format=geojson,0.03022,,59.0,",nc73089056,",1.67,md,,nc,27.0,"10km NW of Pinnacles, CA",0.06,43,",nc,",reviewed,1537793382440,"M 1.7 - 10km NW of Pinnacles, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537844403248,https://earthquake.usgs.gov/earthquakes/eventpage/nc73089056 +,,20261797,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261797&format=geojson,,,,",ak20261797,",2.1,ml,,ak,,"78km SSW of Kaktovik, Alaska",0.78,68,",ak,",reviewed,1537793150652,"M 2.1 - 78km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530216723,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261797 +,,20269875,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20269875&format=geojson,,,,",ak20269875,",1.3,ml,,ak,,"71km WNW of Talkeetna, Alaska",0.68,26,",ak,",reviewed,1537792988328,"M 1.3 - 71km WNW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530216124,https://earthquake.usgs.gov/earthquakes/eventpage/ak20269875 +,,20269874,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20269874&format=geojson,,,,",ak20269874,",1.3,ml,,ak,,"35km SW of Tanaga Volcano, Alaska",0.36,26,",ak,",reviewed,1537792923937,"M 1.3 - 35km SW of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538530215614,https://earthquake.usgs.gov/earthquakes/eventpage/ak20269874 +,,20261793,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261793&format=geojson,,,,",ak20261793,",2.1,ml,,ak,,"101km NNW of Arctic Village, Alaska",0.67,68,",ak,",reviewed,1537792668743,"M 2.1 - 101km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530215082,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261793 +,,70804534,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804534&format=geojson,0.02097,,221.0,",av70804534,",0.44,ml,,av,5.0,"96km SE of King Salmon, Alaska",0.02,3,",av,",reviewed,1537792564360,"M 0.4 - 96km SE of King Salmon, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537984729770,https://earthquake.usgs.gov/earthquakes/eventpage/av70804534 +,,20261791,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261791&format=geojson,,,,",ak20261791,",1.4,ml,,ak,,"102km NNW of Arctic Village, Alaska",0.7,30,",ak,",reviewed,1537792501243,"M 1.4 - 102km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530214494,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261791 +,2.0,73089051,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73089051&format=geojson,0.03112,3.0,60.0,",nc73089051,",2.73,md,,nc,61.0,"10km NW of Pinnacles, CA",0.07,115,",nc,",reviewed,1537792449920,"M 2.7 - 10km NW of Pinnacles, CA",0,earthquake,",dyfi,focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537902482971,https://earthquake.usgs.gov/earthquakes/eventpage/nc73089051 +,,1000h3vt,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3vt&format=geojson,1.418,,87.0,",us1000h3vt,",4.3,mb,,us,,"25km ESE of Muroran, Japan",1.15,284,",us,",reviewed,1537792438760,"M 4.3 - 25km ESE of Muroran, Japan",0,earthquake,",geoserve,origin,phase-data,",540.0,1538375544040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3vt +,,00657929,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657929&format=geojson,0.021,,111.9,",nn00657929,",-0.1,ml,,nn,5.0,"3km N of Dollar Point, California",0.0848,0,",nn,",reviewed,1537792402413,"M -0.1 - 3km N of Dollar Point, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537818677589,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657929 +,,20261790,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261790&format=geojson,,,,",ak20261790,",0.8,ml,,ak,,"139km W of Cantwell, Alaska",0.7,10,",ak,",reviewed,1537792348232,"M 0.8 - 139km W of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530214029,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261790 +,,20261787,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261787&format=geojson,,,,",ak20261787,",1.4,ml,,ak,,"117km NW of Arctic Village, Alaska",0.52,30,",ak,",reviewed,1537791994215,"M 1.4 - 117km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530213517,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261787 +,,20269869,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20269869&format=geojson,,,,",ak20269869,",1.7,ml,,ak,,"18km SSE of Sand Point, Alaska",0.56,44,",ak,",reviewed,1537791673507,"M 1.7 - 18km SSE of Sand Point, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530212940,https://earthquake.usgs.gov/earthquakes/eventpage/ak20269869 +,,61785081,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61785081&format=geojson,0.02202,,275.0,",av61785081,",0.36,ml,,av,5.0,"41km WSW of Tanaga Volcano, Alaska",0.11,2,",av,",reviewed,1537791328290,"M 0.4 - 41km WSW of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537984440860,https://earthquake.usgs.gov/earthquakes/eventpage/av61785081 +,,37366450,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37366450&format=geojson,0.02566,,69.0,",ci37366450,",0.36,ml,,ci,17.0,"9km NE of Aguanga, CA",0.15,2,",ci,",reviewed,1537790962100,"M 0.4 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537795668324,https://earthquake.usgs.gov/earthquakes/eventpage/ci37366450 +,,37366442,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37366442&format=geojson,0.1042,,65.0,",ci37366442,",0.65,ml,,ci,23.0,"12km NNE of Ocotillo Wells, CA",0.19,6,",ci,",reviewed,1537790926530,"M 0.7 - 12km NNE of Ocotillo Wells, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537820774139,https://earthquake.usgs.gov/earthquakes/eventpage/ci37366442 +,,37366434,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37366434&format=geojson,0.1033,,72.0,",ci37366434,",0.63,ml,,ci,19.0,"6km WNW of Lake Henshaw, CA",0.14,6,",ci,",reviewed,1537790706630,"M 0.6 - 6km WNW of Lake Henshaw, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537795670393,https://earthquake.usgs.gov/earthquakes/eventpage/ci37366434 +,,20261786,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261786&format=geojson,,,,",ak20261786,",0.8,ml,,ak,,"30km SW of Manley Hot Springs, Alaska",0.63,10,",ak,",reviewed,1537790661067,"M 0.8 - 30km SW of Manley Hot Springs, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530212427,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261786 +,,00657928,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657928&format=geojson,0.233,,164.07,",nn00657928,",0.1,ml,,nn,9.0,"56km WNW of Beatty, Nevada",0.146,0,",nn,",reviewed,1537790533778,"M 0.1 - 56km WNW of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537818307508,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657928 +,,00657880,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657880&format=geojson,0.141,,153.32,",nn00657880,",-0.2,ml,,nn,18.0,"35km NNW of Beatty, Nevada",0.1982,0,",nn,",reviewed,1537790245890,"M -0.2 - 35km NNW of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537807394160,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657880 +,,37366426,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37366426&format=geojson,0.07194,,84.0,",ci37366426,",0.63,ml,,ci,18.0,"5km N of Cabazon, CA",0.14,6,",ci,",reviewed,1537789690580,"M 0.6 - 5km N of Cabazon, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537796263180,https://earthquake.usgs.gov/earthquakes/eventpage/ci37366426 +,,73089036,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73089036&format=geojson,0.06119,,205.0,",nc73089036,",0.38,md,,nc,9.0,"14km SE of Mammoth Lakes, CA",0.12,2,",nc,",reviewed,1537789657160,"M 0.4 - 14km SE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537826282171,https://earthquake.usgs.gov/earthquakes/eventpage/nc73089036 +,,20261784,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261784&format=geojson,,,,",ak20261784,",1.4,ml,,ak,,"43km WSW of Talkeetna, Alaska",0.41,30,",ak,",reviewed,1537789485748,"M 1.4 - 43km WSW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530211857,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261784 +,,73089031,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73089031&format=geojson,0.02708,,75.0,",nc73089031,nn00657876,",1.45,md,,nc,31.0,"13km WNW of Toms Place, CA",0.03,32,",nc,nn,",reviewed,1537789467440,"M 1.5 - 13km WNW of Toms Place, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537836778590,https://earthquake.usgs.gov/earthquakes/eventpage/nc73089031 +,,20261782,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261782&format=geojson,,,,",ak20261782,",1.5,ml,,ak,,"113km NW of Arctic Village, Alaska",0.77,35,",ak,",reviewed,1537789319601,"M 1.5 - 113km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530211283,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261782 +,,20261780,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261780&format=geojson,,,,",ak20261780,",2.0,ml,,ak,,"76km SSW of Kaktovik, Alaska",0.53,62,",ak,",reviewed,1537789173848,"M 2.0 - 76km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530210732,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261780 +,,20261778,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261778&format=geojson,,,,",ak20261778,",1.3,ml,,ak,,"116km NW of Arctic Village, Alaska",0.87,26,",ak,",reviewed,1537789000758,"M 1.3 - 116km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530210188,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261778 +,,37410853,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37410853&format=geojson,0.01637,,194.0,",ci37410853,",0.28,ml,,ci,15.0,"9km NE of Aguanga, CA",0.11,1,",ci,",reviewed,1537788850470,"M 0.3 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537842108102,https://earthquake.usgs.gov/earthquakes/eventpage/ci37410853 +,,37366418,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37366418&format=geojson,0.1036,,62.0,",ci37366418,",0.9,ml,,ci,26.0,"13km N of Ocotillo Wells, CA",0.25,12,",ci,",reviewed,1537788836840,"M 0.9 - 13km N of Ocotillo Wells, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537841153818,https://earthquake.usgs.gov/earthquakes/eventpage/ci37366418 +,,37410845,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37410845&format=geojson,0.09601,,93.0,",ci37410845,",0.52,ml,,ci,23.0,"13km NNE of Ocotillo Wells, CA",0.22,4,",ci,",reviewed,1537788825530,"M 0.5 - 13km NNE of Ocotillo Wells, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537841955091,https://earthquake.usgs.gov/earthquakes/eventpage/ci37410845 +,,20269863,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20269863&format=geojson,,,,",ak20269863,",1.0,ml,,ak,,"128km SSE of Prudhoe Bay, Alaska",0.67,15,",ak,",reviewed,1537788710503,"M 1.0 - 128km SSE of Prudhoe Bay, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530209712,https://earthquake.usgs.gov/earthquakes/eventpage/ak20269863 +,,73089026,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73089026&format=geojson,0.01286,,51.0,",nc73089026,",1.49,md,,nc,30.0,"6km ESE of Interlaken, CA",0.09,34,",nc,",reviewed,1537788363550,"M 1.5 - 6km ESE of Interlaken, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537839184709,https://earthquake.usgs.gov/earthquakes/eventpage/nc73089026 +,,20261776,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261776&format=geojson,,,,",ak20261776,",1.2,ml,,ak,,"109km NW of Arctic Village, Alaska",0.84,22,",ak,",reviewed,1537788314198,"M 1.2 - 109km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530209200,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261776 +,,61785066,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61785066&format=geojson,0.06389,,245.0,",av61785066,",0.91,ml,,av,7.0,"95km SE of King Salmon, Alaska",0.16,13,",av,",reviewed,1537787654940,"M 0.9 - 95km SE of King Salmon, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537984213870,https://earthquake.usgs.gov/earthquakes/eventpage/av61785066 +,,73089021,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73089021&format=geojson,0.02334,,94.0,",nc73089021,",0.36,md,,nc,15.0,"14km NW of Parkfield, CA",0.05,2,",nc,",reviewed,1537787649850,"M 0.4 - 14km NW of Parkfield, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537838122109,https://earthquake.usgs.gov/earthquakes/eventpage/nc73089021 +,,73089016,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73089016&format=geojson,0.008796,,86.0,",nc73089016,",-0.02,md,,nc,12.0,"2km W of Anderson Springs, CA",0.08,0,",nc,",reviewed,1537787286710,"M -0.0 - 2km W of Anderson Springs, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537832405812,https://earthquake.usgs.gov/earthquakes/eventpage/nc73089016 +,,20269861,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20269861&format=geojson,,,,",ak20269861,",1.2,ml,,ak,,"44km SE of Tanaga Volcano, Alaska",0.46,22,",ak,",reviewed,1537787284755,"M 1.2 - 44km SE of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538530208719,https://earthquake.usgs.gov/earthquakes/eventpage/ak20269861 +,,71109634,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc71109634&format=geojson,0.009029,,90.0,",nc71109634,",0.21,md,,nc,19.0,"2km W of Anderson Springs, CA",0.07,1,",nc,",reviewed,1537787278440,"M 0.2 - 2km W of Anderson Springs, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537832827942,https://earthquake.usgs.gov/earthquakes/eventpage/nc71109634 +,,20261773,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261773&format=geojson,,,,",ak20261773,",1.4,ml,,ak,,"86km WNW of Skagway, Alaska",0.8,30,",ak,",reviewed,1537787252942,"M 1.4 - 86km WNW of Skagway, Alaska",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538530208174,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261773 +,,37366410,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37366410&format=geojson,0.006862,,97.0,",ci37366410,",1.66,ml,,ci,12.0,"10km NE of Aguanga, CA",0.2,42,",ci,",reviewed,1537786910970,"M 1.7 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537796277971,https://earthquake.usgs.gov/earthquakes/eventpage/ci37366410 +,,20261771,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261771&format=geojson,,,,",ak20261771,",1.1,ml,,ak,,"92km WNW of Arctic Village, Alaska",0.78,19,",ak,",reviewed,1537786758305,"M 1.1 - 92km WNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530207630,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261771 +,,37366402,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37366402&format=geojson,0.07434,,75.0,",ci37366402,",0.27,ml,,ci,14.0,"10km NE of Aguanga, CA",0.11,1,",ci,",reviewed,1537786529510,"M 0.3 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537796282404,https://earthquake.usgs.gov/earthquakes/eventpage/ci37366402 +,,37366394,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37366394&format=geojson,0.006763,,60.0,",ci37366394,",0.64,ml,,ci,28.0,"10km NE of Aguanga, CA",0.13,6,",ci,",reviewed,1537786251090,"M 0.6 - 10km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537796322910,https://earthquake.usgs.gov/earthquakes/eventpage/ci37366394 +,,20261768,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261768&format=geojson,,,,",ak20261768,",1.1,ml,,ak,,"122km NW of Arctic Village, Alaska",0.74,19,",ak,",reviewed,1537786226509,"M 1.1 - 122km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530207131,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261768 +,,37366386,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37366386&format=geojson,0.005119,,75.0,",ci37366386,",0.32,ml,,ci,17.0,"10km NE of Aguanga, CA",0.17,2,",ci,",reviewed,1537785910840,"M 0.3 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537796302930,https://earthquake.usgs.gov/earthquakes/eventpage/ci37366386 +,,20261765,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261765&format=geojson,,,,",ak20261765,",1.8,ml,,ak,,"78km SSW of Kaktovik, Alaska",0.94,50,",ak,",reviewed,1537785792051,"M 1.8 - 78km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530206574,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261765 +,,20261760,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261760&format=geojson,,,,",ak20261760,",1.4,ml,,ak,,"85km NNW of Talkeetna, Alaska",0.44,30,",ak,",reviewed,1537785337893,"M 1.4 - 85km NNW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530205999,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261760 +,,20269855,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20269855&format=geojson,,,,",ak20269855,",1.5,ml,,ak,,"76km SSE of Tanaga Volcano, Alaska",0.26,35,",ak,",reviewed,1537785168124,"M 1.5 - 76km SSE of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-720.0,1538681072190,https://earthquake.usgs.gov/earthquakes/eventpage/ak20269855 +,,20261755,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261755&format=geojson,,,,",ak20261755,",2.7,ml,,ak,,"91km NE of Kodiak, Alaska",0.79,112,",ak,",reviewed,1537784957559,"M 2.7 - 91km NE of Kodiak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538681071569,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261755 +,,37366378,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37366378&format=geojson,0.007193,,36.0,",ci37366378,",0.83,ml,,ci,37.0,"10km NE of Aguanga, CA",0.13,11,",ci,",reviewed,1537784826340,"M 0.8 - 10km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537796390720,https://earthquake.usgs.gov/earthquakes/eventpage/ci37366378 +,,73089006,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73089006&format=geojson,0.02658,,98.0,",nc73089006,",1.61,md,,nc,24.0,"8km ENE of Pinnacles, CA",0.09,40,",nc,",reviewed,1537784677740,"M 1.6 - 8km ENE of Pinnacles, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537843742175,https://earthquake.usgs.gov/earthquakes/eventpage/nc73089006 +,,37366370,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37366370&format=geojson,0.08209,,83.0,",ci37366370,",0.36,ml,,ci,16.0,"9km NE of Aguanga, CA",0.17,2,",ci,",reviewed,1537784309100,"M 0.4 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537796322497,https://earthquake.usgs.gov/earthquakes/eventpage/ci37366370 +,,37366362,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37366362&format=geojson,0.02475,,69.0,",ci37366362,",0.53,ml,,ci,21.0,"9km NE of Aguanga, CA",0.11,4,",ci,",reviewed,1537784201440,"M 0.5 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537796394840,https://earthquake.usgs.gov/earthquakes/eventpage/ci37366362 +,,73089001,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73089001&format=geojson,0.1193,,118.0,",nn00657875,nc73089001,",1.32,md,,nc,19.0,"4km ESE of Round Valley, CA",0.04,27,",nn,nc,",reviewed,1537784193760,"M 1.3 - 4km ESE of Round Valley, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537847222514,https://earthquake.usgs.gov/earthquakes/eventpage/nc73089001 +,,37366354,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37366354&format=geojson,0.08257,,86.0,",ci37366354,",0.32,ml,,ci,14.0,"10km NE of Aguanga, CA",0.19,2,",ci,",reviewed,1537784183670,"M 0.3 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537796335847,https://earthquake.usgs.gov/earthquakes/eventpage/ci37366354 +,,37366346,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37366346&format=geojson,0.1242,,157.0,",ci37366346,",0.5,ml,,ci,15.0,"14km SSW of Borrego Springs, CA",0.18,4,",ci,",reviewed,1537783975770,"M 0.5 - 14km SSW of Borrego Springs, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537796354729,https://earthquake.usgs.gov/earthquakes/eventpage/ci37366346 +,,73088996,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73088996&format=geojson,0.0452,,58.0,",nc73088996,",1.7,md,,nc,54.0,"4km NNW of Larkfield-Wikiup, CA",0.14,44,",nc,",reviewed,1537783930620,"M 1.7 - 4km NNW of Larkfield-Wikiup, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537844103218,https://earthquake.usgs.gov/earthquakes/eventpage/nc73088996 +,,37366338,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37366338&format=geojson,0.02976,,39.0,",ci37366338,",1.46,ml,,ci,56.0,"8km ENE of Aguanga, CA",0.2,33,",ci,",reviewed,1537783551480,"M 1.5 - 8km ENE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537796398970,https://earthquake.usgs.gov/earthquakes/eventpage/ci37366338 +,,73088991,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73088991&format=geojson,0.269,,295.0,",nn00657871,nc73088991,",1.31,md,,nc,21.0,"2km S of Round Valley, CA",0.07,26,",nn,nc,",reviewed,1537783550560,"M 1.3 - 2km S of Round Valley, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537824662995,https://earthquake.usgs.gov/earthquakes/eventpage/nc73088991 +,,20269853,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20269853&format=geojson,,,,",ak20269853,",1.0,ml,,ak,,"56km NNW of Yakutat, Alaska",0.66,15,",ak,",reviewed,1537783531256,"M 1.0 - 56km NNW of Yakutat, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530204380,https://earthquake.usgs.gov/earthquakes/eventpage/ak20269853 +,,20269852,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20269852&format=geojson,,,,",ak20269852,",1.0,ml,,ak,,"55km ENE of Cape Yakataga, Alaska",1.01,15,",ak,",reviewed,1537782733226,"M 1.0 Ice Quake - 55km ENE of Cape Yakataga, Alaska",0,ice quake,",geoserve,origin,phase-data,",-540.0,1538530203907,https://earthquake.usgs.gov/earthquakes/eventpage/ak20269852 +,,20261751,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261751&format=geojson,,,,",ak20261751,",1.1,ml,,ak,,"116km NW of Arctic Village, Alaska",0.64,19,",ak,",reviewed,1537782467066,"M 1.1 - 116km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538681071064,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261751 +,,2018267006,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018267006&format=geojson,0.7473,,254.0,",pr2018267006,",3.04,md,,pr,7.0,"83km SE of Boca de Yuma, Dominican Republic",0.43,142,",pr,",reviewed,1537782082130,"M 3.0 - 83km SE of Boca de Yuma, Dominican Republic",0,earthquake,",geoserve,origin,phase-data,",-300.0,1537792782314,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018267006 +,,37366330,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37366330&format=geojson,0.01257,,32.0,",ci37366330,",1.18,ml,,ci,54.0,"9km NE of Aguanga, CA",0.22,21,",ci,",reviewed,1537781607500,"M 1.2 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537796462070,https://earthquake.usgs.gov/earthquakes/eventpage/ci37366330 +,,37366322,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37366322&format=geojson,0.006395,,103.0,",ci37366322,",0.12,ml,,ci,19.0,"10km NE of Aguanga, CA",0.08,0,",ci,",reviewed,1537781604460,"M 0.1 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537909858339,https://earthquake.usgs.gov/earthquakes/eventpage/ci37366322 +,,70804524,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804524&format=geojson,0.0542,,183.0,",av70804524,",-0.29,ml,,av,4.0,"25km W of Unalaska, Alaska",0.25,0,",av,",reviewed,1537781596190,"M -0.3 - 25km W of Unalaska, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537983825930,https://earthquake.usgs.gov/earthquakes/eventpage/av70804524 +,,20261749,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261749&format=geojson,,,,",ak20261749,",0.6,ml,,ak,,"101km N of Manley Hot Springs, Alaska",0.79,6,",ak,",reviewed,1537781595357,"M 0.6 - 101km N of Manley Hot Springs, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530202870,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261749 +,,2018267005,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018267005&format=geojson,0.0574,,121.0,",pr2018267005,",2.12,md,,pr,4.0,"5km SE of Lajas, Puerto Rico",0.27,69,",pr,",reviewed,1537781563260,"M 2.1 - 5km SE of Lajas, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1537792762298,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018267005 +,,60297482,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60297482&format=geojson,0.02374,,75.0,",uu60297482,",0.74,md,,uu,11.0,"18km ESE of Old Faithful Geyser, Wyoming",0.12,8,",uu,",reviewed,1537781491400,"M 0.7 - 18km ESE of Old Faithful Geyser, Wyoming",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537828674090,https://earthquake.usgs.gov/earthquakes/eventpage/uu60297482 +,,37366314,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37366314&format=geojson,0.07538,,69.0,",ci37366314,",0.23,ml,,ci,15.0,"10km NE of Aguanga, CA",0.13,1,",ci,",reviewed,1537781382360,"M 0.2 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537796376129,https://earthquake.usgs.gov/earthquakes/eventpage/ci37366314 +,,37366306,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37366306&format=geojson,0.1058,,77.0,",ci37366306,",0.59,ml,,ci,19.0,"7km SSE of Loma Linda, CA",0.17,5,",ci,",reviewed,1537781267740,"M 0.6 - 7km SSE of Loma Linda, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537796393081,https://earthquake.usgs.gov/earthquakes/eventpage/ci37366306 +,,00657870,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657870&format=geojson,0.167,,138.57,",nn00657870,",0.5,ml,,nn,21.0,"36km SSE of Goldfield, Nevada",0.2266,4,",nn,",reviewed,1537780724671,"M 0.5 - 36km SSE of Goldfield, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537805912721,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657870 +,,20269849,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20269849&format=geojson,,,,",ak20269849,",1.2,ml,,ak,,"26km SSE of Little Sitkin Island, Alaska",0.15,22,",ak,",reviewed,1537780671006,"M 1.2 - 26km SSE of Little Sitkin Island, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538681070478,https://earthquake.usgs.gov/earthquakes/eventpage/ak20269849 +,3.8,2000hja7,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hja7&format=geojson,1.034,3.0,75.0,",us2000hja7,",4.4,mb,,us,,"35km E of Tomakomai, Japan",0.31,299,",us,",reviewed,1537780626560,"M 4.4 - 35km E of Tomakomai, Japan",0,earthquake,",dyfi,geoserve,origin,phase-data,",540.0,1538238102308,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hja7 +,,37366298,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37366298&format=geojson,0.09624,,110.0,",ci37366298,",0.67,ml,,ci,22.0,"15km ENE of Coachella, CA",0.13,7,",ci,",reviewed,1537780396920,"M 0.7 - 15km ENE of Coachella, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537820319637,https://earthquake.usgs.gov/earthquakes/eventpage/ci37366298 +,,20269848,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20269848&format=geojson,,,,",ak20269848,",1.1,ml,,ak,,"42km SW of Semisopochnoi Island, Alaska",0.08,19,",ak,",reviewed,1537780240918,"M 1.1 - 42km SW of Semisopochnoi Island, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538530201666,https://earthquake.usgs.gov/earthquakes/eventpage/ak20269848 +,,20261747,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261747&format=geojson,,,,",ak20261747,",1.2,ml,,ak,,"79km NNW of Arctic Village, Alaska",0.9,22,",ak,",reviewed,1537780185143,"M 1.2 - 79km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530201134,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261747 +,,00657869,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657869&format=geojson,0.365,,117.21,",nn00657869,",0.8,ml,,nn,21.0,"42km SSE of Warm Springs, Nevada",0.2421,10,",nn,",reviewed,1537779336235,"M 0.8 - 42km SSE of Warm Springs, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537805357562,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657869 +,,37366290,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37366290&format=geojson,0.01512,,64.0,",ci37366290,",0.87,ml,,ci,39.0,"9km NE of Aguanga, CA",0.23,12,",ci,",reviewed,1537779300510,"M 0.9 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537796409983,https://earthquake.usgs.gov/earthquakes/eventpage/ci37366290 +,,37366282,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37366282&format=geojson,0.008622,,61.0,",ci37366282,",0.58,ml,,ci,30.0,"9km NE of Aguanga, CA",0.15,5,",ci,",reviewed,1537779295240,"M 0.6 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537796529200,https://earthquake.usgs.gov/earthquakes/eventpage/ci37366282 +,,73088986,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73088986&format=geojson,0.00703,,89.0,",nc73088986,",0.57,md,,nc,9.0,"9km WNW of The Geysers, CA",0.03,5,",nc,",automatic,1537779069420,"M 0.6 - 9km WNW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537779164119,https://earthquake.usgs.gov/earthquakes/eventpage/nc73088986 +,,20261743,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261743&format=geojson,,,,",ak20261743,",1.7,ml,,ak,,"65km SSW of Kaktovik, Alaska",0.7,44,",ak,",reviewed,1537779031556,"M 1.7 - 65km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530200601,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261743 +,,80310984,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80310984&format=geojson,0.07,,121.0,",mb80310984,",0.22,md,,mb,8.0,"5km WSW of Lincoln, Montana",0.06,1,",mb,",reviewed,1537778992340,"M 0.2 - 5km WSW of Lincoln, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537799171850,https://earthquake.usgs.gov/earthquakes/eventpage/mb80310984 +,,2000hj9r,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hj9r&format=geojson,6.202,,74.0,",us2000hj9r,",4.2,mb,,us,,"49km WNW of Yasuj, Iran",1.0,271,",us,",reviewed,1537778582380,"M 4.2 - 49km WNW of Yasuj, Iran",0,earthquake,",geoserve,origin,phase-data,",210.0,1537870385040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hj9r +,,37366266,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37366266&format=geojson,0.008838,,59.0,",ci37366266,",0.04,ml,,ci,20.0,"10km NE of Aguanga, CA",0.14,0,",ci,",reviewed,1537778513120,"M 0.0 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537909588547,https://earthquake.usgs.gov/earthquakes/eventpage/ci37366266 +,,20261742,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261742&format=geojson,,,,",ak20261742,",1.1,ml,,ak,,"17km WSW of Tanaga Volcano, Alaska",0.73,19,",ak,",reviewed,1537778512655,"M 1.1 - 17km WSW of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538530200096,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261742 +,,20269844,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20269844&format=geojson,,,,",ak20269844,",1.3,ml,,ak,,"56km NNW of Nikiski, Alaska",0.24,26,",ak,",reviewed,1537778223717,"M 1.3 - 56km NNW of Nikiski, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530199593,https://earthquake.usgs.gov/earthquakes/eventpage/ak20269844 +,,20261740,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261740&format=geojson,,,,",ak20261740,",1.4,ml,,ak,,"120km NW of Arctic Village, Alaska",0.83,30,",ak,",reviewed,1537778124289,"M 1.4 - 120km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530199102,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261740 +,,20261738,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261738&format=geojson,,,,",ak20261738,",1.4,ml,,ak,,"128km WNW of Arctic Village, Alaska",0.73,30,",ak,",reviewed,1537778084338,"M 1.4 - 128km WNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530198572,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261738 +,,00657926,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657926&format=geojson,0.039,,99.01,",nn00657926,",0.5,ml,,nn,16.0,"15km NNW of Truckee, California",0.1701,4,",nn,",reviewed,1537778033940,"M 0.5 - 15km NNW of Truckee, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537817753266,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657926 +,,00657865,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657865&format=geojson,0.043,,60.61,",nn00657865,",1.3,ml,,nn,21.0,"14km NNW of Truckee, California",0.1233,26,",nn,",reviewed,1537777995964,"M 1.3 - 14km NNW of Truckee, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537799454974,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657865 +,,20261737,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261737&format=geojson,,,,",ak20261737,",1.1,ml,,ak,,"66km ENE of Cape Yakataga, Alaska",1.36,19,",ak,",reviewed,1537777768807,"M 1.1 Ice Quake - 66km ENE of Cape Yakataga, Alaska",0,ice quake,",geoserve,origin,phase-data,",-540.0,1538530198031,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261737 +,,20261736,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261736&format=geojson,,,,",ak20261736,",1.7,ml,,ak,,"128km WNW of Arctic Village, Alaska",0.7,44,",ak,",reviewed,1537777698222,"M 1.7 - 128km WNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530197497,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261736 +,,37366258,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37366258&format=geojson,0.005482,,59.0,",ci37366258,",0.34,ml,,ci,25.0,"10km NE of Aguanga, CA",0.13,2,",ci,",reviewed,1537777637700,"M 0.3 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537909422535,https://earthquake.usgs.gov/earthquakes/eventpage/ci37366258 +,,2018267004,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018267004&format=geojson,0.4891,,252.0,",pr2018267004,us2000hjav,",2.64,md,,pr,10.0,"33km SE of Boca de Yuma, Dominican Republic",0.35,107,",pr,us,",reviewed,1537777632800,"M 2.6 - 33km SE of Boca de Yuma, Dominican Republic",0,earthquake,",geoserve,origin,phase-data,",-300.0,1537867649040,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018267004 +,,37366250,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37366250&format=geojson,0.01211,,12.0,",ci37366250,",2.36,ml,,ci,114.0,"8km NE of Aguanga, CA",0.23,86,",ci,",reviewed,1537777501570,"M 2.4 - 8km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537823448210,https://earthquake.usgs.gov/earthquakes/eventpage/ci37366250 +,,20261733,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261733&format=geojson,,,,",ak20261733,",1.2,ml,,ak,,"114km NW of Arctic Village, Alaska",0.58,22,",ak,",reviewed,1537777346899,"M 1.2 - 114km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538681069966,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261733 +,,37366242,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37366242&format=geojson,0.04052,,39.0,",ci37366242,",1.3,ml,,ci,28.0,"6km NNE of Westmorland, CA",0.25,26,",ci,",reviewed,1537777323060,"M 1.3 - 6km NNE of Westmorland, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537845482205,https://earthquake.usgs.gov/earthquakes/eventpage/ci37366242 +,,20261732,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261732&format=geojson,,,,",ak20261732,",1.4,ml,,ak,,"48km SSW of Semisopochnoi Island, Alaska",0.18,30,",ak,",reviewed,1537776749535,"M 1.4 - 48km SSW of Semisopochnoi Island, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538681069457,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261732 +,,2018267003,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018267003&format=geojson,0.4781,,242.0,",pr2018267003,",2.95,md,,pr,10.0,"48km N of Isabela, Puerto Rico",0.34,134,",pr,",reviewed,1537776345630,"M 3.0 - 48km N of Isabela, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1537792714418,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018267003 +,,73088971,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73088971&format=geojson,0.1116,,323.0,",nc73088971,",0.52,md,,nc,7.0,"16km SSE of Mammoth Lakes, CA",0.03,4,",nc,",reviewed,1537775987780,"M 0.5 - 16km SSE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537811481804,https://earthquake.usgs.gov/earthquakes/eventpage/nc73088971 +,,20269837,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20269837&format=geojson,,,,",ak20269837,",1.8,ml,,ak,,"60km S of Kaktovik, Alaska",0.7,50,",ak,",reviewed,1537775894261,"M 1.8 - 60km S of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530196004,https://earthquake.usgs.gov/earthquakes/eventpage/ak20269837 +,,73088966,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73088966&format=geojson,0.01618,,50.0,",nc73088966,",1.7,md,,nc,41.0,"3km N of The Geysers, CA",0.06,44,",nc,",reviewed,1537775707640,"M 1.7 - 3km N of The Geysers, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537861322237,https://earthquake.usgs.gov/earthquakes/eventpage/nc73088966 +,,20269836,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20269836&format=geojson,,,,",ak20269836,",1.9,ml,,ak,,"32km ESE of Little Sitkin Island, Alaska",0.17,56,",ak,",reviewed,1537775631394,"M 1.9 - 32km ESE of Little Sitkin Island, Alaska",0,earthquake,",geoserve,origin,phase-data,",720.0,1538681068930,https://earthquake.usgs.gov/earthquakes/eventpage/ak20269836 +,,2018267007,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018267007&format=geojson,1.3512,,276.0,",pr2018267007,us2000hjb0,",3.0,md,,pr,8.0,"144km NNW of San Antonio, Puerto Rico",0.21,138,",pr,us,",reviewed,1537775490810,"M 3.0 - 144km NNW of San Antonio, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1537868750040,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018267007 +,,2000hj9d,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hj9d&format=geojson,3.904,,62.0,",us2000hj9d,",4.9,mb,,us,,"172km W of Hihifo, Tonga",1.5,369,",us,",reviewed,1537775464850,"M 4.9 - 172km W of Hihifo, Tonga",0,earthquake,",geoserve,origin,phase-data,",-720.0,1537778280040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hj9d +,,20261728,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261728&format=geojson,,,,",ak20261728,",1.1,ml,,ak,,"20km NNW of College, Alaska",0.86,19,",ak,",reviewed,1537775087453,"M 1.1 - 20km NNW of College, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530194945,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261728 +,,20261725,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261725&format=geojson,,,,",ak20261725,",2.2,ml,,ak,,"100km SE of Cold Bay, Alaska",0.29,74,",ak,",reviewed,1537774937935,"M 2.2 - 100km SE of Cold Bay, Alaska",0,earthquake,",geoserve,origin,phase-data,",-660.0,1538530194451,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261725 +,,37366234,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37366234&format=geojson,0.1323,,135.0,",ci37366234,",1.22,ml,,ci,14.0,"25km NNW of Tehachapi, CA",0.15,23,",ci,",reviewed,1537774339330,"M 1.2 - 25km NNW of Tehachapi, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537796458832,https://earthquake.usgs.gov/earthquakes/eventpage/ci37366234 +,,20261722,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261722&format=geojson,,,,",ak20261722,",1.3,ml,,ak,,"118km NW of Arctic Village, Alaska",0.49,26,",ak,",reviewed,1537773740181,"M 1.3 - 118km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530193887,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261722 +,,37366226,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37366226&format=geojson,0.007478,,59.0,",ci37366226,",0.4,ml,,ci,18.0,"10km NE of Aguanga, CA",0.13,2,",ci,",reviewed,1537773702270,"M 0.4 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537796475702,https://earthquake.usgs.gov/earthquakes/eventpage/ci37366226 +,,20261721,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261721&format=geojson,,,,",ak20261721,",1.1,ml,,ak,,"108km NNW of Arctic Village, Alaska",0.87,19,",ak,",reviewed,1537773578141,"M 1.1 - 108km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530193424,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261721 +,,37366218,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37366218&format=geojson,0.03606,,69.0,",ci37366218,",0.46,ml,,ci,29.0,"11km ESE of Anza, CA",0.12,3,",ci,",reviewed,1537773301090,"M 0.5 - 11km ESE of Anza, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537806042565,https://earthquake.usgs.gov/earthquakes/eventpage/ci37366218 +,,20261719,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261719&format=geojson,,,,",ak20261719,",1.0,ml,,ak,,"44km NNW of Fort McPherson, Canada",0.55,15,",ak,",reviewed,1537773154291,"M 1.0 - 44km NNW of Fort McPherson, Canada",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538530192952,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261719 +,,37366210,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37366210&format=geojson,0.03664,,38.0,",ci37366210,",1.41,ml,,ci,62.0,"7km ENE of Aguanga, CA",0.21,31,",ci,",reviewed,1537772558200,"M 1.4 - 7km ENE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537796585270,https://earthquake.usgs.gov/earthquakes/eventpage/ci37366210 +,,20269830,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20269830&format=geojson,,,,",ak20269830,",2.1,ml,,ak,,"175km SSE of Unalaska, Alaska",0.3,68,",ak,",reviewed,1537772375996,"M 2.1 - 175km SSE of Unalaska, Alaska",0,earthquake,",geoserve,origin,phase-data,",-660.0,1538530192493,https://earthquake.usgs.gov/earthquakes/eventpage/ak20269830 +,,37366202,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37366202&format=geojson,0.003045,,58.0,",ci37366202,",0.75,ml,,ci,31.0,"10km NE of Aguanga, CA",0.16,9,",ci,",reviewed,1537772163900,"M 0.8 - 10km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537796588780,https://earthquake.usgs.gov/earthquakes/eventpage/ci37366202 +,,37366194,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37366194&format=geojson,0.1055,,126.0,",ci37366194,",0.73,ml,,ci,35.0,"19km NNW of Borrego Springs, CA",0.15,8,",ci,",reviewed,1537771985720,"M 0.7 - 19km NNW of Borrego Springs, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537909291180,https://earthquake.usgs.gov/earthquakes/eventpage/ci37366194 +,,20261717,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261717&format=geojson,,,,",ak20261717,",2.0,ml,,ak,,"116km NW of Arctic Village, Alaska",0.72,62,",ak,",reviewed,1537771779621,"M 2.0 - 116km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530191922,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261717 +,,00657923,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657923&format=geojson,0.12,,273.98,",nn00657923,",-0.2,ml,,nn,7.0,"35km NW of Beatty, Nevada",0.1298,0,",nn,",reviewed,1537771679504,"M -0.2 - 35km NW of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537817195443,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657923 +,,20261716,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261716&format=geojson,,,,",ak20261716,",2.0,ml,,ak,,"59km SE of Little Sitkin Island, Alaska",0.67,62,",ak,",reviewed,1537771635416,"M 2.0 - 59km SE of Little Sitkin Island, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538530191433,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261716 +,,20261714,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261714&format=geojson,,,,",ak20261714,",1.6,ml,,ak,,"121km NW of Arctic Village, Alaska",0.73,39,",ak,",reviewed,1537771530062,"M 1.6 - 121km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530190834,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261714 +,,61422457,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61422457&format=geojson,0.02177,,140.0,",uw61422457,",0.58,ml,,uw,4.0,"30km NNW of Packwood, Washington",0.03,5,",uw,",reviewed,1537770981400,"M 0.6 - 30km NNW of Packwood, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538011961470,https://earthquake.usgs.gov/earthquakes/eventpage/uw61422457 +,,70609192,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70609192&format=geojson,0.009771,,39.0,",hv70609192,",1.71,ml,,hv,20.0,"5km SW of Volcano, Hawaii",0.1,45,",hv,",automatic,1537770956210,"M 1.7 - 5km SW of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537771298710,https://earthquake.usgs.gov/earthquakes/eventpage/hv70609192 +,,60297477,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60297477&format=geojson,0.1653,,102.0,",uu60297477,",2.04,ml,,uu,35.0,"16km ENE of Mountain Green, Utah",0.18,64,",uu,",reviewed,1537770495270,"M 2.0 - 16km ENE of Mountain Green, Utah",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537805951180,https://earthquake.usgs.gov/earthquakes/eventpage/uu60297477 +,,70804509,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804509&format=geojson,0.07037,,207.0,",av70804509,",-0.13,ml,,av,4.0,"22km W of Dutch Harbor, Alaska",0.02,0,",av,",reviewed,1537770453960,"M -0.1 - 22km W of Dutch Harbor, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537982392870,https://earthquake.usgs.gov/earthquakes/eventpage/av70804509 +,,73088951,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73088951&format=geojson,0.003912,,89.0,",nc73088951,",1.11,md,,nc,12.0,"6km WNW of Cobb, CA",0.02,19,",nc,",automatic,1537770281530,"M 1.1 - 6km WNW of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537773065418,https://earthquake.usgs.gov/earthquakes/eventpage/nc73088951 +,,20261711,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261711&format=geojson,,,,",av61784901,ak20261711,",1.9,ml,,ak,,"44km WSW of Nikolski, Alaska",0.32,56,",av,ak,",reviewed,1537770039539,"M 1.9 - 44km WSW of Nikolski, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538530190307,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261711 +,,73088946,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73088946&format=geojson,0.06563,,48.0,",nc73088946,",2.18,md,,nc,21.0,"27km E of Rio Dell, CA",0.07,73,",nc,",reviewed,1537770029330,"M 2.2 - 27km E of Rio Dell, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537853822956,https://earthquake.usgs.gov/earthquakes/eventpage/nc73088946 +,,20261710,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261710&format=geojson,,,,",ak20261710,",0.8,ml,,ak,,"50km NE of Sutton-Alpine, Alaska",0.44,10,",ak,",reviewed,1537769984040,"M 0.8 - 50km NE of Sutton-Alpine, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530189690,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261710 +,,20261703,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261703&format=geojson,,,,",ak20261703,",3.0,ml,,ak,,"242km SE of Kodiak, Alaska",0.49,138,",ak,",reviewed,1537769366341,"M 3.0 - 242km SE of Kodiak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538530189005,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261703 +,,20261702,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261702&format=geojson,,,,",ak20261702,",1.1,ml,,ak,,"63km WNW of Talkeetna, Alaska",0.47,19,",ak,",reviewed,1537769309938,"M 1.1 - 63km WNW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530188505,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261702 +,,37366186,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37366186&format=geojson,0.0006877,,57.0,",ci37366186,",0.22,ml,,ci,26.0,"10km NE of Aguanga, CA",0.15,1,",ci,",reviewed,1537769270510,"M 0.2 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537908807871,https://earthquake.usgs.gov/earthquakes/eventpage/ci37366186 +,,00657920,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657920&format=geojson,0.157,,212.02,",nn00657920,",0.1,ml,,nn,13.0,"36km SSE of Goldfield, Nevada",0.1843,0,",nn,",reviewed,1537769132749,"M 0.1 - 36km SSE of Goldfield, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537817008556,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657920 +,,00657860,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657860&format=geojson,0.155,,206.34,",nn00657860,",0.1,ml,,nn,17.0,"39km SSE of Goldfield, Nevada",0.1739,0,",nn,",reviewed,1537769067933,"M 0.1 - 39km SSE of Goldfield, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537804434625,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657860 +,,20261699,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261699&format=geojson,,,,",ak20261699,",1.2,ml,,ak,,"100km NW of Arctic Village, Alaska",0.43,22,",ak,",reviewed,1537769066142,"M 1.2 - 100km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530187985,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261699 +,,37366178,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37366178&format=geojson,0.03128,,37.0,",ci37366178,",1.14,ml,,ci,50.0,"8km ENE of Aguanga, CA",0.19,20,",ci,",reviewed,1537768920270,"M 1.1 - 8km ENE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537796652110,https://earthquake.usgs.gov/earthquakes/eventpage/ci37366178 +,,37366170,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37366170&format=geojson,0.02091,,135.0,",ci37366170,",1.07,ml,,ci,24.0,"3km WSW of Orange, CA",0.17,18,",ci,",reviewed,1537768822860,"M 1.1 - 3km WSW of Orange, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537908172298,https://earthquake.usgs.gov/earthquakes/eventpage/ci37366170 +,,71109629,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc71109629&format=geojson,0.04953,,194.0,",nc71109629,",0.4,md,,nc,13.0,"13km SE of Mammoth Lakes, CA",0.06,2,",nc,",reviewed,1537768770010,"M 0.4 - 13km SE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537831923745,https://earthquake.usgs.gov/earthquakes/eventpage/nc71109629 +,,73088941,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73088941&format=geojson,0.008329,,85.0,",nc73088941,",0.9,md,,nc,37.0,"5km WNW of The Geysers, CA",0.06,12,",nc,",reviewed,1537768761760,"M 0.9 - 5km WNW of The Geysers, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537831263725,https://earthquake.usgs.gov/earthquakes/eventpage/nc73088941 +,2.7,37366162,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37366162&format=geojson,0.02109,39.0,46.0,",ci37366162,",1.88,ml,,ci,72.0,"2km WNW of Orange, CA",0.22,65,",ci,",reviewed,1537768737770,"M 1.9 - 2km WNW of Orange, CA",0,earthquake,",dyfi,focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537907897350,https://earthquake.usgs.gov/earthquakes/eventpage/ci37366162 +,,20261698,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261698&format=geojson,,,,",ak20261698,",1.5,ml,,ak,,"60km WNW of Skagway, Alaska",0.5,35,",ak,",reviewed,1537768461173,"M 1.5 - 60km WNW of Skagway, Alaska",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538530187468,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261698 +,,20261695,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261695&format=geojson,,,,",ak20261695,",1.4,ml,,ak,,"42km W of Willow, Alaska",0.5,30,",ak,",reviewed,1537768153290,"M 1.4 - 42km W of Willow, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530186889,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261695 +,,73088931,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73088931&format=geojson,0.006436,,70.0,",nc73088931,",0.34,md,,nc,20.0,"9km NW of The Geysers, CA",0.03,2,",nc,",reviewed,1537768020180,"M 0.3 - 9km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537856877111,https://earthquake.usgs.gov/earthquakes/eventpage/nc73088931 +,,00657915,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657915&format=geojson,0.397,,246.48,",nn00657915,",0.2,ml,,nn,8.0,"46km ENE of Lone Pine, California",0.1266,1,",nn,",reviewed,1537767415690,"M 0.2 - 46km ENE of Lone Pine, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537816451805,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657915 +,2.3,20261686,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261686&format=geojson,,12.0,,",ak20261686,",2.6,ml,,ak,,"19km N of Ester, Alaska",0.74,107,",ak,",reviewed,1537767059537,"M 2.6 - 19km N of Ester, Alaska",0,earthquake,",dyfi,geoserve,origin,phase-data,",-540.0,1538681101062,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261686 +,,00657857,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657857&format=geojson,0.139,,162.5,",nn00657857,",0.4,ml,,nn,7.0,"13km NE of Big Pine, California",0.106,2,",nn,",reviewed,1537766112212,"M 0.4 - 13km NE of Big Pine, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537803143589,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657857 +,,00657911,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657911&format=geojson,0.369,,171.4,",nn00657911,",0.6,ml,,nn,6.0,"30km WSW of Hawthorne, Nevada",0.2245,6,",nn,",reviewed,1537766005244,"M 0.6 - 30km WSW of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537815160855,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657911 +,,37366146,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37366146&format=geojson,0.02356,,95.0,",ci37366146,",0.24,ml,,ci,21.0,"9km NE of Aguanga, CA",0.1,1,",ci,",reviewed,1537765832390,"M 0.2 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537843810312,https://earthquake.usgs.gov/earthquakes/eventpage/ci37366146 +,,20261685,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261685&format=geojson,,,,",ak20261685,",1.0,ml,,ak,,"114km SSW of Fort McPherson, Canada",0.57,15,",ak,",reviewed,1537765555398,"M 1.0 - 114km SSW of Fort McPherson, Canada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538530185782,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261685 +,,70609042,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70609042&format=geojson,0.04489,,111.0,",hv70609042,",2.31,ml,,hv,45.0,"14km SE of Volcano, Hawaii",0.11,82,",hv,",reviewed,1537764985660,"M 2.3 - 14km SE of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537929852790,https://earthquake.usgs.gov/earthquakes/eventpage/hv70609042 +,,73088906,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73088906&format=geojson,0.009026,,32.0,",nc73088906,",1.02,md,,nc,37.0,"4km W of Cobb, CA",0.05,16,",nc,",reviewed,1537764880490,"M 1.0 - 4km W of Cobb, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537856164170,https://earthquake.usgs.gov/earthquakes/eventpage/nc73088906 +,,2000hj80,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hj80&format=geojson,1.242,,140.0,",us2000hj80,",4.1,mb,,us,,"97km N of Mombetsu, Japan",0.85,259,",us,",reviewed,1537764836900,"M 4.1 - 97km N of Mombetsu, Japan",0,earthquake,",geoserve,origin,phase-data,",600.0,1538716171040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hj80 +,,20261684,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261684&format=geojson,,,,",av61784866,ak20261684,",1.1,ml,,ak,,"32km SW of Tanaga Volcano, Alaska",0.56,19,",av,ak,",reviewed,1537763098659,"M 1.1 - 32km SW of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538530185310,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261684 +,,37366130,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37366130&format=geojson,0.1059,,80.0,",ci37366130,",0.95,ml,,ci,36.0,"2km NNW of Colton, CA",0.15,14,",ci,",reviewed,1537762913640,"M 1.0 - 2km NNW of Colton, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537905477125,https://earthquake.usgs.gov/earthquakes/eventpage/ci37366130 +,,37366122,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37366122&format=geojson,0.01369,,63.0,",ci37366122,",0.29,ml,,ci,21.0,"9km NE of Aguanga, CA",0.1,1,",ci,",reviewed,1537762667480,"M 0.3 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537904754362,https://earthquake.usgs.gov/earthquakes/eventpage/ci37366122 +,,2018267002,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018267002&format=geojson,0.0424,,147.0,",pr2018267002,",2.54,md,,pr,10.0,"7km E of Mayaguez, Puerto Rico",0.35,99,",pr,",reviewed,1537762642460,"M 2.5 - 7km E of Mayaguez, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1537772419513,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018267002 +,,00657908,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657908&format=geojson,0.158,,117.91,",nn00657908,",1.2,ml,,nn,11.0,"10km ESE of East Quincy, California",0.1643,22,",nn,",reviewed,1537762618239,"M 1.2 - 10km ESE of East Quincy, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537814047220,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657908 +,,1000h610,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h610&format=geojson,0.571,,178.0,",ak20261681,us1000h610,",2.7,ml,,us,,"62km SE of False Pass, Alaska",0.65,112,",ak,us,",reviewed,1537762458820,"M 2.7 - 62km SE of False Pass, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538714987040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h610 +,,37366114,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37366114&format=geojson,0.08814,,69.0,",ci37366114,",0.73,ml,,ci,34.0,"9km NE of Aguanga, CA",0.19,8,",ci,",reviewed,1537762232330,"M 0.7 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537796896090,https://earthquake.usgs.gov/earthquakes/eventpage/ci37366114 +,,60297472,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60297472&format=geojson,0.09843,,164.0,",uu60297472,",1.21,ml,,uu,6.0,"12km E of Kanab, Utah",0.05,23,",uu,",reviewed,1537761738500,"M 1.2 - 12km E of Kanab, Utah",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537903564130,https://earthquake.usgs.gov/earthquakes/eventpage/uu60297472 +,,37366098,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37366098&format=geojson,0.02667,,159.0,",ci37366098,",0.44,ml,,ci,16.0,"14km E of Anza, CA",0.23,3,",ci,",reviewed,1537761487170,"M 0.4 - 14km E of Anza, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537796848182,https://earthquake.usgs.gov/earthquakes/eventpage/ci37366098 +,,20261676,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261676&format=geojson,,,,",ak20261676,",1.3,ml,,ak,,"40km SW of Fort Yukon, Alaska",0.86,26,",ak,",reviewed,1537761484960,"M 1.3 - 40km SW of Fort Yukon, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530184166,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261676 +,,00657904,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657904&format=geojson,0.081,,227.39,",nn00657904,",-0.4,ml,,nn,6.0,"27km NW of Beatty, Nevada",0.1004,0,",nn,",reviewed,1537761238802,"M -0.4 - 27km NW of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537809623838,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657904 +,,1000h3vd,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3vd&format=geojson,3.386,,148.0,",us1000h3vd,",4.2,mb,,us,,"14km SSW of Agrihan, Northern Mariana Islands",0.31,271,",us,",reviewed,1537761100640,"M 4.2 - 14km SSW of Agrihan, Northern Mariana Islands",0,earthquake,",geoserve,origin,phase-data,",600.0,1538714847040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3vd +,2.0,2000hj7e,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hj7e&format=geojson,0.136,1.0,121.0,",us2000hj7e,mb80310979,",2.7,ml,,us,,"16km ESE of Lincoln, Montana",0.56,112,",us,mb,",reviewed,1537761023310,"M 2.7 - 16km ESE of Lincoln, Montana",0,earthquake,",dyfi,geoserve,origin,phase-data,",-420.0,1538714521199,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hj7e +,,20269814,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20269814&format=geojson,,,,",ak20269814,",1.6,ml,,ak,,"37km SSE of Adak, Alaska",0.23,39,",ak,",reviewed,1537760904384,"M 1.6 - 37km SSE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538530183706,https://earthquake.usgs.gov/earthquakes/eventpage/ak20269814 +,3.4,2000hj7b,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hj7b&format=geojson,3.359,1.0,26.0,",us2000hj7b,",5.0,mb,,us,,"10km WSW of Kainantu, Papua New Guinea",1.1,385,",us,",reviewed,1537760541200,"M 5.0 - 10km WSW of Kainantu, Papua New Guinea",1,earthquake,",dyfi,geoserve,origin,phase-data,",600.0,1538714419929,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hj7b +,,60297462,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60297462&format=geojson,0.3263,,115.0,",uu60297462,",1.26,md,,uu,8.0,"19km WNW of Montpelier, Idaho",0.15,24,",uu,",reviewed,1537760410370,"M 1.3 - 19km WNW of Montpelier, Idaho",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537910513450,https://earthquake.usgs.gov/earthquakes/eventpage/uu60297462 +,2.8,37366074,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37366074&format=geojson,0.01877,14.0,133.0,",ci37366074,",1.69,ml,,ci,55.0,"3km W of Orange, CA",0.2,48,",ci,",reviewed,1537760253500,"M 1.7 - 3km W of Orange, CA",0,earthquake,",dyfi,focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537904592508,https://earthquake.usgs.gov/earthquakes/eventpage/ci37366074 +,,61784816,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61784816&format=geojson,0.02025,,114.0,",av61784816,",-0.62,ml,,av,5.0,"42km ENE of Adak, Alaska",0.09,0,",av,",reviewed,1537759791120,"M -0.6 - 42km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537923998790,https://earthquake.usgs.gov/earthquakes/eventpage/av61784816 +,,70804499,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804499&format=geojson,0.2154,,264.0,",av70804499,",0.99,ml,,av,4.0,"51km SW of Nikolski, Alaska",0.16,15,",av,",reviewed,1537759366910,"M 1.0 - 51km SW of Nikolski, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537981277500,https://earthquake.usgs.gov/earthquakes/eventpage/av70804499 +,,20261667,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261667&format=geojson,,,,",ak20261667,",1.6,ml,,ak,,"43km WSW of Larsen Bay, Alaska",0.82,39,",ak,",reviewed,1537759279517,"M 1.6 - 43km WSW of Larsen Bay, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530183194,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261667 +,,70804489,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804489&format=geojson,0.07282,,221.0,",av70804489,",-0.3,ml,,av,4.0,"23km W of Dutch Harbor, Alaska",0.04,0,",av,",reviewed,1537759032370,"M -0.3 - 23km W of Dutch Harbor, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537982461560,https://earthquake.usgs.gov/earthquakes/eventpage/av70804489 +,,20261661,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261661&format=geojson,,,,",ak20261661,us2000hj74,",2.4,ml,,ak,,"45km SSW of Anchorage, Alaska",0.54,89,",ak,us,",reviewed,1537758898283,"M 2.4 - 45km SSW of Anchorage, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538712340040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261661 +,,73088886,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73088886&format=geojson,0.008936,,131.0,",nc73088886,",0.55,md,,nc,8.0,"4km NW of The Geysers, CA",0.02,5,",nc,",automatic,1537758814990,"M 0.6 - 4km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537758908943,https://earthquake.usgs.gov/earthquakes/eventpage/nc73088886 +,,37366058,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37366058&format=geojson,0.008647,,61.0,",ci37366058,",0.89,ml,,ci,43.0,"9km NE of Aguanga, CA",0.18,12,",ci,",reviewed,1537758697210,"M 0.9 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537797141080,https://earthquake.usgs.gov/earthquakes/eventpage/ci37366058 +,,20261660,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261660&format=geojson,,,,",ak20261660,",2.0,ml,,ak,,"102km N of Chirikof Island, Alaska",0.59,62,",ak,",reviewed,1537758688938,"M 2.0 - 102km N of Chirikof Island, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538530181947,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261660 +,,70804439,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804439&format=geojson,0.01623,,110.0,",av70804439,",-0.51,ml,,av,5.0,"41km ENE of Adak, Alaska",0.14,0,",av,",reviewed,1537758486870,"M -0.5 - 41km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537924257540,https://earthquake.usgs.gov/earthquakes/eventpage/av70804439 +,,61784801,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61784801&format=geojson,0.0179,,114.0,",av61784801,",-0.33,ml,,av,5.0,"41km ENE of Adak, Alaska",0.11,0,",av,",reviewed,1537758469090,"M -0.3 - 41km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537924192320,https://earthquake.usgs.gov/earthquakes/eventpage/av61784801 +,,73088866,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73088866&format=geojson,0.005718,,70.0,",nc73088866,",0.23,md,,nc,19.0,"7km WNW of The Geysers, CA",0.04,1,",nc,",reviewed,1537758027840,"M 0.2 - 7km WNW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537819623514,https://earthquake.usgs.gov/earthquakes/eventpage/nc73088866 +,,20261655,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261655&format=geojson,,,,",ak20261655,",1.8,ml,,ak,,"113km N of Ruby, Alaska",0.67,50,",ak,",reviewed,1537757778804,"M 1.8 - 113km N of Ruby, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530181394,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261655 +,,20261654,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261654&format=geojson,,,,",ak20261654,",1.2,ml,,ak,,"127km NW of Arctic Village, Alaska",0.79,22,",ak,",reviewed,1537757734981,"M 1.2 - 127km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530180838,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261654 +,,70804429,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804429&format=geojson,0.06481,,130.0,",av70804429,",-0.02,ml,,av,6.0,"21km W of Unalaska, Alaska",0.18,0,",av,",reviewed,1537757678340,"M -0.0 - 21km W of Unalaska, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537923547090,https://earthquake.usgs.gov/earthquakes/eventpage/av70804429 +,,1000h3vb,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3vb&format=geojson,3.498,,126.0,",us1000h3vb,",4.5,mb,,us,,Fiji region,0.99,312,",us,",reviewed,1537757284830,M 4.5 - Fiji region,0,earthquake,",geoserve,origin,phase-data,",-720.0,1538711245040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3vb +,,20261572,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261572&format=geojson,,,,",ak20261572,",1.3,ml,,ak,,"62km W of Valdez, Alaska",0.85,26,",ak,",reviewed,1537756997053,"M 1.3 - 62km W of Valdez, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530180293,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261572 +,,00657902,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657902&format=geojson,0.031,,87.84,",nn00657902,",-0.4,ml,,nn,17.0,"55km ENE of Beatty, Nevada",0.1786,0,",nn,",reviewed,1537756710991,"M -0.4 - 55km ENE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537809063224,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657902 +,,73088856,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73088856&format=geojson,0.01265,,72.0,",nc73088856,",0.39,md,,nc,9.0,"3km NNW of The Geysers, CA",0.04,2,",nc,",automatic,1537756698660,"M 0.4 - 3km NNW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537756794888,https://earthquake.usgs.gov/earthquakes/eventpage/nc73088856 +,,37366026,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37366026&format=geojson,0.05975,,40.0,",ci37366026,",0.96,ml,,ci,35.0,"6km WNW of Lake Henshaw, CA",0.2,14,",ci,",automatic,1537756634960,"M 1.0 - 6km WNW of Lake Henshaw, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537827257500,https://earthquake.usgs.gov/earthquakes/eventpage/ci37366026 +,,20261569,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261569&format=geojson,,,,",ak20261569,",1.1,ml,,ak,,"103km NW of Arctic Village, Alaska",0.82,19,",ak,",reviewed,1537756628647,"M 1.1 - 103km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530179776,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261569 +,,61784786,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61784786&format=geojson,0.02005,,119.0,",av61784786,",-0.49,ml,,av,5.0,"42km ENE of Adak, Alaska",0.09,0,",av,",reviewed,1537756608900,"M -0.5 - 42km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537922928240,https://earthquake.usgs.gov/earthquakes/eventpage/av61784786 +,,37366018,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37366018&format=geojson,0.05994,,71.0,",ci37366018,",1.29,ml,,ci,46.0,"7km E of Lucerne Valley, CA",0.13,26,",ci,",reviewed,1537756326280,"M 1.3 - 7km E of Lucerne Valley, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538005200550,https://earthquake.usgs.gov/earthquakes/eventpage/ci37366018 +,,20269806,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20269806&format=geojson,,,,",ak20269806,",0.8,ml,,ak,,"116km NW of Talkeetna, Alaska",0.59,10,",ak,",reviewed,1537755998829,"M 0.8 - 116km NW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530179314,https://earthquake.usgs.gov/earthquakes/eventpage/ak20269806 +,,00657900,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657900&format=geojson,0.169,,110.23,",nn00657900,",0.2,ml,,nn,13.0,"36km SSE of Goldfield, Nevada",0.2027,1,",nn,",reviewed,1537755998056,"M 0.2 - 36km SSE of Goldfield, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537808324526,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657900 +,,37366010,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37366010&format=geojson,0.01051,,36.0,",ci37366010,",0.83,ml,,ci,41.0,"9km NE of Aguanga, CA",0.18,11,",ci,",reviewed,1537755870000,"M 0.8 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537797451640,https://earthquake.usgs.gov/earthquakes/eventpage/ci37366010 +,,20261567,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261567&format=geojson,,,,",ak20261567,",0.9,ml,,ak,,"7km NNW of Cantwell, Alaska",0.74,12,",ak,",reviewed,1537755864907,"M 0.9 - 7km NNW of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530178807,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261567 +,,2018267000,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018267000&format=geojson,0.0839,,214.0,",pr2018267000,us2000hj8w,",2.4,md,,pr,16.0,"2km NE of San Juan, Puerto Rico",0.17,89,",pr,us,",reviewed,1537755657180,"M 2.4 - 2km NE of San Juan, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538709165040,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018267000 +,,70804424,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804424&format=geojson,0.06587,,134.0,",av70804424,",0.08,ml,,av,6.0,"21km W of Unalaska, Alaska",0.18,0,",av,",reviewed,1537755041710,"M 0.1 - 21km W of Unalaska, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537923384870,https://earthquake.usgs.gov/earthquakes/eventpage/av70804424 +,,73088836,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73088836&format=geojson,0.01886,,166.0,",nc73088836,",0.42,md,,nc,10.0,"13km ESE of Mammoth Lakes, CA",0.06,3,",nc,",reviewed,1537754984320,"M 0.4 - 13km ESE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537811210996,https://earthquake.usgs.gov/earthquakes/eventpage/nc73088836 +,,2018267001,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018267001&format=geojson,2.4721,,258.0,",pr2018267001,us2000hj8u,",3.59,md,,pr,14.0,"158km NE of Road Town, British Virgin Islands",0.44,198,",pr,us,",reviewed,1537754392570,"M 3.6 - 158km NE of Road Town, British Virgin Islands",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538708035040,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018267001 +,,61784771,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61784771&format=geojson,0.01743,,114.0,",av61784771,",0.78,ml,,av,5.0,"45km WSW of Tanaga Volcano, Alaska",0.09,9,",av,",reviewed,1537754347580,"M 0.8 - 45km WSW of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537921303510,https://earthquake.usgs.gov/earthquakes/eventpage/av61784771 +,,20261558,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261558&format=geojson,,,,",ak20261558,us2000hj6i,",2.5,ml,,ak,,"107km NNW of Arctic Village, Alaska",0.67,96,",ak,us,",reviewed,1537753723599,"M 2.5 - 107km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538704450040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261558 +,,20261557,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261557&format=geojson,,,,",ak20261557,",2.2,ml,,ak,,"91km NW of Arctic Village, Alaska",0.47,74,",ak,",reviewed,1537753695141,"M 2.2 - 91km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538681067164,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261557 +,,20261556,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261556&format=geojson,,,,",ak20261556,",1.2,ml,,ak,,"79km ESE of Whittier, Alaska",0.53,22,",ak,",reviewed,1537752907191,"M 1.2 - 79km ESE of Whittier, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530177194,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261556 +,,70608767,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70608767&format=geojson,0.0402,,135.0,",hv70608767,",1.6,md,,hv,20.0,"13km ENE of Pahala, Hawaii",0.09,39,",hv,",reviewed,1537752888170,"M 1.6 - 13km ENE of Pahala, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537898609630,https://earthquake.usgs.gov/earthquakes/eventpage/hv70608767 +,,20261554,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261554&format=geojson,,,,",ak20261554,",1.3,ml,,ak,,"95km SSW of Kaktovik, Alaska",0.57,26,",ak,",reviewed,1537752806508,"M 1.3 - 95km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530176672,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261554 +,,00657856,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657856&format=geojson,0.161,,109.06,",nn00657856,",0.1,ml,,nn,13.0,"36km SSE of Goldfield, Nevada",0.1901,0,",nn,",reviewed,1537752209583,"M 0.1 - 36km SSE of Goldfield, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537802773815,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657856 +,,70804409,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804409&format=geojson,0.06741,,144.0,",av70804409,",-0.24,ml,,av,4.0,"21km W of Unalaska, Alaska",0.09,0,",av,",reviewed,1537752174870,"M -0.2 - 21km W of Unalaska, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537921692730,https://earthquake.usgs.gov/earthquakes/eventpage/av70804409 +,,73088816,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73088816&format=geojson,0.01725,,142.0,",nc73088816,",1.14,md,,nc,23.0,"13km ESE of Mammoth Lakes, CA",0.07,20,",nc,",reviewed,1537751996850,"M 1.1 - 13km ESE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537842363408,https://earthquake.usgs.gov/earthquakes/eventpage/nc73088816 +,,20269800,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20269800&format=geojson,,,,",ak20269800,",1.7,ml,,ak,,"165km S of King Salmon, Alaska",0.51,44,",ak,",reviewed,1537751013377,"M 1.7 - 165km S of King Salmon, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530176122,https://earthquake.usgs.gov/earthquakes/eventpage/ak20269800 +,,20261551,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261551&format=geojson,,,,",ak20261551,",1.2,ml,,ak,,"14km ESE of Anchorage, Alaska",0.83,22,",ak,",reviewed,1537750867714,"M 1.2 - 14km ESE of Anchorage, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530175608,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261551 +,,20261550,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261550&format=geojson,,,,",ak20261550,",1.4,ml,,ak,,"117km NNW of Arctic Village, Alaska",0.96,30,",ak,",reviewed,1537750616921,"M 1.4 - 117km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530175066,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261550 +,,73088796,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73088796&format=geojson,0.0362,,40.0,",nc73088796,",1.97,md,,nc,55.0,"20km E of Alum Rock, CA",0.06,60,",nc,",reviewed,1537750615330,"M 2.0 - 20km E of Alum Rock, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537837982804,https://earthquake.usgs.gov/earthquakes/eventpage/nc73088796 +,,37365970,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37365970&format=geojson,0.006675,,57.0,",ci37365970,",0.31,ml,,ci,22.0,"10km NE of Aguanga, CA",0.1,1,",ci,",reviewed,1537749989090,"M 0.3 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537806438370,https://earthquake.usgs.gov/earthquakes/eventpage/ci37365970 +,,2000hj64,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hj64&format=geojson,1.298,,80.0,",us2000hj64,",4.8,mwr,,us,,"73km SSW of Masachapa, Nicaragua",0.84,354,",us,",reviewed,1537749595210,"M 4.8 - 73km SSW of Masachapa, Nicaragua",0,earthquake,",geoserve,moment-tensor,origin,phase-data,",-360.0,1539400902040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hj64 +,,20261546,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261546&format=geojson,,,,",ak20261546,",1.6,ml,,ak,,"20km NW of Talkeetna, Alaska",0.83,39,",ak,",reviewed,1537749513084,"M 1.6 - 20km NW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530174460,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261546 +,,70804389,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804389&format=geojson,0.06948,,212.0,",av70804389,",-0.24,ml,,av,4.0,"22km W of Dutch Harbor, Alaska",0.03,0,",av,",reviewed,1537749386690,"M -0.2 - 22km W of Dutch Harbor, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537920853350,https://earthquake.usgs.gov/earthquakes/eventpage/av70804389 +,,20261543,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261543&format=geojson,,,,",ak20261543,",1.3,ml,,ak,,"122km NW of Arctic Village, Alaska",0.59,26,",ak,",reviewed,1537749225102,"M 1.3 - 122km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530173911,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261543 +,,70804384,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804384&format=geojson,0.06789,,141.0,",av70804384,",-0.38,ml,,av,5.0,"22km W of Unalaska, Alaska",0.2,0,",av,",reviewed,1537748683280,"M -0.4 - 22km W of Unalaska, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537920625860,https://earthquake.usgs.gov/earthquakes/eventpage/av70804384 +,,00657898,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657898&format=geojson,0.059,,162.82,",nn00657898,",0.5,ml,,nn,4.0,"16km NW of Bridgeport, California",0.079,4,",nn,",reviewed,1537747919151,"M 0.5 - 16km NW of Bridgeport, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537807951573,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657898 +,,2000hj5x,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hj5x&format=geojson,2.175,,111.0,",us2000hj5x,",4.4,mb,,us,,"22km ENE of Itbayat, Philippines",0.86,298,",us,",reviewed,1537747898970,"M 4.4 - 22km ENE of Itbayat, Philippines",0,earthquake,",geoserve,origin,phase-data,",480.0,1537749018040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hj5x +,,70804379,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804379&format=geojson,0.06519,,132.0,",av70804379,",0.01,ml,,av,6.0,"21km W of Unalaska, Alaska",0.19,0,",av,",reviewed,1537747763130,"M 0.0 - 21km W of Unalaska, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537920498440,https://earthquake.usgs.gov/earthquakes/eventpage/av70804379 +,,20261541,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261541&format=geojson,,,,",ak20261541,",2.3,ml,,ak,,"104km SSE of False Pass, Alaska",0.59,81,",ak,",reviewed,1537747560891,"M 2.3 - 104km SSE of False Pass, Alaska",0,earthquake,",geoserve,origin,phase-data,",-660.0,1538530173416,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261541 +,,37196860,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37196860&format=geojson,0.04394,,171.0,",ci37196860,",0.99,ml,,ci,15.0,"23km SSW of La Quinta, CA",0.12,15,",ci,",reviewed,1537747442490,"M 1.0 - 23km SSW of La Quinta, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538157649965,https://earthquake.usgs.gov/earthquakes/eventpage/ci37196860 +,,20261540,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261540&format=geojson,,,,",ak20261540,",1.5,ml,,ak,,"95km NNW of Arctic Village, Alaska",0.6,35,",ak,",reviewed,1537747441758,"M 1.5 - 95km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530172927,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261540 +,,37365946,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37365946&format=geojson,0.04028,,119.0,",ci37365946,",0.93,ml,,ci,23.0,"22km SSW of La Quinta, CA",0.2,13,",ci,",automatic,1537747440030,"M 0.9 - 22km SSW of La Quinta, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537826537893,https://earthquake.usgs.gov/earthquakes/eventpage/ci37365946 +,,37365938,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37365938&format=geojson,0.01179,,36.0,",ci37365938,",0.84,ml,,ci,35.0,"9km NE of Aguanga, CA",0.18,11,",ci,",reviewed,1537747369760,"M 0.8 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537797757240,https://earthquake.usgs.gov/earthquakes/eventpage/ci37365938 +,,20269793,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20269793&format=geojson,,,,",ak20269793,",1.0,ml,,ak,,"7km ESE of Big Lake, Alaska",0.53,15,",ak,",reviewed,1537747322959,"M 1.0 - 7km ESE of Big Lake, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538530172354,https://earthquake.usgs.gov/earthquakes/eventpage/ak20269793 +,,1000h3v9,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3v9&format=geojson,7.695,,127.0,",us1000h3v9,",4.6,mb,,us,,"84km ENE of Bristol Island, South Sandwich Islands",1.14,326,",us,",reviewed,1537747220750,"M 4.6 - 84km ENE of Bristol Island, South Sandwich Islands",0,earthquake,",geoserve,origin,phase-data,",-120.0,1539400129040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3v9 +,,20261539,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261539&format=geojson,,,,",ak20261539,",1.0,ml,,ak,,"48km SSE of Adak, Alaska",0.32,15,",ak,",reviewed,1537746907333,"M 1.0 - 48km SSE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-720.0,1538071232662,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261539 +,,00657905,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657905&format=geojson,0.077,,91.89,",nn00657905,",-0.5,ml,,nn,7.0,"45km ESE of Beatty, Nevada",0.0627,0,",nn,",reviewed,1537746442695,"M -0.5 - 45km ESE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537809996448,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657905 +,,73088791,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73088791&format=geojson,0.006039,,99.0,",nc73088791,",0.88,md,,nc,12.0,"6km W of Cobb, CA",0.02,12,",nc,",automatic,1537746299140,"M 0.9 - 6km W of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537746394129,https://earthquake.usgs.gov/earthquakes/eventpage/nc73088791 +,,20261537,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261537&format=geojson,,,,",ak20261537,",1.3,ml,,ak,,"76km SSW of Kaktovik, Alaska",0.71,26,",ak,",reviewed,1537746244585,"M 1.3 - 76km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071232099,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261537 +,,37365930,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37365930&format=geojson,0.04533,,40.0,",ci37365930,",1.45,ml,,ci,56.0,"9km NNE of Banning, CA",0.13,32,",ci,",reviewed,1537745981170,"M 1.5 - 9km NNE of Banning, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537825137730,https://earthquake.usgs.gov/earthquakes/eventpage/ci37365930 +,,70804334,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804334&format=geojson,0.06734,,136.0,",av70804334,",-0.33,ml,,av,5.0,"21km W of Dutch Harbor, Alaska",0.11,0,",av,",reviewed,1537745880530,"M -0.3 - 21km W of Dutch Harbor, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537906790970,https://earthquake.usgs.gov/earthquakes/eventpage/av70804334 +,,37365922,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37365922&format=geojson,0.1123,,110.0,",ci37365922,",1.25,ml,,ci,11.0,"6km NNW of Boron, CA",0.12,24,",ci,",reviewed,1537745817280,"M 1.3 Quarry Blast - 6km NNW of Boron, CA",0,quarry blast,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537824673701,https://earthquake.usgs.gov/earthquakes/eventpage/ci37365922 +,,73088781,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73088781&format=geojson,0.002138,,59.0,",nc73088781,",1.51,md,,nc,41.0,"5km NW of The Geysers, CA",0.06,35,",nc,",reviewed,1537745440860,"M 1.5 - 5km NW of The Geysers, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537864082741,https://earthquake.usgs.gov/earthquakes/eventpage/nc73088781 +,,1000h3ue,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3ue&format=geojson,2.554,,77.0,",us1000h3ue,",4.2,mb,,us,,"7km NE of Sambelia, Indonesia",0.73,271,",us,",reviewed,1537745421840,"M 4.2 - 7km NE of Sambelia, Indonesia",0,earthquake,",geoserve,origin,phase-data,",480.0,1538888120040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3ue +,,20265563,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265563&format=geojson,,,,",ak20265563,",1.2,ml,,ak,,"74km SSW of Kaktovik, Alaska",0.7,22,",ak,",reviewed,1537745202360,"M 1.2 - 74km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071231554,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265563 +,,20261534,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261534&format=geojson,,,,",ak20261534,",1.1,ml,,ak,,"75km NNE of Sutton-Alpine, Alaska",0.5,19,",ak,",reviewed,1537744870777,"M 1.1 - 75km NNE of Sutton-Alpine, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071230929,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261534 +,,37365898,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37365898&format=geojson,0.1254,,132.0,",ci37365898,",0.89,ml,,ci,16.0,"21km SW of Little Lake, CA",0.15,12,",ci,",reviewed,1537744498830,"M 0.9 - 21km SW of Little Lake, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538007521499,https://earthquake.usgs.gov/earthquakes/eventpage/ci37365898 +,,00657903,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657903&format=geojson,0.144,,137.24,",nn00657903,",0.1,ml,,nn,9.0,"59km S of Goldfield, Nevada",0.1895,0,",nn,",reviewed,1537744312985,"M 0.1 - 59km S of Goldfield, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537809436898,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657903 +,,1000h3uc,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3uc&format=geojson,3.811,,84.0,",us1000h3uc,",4.2,mb,,us,,"216km E of Nord, Greenland",1.26,271,",us,",reviewed,1537744253180,"M 4.2 - 216km E of Nord, Greenland",0,earthquake,",geoserve,origin,phase-data,",0.0,1538886812040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3uc +,,61784696,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61784696&format=geojson,0.0258,,135.0,",av61784696,",0.1,ml,,av,5.0,"47km WSW of Tanaga Volcano, Alaska",0.06,0,",av,",reviewed,1537744078210,"M 0.1 - 47km WSW of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537912437590,https://earthquake.usgs.gov/earthquakes/eventpage/av61784696 +,,20261524,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261524&format=geojson,,,,",ak20261524,",1.7,ml,,ak,,"53km WSW of Talkeetna, Alaska",0.4,44,",ak,",reviewed,1537743755658,"M 1.7 - 53km WSW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071230323,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261524 +,,20261517,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261517&format=geojson,,,,",ak20261517,us2000hj5j,",2.4,ml,,ak,,"54km S of Cantwell, Alaska",0.56,89,",ak,us,",reviewed,1537743663731,"M 2.4 - 54km S of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538971681040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261517 +,,70804329,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804329&format=geojson,0.0691,,141.0,",av70804329,",-0.1,ml,,av,5.0,"22km W of Unalaska, Alaska",0.11,0,",av,",reviewed,1537743352020,"M -0.1 - 22km W of Unalaska, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537906469530,https://earthquake.usgs.gov/earthquakes/eventpage/av70804329 +,,20265559,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265559&format=geojson,,,,",ak20265559,",1.5,ml,,ak,,"33km SW of Anchor Point, Alaska",0.15,35,",ak,",reviewed,1537742595507,"M 1.5 - 33km SW of Anchor Point, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538071229046,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265559 +,,70804324,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804324&format=geojson,0.06557,,130.0,",av70804324,",0.09,ml,,av,6.0,"21km W of Unalaska, Alaska",0.19,0,",av,",reviewed,1537742455930,"M 0.1 - 21km W of Unalaska, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537906239610,https://earthquake.usgs.gov/earthquakes/eventpage/av70804324 +,,73088771,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73088771&format=geojson,0.008339,,68.0,",nc73088771,",0.88,md,,nc,14.0,"7km NW of The Geysers, CA",0.03,12,",nc,",automatic,1537742409510,"M 0.9 - 7km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537742574178,https://earthquake.usgs.gov/earthquakes/eventpage/nc73088771 +,,60064923,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=se60064923&format=geojson,0.09463,,133.0,",se60064923,",1.74,md,,se,8.0,"7km NW of Vonore, Tennessee",0.09,47,",se,",reviewed,1537742246560,"M 1.7 - 7km NW of Vonore, Tennessee",0,earthquake,",geoserve,origin,phase-data,",-300.0,1537793556360,https://earthquake.usgs.gov/earthquakes/eventpage/se60064923 +,,73088761,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73088761&format=geojson,0.03903,,76.0,",nc73088761,",1.9,md,,nc,40.0,"8km SE of Livermore, CA",0.09,56,",nc,",reviewed,1537742162610,"M 1.9 - 8km SE of Livermore, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537848782996,https://earthquake.usgs.gov/earthquakes/eventpage/nc73088761 +,,20261516,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261516&format=geojson,,,,",ak20261516,",1.5,ml,,ak,,"75km SSW of Kaktovik, Alaska",0.77,35,",ak,",reviewed,1537742145606,"M 1.5 - 75km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071228450,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261516 +,,37365874,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37365874&format=geojson,0.05119,,55.0,",ci37365874,",1.39,ml,,ci,53.0,"6km ENE of Cabazon, CA",0.15,30,",ci,",reviewed,1537742034910,"M 1.4 - 6km ENE of Cabazon, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537797822370,https://earthquake.usgs.gov/earthquakes/eventpage/ci37365874 +,,00657901,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657901&format=geojson,0.173,,213.01,",nn00657901,",0.3,ml,,nn,7.0,"37km SSE of Goldfield, Nevada",0.1563,1,",nn,",reviewed,1537741514199,"M 0.3 - 37km SSE of Goldfield, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537808694151,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657901 +,,20261515,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261515&format=geojson,,,,",ak20261515,",1.8,ml,,ak,,"46km ESE of Amatignak Island, Alaska",0.38,50,",ak,",reviewed,1537741330385,"M 1.8 - 46km ESE of Amatignak Island, Alaska",0,earthquake,",geoserve,origin,phase-data,",-720.0,1538071227919,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261515 +,,2000hj50,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hj50&format=geojson,2.697,,109.0,",us2000hj50,",4.2,mb,,us,,"33km SW of Mehran, Iran",0.86,271,",us,",reviewed,1537741075510,"M 4.2 - 33km SW of Mehran, Iran",0,earthquake,",geoserve,origin,phase-data,",180.0,1537741767040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hj50 +,3.3,2000hj4s,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hj4s&format=geojson,0.016,5.0,58.0,",us2000hj4s,",2.7,mb_lg,,us,,"4km W of Cushing, Oklahoma",0.15,114,",us,",reviewed,1537740536940,"M 2.7 - 4km W of Cushing, Oklahoma",0,earthquake,",dyfi,geoserve,origin,phase-data,",-360.0,1537742538912,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hj4s +,,2000hj4x,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hj4x&format=geojson,3.345,,102.0,",us2000hj4x,",4.5,mb,,us,,"77km S of Hihifo, Tonga",0.92,312,",us,",reviewed,1537740413330,"M 4.5 - 77km S of Hihifo, Tonga",0,earthquake,",geoserve,origin,phase-data,",-720.0,1537741579040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hj4x +,,20261513,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261513&format=geojson,,,,",ak20261513,",1.5,ml,,ak,,"77km SSW of Kaktovik, Alaska",0.65,35,",ak,",reviewed,1537739978427,"M 1.5 - 77km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071227371,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261513 +,,37365842,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37365842&format=geojson,0.07424,,100.0,",ci37365842,",0.57,ml,,ci,12.0,"10km SW of Idyllwild, CA",0.13,5,",ci,",reviewed,1537739766070,"M 0.6 - 10km SW of Idyllwild, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537797809653,https://earthquake.usgs.gov/earthquakes/eventpage/ci37365842 +,,2018266011,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018266011&format=geojson,1.1774,,341.0,",pr2018266011,",2.53,md,,pr,8.0,"65km N of Charlotte Amalie, U.S. Virgin Islands",0.44,98,",pr,",reviewed,1537739514300,"M 2.5 - 65km N of Charlotte Amalie, U.S. Virgin Islands",0,earthquake,",geoserve,origin,phase-data,",-240.0,1537749738707,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018266011 +,,20261509,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261509&format=geojson,,,,",ak20261509,",1.8,ml,,ak,,"77km SSW of Kaktovik, Alaska",0.87,50,",ak,",reviewed,1537739393388,"M 1.8 - 77km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071226794,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261509 +,,2018266010,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018266010&format=geojson,1.2588,,238.0,",pr2018266010,",3.5,md,,pr,15.0,"70km NNW of Road Town, British Virgin Islands",0.46,188,",pr,",reviewed,1537739366600,"M 3.5 - 70km NNW of Road Town, British Virgin Islands",0,earthquake,",geoserve,origin,phase-data,",-240.0,1537741884855,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018266010 +,,20261508,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261508&format=geojson,,,,",av70804319,ak20261508,",0.5,ml,,ak,,"21km W of Unalaska, Alaska",0.53,4,",av,ak,",reviewed,1537739122427,"M 0.5 - 21km W of Unalaska, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071226291,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261508 +,,20261503,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261503&format=geojson,,,,",ak20261503,",1.8,ml,,ak,,"30km ESE of Healy, Alaska",0.53,50,",ak,",reviewed,1537738777329,"M 1.8 - 30km ESE of Healy, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071225628,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261503 +,,70804314,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804314&format=geojson,0.06881,,138.0,",av70804314,",-0.09,ml,,av,5.0,"21km W of Dutch Harbor, Alaska",0.09,0,",av,",reviewed,1537738749560,"M -0.1 - 21km W of Dutch Harbor, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537905340110,https://earthquake.usgs.gov/earthquakes/eventpage/av70804314 +,,70804309,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804309&format=geojson,0.06985,,134.0,",av70804309,",0.33,ml,,av,5.0,"21km W of Dutch Harbor, Alaska",0.17,2,",av,",reviewed,1537738702050,"M 0.3 - 21km W of Dutch Harbor, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537904645870,https://earthquake.usgs.gov/earthquakes/eventpage/av70804309 +,2.7,2000hj4d,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hj4d&format=geojson,2.421,2.0,106.0,",us2000hj4d,",4.1,mb,,us,,"64km ESE of Owase, Japan",1.01,259,",us,",reviewed,1537738421220,"M 4.1 - 64km ESE of Owase, Japan",0,earthquake,",dyfi,geoserve,origin,phase-data,",540.0,1537740803336,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hj4d +,,20261500,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261500&format=geojson,,,,",ak20261500,",2.2,ml,,ak,,"77km SSW of Kaktovik, Alaska",0.79,74,",ak,",reviewed,1537737991282,"M 2.2 - 77km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071225022,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261500 +,,00657899,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657899&format=geojson,0.396,,171.08,",nn00657899,",0.1,ml,,nn,5.0,"45km NE of Pahrump, Nevada",0.1059,0,",nn,",reviewed,1537736738252,"M 0.1 - 45km NE of Pahrump, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537807953947,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657899 +,,37365826,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37365826&format=geojson,0.02387,,56.0,",ci37365826,",0.39,ml,,ci,24.0,"9km NE of Aguanga, CA",0.13,2,",ci,",reviewed,1537736662060,"M 0.4 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537807679067,https://earthquake.usgs.gov/earthquakes/eventpage/ci37365826 +,,00657897,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657897&format=geojson,0.173,,213.45,",nn00657897,",0.2,ml,,nn,8.0,"37km SSE of Goldfield, Nevada",0.1685,1,",nn,",reviewed,1537736390248,"M 0.2 - 37km SSE of Goldfield, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537807581783,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657897 +,,20261498,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261498&format=geojson,,,,",ak20261498,",2.2,ml,,ak,,"102km ESE of Adak, Alaska",0.76,74,",ak,",reviewed,1537736271977,"M 2.2 - 102km ESE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-720.0,1538071224492,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261498 +,,20261488,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261488&format=geojson,,,,",ak20261488,us2000hj3m,",2.8,ml,,ak,,"67km WSW of Tok, Alaska",0.78,121,",ak,us,",reviewed,1537735862762,"M 2.8 - 67km WSW of Tok, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071223829,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261488 +,,20261482,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261482&format=geojson,,,,",ak20261482,us2000hj3n,",2.7,ml,,ak,,"95km NW of Talkeetna, Alaska",0.44,112,",ak,us,",reviewed,1537735820667,"M 2.7 - 95km NW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071223025,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261482 +,,70608367,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70608367&format=geojson,0.009804,,125.0,",hv70608367,",1.88,ml,,hv,16.0,"5km SW of Volcano, Hawaii",0.25,54,",hv,",automatic,1537735355010,"M 1.9 - 5km SW of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537735699900,https://earthquake.usgs.gov/earthquakes/eventpage/hv70608367 +,,70608362,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70608362&format=geojson,0.02258,,120.0,",hv70608362,",1.93,ml,,hv,18.0,"6km WNW of Volcano, Hawaii",0.31,57,",hv,",automatic,1537735351870,"M 1.9 - 6km WNW of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537735692030,https://earthquake.usgs.gov/earthquakes/eventpage/hv70608362 +,,61784586,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61784586&format=geojson,0.01851,,117.0,",av61784586,",-0.2,ml,,av,5.0,"41km ENE of Adak, Alaska",0.03,0,",av,",reviewed,1537735252280,"M -0.2 - 41km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537903966590,https://earthquake.usgs.gov/earthquakes/eventpage/av61784586 +,,20261480,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261480&format=geojson,,,,",av61784581,ak20261480,",1.6,ml,,ak,,"55km WSW of Adak, Alaska",0.42,39,",av,ak,",reviewed,1537734912553,"M 1.6 - 55km WSW of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538071222463,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261480 +,,70804304,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804304&format=geojson,0.06747,,128.0,",av70804304,",0.33,ml,,av,6.0,"21km W of Dutch Harbor, Alaska",0.19,2,",av,",reviewed,1537734305370,"M 0.3 - 21km W of Dutch Harbor, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537904264300,https://earthquake.usgs.gov/earthquakes/eventpage/av70804304 +,,20261476,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261476&format=geojson,,,,",ak20261476,",1.3,ml,,ak,,"25km SW of Tanaga Volcano, Alaska",0.39,26,",ak,",reviewed,1537733444373,"M 1.3 - 25km SW of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538071221889,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261476 +,,70804299,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804299&format=geojson,0.06898,,140.0,",av70804299,",-0.27,ml,,av,5.0,"22km W of Unalaska, Alaska",0.11,0,",av,",reviewed,1537733140630,"M -0.3 - 22km W of Unalaska, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537904126870,https://earthquake.usgs.gov/earthquakes/eventpage/av70804299 +,,20261467,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261467&format=geojson,,,,",ak20261467,",1.2,ml,,ak,,"26km NW of Valdez, Alaska",0.72,22,",ak,",reviewed,1537733024961,"M 1.2 - 26km NW of Valdez, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071221253,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261467 +,,2000hj34,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hj34&format=geojson,2.045,,83.0,",us2000hj34,",4.9,mb,,us,,"159km SSE of Lambasa, Fiji",0.84,369,",us,",reviewed,1537732471530,"M 4.9 - 159km SSE of Lambasa, Fiji",0,earthquake,",geoserve,origin,phase-data,",-720.0,1537733379040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hj34 +,,20261464,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261464&format=geojson,,,,",ak20261464,",1.8,ml,,ak,,"106km NW of Arctic Village, Alaska",0.85,50,",ak,",reviewed,1537732343522,"M 1.8 - 106km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071220658,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261464 +,,20265544,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265544&format=geojson,,,,",ak20265544,",1.2,ml,,ak,,"74km SSW of Kaktovik, Alaska",0.86,22,",ak,",reviewed,1537731786279,"M 1.2 - 74km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071220133,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265544 +,,20261459,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261459&format=geojson,,,,",ak20261459,",1.5,ml,,ak,,"68km W of Valdez, Alaska",0.67,35,",ak,",reviewed,1537731762283,"M 1.5 - 68km W of Valdez, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071219502,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261459 +,,20261450,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261450&format=geojson,,,,",ak20261450,",1.3,ml,,ak,,"19km N of North Nenana, Alaska",0.69,26,",ak,",reviewed,1537731146409,"M 1.3 - 19km N of North Nenana, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071218924,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261450 +,,20261448,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261448&format=geojson,,,,",ak20261448,",1.7,ml,,ak,,"74km SSW of Kaktovik, Alaska",0.73,44,",ak,",reviewed,1537731096372,"M 1.7 - 74km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071218347,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261448 +,,37365770,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37365770&format=geojson,0.03325,,40.0,",ci37365770,",0.6,ml,,ci,24.0,"9km ENE of Aguanga, CA",0.17,6,",ci,",reviewed,1537730875130,"M 0.6 - 9km ENE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537797887747,https://earthquake.usgs.gov/earthquakes/eventpage/ci37365770 +,,20261447,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261447&format=geojson,,,,",ak20261447,",1.5,ml,,ak,,"104km W of Willow, Alaska",0.27,35,",ak,",reviewed,1537730748493,"M 1.5 - 104km W of Willow, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538678211457,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261447 +,,70608242,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70608242&format=geojson,0.02795,,158.0,",hv70608242,",1.79,md,,hv,27.0,"12km ENE of Pahala, Hawaii",0.13,49,",hv,",automatic,1537730676060,"M 1.8 - 12km ENE of Pahala, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537730859550,https://earthquake.usgs.gov/earthquakes/eventpage/hv70608242 +,,20261445,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261445&format=geojson,,,,",ak20261445,",1.4,ml,,ak,,"106km NW of Arctic Village, Alaska",0.69,30,",ak,",reviewed,1537730637887,"M 1.4 - 106km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071217195,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261445 +,2.0,37365754,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37365754&format=geojson,0.07181,1.0,17.0,",ci37365754,",1.98,ml,,ci,103.0,"2km ESE of Loma Linda, CA",0.14,61,",ci,",reviewed,1537730283170,"M 2.0 - 2km ESE of Loma Linda, CA",0,earthquake,",dyfi,focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537823926740,https://earthquake.usgs.gov/earthquakes/eventpage/ci37365754 +,,70804289,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804289&format=geojson,0.05912,,321.0,",av70804289,",0.33,ml,,av,4.0,"115km SSE of King Salmon, Alaska",0.07,2,",av,",reviewed,1537729759600,"M 0.3 - 115km SSE of King Salmon, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537902787060,https://earthquake.usgs.gov/earthquakes/eventpage/av70804289 +,,00657851,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657851&format=geojson,0.297,,116.62,",nn00657851,",0.7,ml,,nn,7.0,"20km S of East Quincy, California",0.1618,8,",nn,",reviewed,1537729711135,"M 0.7 - 20km S of East Quincy, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537754725099,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657851 +,2.0,2000hj2n,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hj2n&format=geojson,0.62,2.0,52.0,",us2000hj2n,",5.0,mb,,us,,"149km N of Calama, Chile",1.37,385,",us,",reviewed,1537729589820,"M 5.0 - 149km N of Calama, Chile",0,earthquake,",dyfi,geoserve,origin,phase-data,",-240.0,1537788622147,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hj2n +,,37365738,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37365738&format=geojson,0.1229,,33.0,",ci37365738,",1.19,ml,,ci,47.0,"2km SW of Banning, CA",0.14,22,",ci,",reviewed,1537729564110,"M 1.2 - 2km SW of Banning, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537822097240,https://earthquake.usgs.gov/earthquakes/eventpage/ci37365738 +,,20261371,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261371&format=geojson,,,,",ak20261371,",1.7,ml,,ak,,"98km N of Larsen Bay, Alaska",0.38,44,",ak,",reviewed,1537729528799,"M 1.7 - 98km N of Larsen Bay, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071216498,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261371 +,,20261368,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261368&format=geojson,,,,",ak20261368,",1.6,ml,,ak,,"78km SSW of Kaktovik, Alaska",0.62,39,",ak,",reviewed,1537729280345,"M 1.6 - 78km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071215891,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261368 +,,73088736,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73088736&format=geojson,0.008604,,98.0,",nc73088736,",0.95,md,,nc,13.0,"7km NW of The Geysers, CA",0.04,14,",nc,",automatic,1537729264190,"M 1.0 - 7km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537729359384,https://earthquake.usgs.gov/earthquakes/eventpage/nc73088736 +,,37365730,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37365730&format=geojson,0.0483,,75.0,",ci37365730,",0.61,ml,,ci,31.0,"5km SW of Warner Springs, CA",0.13,6,",ci,",reviewed,1537729138820,"M 0.6 - 5km SW of Warner Springs, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537818227082,https://earthquake.usgs.gov/earthquakes/eventpage/ci37365730 +,,20261366,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261366&format=geojson,,,,",ak20261366,",1.5,ml,,ak,,"126km NNW of Arctic Village, Alaska",0.74,35,",ak,",reviewed,1537729036843,"M 1.5 - 126km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071215252,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261366 +,,20261364,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261364&format=geojson,,,,",ak20261364,",1.1,ml,,ak,,"22km WNW of Old Crow, Canada",0.64,19,",ak,",reviewed,1537728763391,"M 1.1 - 22km WNW of Old Crow, Canada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538071214662,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261364 +,,20261360,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261360&format=geojson,,,,",ak20261360,",1.8,ml,,ak,,"34km W of Willow, Alaska",0.48,50,",ak,",reviewed,1537728707560,"M 1.8 - 34km W of Willow, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071213990,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261360 +,,61422407,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61422407&format=geojson,0.1876,,136.0,",uw61422407,",0.92,ml,,uw,11.0,"34km SSW of Toppenish, Washington",0.21,13,",uw,",reviewed,1537728591650,"M 0.9 - 34km SSW of Toppenish, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537923599820,https://earthquake.usgs.gov/earthquakes/eventpage/uw61422407 +,,20261355,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261355&format=geojson,,,,",ak20261355,",1.8,ml,,ak,,"59km WNW of Anchor Point, Alaska",0.38,50,",ak,",reviewed,1537727747592,"M 1.8 - 59km WNW of Anchor Point, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071213363,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261355 +,,70804284,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804284&format=geojson,0.06552,,132.0,",av70804284,",0.26,ml,,av,6.0,"21km W of Unalaska, Alaska",0.17,1,",av,",reviewed,1537727661850,"M 0.3 - 21km W of Unalaska, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537902059930,https://earthquake.usgs.gov/earthquakes/eventpage/av70804284 +,,20261351,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261351&format=geojson,,,,",ak20261351,",1.7,ml,,ak,,"78km SSW of Kaktovik, Alaska",0.79,44,",ak,",reviewed,1537727306389,"M 1.7 - 78km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071212781,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261351 +,,20261346,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261346&format=geojson,,,,",ak20261346,",2.1,ml,,ak,,"78km SSW of Kaktovik, Alaska",0.64,68,",ak,",reviewed,1537726862058,"M 2.1 - 78km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071212187,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261346 +,,20261342,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261342&format=geojson,,,,",ak20261342,",1.8,ml,,ak,,"138km SSE of Holy Cross, Alaska",0.74,50,",ak,",reviewed,1537726837208,"M 1.8 - 138km SSE of Holy Cross, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071211617,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261342 +,,20261341,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261341&format=geojson,,,,",ak20261341,",1.2,ml,,ak,,"57km E of Cape Yakataga, Alaska",0.4,22,",ak,",reviewed,1537726778709,"M 1.2 - 57km E of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538678210907,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261341 +,,20261339,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261339&format=geojson,,,,",ak20261339,",1.5,ml,,ak,,"29km S of Dillingham, Alaska",0.59,35,",ak,",reviewed,1537726212626,"M 1.5 - 29km S of Dillingham, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071210510,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261339 +,,20261337,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261337&format=geojson,,,,",ak20261337,",1.4,ml,,ak,,"78km SSW of Kaktovik, Alaska",0.79,30,",ak,",reviewed,1537726112244,"M 1.4 - 78km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071209979,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261337 +,,20261335,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261335&format=geojson,,,,",ak20261335,",1.3,ml,,ak,,"16km SE of Anchorage, Alaska",0.64,26,",ak,",reviewed,1537726043387,"M 1.3 - 16km SE of Anchorage, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071209351,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261335 +,,00657848,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657848&format=geojson,0.062,,123.88,",nn00657848,",0.4,ml,,nn,6.0,"15km ENE of Hawthorne, Nevada",0.1431,2,",nn,",reviewed,1537725894377,"M 0.4 - 15km ENE of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537754723358,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657848 +,,73088726,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73088726&format=geojson,0.06155,,122.0,",nc73088726,",1.23,md,,nc,20.0,"10km NNE of Pinnacles, CA",0.07,23,",nc,",reviewed,1537725843280,"M 1.2 - 10km NNE of Pinnacles, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537841343294,https://earthquake.usgs.gov/earthquakes/eventpage/nc73088726 +,,00657816,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657816&format=geojson,0.034,,43.44,",nn00657816,",0.9,ml,,nn,19.0,"3km WSW of Tahoe Vista, California",0.1881,12,",nn,",reviewed,1537725835434,"M 0.9 - 3km WSW of Tahoe Vista, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537754694667,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657816 +,,20261333,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261333&format=geojson,,,,",ak20261333,",1.7,ml,,ak,,"124km NNW of Kodiak Station, Alaska",0.36,44,",ak,",reviewed,1537725708512,"M 1.7 - 124km NNW of Kodiak Station, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071208595,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261333 +,,20261330,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261330&format=geojson,,,,",ak20261330,",1.4,ml,,ak,,"78km SSW of Kaktovik, Alaska",0.48,30,",ak,",reviewed,1537725305603,"M 1.4 - 78km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071208008,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261330 +,,20261329,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261329&format=geojson,,,,",ak20261329,",1.5,ml,,ak,,"50km WNW of Anchor Point, Alaska",0.24,35,",ak,",reviewed,1537725269969,"M 1.5 - 50km WNW of Anchor Point, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071207482,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261329 +,,80311064,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80311064&format=geojson,0.06,,98.0,",mb80311064,",0.83,ml,,mb,8.0,"51km W of West Yellowstone, Montana",0.06,11,",mb,",reviewed,1537724997330,"M 0.8 - 51km W of West Yellowstone, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537826442490,https://earthquake.usgs.gov/earthquakes/eventpage/mb80311064 +,,00657847,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657847&format=geojson,0.075,,156.13,",nn00657847,",0.1,ml,,nn,6.0,"33km NW of Gabbs, Nevada",0.0614,0,",nn,",reviewed,1537724642328,"M 0.1 - 33km NW of Gabbs, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537754721985,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657847 +,,20261325,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261325&format=geojson,,,,",ak20261325,",2.3,ml,,ak,,"63km ENE of Chirikof Island, Alaska",0.76,81,",ak,",reviewed,1537724640752,"M 2.3 - 63km ENE of Chirikof Island, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538071206960,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261325 +,,20261326,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261326&format=geojson,,,,",ak20261326,",1.4,ml,,ak,,"41km NE of Amatignak Island, Alaska",0.71,30,",ak,",reviewed,1537724633684,"M 1.4 - 41km NE of Amatignak Island, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538071206451,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261326 +,,37365674,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37365674&format=geojson,0.06718,,39.0,",ci37365674,",0.75,ml,,ci,32.0,"9km SW of Idyllwild, CA",0.19,9,",ci,",reviewed,1537724582200,"M 0.8 - 9km SW of Idyllwild, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537798068720,https://earthquake.usgs.gov/earthquakes/eventpage/ci37365674 +,,20261324,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261324&format=geojson,,,,",ak20261324,",1.6,ml,,ak,,"32km SSW of Atka, Alaska",0.56,39,",ak,",reviewed,1537724484159,"M 1.6 - 32km SSW of Atka, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538071205955,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261324 +,,20265519,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265519&format=geojson,,,,",ak20265519,",1.7,ml,,ak,,"79km SSW of Kaktovik, Alaska",0.45,44,",ak,",reviewed,1537724323743,"M 1.7 - 79km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071205352,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265519 +,,2018266009,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018266009&format=geojson,0.2418,,182.0,",pr2018266009,",2.65,md,,pr,19.0,"43km WSW of Stella, Puerto Rico",0.36,108,",pr,",reviewed,1537724117180,"M 2.7 - 43km WSW of Stella, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-300.0,1537733724859,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018266009 +,,20265518,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265518&format=geojson,,,,",ak20265518,",1.3,ml,,ak,,"78km SSW of Kaktovik, Alaska",0.35,26,",ak,",reviewed,1537724007636,"M 1.3 - 78km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071204724,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265518 +,,20261323,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261323&format=geojson,,,,",ak20261323,",0.9,ml,,ak,,"59km S of Deltana, Alaska",0.92,12,",ak,",reviewed,1537723942989,"M 0.9 - 59km S of Deltana, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071204168,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261323 +,,20261319,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261319&format=geojson,,,,",ak20261319,",1.2,ml,,ak,,"66km N of Yakutat, Alaska",0.63,22,",ak,",reviewed,1537723425485,"M 1.2 - 66km N of Yakutat, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071203607,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261319 +,,70804269,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804269&format=geojson,0.07065,,143.0,",av70804269,",-0.15,ml,,av,5.0,"22km W of Unalaska, Alaska",0.09,0,",av,",reviewed,1537723361780,"M -0.2 - 22km W of Unalaska, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537900596350,https://earthquake.usgs.gov/earthquakes/eventpage/av70804269 +,,70804264,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804264&format=geojson,0.06918,,131.0,",av70804264,",0.13,ml,,av,6.0,"21km W of Dutch Harbor, Alaska",0.18,0,",av,",reviewed,1537723330660,"M 0.1 - 21km W of Dutch Harbor, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537900406220,https://earthquake.usgs.gov/earthquakes/eventpage/av70804264 +,,20261317,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261317&format=geojson,,,,",ak20261317,",0.8,ml,,ak,,"35km NE of Redoubt Volcano, Alaska",0.36,10,",ak,",reviewed,1537723150590,"M 0.8 - 35km NE of Redoubt Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071202986,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261317 +,,37365658,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37365658&format=geojson,0.02265,,117.0,",ci37365658,",1.01,ml,,ci,20.0,"1km NNW of Orange, CA",0.23,16,",ci,",reviewed,1537723105500,"M 1.0 - 1km NNW of Orange, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537817724197,https://earthquake.usgs.gov/earthquakes/eventpage/ci37365658 +,,70804254,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804254&format=geojson,0.06588,,118.0,",av70804254,",-0.14,ml,,av,5.0,"20km W of Unalaska, Alaska",0.13,0,",av,",reviewed,1537722910720,"M -0.1 - 20km W of Unalaska, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537900111200,https://earthquake.usgs.gov/earthquakes/eventpage/av70804254 +,,70804259,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804259&format=geojson,0.06853,,137.0,",av70804259,",-0.44,ml,,av,4.0,"21km W of Dutch Harbor, Alaska",0.1,0,",av,",reviewed,1537722908240,"M -0.4 - 21km W of Dutch Harbor, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537900210040,https://earthquake.usgs.gov/earthquakes/eventpage/av70804259 +,,20261312,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261312&format=geojson,,,,",ak20261312,",1.7,ml,,ak,,"39km ESE of Semisopochnoi Island, Alaska",0.47,44,",ak,",reviewed,1537722867411,"M 1.7 - 39km ESE of Semisopochnoi Island, Alaska",0,earthquake,",geoserve,origin,phase-data,",-720.0,1538071202418,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261312 +,,70804249,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804249&format=geojson,0.0649,,121.0,",av70804249,",-0.39,ml,,av,5.0,"20km W of Dutch Harbor, Alaska",0.16,0,",av,",reviewed,1537722862480,"M -0.4 - 20km W of Dutch Harbor, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537899949500,https://earthquake.usgs.gov/earthquakes/eventpage/av70804249 +,,20261313,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261313&format=geojson,,,,",ak20261313,",1.3,ml,,ak,,"107km NW of Arctic Village, Alaska",0.78,26,",ak,",reviewed,1537722821351,"M 1.3 - 107km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071201847,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261313 +,,20261307,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261307&format=geojson,,,,",ak20261307,",1.6,ml,,ak,,"117km W of Willow, Alaska",0.35,39,",ak,",reviewed,1537722366122,"M 1.6 - 117km W of Willow, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071201291,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261307 +,,20261305,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261305&format=geojson,,,,",ak20261305,",1.9,ml,,ak,,"80km SSW of Kaktovik, Alaska",0.8,56,",ak,",reviewed,1537722335148,"M 1.9 - 80km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071200703,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261305 +,,2000hj1t,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hj1t&format=geojson,6.734,,106.0,",us2000hj1t,",4.6,mb,,us,,"152km WSW of Vaini, Tonga",0.64,326,",us,",reviewed,1537722326870,"M 4.6 - 152km WSW of Vaini, Tonga",0,earthquake,",geoserve,origin,phase-data,",-720.0,1537731629040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hj1t +,,80310944,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80310944&format=geojson,0.114,,109.0,",mb80310944,",1.23,ml,,mb,12.0,"14km ESE of Lincoln, Montana",0.13,23,",mb,",reviewed,1537722287500,"M 1.2 - 14km ESE of Lincoln, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537798862070,https://earthquake.usgs.gov/earthquakes/eventpage/mb80310944 +,,61422402,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61422402&format=geojson,0.07121,,66.0,",uw61422402,",1.48,ml,,uw,15.0,"9km N of Friday Harbor, Washington",0.25,34,",uw,",reviewed,1537722062200,"M 1.5 - 9km N of Friday Harbor, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538012365730,https://earthquake.usgs.gov/earthquakes/eventpage/uw61422402 +,,20261303,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261303&format=geojson,,,,",ak20261303,",1.3,ml,,ak,,"99km NW of Arctic Village, Alaska",0.77,26,",ak,",reviewed,1537721935709,"M 1.3 - 99km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071200157,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261303 +,,61784366,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61784366&format=geojson,0.03819,,251.0,",av61784366,",-0.4,ml,,av,5.0,"36km NE of Adak, Alaska",0.18,0,",av,",reviewed,1537721781480,"M -0.4 - 36km NE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537897338160,https://earthquake.usgs.gov/earthquakes/eventpage/av61784366 +,,20261301,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261301&format=geojson,,,,",ak20261301,",1.3,ml,,ak,,"40km WNW of Cordova, Alaska",0.71,26,",ak,",reviewed,1537721600108,"M 1.3 - 40km WNW of Cordova, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071199565,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261301 +,,20265508,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265508&format=geojson,,,,",ak20265508,",1.4,ml,,ak,,"96km E of King Salmon, Alaska",0.26,30,",ak,",reviewed,1537720867477,"M 1.4 - 96km E of King Salmon, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071199028,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265508 +,,20261299,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261299&format=geojson,,,,",ak20261299,",1.5,ml,,ak,,"22km SSW of Dillingham, Alaska",0.82,35,",ak,",reviewed,1537720672887,"M 1.5 - 22km SSW of Dillingham, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071198438,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261299 +,,20261294,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261294&format=geojson,,,,",ak20261294,",1.8,ml,,ak,,"86km SW of Kaktovik, Alaska",0.79,50,",ak,",reviewed,1537720197019,"M 1.8 - 86km SW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071197876,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261294 +,,1000h3dk,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3dk&format=geojson,0.259,,200.0,",ak20261293,us1000h3dk,",2.8,ml,,us,,"29km W of Chernabura Island, Alaska",0.42,121,",ak,us,",reviewed,1537720013500,"M 2.8 - 29km W of Chernabura Island, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538335465040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3dk +,,20261285,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261285&format=geojson,,,,",ak20261285,us2000hj14,",2.7,ml,,ak,,"82km SSW of Kaktovik, Alaska",0.82,112,",ak,us,",reviewed,1537719807981,"M 2.7 - 82km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538335206040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261285 +,,20261282,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261282&format=geojson,,,,",ak20261282,",1.5,ml,,ak,,"48km NNE of Talkeetna, Alaska",0.41,35,",ak,",reviewed,1537719760484,"M 1.5 - 48km NNE of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071196056,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261282 +,3.1,00657846,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657846&format=geojson,0.087,1.0,242.0,",nn00657846,",0.0,ml,,nn,21.0,"73km WSW of Alamo, Nevada",0.1998,0,",nn,",reviewed,1537719732040,"M 0.0 - 73km WSW of Alamo, Nevada",0,earthquake,",dyfi,geoserve,origin,phase-data,",-480.0,1537754720629,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657846 +,,00657814,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657814&format=geojson,0.063,,116.14,",nn00657814,",0.9,ml,,nn,13.0,"50km ENE of Mammoth Lakes, California",0.1608,12,",nn,",reviewed,1537719582091,"M 0.9 - 50km ENE of Mammoth Lakes, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537754691162,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657814 +,,20261280,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261280&format=geojson,,,,",ak20261280,",1.1,ml,,ak,,"60km NNW of Valdez, Alaska",0.63,19,",ak,",reviewed,1537719168619,"M 1.1 - 60km NNW of Valdez, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071195500,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261280 +,,37365618,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37365618&format=geojson,0.1247,,94.0,",ci37365618,",1.21,ml,,ci,49.0,"12km E of Ocotillo Wells, CA",0.28,23,",ci,",reviewed,1537718946970,"M 1.2 - 12km E of Ocotillo Wells, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537817271989,https://earthquake.usgs.gov/earthquakes/eventpage/ci37365618 +,,70804234,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804234&format=geojson,0.06817,,142.0,",av70804234,",-0.13,ml,,av,5.0,"22km W of Dutch Harbor, Alaska",0.13,0,",av,",reviewed,1537718941360,"M -0.1 - 22km W of Dutch Harbor, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537899306220,https://earthquake.usgs.gov/earthquakes/eventpage/av70804234 +,,20261277,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261277&format=geojson,,,,",ak20261277,",1.5,ml,,ak,,"45km NNE of Nikiski, Alaska",0.39,35,",ak,",reviewed,1537718851552,"M 1.5 - 45km NNE of Nikiski, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071194831,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261277 +,,20261275,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261275&format=geojson,,,,",ak20261275,",1.1,ml,,ak,,"47km NNW of Valdez, Alaska",0.42,19,",ak,",reviewed,1537718600653,"M 1.1 - 47km NNW of Valdez, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071194281,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261275 +,,70804224,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804224&format=geojson,0.02659,,131.0,",av70804224,",-0.68,ml,,av,5.0,"42km ENE of Adak, Alaska",0.06,0,",av,",reviewed,1537718425750,"M -0.7 - 42km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537898448240,https://earthquake.usgs.gov/earthquakes/eventpage/av70804224 +,,20261274,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261274&format=geojson,,,,",ak20261274,",1.7,ml,,ak,,"94km NNW of Arctic Village, Alaska",0.76,44,",ak,",reviewed,1537718335805,"M 1.7 - 94km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071193677,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261274 +,,20261272,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261272&format=geojson,,,,",ak20261272,",1.3,ml,,ak,,"124km NW of Arctic Village, Alaska",0.63,26,",ak,",reviewed,1537718183525,"M 1.3 - 124km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071193091,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261272 +,,00657813,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657813&format=geojson,0.076,,145.1,",nn00657813,",1.0,ml,,nn,8.0,"26km S of Hawthorne, Nevada",0.077,15,",nn,",reviewed,1537717982967,"M 1.0 - 26km S of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537754683088,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657813 +,,00657845,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657845&format=geojson,0.34,,174.76,",nn00657845,",0.6,ml,,nn,5.0,"29km WSW of Hawthorne, Nevada",0.1195,6,",nn,",reviewed,1537717908750,"M 0.6 - 29km WSW of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537754719130,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657845 +,,70804214,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804214&format=geojson,0.06603,,134.0,",av70804214,",0.27,ml,,av,6.0,"21km W of Unalaska, Alaska",0.17,1,",av,",reviewed,1537717849710,"M 0.3 - 21km W of Unalaska, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537896449360,https://earthquake.usgs.gov/earthquakes/eventpage/av70804214 +,,20261271,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261271&format=geojson,,,,",ak20261271,",1.0,ml,,ak,,"86km SSW of Fort McPherson, Canada",0.54,15,",ak,",reviewed,1537717442180,"M 1.0 - 86km SSW of Fort McPherson, Canada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538071192546,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261271 +,,1000h3tz,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3tz&format=geojson,5.855,,61.0,",us1000h3tz,",4.7,mb,,us,,South of the Fiji Islands,0.89,340,",us,",reviewed,1537717406500,M 4.7 - South of the Fiji Islands,0,earthquake,",geoserve,origin,phase-data,",720.0,1538334652040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3tz +,,20261265,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261265&format=geojson,,,,",ak20261265,",1.8,ml,,ak,,"101km NW of Arctic Village, Alaska",0.59,50,",ak,",reviewed,1537717229901,"M 1.8 - 101km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071191924,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261265 +,,20261263,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261263&format=geojson,,,,",ak20261263,",1.1,ml,,ak,,"59km NW of Cape Yakataga, Alaska",0.36,19,",ak,",reviewed,1537717229683,"M 1.1 - 59km NW of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071191321,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261263 +,,20261264,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261264&format=geojson,,,,",ak20261264,",1.8,ml,,ak,,"103km NW of Arctic Village, Alaska",0.43,50,",ak,",reviewed,1537717215918,"M 1.8 - 103km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071190797,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261264 +,,20261261,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261261&format=geojson,,,,",ak20261261,",1.2,ml,,ak,,"100km NW of Arctic Village, Alaska",0.98,22,",ak,",reviewed,1537717067009,"M 1.2 - 100km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071190237,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261261 +,,37365586,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37365586&format=geojson,0.0247,,69.0,",ci37365586,",0.43,ml,,ci,18.0,"9km NE of Aguanga, CA",0.18,3,",ci,",reviewed,1537716774130,"M 0.4 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537798133953,https://earthquake.usgs.gov/earthquakes/eventpage/ci37365586 +,,1000h3dn,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3dn&format=geojson,0.576,,207.0,",ak20261258,us1000h3dn,",4.0,mb,,us,,"80km SSW of Nikolski, Alaska",0.93,246,",ak,us,",reviewed,1537716763960,"M 4.0 - 80km SSW of Nikolski, Alaska",0,earthquake,",geoserve,origin,phase-data,",-660.0,1538678210339,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3dn +,,73088691,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73088691&format=geojson,0.01627,,290.0,",nc73088691,",0.32,md,,nc,5.0,"8km NW of The Geysers, CA",0.01,2,",nc,",reviewed,1537716737230,"M 0.3 - 8km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537837790598,https://earthquake.usgs.gov/earthquakes/eventpage/nc73088691 +,,70804209,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804209&format=geojson,0.06927,,134.0,",av70804209,",0.2,ml,,av,5.0,"21km W of Unalaska, Alaska",0.18,1,",av,",reviewed,1537716415320,"M 0.2 - 21km W of Unalaska, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537896318340,https://earthquake.usgs.gov/earthquakes/eventpage/av70804209 +,,60297432,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60297432&format=geojson,0.1534,,102.0,",uu60297432,",0.93,md,,uu,7.0,"28km SSW of Old Faithful Geyser, Wyoming",0.16,13,",uu,",reviewed,1537716381410,"M 0.9 - 28km SSW of Old Faithful Geyser, Wyoming",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537826794590,https://earthquake.usgs.gov/earthquakes/eventpage/uu60297432 +,,20261254,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261254&format=geojson,,,,",ak20261254,",1.9,ml,,ak,,"33km S of Dillingham, Alaska",0.71,56,",ak,",reviewed,1537716376264,"M 1.9 - 33km S of Dillingham, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071189055,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261254 +,,20261251,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261251&format=geojson,,,,",ak20261251,",1.9,ml,,ak,,"102km NW of Arctic Village, Alaska",0.92,56,",ak,",reviewed,1537716262602,"M 1.9 - 102km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071188425,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261251 +,,20265489,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265489&format=geojson,,,,",ak20265489,",1.9,ml,,ak,,"89km ESE of Akutan, Alaska",0.32,56,",ak,",reviewed,1537716122344,"M 1.9 - 89km ESE of Akutan, Alaska",0,earthquake,",geoserve,origin,phase-data,",-660.0,1538678209808,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265489 +,,70804229,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804229&format=geojson,0.0521,,239.0,",av70804229,",0.95,ml,,av,6.0,"115km SSE of King Salmon, Alaska",0.21,14,",av,",reviewed,1537715859040,"M 1.0 - 115km SSE of King Salmon, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537899023380,https://earthquake.usgs.gov/earthquakes/eventpage/av70804229 +,,00657807,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657807&format=geojson,0.092,,60.67,",nn00657807,",1.1,ml,,nn,27.0,"12km SSE of Mogul, Nevada",0.1873,19,",nn,",reviewed,1537715796501,"M 1.1 - 12km SSE of Mogul, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537754681244,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657807 +,,70804434,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804434&format=geojson,0.06883,,138.0,",av70804434,",-0.64,ml,,av,4.0,"21km W of Dutch Harbor, Alaska",0.1,0,",av,",reviewed,1537715692870,"M -0.6 - 21km W of Dutch Harbor, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537923804210,https://earthquake.usgs.gov/earthquakes/eventpage/av70804434 +,,20261250,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261250&format=geojson,,,,",av61784296,ak20261250,",1.7,ml,,ak,,"20km W of Unalaska, Alaska",0.49,44,",av,ak,",reviewed,1537715494997,"M 1.7 - 20km W of Unalaska, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071187370,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261250 +,,70607902,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70607902&format=geojson,0.006685,,84.0,",hv70607902,",1.8,md,,hv,13.0,"6km SW of Volcano, Hawaii",0.23,50,",hv,",automatic,1537715317520,"M 1.8 - 6km SW of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537715659900,https://earthquake.usgs.gov/earthquakes/eventpage/hv70607902 +,3.3,2000hj04,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hj04&format=geojson,1.373,10.0,137.0,",us2000hj04,",4.6,mb,,us,,"9km ENE of Funaishikawa, Japan",0.9,329,",us,",reviewed,1537715134540,"M 4.6 - 9km ENE of Funaishikawa, Japan",0,earthquake,",dyfi,geoserve,origin,phase-data,",540.0,1538332135138,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hj04 +,,2000hj03,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hj03&format=geojson,0.491,,82.0,",us2000hj03,",4.6,mb,,us,,"42km ENE of Roshtqal'a, Tajikistan",0.95,326,",us,",reviewed,1537715106600,"M 4.6 - 42km ENE of Roshtqal'a, Tajikistan",0,earthquake,",geoserve,origin,phase-data,",300.0,1538332041040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hj03 +,,1000h3dm,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3dm&format=geojson,2.568,,243.0,",ak20265487,us1000h3dm,",2.8,ml,,us,,"283km SE of Kodiak, Alaska",0.59,121,",ak,us,",reviewed,1537714943690,"M 2.8 - 283km SE of Kodiak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538678209311,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3dm +,,37365562,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37365562&format=geojson,0.08934,,94.0,",ci37365562,",0.95,ml,,ci,29.0,"16km NE of Thermal, CA",0.14,14,",ci,",reviewed,1537714846980,"M 1.0 - 16km NE of Thermal, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537816573919,https://earthquake.usgs.gov/earthquakes/eventpage/ci37365562 +,,2000hj0l,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hj0l&format=geojson,5.493,,112.0,",us2000hj0l,",5.1,mb,,us,,South of Tonga,1.42,400,",us,",reviewed,1537714792440,M 5.1 - South of Tonga,0,earthquake,",geoserve,origin,phase-data,",-720.0,1538331591040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hj0l +,,70804199,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804199&format=geojson,0.04436,,92.0,",av70804199,",-0.24,ml,,av,6.0,"16km WSW of Dutch Harbor, Alaska",0.15,0,",av,",reviewed,1537714760650,"M -0.2 - 16km WSW of Dutch Harbor, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537896123690,https://earthquake.usgs.gov/earthquakes/eventpage/av70804199 +,,70804194,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804194&format=geojson,0.06888,,128.0,",av70804194,",0.11,ml,,av,5.0,"21km W of Dutch Harbor, Alaska",0.14,0,",av,",reviewed,1537714742250,"M 0.1 - 21km W of Dutch Harbor, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537895963050,https://earthquake.usgs.gov/earthquakes/eventpage/av70804194 +,,70804419,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804419&format=geojson,0.04799,,113.0,",av70804419,",-0.56,ml,,av,5.0,"16km WSW of Dutch Harbor, Alaska",0.14,0,",av,",reviewed,1537714692010,"M -0.6 - 16km WSW of Dutch Harbor, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537923184040,https://earthquake.usgs.gov/earthquakes/eventpage/av70804419 +,2.7,20261245,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261245&format=geojson,,1.0,,",ak20261245,us2000hizx,",2.4,ml,,ak,,"8km SSE of Talkeetna, Alaska",0.59,89,",ak,us,",reviewed,1537713662314,"M 2.4 - 8km SSE of Talkeetna, Alaska",0,earthquake,",dyfi,geoserve,origin,phase-data,",-540.0,1538331042040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261245 +,,20261244,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261244&format=geojson,,,,",ak20261244,",1.4,ml,,ak,,"53km ENE of Dawson, Canada",0.88,30,",ak,",reviewed,1537713584152,"M 1.4 - 53km ENE of Dawson, Canada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538071185633,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261244 +,,20265484,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265484&format=geojson,,,,",ak20265484,",1.0,ml,,ak,,"23km E of Healy, Alaska",0.31,15,",ak,",reviewed,1537713398937,"M 1.0 - 23km E of Healy, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071185114,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265484 +,,20261240,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261240&format=geojson,,,,",ak20261240,",1.3,ml,,ak,,"47km SW of Tanaga Volcano, Alaska",0.18,26,",ak,",reviewed,1537713148957,"M 1.3 - 47km SW of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538071184537,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261240 +,,20265482,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265482&format=geojson,,,,",ak20265482,",1.6,ml,,ak,,"56km WNW of Amatignak Island, Alaska",0.48,39,",ak,",reviewed,1537712800266,"M 1.6 - 56km WNW of Amatignak Island, Alaska",0,earthquake,",geoserve,origin,phase-data,",-720.0,1538071184002,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265482 +,,20261236,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261236&format=geojson,,,,",ak20261236,",1.9,ml,,ak,,"77km SSW of Kaktovik, Alaska",0.7,56,",ak,",reviewed,1537712791293,"M 1.9 - 77km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071183404,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261236 +,,20261237,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261237&format=geojson,,,,",ak20261237,",1.6,ml,,ak,,"90km SSW of Kotzebue, Alaska",0.76,39,",ak,",reviewed,1537712740783,"M 1.6 - 90km SSW of Kotzebue, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071182841,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261237 +,,2018266008,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018266008&format=geojson,1.0459,,328.0,",pr2018266008,us2000hj0w,",2.96,md,,pr,7.0,"93km NE of Punta Cana, Dominican Republic",0.22,135,",pr,us,",reviewed,1537712696030,"M 3.0 - 93km NE of Punta Cana, Dominican Republic",0,earthquake,",geoserve,origin,phase-data,",-300.0,1537727087040,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018266008 +,,20265479,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265479&format=geojson,,,,",av61784256,ak20265479,",0.3,ml,,ak,,"90km SE of King Salmon, Alaska",0.46,1,",av,ak,",reviewed,1537712412990,"M 0.3 - 90km SE of King Salmon, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071182303,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265479 +,,70804189,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804189&format=geojson,0.02489,,134.0,",av70804189,",-0.73,ml,,av,5.0,"42km ENE of Adak, Alaska",0.24,0,",av,",reviewed,1537712374540,"M -0.7 - 42km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537895223860,https://earthquake.usgs.gov/earthquakes/eventpage/av70804189 +,,61784251,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61784251&format=geojson,0.04269,,235.0,",av61784251,",0.02,ml,,av,5.0,"104km ESE of King Salmon, Alaska",0.09,0,",av,",reviewed,1537712293800,"M 0.0 - 104km ESE of King Salmon, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537894969000,https://earthquake.usgs.gov/earthquakes/eventpage/av61784251 +,,20261234,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261234&format=geojson,,,,",ak20261234,",1.3,ml,,ak,,"86km E of Sutton-Alpine, Alaska",0.5,26,",ak,",reviewed,1537712178386,"M 1.3 - 86km E of Sutton-Alpine, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071181652,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261234 +,,70804414,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804414&format=geojson,0.1577,,305.0,",av70804414,",0.34,ml,,av,7.0,"36km SW of Unalaska, Alaska",0.21,2,",av,",reviewed,1537712152820,"M 0.3 - 36km SW of Unalaska, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537922612560,https://earthquake.usgs.gov/earthquakes/eventpage/av70804414 +,,37365522,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37365522&format=geojson,0.01503,,146.0,",ci37365522,",1.46,ml,,ci,37.0,"2km WSW of Orange, CA",0.26,33,",ci,",automatic,1537711975000,"M 1.5 - 2km WSW of Orange, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537816122500,https://earthquake.usgs.gov/earthquakes/eventpage/ci37365522 +,,00657843,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657843&format=geojson,0.035,,71.16,",nn00657843,",0.0,ml,,nn,10.0,"3km W of Tahoe Vista, California",0.1076,0,",nn,",reviewed,1537711954232,"M 0.0 - 3km W of Tahoe Vista, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537754717703,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657843 +,,37365498,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37365498&format=geojson,0.02449,,69.0,",ci37365498,",0.28,ml,,ci,21.0,"8km NE of Aguanga, CA",0.17,1,",ci,",reviewed,1537710525330,"M 0.3 - 8km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537798166538,https://earthquake.usgs.gov/earthquakes/eventpage/ci37365498 +,,20261229,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261229&format=geojson,,,,",ak20261229,us2000hizk,",3.0,ml,,ak,,"31km S of Dillingham, Alaska",0.76,138,",ak,us,",reviewed,1537710509998,"M 3.0 - 31km S of Dillingham, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538678208724,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261229 +,,70804404,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804404&format=geojson,0.1413,,311.0,",av70804404,",0.52,ml,,av,5.0,"36km SW of Unalaska, Alaska",0.1,4,",av,",reviewed,1537710313530,"M 0.5 - 36km SW of Unalaska, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537921503440,https://earthquake.usgs.gov/earthquakes/eventpage/av70804404 +,,20261228,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261228&format=geojson,,,,",ak20261228,",1.0,ml,,ak,,"46km NE of Talkeetna, Alaska",0.24,15,",ak,",reviewed,1537710217223,"M 1.0 - 46km NE of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071180457,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261228 +,1.0,2000hizb,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hizb&format=geojson,2.396,1.0,137.0,",us2000hizb,",4.8,mb,,us,,"65km SSE of Hasaki, Japan",0.65,355,",us,",reviewed,1537709390500,"M 4.8 - 65km SSE of Hasaki, Japan",0,earthquake,",dyfi,geoserve,origin,phase-data,",540.0,1538329898836,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hizb +,,37365466,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37365466&format=geojson,0.08589,,68.0,",ci37365466,",0.36,ml,,ci,16.0,"9km NE of Aguanga, CA",0.08,2,",ci,",reviewed,1537709360700,"M 0.4 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537798319288,https://earthquake.usgs.gov/earthquakes/eventpage/ci37365466 +,,37365458,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37365458&format=geojson,0.02905,,36.0,",ci37365458,",1.17,ml,,ci,55.0,"8km NE of Aguanga, CA",0.21,21,",ci,",reviewed,1537709192440,"M 1.2 - 8km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537798375730,https://earthquake.usgs.gov/earthquakes/eventpage/ci37365458 +,,2018266007,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018266007&format=geojson,1.1871,,329.0,",pr2018266007,us2000hj0v,",2.81,md,,pr,14.0,"96km NNW of Charlotte Amalie, U.S. Virgin Islands",0.3,121,",pr,us,",reviewed,1537709164230,"M 2.8 - 96km NNW of Charlotte Amalie, U.S. Virgin Islands",0,earthquake,",geoserve,origin,phase-data,",-240.0,1537726842040,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018266007 +,,1000h3ty,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3ty&format=geojson,4.888,,85.0,",us1000h3ty,",4.7,mb,,us,,"23km SSW of Guyushu, China",1.34,340,",us,",reviewed,1537708924170,"M 4.7 - 23km SSW of Guyushu, China",0,earthquake,",geoserve,origin,phase-data,",480.0,1538329377040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3ty +,,80311059,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80311059&format=geojson,0.047,,100.0,",mb80311059,",0.33,ml,,mb,5.0,"15km NNE of Dillon, Montana",0.03,2,",mb,",reviewed,1537708585860,"M 0.3 - 15km NNE of Dillon, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537826104430,https://earthquake.usgs.gov/earthquakes/eventpage/mb80311059 +,,20261223,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261223&format=geojson,,,,",ak20261223,",1.4,ml,,ak,,"110km NW of Arctic Village, Alaska",0.74,30,",ak,",reviewed,1537708483271,"M 1.4 - 110km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071179884,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261223 +,,20261221,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261221&format=geojson,,,,",ak20261221,",1.7,ml,,ak,,"78km SSW of Kaktovik, Alaska",0.71,44,",ak,",reviewed,1537708371666,"M 1.7 - 78km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071179341,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261221 +,,20261219,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261219&format=geojson,,,,",ak20261219,",1.3,ml,,ak,,"101km NW of Arctic Village, Alaska",0.78,26,",ak,",reviewed,1537708327875,"M 1.3 - 101km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071178782,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261219 +,,20261217,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261217&format=geojson,,,,",ak20261217,",1.6,ml,,ak,,"103km NW of Arctic Village, Alaska",0.62,39,",ak,",reviewed,1537708123829,"M 1.6 - 103km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071178207,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261217 +,,20261216,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261216&format=geojson,,,,",ak20261216,",2.2,ml,,ak,,"83km SSW of Kaktovik, Alaska",0.94,74,",ak,",reviewed,1537707712180,"M 2.2 - 83km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071177553,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261216 +,,20261214,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261214&format=geojson,,,,",ak20261214,",2.3,ml,,ak,,"80km SSW of Kaktovik, Alaska",0.96,81,",ak,",reviewed,1537707604368,"M 2.3 - 80km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071176836,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261214 +,,20261213,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261213&format=geojson,,,,",ak20261213,",1.9,ml,,ak,,"89km SE of Adak, Alaska",0.34,56,",ak,",reviewed,1537707531029,"M 1.9 - 89km SE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-720.0,1538071176309,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261213 +,,20261212,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261212&format=geojson,,,,",ak20261212,",1.2,ml,,ak,,"5km NE of Meadow Lakes, Alaska",0.53,22,",ak,",reviewed,1537707344108,"M 1.2 - 5km NE of Meadow Lakes, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071175704,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261212 +,,37365426,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37365426&format=geojson,0.04748,,141.0,",ci37365426,",1.06,ml,,ci,19.0,"11km NE of Simi Valley, CA",0.24,17,",ci,",reviewed,1537706618980,"M 1.1 - 11km NE of Simi Valley, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537814397342,https://earthquake.usgs.gov/earthquakes/eventpage/ci37365426 +,,20261210,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261210&format=geojson,,,,",ak20261210,",0.1,ml,,ak,,"14km WSW of Salcha, Alaska",0.42,0,",ak,",reviewed,1537706257924,"M 0.1 - 14km WSW of Salcha, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071175126,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261210 +,,20261208,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261208&format=geojson,,,,",ak20261208,",1.5,ml,,ak,,"89km NW of Arctic Village, Alaska",0.95,35,",ak,",reviewed,1537706240729,"M 1.5 - 89km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071174531,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261208 +,,20261202,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261202&format=geojson,,,,",ak20261202,",1.2,ml,,ak,,"130km NW of Arctic Village, Alaska",0.83,22,",ak,",reviewed,1537705781688,"M 1.2 - 130km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071173970,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261202 +,,20261199,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261199&format=geojson,,,,",ak20261199,",0.9,ml,,ak,,"75km E of Cantwell, Alaska",0.61,12,",ak,",reviewed,1537705468523,"M 0.9 - 75km E of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071173399,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261199 +,,20261195,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261195&format=geojson,,,,",ak20261195,",2.1,ml,,ak,,"78km SSW of Kaktovik, Alaska",0.71,68,",ak,",reviewed,1537705383770,"M 2.1 - 78km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071172783,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261195 +,,70804399,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804399&format=geojson,0.0576,,217.0,",av70804399,",-0.35,ml,,av,4.0,"27km W of Unalaska, Alaska",0.11,0,",av,",reviewed,1537705092050,"M -0.4 - 27km W of Unalaska, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537921171770,https://earthquake.usgs.gov/earthquakes/eventpage/av70804399 +,,73088661,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73088661&format=geojson,0.07692,,149.0,",nc73088661,",1.06,md,,nc,12.0,"12km N of Pinnacles, CA",0.06,17,",nc,",reviewed,1537705088930,"M 1.1 - 12km N of Pinnacles, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537820711410,https://earthquake.usgs.gov/earthquakes/eventpage/nc73088661 +,,20261189,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261189&format=geojson,,,,",ak20261189,",1.6,ml,,ak,,"84km NW of Arctic Village, Alaska",0.83,39,",ak,",reviewed,1537705085093,"M 1.6 - 84km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071172204,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261189 +,,20261193,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261193&format=geojson,,,,",ak20261193,",1.1,ml,,ak,,"60km WNW of Skagway, Alaska",0.62,19,",ak,",reviewed,1537704950455,"M 1.1 - 60km WNW of Skagway, Alaska",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538071171669,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261193 +,,37365402,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37365402&format=geojson,0.01913,,197.0,",ci37365402,",1.12,ml,,ci,25.0,"3km W of Orange, CA",0.2,19,",ci,",reviewed,1537704502480,"M 1.1 - 3km W of Orange, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537814002871,https://earthquake.usgs.gov/earthquakes/eventpage/ci37365402 +,,37365394,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37365394&format=geojson,0.01689,,77.0,",ci37365394,",0.38,ml,,ci,20.0,"3km SE of Lake Henshaw, CA",0.16,2,",ci,",reviewed,1537704238620,"M 0.4 - 3km SE of Lake Henshaw, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537813714335,https://earthquake.usgs.gov/earthquakes/eventpage/ci37365394 +,,37365386,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37365386&format=geojson,0.01461,,32.0,",ci37365386,",0.81,ml,,ci,37.0,"9km NE of Aguanga, CA",0.16,10,",ci,",reviewed,1537704119620,"M 0.8 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537798498580,https://earthquake.usgs.gov/earthquakes/eventpage/ci37365386 +,,20261187,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261187&format=geojson,,,,",ak20261187,",1.1,ml,,ak,,"40km NNW of Valdez, Alaska",0.46,19,",ak,",reviewed,1537704015320,"M 1.1 - 40km NNW of Valdez, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071130995,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261187 +,,1000h3tv,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3tv&format=geojson,5.133,,148.0,",us1000h3tv,",4.4,mb,,us,,"255km W of Port-Olry, Vanuatu",0.62,298,",us,",reviewed,1537703657950,"M 4.4 - 255km W of Port-Olry, Vanuatu",0,earthquake,",geoserve,origin,phase-data,",660.0,1538374709040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3tv +,,70251263,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ismpkansas70251263&format=geojson,0.03576,,152.0,",ismpkansas70251263,",2.1,ml,,ismpkansas,12.0,"6km E of Harper, Kansas",0.04,68,",ismpkansas,",reviewed,1537703106930,"M 2.1 - 6km E of Harper, Kansas",0,earthquake,",geoserve,origin,phase-data,",-360.0,1537834862040,https://earthquake.usgs.gov/earthquakes/eventpage/ismpkansas70251263 +,,37365378,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37365378&format=geojson,0.08239,,29.0,",ci37365378,",1.3,ml,,ci,57.0,"3km ESE of Loma Linda, CA",0.12,26,",ci,",reviewed,1537703101170,"M 1.3 - 3km ESE of Loma Linda, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537813418590,https://earthquake.usgs.gov/earthquakes/eventpage/ci37365378 +,,20261184,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261184&format=geojson,,,,",ak20261184,",1.2,ml,,ak,,"59km WNW of Skagway, Alaska",0.78,22,",ak,",reviewed,1537702048834,"M 1.2 - 59km WNW of Skagway, Alaska",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538071130443,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261184 +,,37365370,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37365370&format=geojson,0.03591,,98.0,",ci37365370,",0.9,ml,,ci,20.0,"19km NNE of Ridgecrest, CA",0.08,12,",ci,",reviewed,1537701952070,"M 0.9 - 19km NNE of Ridgecrest, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537812760146,https://earthquake.usgs.gov/earthquakes/eventpage/ci37365370 +,,1000h3dl,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3dl&format=geojson,0.721,,207.0,",ak20261179,us1000h3dl,",3.4,ml,,us,,"89km SSW of Nikolski, Alaska",0.45,178,",ak,us,",reviewed,1537701550670,"M 3.4 - 89km SSW of Nikolski, Alaska",0,earthquake,",geoserve,origin,phase-data,",-660.0,1538373896040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3dl +,,20261178,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261178&format=geojson,,,,",ak20261178,",2.1,ml,,ak,,"100km SE of King Salmon, Alaska",0.35,68,",ak,",reviewed,1537701543902,"M 2.1 - 100km SE of King Salmon, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071129229,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261178 +,,61784151,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61784151&format=geojson,0.03015,,106.0,",av61784151,",-0.08,ml,,av,5.0,"46km WSW of Tanaga Volcano, Alaska",0.05,0,",av,",reviewed,1537701396720,"M -0.1 - 46km WSW of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537907094200,https://earthquake.usgs.gov/earthquakes/eventpage/av61784151 +,,00657842,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657842&format=geojson,0.371,,206.24,",nn00657842,",0.0,ml,,nn,10.0,"40km SSE of Goldfield, Nevada",0.2131,0,",nn,",reviewed,1537700787348,"M 0.0 - 40km SSE of Goldfield, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537754716065,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657842 +,,20261176,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261176&format=geojson,,,,",ak20261176,",1.2,ml,,ak,,"4km WSW of Talkeetna, Alaska",0.8,22,",ak,",reviewed,1537700706765,"M 1.2 - 4km WSW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071128663,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261176 +,,2018266006,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018266006&format=geojson,0.2326,,213.0,",pr2018266006,",1.95,md,,pr,3.0,"3km S of Adjuntas, Puerto Rico",0.02,58,",pr,",reviewed,1537700394360,"M 2.0 - 3km S of Adjuntas, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1537705429982,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018266006 +,,37365362,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37365362&format=geojson,0.04295,,61.0,",ci37365362,",0.92,ml,,ci,38.0,"8km SSW of Idyllwild, CA",0.15,13,",ci,",reviewed,1537700376430,"M 0.9 - 8km SSW of Idyllwild, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537798561930,https://earthquake.usgs.gov/earthquakes/eventpage/ci37365362 +,,2000hiye,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hiye&format=geojson,1.139,,113.0,",us2000hiye,",4.6,mb,,us,,"91km SW of Padangsidempuan, Indonesia",0.94,326,",us,",reviewed,1537700251970,"M 4.6 - 91km SW of Padangsidempuan, Indonesia",0,earthquake,",geoserve,origin,phase-data,",420.0,1538373675040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hiye +,,1000h3u0,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3u0&format=geojson,5.321,,79.0,",us1000h3u0,",4.5,mb,,us,,"90km NNW of Visokoi Island, South Georgia and the South Sandwich Islands",0.64,312,",us,",reviewed,1537700123290,"M 4.5 - 90km NNW of Visokoi Island, South Georgia and the South Sandwich Islands",0,earthquake,",geoserve,origin,phase-data,",-120.0,1538373597040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3u0 +,,37365354,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37365354&format=geojson,0.004892,,47.0,",ci37365354,",0.4,ml,,ci,20.0,"10km NE of Aguanga, CA",0.12,2,",ci,",reviewed,1537699809410,"M 0.4 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537798584351,https://earthquake.usgs.gov/earthquakes/eventpage/ci37365354 +,,20261174,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261174&format=geojson,,,,",ak20261174,",1.4,ml,,ak,,"73km SSE of Tanaga Volcano, Alaska",0.38,30,",ak,",reviewed,1537699773635,"M 1.4 - 73km SSE of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-720.0,1538071128112,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261174 +,,20265454,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265454&format=geojson,,,,",ak20265454,",1.4,ml,,ak,,"80km SSW of Kaktovik, Alaska",0.37,30,",ak,",reviewed,1537699724053,"M 1.4 - 80km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071127550,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265454 +,,70804104,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804104&format=geojson,0.0279,,197.0,",av70804104,",-0.79,ml,,av,4.0,"43km ENE of Adak, Alaska",0.04,0,",av,",reviewed,1537699251620,"M -0.8 - 43km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537836885250,https://earthquake.usgs.gov/earthquakes/eventpage/av70804104 +,,20261173,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261173&format=geojson,,,,",ak20261173,",1.6,ml,,ak,,"121km NNW of Arctic Village, Alaska",0.72,39,",ak,",reviewed,1537698987819,"M 1.6 - 121km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071126859,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261173 +,,00657839,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657839&format=geojson,0.286,,102.59,",nn00657839,",0.4,ml,,nn,7.0,"33km SE of Caliente, Nevada",0.1756,2,",nn,",reviewed,1537698945691,"M 0.4 - 33km SE of Caliente, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537754714357,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657839 +,,20261172,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261172&format=geojson,,,,",ak20261172,",1.3,ml,,ak,,"60km NW of Larsen Bay, Alaska",0.47,26,",ak,",reviewed,1537698224960,"M 1.3 - 60km NW of Larsen Bay, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071126322,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261172 +,,20265451,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265451&format=geojson,,,,",ak20265451,",0.9,ml,,ak,,"87km WSW of Glennallen, Alaska",0.41,12,",ak,",reviewed,1537697929503,"M 0.9 - 87km WSW of Glennallen, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071125790,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265451 +,,20261170,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261170&format=geojson,,,,",ak20261170,",1.5,ml,,ak,,"24km S of Tanaga Volcano, Alaska",0.65,35,",ak,",reviewed,1537697292411,"M 1.5 - 24km S of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538071125265,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261170 +,,37365346,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37365346&format=geojson,0.02072,,66.0,",ci37365346,",0.6,ml,,ci,24.0,"9km NE of Aguanga, CA",0.23,6,",ci,",reviewed,1537696832570,"M 0.6 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537798602956,https://earthquake.usgs.gov/earthquakes/eventpage/ci37365346 +,,37365338,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37365338&format=geojson,0.02268,,103.0,",ci37365338,",0.15,ml,,ci,15.0,"10km NE of Aguanga, CA",0.08,0,",ci,",reviewed,1537696828050,"M 0.2 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537812624132,https://earthquake.usgs.gov/earthquakes/eventpage/ci37365338 +,3.1,73088586,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73088586&format=geojson,0.05577,1.0,98.0,",nc73088586,",2.17,md,,nc,22.0,"6km NNE of Hydesville, CA",0.1,73,",nc,",reviewed,1537696743160,"M 2.2 - 6km NNE of Hydesville, CA",0,earthquake,",dyfi,focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537854723042,https://earthquake.usgs.gov/earthquakes/eventpage/nc73088586 +,,37365330,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37365330&format=geojson,0.02307,,67.0,",ci37365330,",0.7,ml,,ci,34.0,"10km NE of Aguanga, CA",0.16,8,",ci,",reviewed,1537696729950,"M 0.7 - 10km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537798687020,https://earthquake.usgs.gov/earthquakes/eventpage/ci37365330 +,,20265449,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265449&format=geojson,,,,",av61784086,ak20265449,",0.4,ml,,ak,,"103km NW of Larsen Bay, Alaska",0.23,2,",av,ak,",reviewed,1537696542544,"M 0.4 - 103km NW of Larsen Bay, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071124745,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265449 +,,1000h3tx,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3tx&format=geojson,13.575,,145.0,",us1000h3tx,",4.5,mb,,us,,Balleny Islands region,0.38,312,",us,",reviewed,1537696499870,M 4.5 - Balleny Islands region,0,earthquake,",geoserve,origin,phase-data,",720.0,1538373312040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3tx +,,20265448,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265448&format=geojson,,,,",ak20265448,",1.4,ml,,ak,,"75km SSW of Kaktovik, Alaska",0.69,30,",ak,",reviewed,1537696041713,"M 1.4 - 75km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071124204,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265448 +,,1000h3ts,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3ts&format=geojson,3.721,,80.0,",us1000h3ts,",4.5,mb,,us,,"106km SSW of Hihifo, Tonga",0.45,312,",us,",reviewed,1537695885890,"M 4.5 - 106km SSW of Hihifo, Tonga",0,earthquake,",geoserve,origin,phase-data,",-720.0,1538373137040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3ts +,,1000h3tt,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3tt&format=geojson,2.434,,111.0,",us1000h3tt,",4.4,mb,,us,,"66km N of Oxapampa, Peru",0.69,298,",us,",reviewed,1537695700640,"M 4.4 - 66km N of Oxapampa, Peru",0,earthquake,",geoserve,origin,phase-data,",-300.0,1538227835040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3tt +,,20265447,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265447&format=geojson,,,,",ak20265447,",1.7,ml,,ak,,"59km ENE of Old Iliamna, Alaska",0.67,44,",ak,",reviewed,1537695036092,"M 1.7 - 59km ENE of Old Iliamna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071123593,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265447 +,,20261166,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261166&format=geojson,,,,",ak20261166,",1.5,ml,,ak,,"43km SE of Tanaga Volcano, Alaska",0.38,35,",ak,",reviewed,1537695017866,"M 1.5 - 43km SE of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538071123007,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261166 +,,20265445,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265445&format=geojson,,,,",ak20265445,",1.3,ml,,ak,,"81km SSW of Kaktovik, Alaska",0.59,26,",ak,",reviewed,1537694908584,"M 1.3 - 81km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071122448,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265445 +,,61784051,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61784051&format=geojson,0.01175,,102.0,",av61784051,",0.37,ml,,av,5.0,"45km W of Tanaga Volcano, Alaska",0.15,2,",av,",reviewed,1537694813790,"M 0.4 - 45km W of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537835301540,https://earthquake.usgs.gov/earthquakes/eventpage/av61784051 +,,20261164,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261164&format=geojson,,,,",ak20261164,",1.3,ml,,ak,,"90km NW of Arctic Village, Alaska",0.86,26,",ak,",reviewed,1537694642605,"M 1.3 - 90km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071121846,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261164 +,,37365322,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37365322&format=geojson,0.02957,,89.0,",ci37365322,",0.21,ml,,ci,15.0,"9km ENE of Aguanga, CA",0.14,1,",ci,",reviewed,1537694543030,"M 0.2 - 9km ENE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537798636342,https://earthquake.usgs.gov/earthquakes/eventpage/ci37365322 +,,20261160,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261160&format=geojson,,,,",ak20261160,",1.6,ml,,ak,,"30km NNW of Sutton-Alpine, Alaska",0.42,39,",ak,",reviewed,1537694528141,"M 1.6 - 30km NNW of Sutton-Alpine, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071121167,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261160 +,,20265442,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265442&format=geojson,,,,",ak20265442,",1.8,ml,,ak,,"83km SE of Old Iliamna, Alaska",0.54,50,",ak,",reviewed,1537694463003,"M 1.8 - 83km SE of Old Iliamna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071120644,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265442 +,,20261156,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261156&format=geojson,,,,",ak20261156,",2.0,ml,,ak,,"53km SSW of Redoubt Volcano, Alaska",0.47,62,",ak,",reviewed,1537694230123,"M 2.0 - 53km SSW of Redoubt Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071119950,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261156 +,,00657837,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657837&format=geojson,0.184,,112.39,",nn00657837,",-0.1,ml,,nn,10.0,"36km SSE of Goldfield, Nevada",0.1996,0,",nn,",reviewed,1537693878548,"M -0.1 - 36km SSE of Goldfield, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537754711967,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657837 +,,73088546,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73088546&format=geojson,0.01917,,59.0,",nc73088546,",0.33,md,,nc,19.0,"1km ESE of Mammoth Lakes, CA",0.04,2,",nc,",reviewed,1537693710470,"M 0.3 - 1km ESE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537810190416,https://earthquake.usgs.gov/earthquakes/eventpage/nc73088546 +,,20265440,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265440&format=geojson,,,,",ak20265440,",1.2,ml,,ak,,"18km N of Meadow Lakes, Alaska",0.36,22,",ak,",reviewed,1537693478693,"M 1.2 - 18km N of Meadow Lakes, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071119379,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265440 +,,37365314,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37365314&format=geojson,0.02087,,34.0,",ci37365314,",1.74,ml,,ci,76.0,"4km SSE of Devore, CA",0.2,47,",ci,",reviewed,1537693265430,"M 1.7 - 4km SSE of Devore, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537798684244,https://earthquake.usgs.gov/earthquakes/eventpage/ci37365314 +,,20261153,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261153&format=geojson,,,,",ak20261153,",1.5,ml,,ak,,"21km W of Cantwell, Alaska",0.62,35,",ak,",reviewed,1537693194092,"M 1.5 - 21km W of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071118735,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261153 +,,00657800,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657800&format=geojson,0.158,,172.76,",nn00657800,",0.6,ml,,nn,25.0,"38km SSE of Goldfield, Nevada",0.1806,6,",nn,",reviewed,1537692785511,"M 0.6 - 38km SSE of Goldfield, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537754673957,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657800 +,,00657835,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657835&format=geojson,0.37,,210.2,",nn00657835,",-0.3,ml,,nn,7.0,"39km SSE of Goldfield, Nevada",0.1336,0,",nn,",reviewed,1537692706865,"M -0.3 - 39km SSE of Goldfield, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537754710274,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657835 +,,00657834,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657834&format=geojson,0.031,,174.48,",nn00657834,",0.0,ml,,nn,28.0,"70km E of Beatty, Nevada",0.1401,0,",nn,",reviewed,1537692646036,"M 0.0 - 70km E of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537754708519,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657834 +,,70607407,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70607407&format=geojson,0.0445,,87.0,",hv70607407,",2.29,ml,,hv,28.0,"13km SE of Volcano, Hawaii",0.08,81,",hv,",reviewed,1537692583030,"M 2.3 - 13km SE of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537925553340,https://earthquake.usgs.gov/earthquakes/eventpage/hv70607407 +,,37365306,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37365306&format=geojson,0.08753,,86.0,",ci37365306,",0.37,ml,,ci,18.0,"3km W of Cabazon, CA",0.09,2,",ci,",reviewed,1537692132280,"M 0.4 - 3km W of Cabazon, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537813515963,https://earthquake.usgs.gov/earthquakes/eventpage/ci37365306 +,,20261147,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261147&format=geojson,,,,",ak20261147,",2.1,ml,,ak,,"62km ESE of Whittier, Alaska",0.65,68,",ak,",reviewed,1537692114105,"M 2.1 - 62km ESE of Whittier, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071118054,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261147 +,,73088501,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73088501&format=geojson,0.02023,,82.0,",nc73088501,",1.09,md,,nc,25.0,"16km E of Seven Trees, CA",0.05,18,",nc,",reviewed,1537691983700,"M 1.1 - 16km E of Seven Trees, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537829014410,https://earthquake.usgs.gov/earthquakes/eventpage/nc73088501 +,,20261144,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261144&format=geojson,,,,",ak20261144,",1.9,ml,,ak,,"10km N of Fishhook, Alaska",0.64,56,",ak,",reviewed,1537691607873,"M 1.9 - 10km N of Fishhook, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071117430,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261144 +,,73088476,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73088476&format=geojson,0.0009641,,83.0,",nc73088476,",0.56,md,,nc,10.0,"7km WNW of The Geysers, CA",0.04,5,",nc,",automatic,1537691144330,"M 0.6 - 7km WNW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537691241398,https://earthquake.usgs.gov/earthquakes/eventpage/nc73088476 +,,37365298,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37365298&format=geojson,0.009014,,61.0,",ci37365298,",0.51,ml,,ci,24.0,"10km NE of Aguanga, CA",0.17,4,",ci,",reviewed,1537691102560,"M 0.5 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537798701515,https://earthquake.usgs.gov/earthquakes/eventpage/ci37365298 +,2.0,2018266005,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018266005&format=geojson,0.2312,1.0,146.0,",pr2018266005,",1.81,md,,pr,7.0,"4km NNE of Yauco, Puerto Rico",0.27,51,",pr,",reviewed,1537690617800,"M 1.8 - 4km NNE of Yauco, Puerto Rico",0,earthquake,",dyfi,geoserve,origin,phase-data,",-240.0,1537705461838,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018266005 +,,20265436,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265436&format=geojson,,,,",ak20265436,",1.2,ml,,ak,,"74km SW of Kaktovik, Alaska",0.62,22,",ak,",reviewed,1537690422602,"M 1.2 - 74km SW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071116888,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265436 +,,73088466,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73088466&format=geojson,0.003123,,103.0,",nc73088466,",0.56,md,,nc,9.0,"8km WNW of The Geysers, CA",0.04,5,",nc,",automatic,1537690208570,"M 0.6 - 8km WNW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537690307735,https://earthquake.usgs.gov/earthquakes/eventpage/nc73088466 +,,37365290,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37365290&format=geojson,0.02039,,95.0,",ci37365290,",1.19,ml,,ci,40.0,"3km W of Orange, CA",0.21,22,",ci,",reviewed,1537689900450,"M 1.2 - 3km W of Orange, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537815037710,https://earthquake.usgs.gov/earthquakes/eventpage/ci37365290 +,,80311054,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80311054&format=geojson,0.095,,114.0,",mb80311054,",-0.42,md,,mb,8.0,"20km NW of Helena Valley Northwest, Montana",0.08,0,",mb,",reviewed,1537689838480,"M -0.4 - 20km NW of Helena Valley Northwest, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537825737170,https://earthquake.usgs.gov/earthquakes/eventpage/mb80311054 +,,20261141,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261141&format=geojson,,,,",ak20261141,",1.9,ml,,ak,,"79km SSW of Kaktovik, Alaska",0.85,56,",ak,",reviewed,1537688770300,"M 1.9 - 79km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071116138,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261141 +,,61783981,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61783981&format=geojson,0.02374,,96.0,",av61783981,",-0.72,ml,,av,5.0,"42km ENE of Adak, Alaska",0.09,0,",av,",reviewed,1537688590710,"M -0.7 - 42km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537834947280,https://earthquake.usgs.gov/earthquakes/eventpage/av61783981 +,,00657799,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657799&format=geojson,0.161,,113.42,",nn00657799,",0.8,ml,,nn,10.0,"13km ENE of Hawthorne, Nevada",0.1228,10,",nn,",reviewed,1537688200358,"M 0.8 - 13km ENE of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537754672069,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657799 +,,2000hixi,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hixi&format=geojson,3.981,,100.0,",us2000hixi,",4.5,mb,,us,,South of the Fiji Islands,0.89,312,",us,",reviewed,1537687968720,M 4.5 - South of the Fiji Islands,0,earthquake,",geoserve,origin,phase-data,",-720.0,1537693906040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hixi +,,37365282,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37365282&format=geojson,0.1298,,84.0,",ci37365282,",0.81,ml,,ci,20.0,"16km SW of Ocotillo Wells, CA",0.15,10,",ci,",reviewed,1537687951690,"M 0.8 - 16km SW of Ocotillo Wells, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537815130005,https://earthquake.usgs.gov/earthquakes/eventpage/ci37365282 +,,20261133,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261133&format=geojson,,,,",ak20261133,",1.8,ml,,ak,,"49km S of Semisopochnoi Island, Alaska",0.24,50,",ak,",reviewed,1537687501103,"M 1.8 - 49km S of Semisopochnoi Island, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538071115615,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261133 +,6.8,2000hixc,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hixc&format=geojson,0.728,5.0,46.0,",us2000hixc,",4.4,mb,,us,,"6km WNW of Villa Elisa, Dominican Republic",0.95,301,",us,",reviewed,1537687389980,"M 4.4 - 6km WNW of Villa Elisa, Dominican Republic",0,earthquake,",dyfi,geoserve,origin,phase-data,",-240.0,1537709705969,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hixc +,,37365274,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37365274&format=geojson,0.01922,,111.0,",ci37365274,",1.02,ml,,ci,17.0,"8km WSW of Holtville, CA",0.18,16,",ci,",reviewed,1537687173130,"M 1.0 - 8km WSW of Holtville, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537815498708,https://earthquake.usgs.gov/earthquakes/eventpage/ci37365274 +,,20261131,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261131&format=geojson,,,,",ak20261131,",1.6,ml,,ak,,"50km WSW of Willow, Alaska",0.41,39,",ak,",reviewed,1537687141498,"M 1.6 - 50km WSW of Willow, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071114922,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261131 +,,20265432,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265432&format=geojson,,,,",ak20265432,",1.3,ml,,ak,,"98km NNW of Arctic Village, Alaska",0.69,26,",ak,",reviewed,1537686919308,"M 1.3 - 98km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071114406,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265432 +,,20261130,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261130&format=geojson,,,,",ak20261130,",1.6,ml,,ak,,"79km SSW of Kaktovik, Alaska",0.42,39,",ak,",reviewed,1537686718079,"M 1.6 - 79km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071113844,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261130 +,,73088441,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73088441&format=geojson,0.01535,,174.0,",nc73088441,",0.13,md,,nc,11.0,"13km ESE of Mammoth Lakes, CA",0.02,0,",nc,",reviewed,1537686675980,"M 0.1 - 13km ESE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537809528434,https://earthquake.usgs.gov/earthquakes/eventpage/nc73088441 +,,37365266,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37365266&format=geojson,0.1481,,86.0,",ci37365266,",0.87,ml,,ci,16.0,"11km S of Olancha, CA",0.12,12,",ci,",reviewed,1537686468320,"M 0.9 - 11km S of Olancha, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537815634722,https://earthquake.usgs.gov/earthquakes/eventpage/ci37365266 +,,37365258,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37365258&format=geojson,0.1015,,86.0,",ci37365258,",0.65,ml,,ci,15.0,"12km NE of Julian, CA",0.2,6,",ci,",reviewed,1537685898770,"M 0.7 - 12km NE of Julian, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538007079770,https://earthquake.usgs.gov/earthquakes/eventpage/ci37365258 +,,70251253,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ismpkansas70251253&format=geojson,0.03567,,151.0,",ismpkansas70251253,",1.98,ml,,ismpkansas,11.0,"6km E of Harper, Kansas",0.04,60,",ismpkansas,",reviewed,1537685809690,"M 2.0 - 6km E of Harper, Kansas",0,earthquake,",geoserve,origin,phase-data,",-360.0,1537834282370,https://earthquake.usgs.gov/earthquakes/eventpage/ismpkansas70251253 +,,37365250,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37365250&format=geojson,0.1,,60.0,",ci37365250,",1.34,ml,,ci,48.0,"24km ENE of Pine Valley, CA",0.17,28,",ci,",reviewed,1537685693610,"M 1.3 - 24km ENE of Pine Valley, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538004955800,https://earthquake.usgs.gov/earthquakes/eventpage/ci37365250 +,,2000hixe,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hixe&format=geojson,5.804,,88.0,",us2000hixe,",4.4,mb,,us,,"40km SE of Kazerun, Iran",0.84,298,",us,",reviewed,1537685667130,"M 4.4 - 40km SE of Kazerun, Iran",0,earthquake,",geoserve,origin,phase-data,",210.0,1537693190040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hixe +,,2018266004,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018266004&format=geojson,0.3204,,216.0,",pr2018266004,",3.13,md,,pr,3.0,"31km NE of Punta Cana, Dominican Republic",0.15,151,",pr,",reviewed,1537685658550,"M 3.1 - 31km NE of Punta Cana, Dominican Republic",0,earthquake,",geoserve,origin,phase-data,",-300.0,1537696621670,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018266004 +,,20261128,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261128&format=geojson,,,,",ak20261128,",1.9,ml,,ak,,"63km S of Tanaga Volcano, Alaska",0.48,56,",ak,",reviewed,1537685389068,"M 1.9 - 63km S of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-720.0,1538071113291,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261128 +,,37365242,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37365242&format=geojson,0.008516,,214.0,",ci37365242,",0.1,ml,,ci,13.0,"9km NE of Aguanga, CA",0.07,0,",ci,",reviewed,1537685215940,"M 0.1 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537816784960,https://earthquake.usgs.gov/earthquakes/eventpage/ci37365242 +,,20265429,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265429&format=geojson,,,,",ak20265429,",1.4,ml,,ak,,"77km SSW of Kaktovik, Alaska",0.69,30,",ak,",reviewed,1537685085194,"M 1.4 - 77km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071112751,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265429 +,,20265428,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265428&format=geojson,,,,",ak20265428,",1.2,ml,,ak,,"25km SW of Tanaga Volcano, Alaska",0.27,22,",ak,",reviewed,1537684872053,"M 1.2 - 25km SW of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538071112197,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265428 +,,73088431,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73088431&format=geojson,0.01161,,64.0,",nc73088431,",0.89,md,,nc,18.0,"6km NW of The Geysers, CA",0.03,12,",nc,",automatic,1537684544930,"M 0.9 - 6km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537684641666,https://earthquake.usgs.gov/earthquakes/eventpage/nc73088431 +,,20261126,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261126&format=geojson,,,,",ak20261126,",2.8,ml,,ak,,"37km WNW of Atka, Alaska",0.63,121,",ak,",reviewed,1537684379712,"M 2.8 - 37km WNW of Atka, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538071111557,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261126 +,,20265426,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265426&format=geojson,,,,",ak20265426,",1.6,ml,,ak,,"78km SSW of Kaktovik, Alaska",0.75,39,",ak,",reviewed,1537683996201,"M 1.6 - 78km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071110945,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265426 +,,37365234,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37365234&format=geojson,0.04347,,125.0,",ci37365234,",0.54,ml,,ci,11.0,"19km ENE of Thousand Palms, CA",0.17,4,",ci,",reviewed,1537683735600,"M 0.5 - 19km ENE of Thousand Palms, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537798977670,https://earthquake.usgs.gov/earthquakes/eventpage/ci37365234 +,,20261125,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261125&format=geojson,,,,",ak20261125,",0.8,ml,,ak,,"22km WSW of Tanaga Volcano, Alaska",0.41,10,",ak,",reviewed,1537683348991,"M 0.8 - 22km WSW of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538071110403,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261125 +,,20265424,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265424&format=geojson,,,,",ak20265424,",1.1,ml,,ak,,"92km WNW of Cantwell, Alaska",0.67,19,",ak,",reviewed,1537683266161,"M 1.1 - 92km WNW of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071109855,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265424 +,,2000hiwj,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hiwj&format=geojson,0.398,,127.0,",us2000hiwj,",4.3,mb,,us,,"87km SSE of Antofagasta, Chile",0.38,284,",us,",reviewed,1537682924780,"M 4.3 - 87km SSE of Antofagasta, Chile",0,earthquake,",geoserve,origin,phase-data,",-240.0,1537692978040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hiwj +,,20261077,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261077&format=geojson,,,,",ak20261077,",1.6,ml,,ak,,"61km ESE of Whittier, Alaska",0.56,39,",ak,",reviewed,1537682092148,"M 1.6 - 61km ESE of Whittier, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071109252,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261077 +,,73088406,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73088406&format=geojson,0.008635,,118.0,",nc73088406,",0.96,md,,nc,11.0,"2km SE of The Geysers, CA",0.02,14,",nc,",automatic,1537682058890,"M 1.0 - 2km SE of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537682156217,https://earthquake.usgs.gov/earthquakes/eventpage/nc73088406 +,,20261073,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261073&format=geojson,,,,",ak20261073,",0.9,ml,,ak,,"56km NW of Valdez, Alaska",0.57,12,",ak,",reviewed,1537681941134,"M 0.9 - 56km NW of Valdez, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071108741,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261073 +,,00657832,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657832&format=geojson,0.221,,168.65,",nn00657832,",-0.3,ml,,nn,6.0,"62km WNW of Beatty, Nevada",0.1984,0,",nn,",reviewed,1537681936560,"M -0.3 - 62km WNW of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537754706355,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657832 +green,3.8,2000hiwb,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hiwb&format=geojson,1.913,41.0,25.0,",us2000hiwb,pt18266050,",5.9,mww,3.33,us,,"200km SE of Inarajan Village, Guam",1.06,551,",us,pt,",reviewed,1537681931500,"M 5.9 - 200km SE of Inarajan Village, Guam",0,earthquake,",dyfi,geoserve,ground-failure,losspager,moment-tensor,origin,phase-data,shakemap,",600.0,1538409913040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hiwb +,5.4,2000hiw5,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hiw5&format=geojson,0.722,159.0,36.0,",us2000hiw5,",5.2,mww,,us,,"3km NW of Villa Elisa, Dominican Republic",1.38,502,",us,",reviewed,1537681550010,"M 5.2 - 3km NW of Villa Elisa, Dominican Republic",0,earthquake,",dyfi,geoserve,origin,phase-data,",-240.0,1539533770070,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hiw5 +,3.6,2000hiwa,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hiwa&format=geojson,2.757,3.0,182.0,",us2000hiwa,",3.8,mb,,us,,"20km WSW of Kasur, Pakistan",1.73,223,",us,",reviewed,1537681532730,"M 3.8 - 20km WSW of Kasur, Pakistan",0,earthquake,",dyfi,geoserve,origin,phase-data,",300.0,1537700702626,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hiwa +,,2000hiw4,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hiw4&format=geojson,0.414,,130.0,",us2000hiw4,",4.2,mb,,us,,"84km SSE of Antofagasta, Chile",1.31,271,",us,",reviewed,1537681450950,"M 4.2 - 84km SSE of Antofagasta, Chile",0,earthquake,",geoserve,origin,phase-data,",-240.0,1537691704040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hiw4 +,,73088401,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73088401&format=geojson,0.00405,,61.0,",nc73088401,",0.59,md,,nc,23.0,"5km W of Mammoth Lakes, CA",0.06,5,",nc,",reviewed,1537681390080,"M 0.6 - 5km W of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537809197487,https://earthquake.usgs.gov/earthquakes/eventpage/nc73088401 +,,2000hiw3,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hiw3&format=geojson,16.501,,134.0,",us2000hiw3,",5.1,mb,,us,,Western Indian-Antarctic Ridge,0.83,400,",us,",reviewed,1537681197740,M 5.1 - Western Indian-Antarctic Ridge,0,earthquake,",geoserve,origin,phase-data,",480.0,1537682123040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hiw3 +,,20265421,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265421&format=geojson,,,,",ak20265421,",1.4,ml,,ak,,"77km SSW of Kaktovik, Alaska",0.56,30,",ak,",reviewed,1537681130461,"M 1.4 - 77km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071108238,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265421 +,,00657831,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657831&format=geojson,0.068,,85.33,",nn00657831,",0.6,ml,,nn,12.0,"4km NNE of Incline Village, Nevada",0.1343,6,",nn,",reviewed,1537681053619,"M 0.6 - 4km NNE of Incline Village, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537754704440,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657831 +,,00657830,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657830&format=geojson,0.107,,172.79,",nn00657830,",0.1,ml,,nn,5.0,"36km NNW of Gabbs, Nevada",0.1084,0,",nn,",reviewed,1537680916144,"M 0.1 - 36km NNW of Gabbs, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537754702627,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657830 +,3.5,2000hivv,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hivv&format=geojson,0.442,27.0,89.0,",us2000hivv,",5.4,mww,,us,,"84km SSE of Antofagasta, Chile",1.22,458,",us,",reviewed,1537680731250,"M 5.4 - 84km SSE of Antofagasta, Chile",0,earthquake,",dyfi,geoserve,moment-tensor,origin,phase-data,",-240.0,1537758551852,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hivv +,,73088396,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73088396&format=geojson,0.004897,,62.0,",nc73088396,",0.04,md,,nc,14.0,"5km W of Mammoth Lakes, CA",0.04,0,",nc,",reviewed,1537680536150,"M 0.0 - 5km W of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537808775918,https://earthquake.usgs.gov/earthquakes/eventpage/nc73088396 +,,60241036,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nm60241036&format=geojson,0.02778,,68.0,",nm60241036,",1.29,md,,nm,9.0,"3km ENE of Ridgely, Tennessee",0.02,26,",nm,",reviewed,1537680243700,"M 1.3 - 3km ENE of Ridgely, Tennessee",0,earthquake,",geoserve,origin,phase-data,",-360.0,1537879869200,https://earthquake.usgs.gov/earthquakes/eventpage/nm60241036 +,,2000hivr,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hivr&format=geojson,5.83,,65.0,",us2000hivr,",4.7,mb,,us,,"44km WSW of Shiraz, Iran",0.8,340,",us,",reviewed,1537680179500,"M 4.7 - 44km WSW of Shiraz, Iran",0,earthquake,",geoserve,origin,phase-data,",210.0,1537682345040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hivr +,,00657829,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657829&format=geojson,0.293,,204.29,",nn00657829,",1.0,ml,,nn,5.0,"32km ENE of Currant, Nevada",0.2239,15,",nn,",reviewed,1537679786047,"M 1.0 - 32km ENE of Currant, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537754701262,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657829 +,,00657828,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657828&format=geojson,0.06,,98.33,",nn00657828,",0.1,ml,,nn,5.0,"6km SW of Cold Springs, Nevada",0.0906,0,",nn,",reviewed,1537679684399,"M 0.1 - 6km SW of Cold Springs, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537754698894,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657828 +,,37365194,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37365194&format=geojson,0.05605,,55.0,",ci37365194,",0.79,ml,,ci,32.0,"7km SSE of Banning, CA",0.15,10,",ci,",reviewed,1537679213430,"M 0.8 - 7km SSE of Banning, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537799060790,https://earthquake.usgs.gov/earthquakes/eventpage/ci37365194 +,,20265420,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265420&format=geojson,,,,",ak20265420,",1.4,ml,,ak,,"75km SSW of Kaktovik, Alaska",0.53,30,",ak,",reviewed,1537678787606,"M 1.4 - 75km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071107731,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265420 +,,20261060,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261060&format=geojson,,,,",ak20261060,",1.6,ml,,ak,,"74km SSW of Kaktovik, Alaska",0.59,39,",ak,",reviewed,1537677636820,"M 1.6 - 74km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071107131,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261060 +,,61783866,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61783866&format=geojson,0.02118,,124.0,",av61783866,",-0.68,ml,,av,5.0,"42km ENE of Adak, Alaska",0.05,0,",av,",reviewed,1537677503910,"M -0.7 - 42km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537833968330,https://earthquake.usgs.gov/earthquakes/eventpage/av61783866 +,,73088391,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73088391&format=geojson,0.00429,,31.0,",nc73088391,",1.33,md,,nc,39.0,"5km NNW of The Geysers, CA",0.06,27,",nc,",reviewed,1537677470090,"M 1.3 - 5km NNW of The Geysers, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537861443247,https://earthquake.usgs.gov/earthquakes/eventpage/nc73088391 +,,2000hive,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hive&format=geojson,0.338,,46.0,",us2000hive,",4.6,mb,,us,,"37km SE of Mountain, Colombia",1.23,326,",us,",reviewed,1537677466160,"M 4.6 - 37km SE of Mountain, Colombia",0,earthquake,",geoserve,moment-tensor,origin,phase-data,",-300.0,1538694962040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hive +,,73088386,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73088386&format=geojson,0.1515,,128.0,",nc73088386,",1.15,md,,nc,9.0,"33km NNW of Alder Springs, CA",0.07,20,",nc,",reviewed,1537677331230,"M 1.2 - 33km NNW of Alder Springs, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537839904145,https://earthquake.usgs.gov/earthquakes/eventpage/nc73088386 +,,20265418,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265418&format=geojson,,,,",ak20265418,",1.2,ml,,ak,,"80km S of Kaktovik, Alaska",0.63,22,",ak,",reviewed,1537677275875,"M 1.2 - 80km S of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071106606,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265418 +,,73088381,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73088381&format=geojson,0.004642,,87.0,",nc73088381,",0.84,md,,nc,24.0,"4km NE of Mammoth Lakes, CA",0.03,11,",nc,",reviewed,1537677024180,"M 0.8 - 4km NE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537817342670,https://earthquake.usgs.gov/earthquakes/eventpage/nc73088381 +,,20261058,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261058&format=geojson,,,,",ak20261058,",1.1,ml,,ak,,"32km ESE of Healy, Alaska",0.35,19,",ak,",reviewed,1537676727236,"M 1.1 - 32km ESE of Healy, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071105999,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261058 +,,20261056,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261056&format=geojson,,,,",ak20261056,",1.4,ml,,ak,,"95km NW of Arctic Village, Alaska",0.75,30,",ak,",reviewed,1537676316671,"M 1.4 - 95km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071105450,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261056 +,,20265415,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265415&format=geojson,,,,",ak20265415,",1.4,ml,,ak,,"47km SSE of Tanaga Volcano, Alaska",0.61,30,",ak,",reviewed,1537675444000,"M 1.4 - 47km SSE of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538071104925,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265415 +,,61422312,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61422312&format=geojson,0.05171,,97.0,",uw61422312,",1.34,ml,,uw,8.0,"6km NW of Friday Harbor, Washington",0.1,28,",uw,",reviewed,1537675209220,"M 1.3 - 6km NW of Friday Harbor, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538017698290,https://earthquake.usgs.gov/earthquakes/eventpage/uw61422312 +,,20265414,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265414&format=geojson,,,,",ak20265414,",1.4,ml,,ak,,"17km NW of Amatignak Island, Alaska",0.65,30,",ak,",reviewed,1537675200972,"M 1.4 - 17km NW of Amatignak Island, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538071104391,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265414 +,,61783841,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61783841&format=geojson,0.03188,,259.0,",av61783841,",-0.19,ml,,av,5.0,"50km W of Tanaga Volcano, Alaska",0.16,0,",av,",reviewed,1537674893730,"M -0.2 - 50km W of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537833712240,https://earthquake.usgs.gov/earthquakes/eventpage/av61783841 +,,20261053,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261053&format=geojson,,,,",ak20261053,",1.3,ml,,ak,,"125km NNW of Arctic Village, Alaska",0.81,26,",ak,",reviewed,1537674319303,"M 1.3 - 125km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071103843,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261053 +,,73088376,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73088376&format=geojson,0.09174,,90.0,",nc73088376,",0.71,md,,nc,13.0,"3km SW of Pacheco, CA",0.05,8,",nc,",reviewed,1537674222350,"M 0.7 - 3km SW of Pacheco, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537833579909,https://earthquake.usgs.gov/earthquakes/eventpage/nc73088376 +,,37365170,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37365170&format=geojson,0.07533,,111.0,",ci37365170,",0.63,ml,,ci,19.0,"16km NNW of Borrego Springs, CA",0.1,6,",ci,",reviewed,1537673980640,"M 0.6 - 16km NNW of Borrego Springs, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537817908056,https://earthquake.usgs.gov/earthquakes/eventpage/ci37365170 +,,73088371,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73088371&format=geojson,0.01526,,154.0,",nc73088371,",1.0,md,,nc,17.0,"4km SW of Baywood-Los Osos, CA",0.13,15,",nc,",reviewed,1537673620900,"M 1.0 - 4km SW of Baywood-Los Osos, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537838845061,https://earthquake.usgs.gov/earthquakes/eventpage/nc73088371 +,,20265412,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265412&format=geojson,,,,",ak20265412,",1.4,ml,,ak,,"74km SW of Kaktovik, Alaska",0.78,30,",ak,",reviewed,1537673380473,"M 1.4 - 74km SW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071103312,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265412 +,,37365162,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37365162&format=geojson,0.02455,,80.0,",ci37365162,",0.35,ml,,ci,17.0,"9km NE of Aguanga, CA",0.14,2,",ci,",reviewed,1537672821640,"M 0.4 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537798981827,https://earthquake.usgs.gov/earthquakes/eventpage/ci37365162 +,2.2,60064823,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nm60064823&format=geojson,0.2563,1.0,90.0,",nm60064823,us2000hiz5,",2.51,md,,nm,13.0,"20km W of Clinton, Arkansas",0.24,97,",nm,us,",reviewed,1537672675730,"M 2.5 - 20km W of Clinton, Arkansas",0,earthquake,",dyfi,geoserve,origin,phase-data,",-360.0,1538520374040,https://earthquake.usgs.gov/earthquakes/eventpage/nm60064823 +,,00657748,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657748&format=geojson,0.032,,69.6,",nn00657748,",-0.3,ml,,nn,29.0,"51km E of Beatty, Nevada",0.1961,0,",nn,",reviewed,1537672512992,"M -0.3 - 51km E of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537754667696,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657748 +,2.0,2018266003,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018266003&format=geojson,1.5495,1.0,347.0,",pr2018266003,us2000hiy5,",3.25,md,,pr,7.0,"43km NNE of Road Town, British Virgin Islands",0.42,163,",pr,us,",reviewed,1537672455950,"M 3.3 - 43km NNE of Road Town, British Virgin Islands",0,earthquake,",dyfi,geoserve,origin,phase-data,",-240.0,1538519878040,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018266003 +,,2000hiv7,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hiv7&format=geojson,1.069,,33.0,",us2000hiv7,",5.2,mww,,us,,"119km WSW of Kota Ternate, Indonesia",1.04,416,",us,",reviewed,1537672178810,"M 5.2 - 119km WSW of Kota Ternate, Indonesia",0,earthquake,",geoserve,origin,phase-data,",480.0,1537673203040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hiv7 +,,2018266002,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018266002&format=geojson,1.4948,,348.0,",pr2018266002,us2000hiy4,",3.24,md,,pr,3.0,"40km NNE of Road Town, British Virgin Islands",0.24,162,",pr,us,",reviewed,1537671980450,"M 3.2 - 40km NNE of Road Town, British Virgin Islands",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538517316040,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018266002 +,,80310919,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80310919&format=geojson,0.115,,110.0,",mb80310919,",1.08,ml,,mb,10.0,"14km ESE of Lincoln, Montana",0.16,18,",mb,",reviewed,1537671745910,"M 1.1 - 14km ESE of Lincoln, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537715749570,https://earthquake.usgs.gov/earthquakes/eventpage/mb80310919 +,,20261047,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261047&format=geojson,,,,",ak20261047,",1.5,ml,,ak,,"117km NW of Arctic Village, Alaska",0.65,35,",ak,",reviewed,1537671315717,"M 1.5 - 117km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071102563,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261047 +,2.0,2000hiy0,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hiy0&format=geojson,0.717,1.0,171.0,",us2000hiy0,",1.7,ml,,us,,"12km WNW of Solomon, Kansas",0.71,45,",us,",reviewed,1537671216390,"M 1.7 - 12km WNW of Solomon, Kansas",0,earthquake,",dyfi,geoserve,origin,phase-data,",-360.0,1538516834151,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hiy0 +,,20265410,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265410&format=geojson,,,,",ak20265410,",1.1,ml,,ak,,"69km SSW of Kaktovik, Alaska",0.92,19,",ak,",reviewed,1537671126859,"M 1.1 - 69km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071102007,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265410 +,,2018266001,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018266001&format=geojson,1.5127,,343.0,",pr2018266001,us2000hivz,",3.06,md,,pr,11.0,"41km N of Road Town, British Virgin Islands",0.21,144,",pr,us,",reviewed,1537670931700,"M 3.1 - 41km N of Road Town, British Virgin Islands",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538516631040,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018266001 +,,20265409,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265409&format=geojson,,,,",ak20265409,",1.7,ml,,ak,,"41km S of Sand Point, Alaska",0.84,44,",ak,",reviewed,1537670929801,"M 1.7 - 41km S of Sand Point, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071101504,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265409 +,,60297412,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60297412&format=geojson,0.2724,,92.0,",uu60297412,",1.21,md,,uu,12.0,"8km SSE of Manti, Utah",0.13,23,",uu,",reviewed,1537670752850,"M 1.2 - 8km SSE of Manti, Utah",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537805147260,https://earthquake.usgs.gov/earthquakes/eventpage/uu60297412 +,,1000h3tp,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3tp&format=geojson,3.537,,94.0,",us1000h3tp,",4.2,mb,,us,,"278km S of Kute, Indonesia",1.45,271,",us,",reviewed,1537670732000,"M 4.2 - 278km S of Kute, Indonesia",0,earthquake,",geoserve,origin,phase-data,",480.0,1538515564040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3tp +,,2018266000,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018266000&format=geojson,0.2021,,169.0,",pr2018266000,",1.88,md,,pr,12.0,"1km N of Las Ochenta, Puerto Rico",0.27,54,",pr,",reviewed,1537670622920,"M 1.9 - 1km N of Las Ochenta, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1537681373506,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018266000 +,,00657747,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657747&format=geojson,0.046,,72.33,",nn00657747,",-0.5,ml,,nn,21.0,"48km ESE of Beatty, Nevada",0.1771,0,",nn,",reviewed,1537669843406,"M -0.5 - 48km ESE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537754665893,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657747 +,,73088366,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73088366&format=geojson,0.001805,,86.0,",nc73088366,",0.89,md,,nc,13.0,"5km NW of The Geysers, CA",0.02,12,",nc,",automatic,1537669696680,"M 0.9 - 5km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537669791488,https://earthquake.usgs.gov/earthquakes/eventpage/nc73088366 +,,20261043,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261043&format=geojson,,,,",ak20261043,",1.3,ml,,ak,,"21km NNE of Badger, Alaska",0.55,26,",ak,",reviewed,1537669681371,"M 1.3 Explosion - 21km NNE of Badger, Alaska",0,explosion,",geoserve,origin,phase-data,",-540.0,1538071100915,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261043 +,,00657823,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657823&format=geojson,0.181,,287.62,",nn00657823,",0.1,ml,,nn,16.0,"59km WSW of Alamo, Nevada",0.208,0,",nn,",reviewed,1537669240202,"M 0.1 - 59km WSW of Alamo, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537754697463,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657823 +,,20265407,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265407&format=geojson,,,,",ak20265407,",1.2,ml,,ak,,"125km NW of Arctic Village, Alaska",0.78,22,",ak,",reviewed,1537669184520,"M 1.2 - 125km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071100344,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265407 +,,20265406,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265406&format=geojson,,,,",ak20265406,",1.1,ml,,ak,,"102km NW of Arctic Village, Alaska",0.79,19,",ak,",reviewed,1537669015703,"M 1.1 - 102km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071099820,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265406 +,,80311049,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80311049&format=geojson,0.101,,112.0,",mb80311049,",1.08,ml,,mb,11.0,"12km ESE of Lincoln, Montana",0.21,18,",mb,",reviewed,1537668925060,"M 1.1 - 12km ESE of Lincoln, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538068765610,https://earthquake.usgs.gov/earthquakes/eventpage/mb80311049 +,,37365114,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37365114&format=geojson,0.04847,,170.0,",ci37365114,",0.21,ml,,ci,13.0,"13km ESE of Anza, CA",0.14,1,",ci,",reviewed,1537668624200,"M 0.2 - 13km ESE of Anza, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537824345663,https://earthquake.usgs.gov/earthquakes/eventpage/ci37365114 +,,20265405,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265405&format=geojson,,,,",ak20265405,",1.2,ml,,ak,,"81km SSW of Kaktovik, Alaska",0.5,22,",ak,",reviewed,1537668586271,"M 1.2 - 81km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071099304,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265405 +,,00657746,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657746&format=geojson,0.188,,214.46,",nn00657746,",0.3,ml,,nn,20.0,"35km SSE of Goldfield, Nevada",0.1913,1,",nn,",reviewed,1537668564219,"M 0.3 - 35km SSE of Goldfield, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537754664113,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657746 +,,73088361,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73088361&format=geojson,0.008641,,100.0,",nc73088361,",0.56,md,,nc,12.0,"7km NW of The Geysers, CA",0.03,5,",nc,",automatic,1537668155060,"M 0.6 - 7km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537668251336,https://earthquake.usgs.gov/earthquakes/eventpage/nc73088361 +,,73088356,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73088356&format=geojson,0.01549,,184.0,",nc73088356,",0.14,md,,nc,11.0,"4km SE of Mammoth Lakes, CA",0.02,0,",nc,",reviewed,1537668000840,"M 0.1 - 4km SE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537807814090,https://earthquake.usgs.gov/earthquakes/eventpage/nc73088356 +,,73088351,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73088351&format=geojson,0.0202,,171.0,",nc73088351,",0.38,md,,nc,14.0,"5km SE of Mammoth Lakes, CA",0.04,2,",nc,",reviewed,1537667819400,"M 0.4 - 5km SE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537827903367,https://earthquake.usgs.gov/earthquakes/eventpage/nc73088351 +,,73088346,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73088346&format=geojson,0.006963,,48.0,",nc73088346,",1.29,md,,nc,38.0,"7km NW of The Geysers, CA",0.07,26,",nc,",reviewed,1537667444850,"M 1.3 - 7km NW of The Geysers, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537845122325,https://earthquake.usgs.gov/earthquakes/eventpage/nc73088346 +,,20261040,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261040&format=geojson,,,,",ak20261040,",1.2,ml,,ak,,"89km WNW of Arctic Village, Alaska",0.71,22,",ak,",reviewed,1537667425384,"M 1.2 - 89km WNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071098717,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261040 +,,00657745,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657745&format=geojson,0.001,,176.67,",nn00657745,",0.1,ml,,nn,35.0,"71km E of Beatty, Nevada",0.1792,0,",nn,",reviewed,1537667250598,"M 0.1 - 71km E of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537754661408,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657745 +,,20261038,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261038&format=geojson,,,,",ak20261038,",1.6,ml,,ak,,"83km NNW of Talkeetna, Alaska",0.51,39,",ak,",reviewed,1537667234930,"M 1.6 - 83km NNW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071098102,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261038 +,,80310914,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80310914&format=geojson,0.1,,111.0,",mb80310914,",2.0,ml,,mb,13.0,"12km ESE of Lincoln, Montana",0.14,62,",mb,",reviewed,1537666958450,"M 2.0 - 12km ESE of Lincoln, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537715411210,https://earthquake.usgs.gov/earthquakes/eventpage/mb80310914 +,,20261036,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261036&format=geojson,,,,",ak20261036,",1.8,ml,,ak,,"87km SW of Kaktovik, Alaska",0.88,50,",ak,",reviewed,1537666885439,"M 1.8 - 87km SW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071097439,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261036 +,,70804084,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804084&format=geojson,0.02243,,245.0,",av70804084,",-0.64,ml,,av,5.0,"101km ESE of King Salmon, Alaska",0.1,0,",av,",reviewed,1537666692080,"M -0.6 - 101km ESE of King Salmon, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537833297160,https://earthquake.usgs.gov/earthquakes/eventpage/av70804084 +,,70804079,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804079&format=geojson,0.02137,,243.0,",av70804079,",-0.34,ml,,av,5.0,"101km ESE of King Salmon, Alaska",0.12,0,",av,",reviewed,1537666618740,"M -0.3 - 101km ESE of King Salmon, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537832820550,https://earthquake.usgs.gov/earthquakes/eventpage/av70804079 +,,20261034,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261034&format=geojson,,,,",ak20261034,",1.6,ml,,ak,,"61km SSE of Tanaga Volcano, Alaska",0.39,39,",ak,",reviewed,1537666594100,"M 1.6 - 61km SSE of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-720.0,1538071096909,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261034 +,,37365082,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37365082&format=geojson,0.08154,,149.0,",ci37365082,",0.65,ml,,ci,24.0,"22km NNW of Borrego Springs, CA",0.15,6,",ci,",reviewed,1537666324430,"M 0.7 - 22km NNW of Borrego Springs, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538004642141,https://earthquake.usgs.gov/earthquakes/eventpage/ci37365082 +,2.0,20261031,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261031&format=geojson,,1.0,,",ak20261031,",1.8,ml,,ak,,"43km SW of Redoubt Volcano, Alaska",0.4,50,",ak,",reviewed,1537666298475,"M 1.8 - 43km SW of Redoubt Volcano, Alaska",0,earthquake,",dyfi,geoserve,origin,phase-data,",-540.0,1538071162566,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261031 +,,00657822,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657822&format=geojson,0.336,,177.76,",nn00657822,",0.6,ml,,nn,5.0,"30km SW of Hawthorne, Nevada",0.0899,6,",nn,",reviewed,1537666130540,"M 0.6 - 30km SW of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537754696292,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657822 +,,20265399,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265399&format=geojson,,,,",ak20265399,",1.2,ml,,ak,,"80km SSW of Kaktovik, Alaska",0.57,22,",ak,",reviewed,1537665745629,"M 1.2 - 80km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071095725,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265399 +,,20261027,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261027&format=geojson,,,,",ak20261027,",1.2,ml,,ak,,"61km WNW of Talkeetna, Alaska",0.64,22,",ak,",reviewed,1537665568419,"M 1.2 - 61km WNW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071095186,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261027 +,,20261026,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261026&format=geojson,,,,",ak20261026,",2.0,ml,,ak,,"81km SW of Kaktovik, Alaska",0.83,62,",ak,",reviewed,1537665553771,"M 2.0 - 81km SW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071094536,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261026 +,,00657740,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657740&format=geojson,0.021,,103.85,",nn00657740,",0.8,ml,,nn,18.0,"59km E of Big Pine, California",0.1519,10,",nn,",reviewed,1537665167100,"M 0.8 - 59km E of Big Pine, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537754656065,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657740 +,,20265396,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265396&format=geojson,,,,",ak20265396,",1.2,ml,,ak,,"24km S of Cohoe, Alaska",0.87,22,",ak,",reviewed,1537664818389,"M 1.2 - 24km S of Cohoe, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071093932,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265396 +,,20261022,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261022&format=geojson,,,,",ak20261022,",1.9,ml,,ak,,"128km NNW of Arctic Village, Alaska",0.87,56,",ak,",reviewed,1537664620706,"M 1.9 - 128km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071093337,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261022 +,,2000hiud,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hiud&format=geojson,0.864,,122.0,",us2000hiud,",3.1,ml,,us,,"29km SE of Jeffrey City, Wyoming",0.78,148,",us,",reviewed,1537664505160,"M 3.1 - 29km SE of Jeffrey City, Wyoming",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538265848040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hiud +,,73088341,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73088341&format=geojson,0.009864,,57.0,",nc73088341,",0.94,md,,nc,23.0,"7km NW of The Geysers, CA",0.03,14,",nc,",automatic,1537664364340,"M 0.9 - 7km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537664462414,https://earthquake.usgs.gov/earthquakes/eventpage/nc73088341 +,,20261021,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261021&format=geojson,,,,",ak20261021,",1.4,ml,,ak,,"79km NNW of Yakutat, Alaska",0.83,30,",ak,",reviewed,1537664348441,"M 1.4 - 79km NNW of Yakutat, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071092755,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261021 +,,20261020,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261020&format=geojson,,,,",ak20261020,",1.5,ml,,ak,,"116km NNW of Arctic Village, Alaska",0.9,35,",ak,",reviewed,1537664288136,"M 1.5 - 116km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071092197,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261020 +,,73088336,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73088336&format=geojson,0.006894,,47.0,",nc73088336,",0.6,md,,nc,30.0,"7km NW of The Geysers, CA",0.03,6,",nc,",reviewed,1537664168220,"M 0.6 - 7km NW of The Geysers, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537823042828,https://earthquake.usgs.gov/earthquakes/eventpage/nc73088336 +,,1000h3tf,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3tf&format=geojson,4.252,,134.0,",us1000h3tf,",4.1,mb,,us,,"66km SE of Coracora, Peru",0.88,259,",us,",reviewed,1537664112450,"M 4.1 - 66km SE of Coracora, Peru",0,earthquake,",geoserve,origin,phase-data,",-300.0,1539148263040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3tf +,,20265392,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265392&format=geojson,,,,",ak20265392,",1.1,ml,,ak,,"77km SSW of Kaktovik, Alaska",0.69,19,",ak,",reviewed,1537664107250,"M 1.1 - 77km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071091651,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265392 +,,20265391,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265391&format=geojson,,,,",ak20265391,",0.9,ml,,ak,,"76km SSW of Kaktovik, Alaska",0.49,12,",ak,",reviewed,1537664054877,"M 0.9 - 76km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071091112,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265391 +,,20265390,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265390&format=geojson,,,,",ak20265390,",1.2,ml,,ak,,"79km SW of Kaktovik, Alaska",0.84,22,",ak,",reviewed,1537663731351,"M 1.2 - 79km SW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071090463,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265390 +,,20261016,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261016&format=geojson,,,,",ak20261016,",1.6,ml,,ak,,"29km SW of Tanaga Volcano, Alaska",0.72,39,",ak,",reviewed,1537663723341,"M 1.6 - 29km SW of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538071089893,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261016 +,,20261014,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20261014&format=geojson,,,,",ak20261014,",1.5,ml,,ak,,"16km S of Knik-Fairview, Alaska",0.46,35,",ak,",reviewed,1537663279377,"M 1.5 - 16km S of Knik-Fairview, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071089291,https://earthquake.usgs.gov/earthquakes/eventpage/ak20261014 +,,37365066,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37365066&format=geojson,0.07077,,38.0,",ci37365066,",0.59,ml,,ci,25.0,"10km NE of Aguanga, CA",0.16,5,",ci,",reviewed,1537663201420,"M 0.6 - 10km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537799064820,https://earthquake.usgs.gov/earthquakes/eventpage/ci37365066 +,,37365034,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37365034&format=geojson,0.034,,98.0,",ci37365034,",0.32,ml,,ci,12.0,"4km N of Palomar Observatory, CA",0.15,2,",ci,",reviewed,1537662422930,"M 0.3 - 4km N of Palomar Observatory, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537806163508,https://earthquake.usgs.gov/earthquakes/eventpage/ci37365034 +,,80310904,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80310904&format=geojson,0.126,,201.0,",mb80310904,",1.36,ml,,mb,7.0,"2km N of Driggs, Idaho",0.09,28,",mb,",reviewed,1537662299270,"M 1.4 - 2km N of Driggs, Idaho",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537800941030,https://earthquake.usgs.gov/earthquakes/eventpage/mb80310904 +,,37365026,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37365026&format=geojson,0.08192,,101.0,",ci37365026,",0.68,ml,,ci,21.0,"21km NNW of Borrego Springs, CA",0.18,7,",ci,",reviewed,1537662176970,"M 0.7 - 21km NNW of Borrego Springs, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537799065520,https://earthquake.usgs.gov/earthquakes/eventpage/ci37365026 +,,70804074,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804074&format=geojson,0.03437,,171.0,",av70804074,",-0.5,ml,,av,6.0,"95km SE of King Salmon, Alaska",0.18,0,",av,",reviewed,1537662063550,"M -0.5 - 95km SE of King Salmon, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537831867210,https://earthquake.usgs.gov/earthquakes/eventpage/av70804074 +,,00657739,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657739&format=geojson,0.184,,113.28,",nn00657739,",0.9,ml,,nn,12.0,"9km ENE of Gardnerville Ranchos, Nevada",0.1654,12,",nn,",reviewed,1537661823100,"M 0.9 - 9km ENE of Gardnerville Ranchos, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537754651962,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657739 +,,20260969,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260969&format=geojson,,,,",ak20260969,",1.5,ml,,ak,,"114km S of Coldfoot, Alaska",0.85,35,",ak,",reviewed,1537661461226,"M 1.5 - 114km S of Coldfoot, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538071088633,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260969 +,,20265386,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20265386&format=geojson,,,,",ak20265386,",2.0,ml,,ak,,"45km E of Semisopochnoi Island, Alaska",0.35,62,",ak,",reviewed,1537661414738,"M 2.0 - 45km E of Semisopochnoi Island, Alaska",0,earthquake,",geoserve,origin,phase-data,",-720.0,1538071087961,https://earthquake.usgs.gov/earthquakes/eventpage/ak20265386 +,,73088331,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73088331&format=geojson,0.02614,,61.0,",nc73088331,",1.08,md,,nc,27.0,"9km ENE of Milpitas, CA",0.05,18,",nc,",reviewed,1537661112210,"M 1.1 - 9km ENE of Milpitas, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537829498666,https://earthquake.usgs.gov/earthquakes/eventpage/nc73088331 +,,73088326,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73088326&format=geojson,0.002701,,84.0,",nc73088326,",0.56,md,,nc,8.0,"6km WNW of Cobb, CA",0.08,5,",nc,",automatic,1537660230860,"M 0.6 - 6km WNW of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537660327609,https://earthquake.usgs.gov/earthquakes/eventpage/nc73088326 +,,20260964,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260964&format=geojson,,,,",ak20260964,us2000hiu4,",3.2,ml,,ak,,"123km SSE of Prudhoe Bay, Alaska",0.75,158,",ak,us,",automatic,1537660178351,"M 3.2 - 123km SSE of Prudhoe Bay, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539147762040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260964 +,2.7,37365010,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37365010&format=geojson,0.1274,1.0,130.0,",ci37365010,",1.41,ml,,ci,16.0,"22km SW of Little Lake, CA",0.19,31,",ci,",reviewed,1537659919260,"M 1.4 - 22km SW of Little Lake, CA",0,earthquake,",dyfi,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537799062291,https://earthquake.usgs.gov/earthquakes/eventpage/ci37365010 +,,37365002,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37365002&format=geojson,0.1501,,164.0,",ci37365002,",2.01,ml,,ci,18.0,"15km WNW of Alberto Oviedo Mota, B.C., MX",0.21,62,",ci,",reviewed,1537659575270,"M 2.0 - 15km WNW of Alberto Oviedo Mota, B.C., MX",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537805852978,https://earthquake.usgs.gov/earthquakes/eventpage/ci37365002 +,,20260957,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260957&format=geojson,,,,",ak20260957,us2000hiu1,",2.7,ml,,ak,,"34km WNW of Valdez, Alaska",0.96,112,",ak,us,",automatic,1537659311450,"M 2.7 - 34km WNW of Valdez, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539147300040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260957 +,,73088316,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73088316&format=geojson,0.07843,,126.0,",nc73088316,",1.29,md,,nc,19.0,"8km SE of Pinnacles, CA",0.06,26,",nc,",reviewed,1537659183400,"M 1.3 - 8km SE of Pinnacles, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537839244087,https://earthquake.usgs.gov/earthquakes/eventpage/nc73088316 +,,2018265012,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018265012&format=geojson,1.5877,,345.0,",pr2018265012,us2000hivx,",3.16,md,,pr,5.0,"91km NNW of Road Town, British Virgin Islands",0.45,154,",pr,us,",reviewed,1537658755430,"M 3.2 - 91km NNW of Road Town, British Virgin Islands",0,earthquake,",geoserve,origin,phase-data,",-240.0,1539141010040,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018265012 +,,37364986,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37364986&format=geojson,0.08235,,126.0,",ci37364986,",0.65,ml,,ci,21.0,"21km NNW of Borrego Springs, CA",0.19,6,",ci,",reviewed,1537658573500,"M 0.7 - 21km NNW of Borrego Springs, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537799069648,https://earthquake.usgs.gov/earthquakes/eventpage/ci37364986 +,,73088311,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73088311&format=geojson,0.01504,,95.0,",nc73088311,",0.7,md,,nc,8.0,"6km WNW of The Geysers, CA",0.02,8,",nc,",automatic,1537658125400,"M 0.7 - 6km WNW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537658223478,https://earthquake.usgs.gov/earthquakes/eventpage/nc73088311 +,,37364954,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37364954&format=geojson,0.02425,,80.0,",ci37364954,",0.5,ml,,ci,24.0,"9km NE of Aguanga, CA",0.14,4,",ci,",reviewed,1537657139930,"M 0.5 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537808379075,https://earthquake.usgs.gov/earthquakes/eventpage/ci37364954 +,,37364962,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37364962&format=geojson,0.1259,,228.0,",ci37364962,",0.73,ml,,ci,18.0,"12km NE of Borrego Springs, CA",0.12,8,",ci,",reviewed,1537656953270,"M 0.7 - 12km NE of Borrego Springs, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537805556268,https://earthquake.usgs.gov/earthquakes/eventpage/ci37364962 +,,2000hits,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hits&format=geojson,1.775,,52.0,",us2000hits,",4.7,mb,,us,,"148km SW of Dadali, Solomon Islands",0.52,340,",us,",reviewed,1537656311310,"M 4.7 - 148km SW of Dadali, Solomon Islands",0,earthquake,",geoserve,origin,phase-data,",660.0,1539140395040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hits +,,70804064,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804064&format=geojson,0.0722,,200.0,",av70804064,",0.43,ml,,av,5.0,"102km NW of Larsen Bay, Alaska",0.16,3,",av,",reviewed,1537655925910,"M 0.4 - 102km NW of Larsen Bay, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537829514070,https://earthquake.usgs.gov/earthquakes/eventpage/av70804064 +,,20260947,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260947&format=geojson,,,,",ak20260947,",2.0,ml,,ak,,"23km NE of Redoubt Volcano, Alaska",0.57,62,",ak,",automatic,1537655687460,"M 2.0 - 23km NE of Redoubt Volcano, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537656520038,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260947 +,4.3,2000hiti,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hiti&format=geojson,6.248,39.0,62.0,",us2000hiti,",4.7,mb,,us,,"18km NE of Juybar, Iran",0.85,357,",us,",reviewed,1537655684020,"M 4.7 - 18km NE of Juybar, Iran",0,earthquake,",dyfi,geoserve,origin,phase-data,",210.0,1539138763226,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hiti +,,20260945,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260945&format=geojson,,,,",ak20260945,",1.6,ml,,ak,,"109km NNW of Arctic Village, Alaska",0.41,39,",ak,",automatic,1537655428096,"M 1.6 - 109km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537656228715,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260945 +,,20260943,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260943&format=geojson,,,,",ak20260943,",1.4,ml,,ak,,"38km NE of Talkeetna, Alaska",0.47,30,",ak,",automatic,1537655321602,"M 1.4 - 38km NE of Talkeetna, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537655525743,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260943 +,,73088301,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73088301&format=geojson,0.04846,,90.0,",nc73088301,",1.06,md,,nc,15.0,"19km E of Toms Place, CA",0.07,17,",nc,",reviewed,1537654908370,"M 1.1 - 19km E of Toms Place, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1538186488999,https://earthquake.usgs.gov/earthquakes/eventpage/nc73088301 +,,2018265011,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018265011&format=geojson,0.7843,,334.0,",pr2018265011,",3.18,md,,pr,4.0,"39km N of Culebra, Puerto Rico",0.09,156,",pr,",reviewed,1537654879360,"M 3.2 - 39km N of Culebra, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1537661306313,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018265011 +,,37364938,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37364938&format=geojson,0.09379,,16.0,",ci37364938,",2.38,ml,,ci,99.0,"11km NNW of Warner Springs, CA",0.18,87,",ci,",reviewed,1537654870290,"M 2.4 - 11km NNW of Warner Springs, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537822539630,https://earthquake.usgs.gov/earthquakes/eventpage/ci37364938 +,,1000h3qx,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3qx&format=geojson,5.247,,186.0,",us1000h3qx,",4.4,mb,,us,,"66km N of Port-Vila, Vanuatu",0.65,298,",us,",reviewed,1537654832300,"M 4.4 - 66km N of Port-Vila, Vanuatu",0,earthquake,",geoserve,origin,phase-data,",660.0,1539135908040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3qx +,,1000h3qw,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3qw&format=geojson,1.228,,93.0,",us1000h3qw,",4.2,mb,,us,,"164km E of Nago, Japan",0.99,271,",us,",reviewed,1537654508260,"M 4.2 - 164km E of Nago, Japan",0,earthquake,",geoserve,origin,phase-data,",540.0,1539135424040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3qw +,,20260930,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260930&format=geojson,,,,",ak20260930,",1.2,ml,,ak,,"19km NW of North Nenana, Alaska",0.61,22,",ak,",automatic,1537654428829,"M 1.2 - 19km NW of North Nenana, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537654733201,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260930 +,,2018265010,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018265010&format=geojson,0.6551,,329.0,",pr2018265010,",2.65,md,,pr,4.0,"38km NNW of San Antonio, Puerto Rico",0.07,108,",pr,",reviewed,1537653917850,"M 2.7 - 38km NNW of San Antonio, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1537661297122,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018265010 +,,1000h3qv,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3qv&format=geojson,0.799,,176.0,",us1000h3qv,",3.9,mb,,us,,"26km SW of Tanaga Volcano, Alaska",0.87,234,",us,",reviewed,1537653461940,"M 3.9 - 26km SW of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539061532040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3qv +,,73088291,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73088291&format=geojson,0.002872,,91.0,",nc73088291,",0.77,md,,nc,14.0,"4km NW of The Geysers, CA",0.03,9,",nc,",automatic,1537653320870,"M 0.8 - 4km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537653415488,https://earthquake.usgs.gov/earthquakes/eventpage/nc73088291 +,,61783631,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61783631&format=geojson,0.01708,,110.0,",av61783631,",-0.64,ml,,av,5.0,"41km ENE of Adak, Alaska",0.14,0,",av,",reviewed,1537651740390,"M -0.6 - 41km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537828781280,https://earthquake.usgs.gov/earthquakes/eventpage/av61783631 +,,20260919,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260919&format=geojson,,,,",ak20260919,",2.2,ml,,ak,,"76km SW of Kaktovik, Alaska",0.94,74,",ak,",automatic,1537651656273,"M 2.2 - 76km SW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537651974885,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260919 +,,20260918,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260918&format=geojson,,,,",ak20260918,",1.9,ml,,ak,,"71km WNW of Yakutat, Alaska",1.23,56,",ak,",automatic,1537651599074,"M 1.9 - 71km WNW of Yakutat, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537651874398,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260918 +,,00657725,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657725&format=geojson,0.105,,133.59,",nn00657725,",0.5,ml,,nn,11.0,"60km WNW of Beatty, Nevada",0.1418,4,",nn,",reviewed,1537651407074,"M 0.5 - 60km WNW of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537668593038,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657725 +,,37364898,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37364898&format=geojson,0.08213,,61.0,",ci37364898,",1.49,ml,,ci,30.0,"11km ENE of Lebec, CA",0.18,34,",ci,",reviewed,1537650698200,"M 1.5 - 11km ENE of Lebec, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538007884870,https://earthquake.usgs.gov/earthquakes/eventpage/ci37364898 +,,20260912,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260912&format=geojson,,,,",ak20260912,",2.3,ml,,ak,,"53km SSW of Kaktovik, Alaska",0.96,81,",ak,",automatic,1537649962389,"M 2.3 - 53km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537650258981,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260912 +,,37364882,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37364882&format=geojson,0.03824,,40.0,",ci37364882,",2.36,ml,,ci,80.0,"8km ENE of Aguanga, CA",0.22,86,",ci,",automatic,1537649328830,"M 2.4 - 8km ENE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537827923800,https://earthquake.usgs.gov/earthquakes/eventpage/ci37364882 +,,70804374,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804374&format=geojson,0.1153,,329.0,",av70804374,",0.45,ml,,av,5.0,"40km WSW of Unalaska, Alaska",0.1,3,",av,",reviewed,1537649245150,"M 0.5 - 40km WSW of Unalaska, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537917308310,https://earthquake.usgs.gov/earthquakes/eventpage/av70804374 +,,37364874,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37364874&format=geojson,0.01328,,45.0,",ci37364874,",0.55,ml,,ci,21.0,"10km NE of Aguanga, CA",0.16,5,",ci,",reviewed,1537649125340,"M 0.6 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537799101149,https://earthquake.usgs.gov/earthquakes/eventpage/ci37364874 +,,80310874,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80310874&format=geojson,0.246,,218.0,",mb80310874,",2.35,ml,,mb,10.0,"46km NE of Jackson, Wyoming",0.21,85,",mb,",reviewed,1537648834200,"M 2.4 - 46km NE of Jackson, Wyoming",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537716539650,https://earthquake.usgs.gov/earthquakes/eventpage/mb80310874 +,,20260906,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260906&format=geojson,,,,",ak20260906,",2.0,ml,,ak,,"120km NW of Arctic Village, Alaska",0.77,62,",ak,",automatic,1537648825771,"M 2.0 - 120km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537649215706,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260906 +,,37197028,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37197028&format=geojson,0.00856,,106.0,",ci37197028,",0.31,ml,,ci,8.0,"9km NE of Aguanga, CA",0.15,1,",ci,",reviewed,1537648470740,"M 0.3 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537903980990,https://earthquake.usgs.gov/earthquakes/eventpage/ci37197028 +,,37364866,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37364866&format=geojson,0.008318,,170.0,",ci37364866,",0.88,ml,,ci,17.0,"7km N of Borrego Springs, CA",0.15,12,",ci,",reviewed,1537648463180,"M 0.9 - 7km N of Borrego Springs, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537903720963,https://earthquake.usgs.gov/earthquakes/eventpage/ci37364866 +,,37364858,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37364858&format=geojson,0.01908,,27.0,",ci37364858,",1.94,ml,,ci,78.0,"8km NE of Aguanga, CA",0.21,58,",ci,",reviewed,1537648423230,"M 1.9 - 8km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537900810080,https://earthquake.usgs.gov/earthquakes/eventpage/ci37364858 +,,20260901,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260901&format=geojson,,,,",ak20260901,",1.8,ml,,ak,,"88km NNW of Talkeetna, Alaska",0.37,50,",ak,",automatic,1537648089274,"M 1.8 - 88km NNW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537648382878,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260901 +,,37364842,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37364842&format=geojson,0.01553,,69.0,",ci37364842,",1.21,ml,,ci,13.0,"9km NNE of Simmler, CA",0.25,23,",ci,",reviewed,1537647740670,"M 1.2 - 9km NNE of Simmler, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537843490729,https://earthquake.usgs.gov/earthquakes/eventpage/ci37364842 +,,2018265009,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018265009&format=geojson,0.0958,,320.0,",pr2018265009,",1.7,md,,pr,3.0,"6km SW of Guanica, Puerto Rico",0.15,44,",pr,",reviewed,1537646906890,"M 1.7 - 6km SW of Guanica, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1537661286569,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018265009 +,2.2,37364826,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37364826&format=geojson,0.0528,3.0,29.0,",ci37364826,",2.13,ml,,ci,76.0,"6km N of Julian, CA",0.18,70,",ci,",reviewed,1537646739750,"M 2.1 - 6km N of Julian, CA",0,earthquake,",dyfi,focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537898467650,https://earthquake.usgs.gov/earthquakes/eventpage/ci37364826 +,2.8,73088261,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73088261&format=geojson,0.04027,63.0,65.0,",nc73088261,",2.48,md,,nc,77.0,"4km N of Santa Rosa, CA",0.14,112,",nc,",reviewed,1537646660330,"M 2.5 - 4km N of Santa Rosa, CA",0,earthquake,",dyfi,focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537884335210,https://earthquake.usgs.gov/earthquakes/eventpage/nc73088261 +,,37364818,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37364818&format=geojson,0.05466,,107.0,",ci37364818,",1.1,ml,,ci,40.0,"9km E of Borrego Springs, CA",0.19,19,",ci,",reviewed,1537646646930,"M 1.1 - 9km E of Borrego Springs, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538008190490,https://earthquake.usgs.gov/earthquakes/eventpage/ci37364818 +,3.1,20260888,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260888&format=geojson,,4.0,,",ak20260888,us2000his1,",3.0,ml,2.08,ak,,"18km S of Knik-Fairview, Alaska",0.67,140,",ak,us,",reviewed,1537646509280,"M 3.0 - 18km S of Knik-Fairview, Alaska",0,earthquake,",dyfi,geoserve,origin,phase-data,shakemap,",-540.0,1539060535040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260888 +,,60016494,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60016494&format=geojson,0.08097,,114.0,",uu60016494,",0.15,md,,uu,7.0,"13km ESE of Nibley, Utah",0.18,0,",uu,",reviewed,1537646038400,"M 0.2 - 13km ESE of Nibley, Utah",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537896539400,https://earthquake.usgs.gov/earthquakes/eventpage/uu60016494 +,,37364794,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37364794&format=geojson,0.02942,,39.0,",ci37364794,",0.84,ml,,ci,36.0,"9km ENE of Aguanga, CA",0.18,11,",ci,",reviewed,1537645427970,"M 0.8 - 9km ENE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537799260000,https://earthquake.usgs.gov/earthquakes/eventpage/ci37364794 +,,20260883,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260883&format=geojson,,,,",ak20260883,us2000hiry,",2.8,ml,,ak,,"69km SSW of Kaktovik, Alaska",1.03,121,",ak,us,",automatic,1537645295438,"M 2.8 - 69km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539057769040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260883 +,,73088256,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73088256&format=geojson,0.1414,,229.0,",nc73088256,",1.15,md,,nc,9.0,"9km N of Round Valley, CA",0.03,20,",nc,",reviewed,1537645186940,"M 1.2 - 9km N of Round Valley, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537809364472,https://earthquake.usgs.gov/earthquakes/eventpage/nc73088256 +,,00657735,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657735&format=geojson,0.064,,132.43,",nn00657735,",-0.4,ml,,nn,10.0,"44km ESE of Beatty, Nevada",0.1348,0,",nn,",reviewed,1537644940440,"M -0.4 - 44km ESE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537668602658,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657735 +,,73088246,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73088246&format=geojson,0.023,,175.0,",nc73088246,",0.74,md,,nc,14.0,"5km SE of Mammoth Lakes, CA",0.03,8,",nc,",reviewed,1537644097750,"M 0.7 - 5km SE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537816169525,https://earthquake.usgs.gov/earthquakes/eventpage/nc73088246 +,,2000hirs,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hirs&format=geojson,1.513,,40.0,",us2000hirs,",5.0,mb,,us,,"166km NNW of Saumlaki, Indonesia",0.86,385,",us,",reviewed,1537643812970,"M 5.0 - 166km NNW of Saumlaki, Indonesia",0,earthquake,",geoserve,origin,phase-data,",540.0,1539055497040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hirs +,,20260876,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260876&format=geojson,,,,",ak20260876,",1.6,ml,,ak,,"46km SSW of Kaktovik, Alaska",0.86,39,",ak,",automatic,1537643685829,"M 1.6 - 46km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537643928413,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260876 +,,20260873,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260873&format=geojson,,,,",ak20260873,",1.8,ml,,ak,,"132km NNW of Arctic Village, Alaska",0.95,50,",ak,",automatic,1537643457353,"M 1.8 - 132km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537643606828,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260873 +,,70804059,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804059&format=geojson,0.03269,,169.0,",av70804059,",-0.17,ml,,av,5.0,"95km SE of King Salmon, Alaska",0.08,0,",av,",reviewed,1537642941270,"M -0.2 - 95km SE of King Salmon, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537828398850,https://earthquake.usgs.gov/earthquakes/eventpage/av70804059 +,,73088241,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73088241&format=geojson,0.02086,,124.0,",nc73088241,",1.19,md,,nc,22.0,"5km SE of Mammoth Lakes, CA",0.04,22,",nc,",reviewed,1537642776810,"M 1.2 - 5km SE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537841763341,https://earthquake.usgs.gov/earthquakes/eventpage/nc73088241 +,,70804054,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804054&format=geojson,0.02071,,91.0,",av70804054,",-0.13,ml,,av,9.0,"13km W of Akutan, Alaska",0.14,0,",av,",reviewed,1537642257280,"M -0.1 - 13km W of Akutan, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537828203590,https://earthquake.usgs.gov/earthquakes/eventpage/av70804054 +,,20260862,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260862&format=geojson,,,,",ak20260862,",1.6,ml,,ak,,"86km WNW of Arctic Village, Alaska",0.86,39,",ak,",automatic,1537641881336,"M 1.6 - 86km WNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537642181773,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260862 +,3.1,00657702,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657702&format=geojson,0.053,1.0,65.58,",nn00657702,",0.0,ml,,nn,27.0,"44km ESE of Beatty, Nevada",0.1338,0,",nn,",reviewed,1537641446362,"M 0.0 - 44km ESE of Beatty, Nevada",0,earthquake,",dyfi,geoserve,origin,phase-data,",-480.0,1537668576331,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657702 +,,2000hirf,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hirf&format=geojson,4.345,,80.0,",us2000hirf,",5.1,mb,,us,,"109km E of `Ohonua, Tonga",1.29,400,",us,",reviewed,1537641336450,"M 5.1 - 109km E of `Ohonua, Tonga",0,earthquake,",geoserve,origin,phase-data,",-720.0,1537892136040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hirf +,,20260858,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260858&format=geojson,,,,",ak20260858,us2000hirb,",2.8,ml,,ak,,"57km SSW of Kaktovik, Alaska",0.83,121,",ak,us,",automatic,1537641287976,"M 2.8 - 57km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537882714040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260858 +,,73088236,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73088236&format=geojson,0.02909,,30.0,",nc73088236,",2.04,md,,nc,66.0,"4km ESE of Union City, CA",0.12,64,",nc,",reviewed,1537641031040,"M 2.0 - 4km ESE of Union City, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537839183921,https://earthquake.usgs.gov/earthquakes/eventpage/nc73088236 +,,20260855,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260855&format=geojson,,,,",ak20260855,",1.1,ml,,ak,,"101km N of Manley Hot Springs, Alaska",0.57,19,",ak,",automatic,1537640819073,"M 1.1 - 101km N of Manley Hot Springs, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537640997828,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260855 +,,1000h3qp,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3qp&format=geojson,0.223,,146.0,",us1000h3qp,",4.0,mb,,us,,"65km E of Shizunai, Japan",0.45,246,",us,",reviewed,1537640754840,"M 4.0 - 65km E of Shizunai, Japan",0,earthquake,",geoserve,origin,phase-data,",540.0,1539294775040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3qp +,,37364738,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37364738&format=geojson,0.1154,,45.0,",ci37364738,",0.87,ml,,ci,32.0,"2km SSW of Calimesa, CA",0.14,12,",ci,",reviewed,1537640590530,"M 0.9 - 2km SSW of Calimesa, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537902229813,https://earthquake.usgs.gov/earthquakes/eventpage/ci37364738 +,,1000h3qz,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3qz&format=geojson,11.667,,263.0,",us1000h3qz,",4.2,mb,,us,,South of the Fiji Islands,0.49,271,",us,",reviewed,1537640212550,M 4.2 - South of the Fiji Islands,0,earthquake,",geoserve,origin,phase-data,",-720.0,1539290373040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3qz +,,60297377,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60297377&format=geojson,0.2577,,122.0,",uu60297377,",1.12,ml,,uu,8.0,"11km WNW of Junction, Utah",0.21,19,",uu,",reviewed,1537640109330,"M 1.1 - 11km WNW of Junction, Utah",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537894870420,https://earthquake.usgs.gov/earthquakes/eventpage/uu60297377 +,,20260853,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260853&format=geojson,,,,",ak20260853,",1.7,ml,,ak,,"104km NNW of Arctic Village, Alaska",0.7,44,",ak,",automatic,1537639993263,"M 1.7 - 104km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537640265570,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260853 +,,00657695,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657695&format=geojson,0.034,,43.31,",nn00657695,",1.4,ml,,nn,28.0,"3km WSW of Tahoe Vista, California",0.183,30,",nn,",reviewed,1537639973384,"M 1.4 - 3km WSW of Tahoe Vista, California",0,earthquake,",focal-mechanism,geoserve,origin,phase-data,",-480.0,1537815117290,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657695 +,,37364722,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37364722&format=geojson,0.1405,,41.0,",ci37364722,",1.28,ml,,ci,50.0,"15km NE of Borrego Springs, CA",0.22,25,",ci,",reviewed,1537639948880,"M 1.3 - 15km NE of Borrego Springs, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537799390970,https://earthquake.usgs.gov/earthquakes/eventpage/ci37364722 +,,70606187,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70606187&format=geojson,0.01148,,48.0,",hv70606187,",1.78,md,,hv,16.0,"4km WSW of Volcano, Hawaii",0.22,49,",hv,",automatic,1537639785600,"M 1.8 - 4km WSW of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537640125370,https://earthquake.usgs.gov/earthquakes/eventpage/hv70606187 +,,37364714,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37364714&format=geojson,0.01724,,46.0,",ci37364714,",0.56,ml,,ci,28.0,"9km NE of Aguanga, CA",0.12,5,",ci,",reviewed,1537639523580,"M 0.6 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537901896130,https://earthquake.usgs.gov/earthquakes/eventpage/ci37364714 +,,20260851,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260851&format=geojson,,,,",ak20260851,",1.8,ml,,ak,,"108km NW of Arctic Village, Alaska",0.57,50,",ak,",automatic,1537639467540,"M 1.8 - 108km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537639733713,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260851 +,,20260850,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260850&format=geojson,,,,",ak20260850,",1.7,ml,,ak,,"62km SSW of Kaktovik, Alaska",0.85,44,",ak,",automatic,1537639070885,"M 1.7 - 62km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537639292205,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260850 +,,00657733,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657733&format=geojson,0.171,,243.43,",nn00657733,",0.3,ml,,nn,25.0,"70km NNE of Pahrump, Nevada",0.1999,1,",nn,",reviewed,1537638628144,"M 0.3 - 70km NNE of Pahrump, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537668601228,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657733 +,,37364706,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37364706&format=geojson,0.1004,,65.0,",ci37364706,",0.81,ml,,ci,23.0,"13km NNE of Ocotillo Wells, CA",0.17,10,",ci,",reviewed,1537638493060,"M 0.8 - 13km NNE of Ocotillo Wells, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537901544328,https://earthquake.usgs.gov/earthquakes/eventpage/ci37364706 +,,1000h3qm,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3qm&format=geojson,2.598,,129.0,",us1000h3qm,",4.1,mb,,us,,"11km NE of Sambelia, Indonesia",0.8,259,",us,",reviewed,1537638202570,"M 4.1 - 11km NE of Sambelia, Indonesia",0,earthquake,",geoserve,origin,phase-data,",480.0,1539207154040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3qm +,,20260846,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260846&format=geojson,,,,",ak20260846,",1.5,ml,,ak,,"68km SSW of Kobuk, Alaska",0.55,35,",ak,",automatic,1537637544828,"M 1.5 - 68km SSW of Kobuk, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537637748237,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260846 +,,70606117,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70606117&format=geojson,0.006784,,122.0,",hv70606117,",1.74,ml,,hv,18.0,"3km W of Volcano, Hawaii",0.12,47,",hv,",automatic,1537637543360,"M 1.7 - 3km W of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537637884500,https://earthquake.usgs.gov/earthquakes/eventpage/hv70606117 +,,70804049,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804049&format=geojson,0.02566,,115.0,",av70804049,",-0.67,ml,,av,5.0,"42km ENE of Adak, Alaska",0.06,0,",av,",reviewed,1537637302470,"M -0.7 - 42km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537827476230,https://earthquake.usgs.gov/earthquakes/eventpage/av70804049 +,,73088226,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73088226&format=geojson,0.06271,,69.0,",nc73088226,",1.24,md,,nc,32.0,"6km SW of San Ardo, CA",0.04,24,",nc,",reviewed,1537637298080,"M 1.2 - 6km SW of San Ardo, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537837143718,https://earthquake.usgs.gov/earthquakes/eventpage/nc73088226 +,,61422207,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61422207&format=geojson,1.116,,268.0,",uw61422207,",1.86,ml,,uw,7.0,"2km SSW of Princeton, Canada",0.19,53,",uw,",reviewed,1537637216370,"M 1.9 Explosion - 2km SSW of Princeton, Canada",0,explosion,",geoserve,origin,phase-data,",-480.0,1537666212610,https://earthquake.usgs.gov/earthquakes/eventpage/uw61422207 +,,61783526,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61783526&format=geojson,0.2872,,174.0,",av61783526,",0.94,ml,,av,13.0,"60km SSE of King Salmon, Alaska",0.27,14,",av,",reviewed,1537636959190,"M 0.9 - 60km SSE of King Salmon, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537825922720,https://earthquake.usgs.gov/earthquakes/eventpage/av61783526 +,,37364690,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37364690&format=geojson,0.009045,,100.0,",ci37364690,",0.66,ml,,ci,12.0,"3km WNW of Borrego Springs, CA",0.08,7,",ci,",reviewed,1537636927860,"M 0.7 - 3km WNW of Borrego Springs, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537805147214,https://earthquake.usgs.gov/earthquakes/eventpage/ci37364690 +,,70804359,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804359&format=geojson,0.06969,,136.0,",av70804359,",0.36,ml,,av,5.0,"21km W of Dutch Harbor, Alaska",0.16,2,",av,",reviewed,1537636623270,"M 0.4 - 21km W of Dutch Harbor, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537916863530,https://earthquake.usgs.gov/earthquakes/eventpage/av70804359 +,,20260841,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260841&format=geojson,,,,",ak20260841,",2.1,ml,,ak,,"67km S of Kaktovik, Alaska",0.9,68,",ak,",automatic,1537636165162,"M 2.1 - 67km S of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537636467560,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260841 +,,20260838,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260838&format=geojson,,,,",ak20260838,av61783516,",2.2,ml,,ak,,"108km NNW of Larsen Bay, Alaska",0.55,74,",ak,av,",automatic,1537635738198,"M 2.2 - 108km NNW of Larsen Bay, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537826589170,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260838 +,,1000h8r3,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h8r3&format=geojson,1.437,,100.0,",us1000h8r3,",4.2,mb,,us,,"39km N of Niltepec, Mexico",1.29,271,",us,",reviewed,1537635600310,"M 4.2 - 39km N of Niltepec, Mexico",0,earthquake,",geoserve,origin,phase-data,",-360.0,1539198947040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h8r3 +,,73088221,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73088221&format=geojson,0.009739,,154.0,",nc73088221,",0.56,md,,nc,10.0,"7km NW of The Geysers, CA",0.02,5,",nc,",automatic,1537635573160,"M 0.6 - 7km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537635669936,https://earthquake.usgs.gov/earthquakes/eventpage/nc73088221 +,,00657732,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657732&format=geojson,0.214,,175.6,",nn00657732,",-0.1,ml,,nn,6.0,"68km N of Gabbs, Nevada",0.136,0,",nn,",reviewed,1537635482278,"M -0.1 - 68km N of Gabbs, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537668599212,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657732 +,,73088216,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73088216&format=geojson,0.01136,,136.0,",nc73088216,",0.61,md,,nc,6.0,"5km NW of The Geysers, CA",0.04,6,",nc,",automatic,1537635236320,"M 0.6 - 5km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537635335000,https://earthquake.usgs.gov/earthquakes/eventpage/nc73088216 +,,61422192,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61422192&format=geojson,0.1739,,138.0,",uw61422192,",1.63,ml,,uw,5.0,"29km ESE of Milton-Freewater, Oregon",0.1,41,",uw,",reviewed,1537635228420,"M 1.6 - 29km ESE of Milton-Freewater, Oregon",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537666496440,https://earthquake.usgs.gov/earthquakes/eventpage/uw61422192 +,,00657731,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657731&format=geojson,0.083,,230.28,",nn00657731,",-0.1,ml,,nn,6.0,"21km NNE of Hawthorne, Nevada",0.1091,0,",nn,",reviewed,1537634937028,"M -0.1 - 21km NNE of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537668597556,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657731 +,,37364650,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37364650&format=geojson,0.01909,,37.0,",ci37364650,",0.59,ml,,ci,28.0,"9km NE of Aguanga, CA",0.11,5,",ci,",reviewed,1537634780070,"M 0.6 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537901347210,https://earthquake.usgs.gov/earthquakes/eventpage/ci37364650 +,,73088206,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73088206&format=geojson,0.06795,,203.0,",nc73088206,",0.44,md,,nc,13.0,"14km SE of Mammoth Lakes, CA",0.02,3,",nc,",reviewed,1537634460900,"M 0.4 - 14km SE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537807092087,https://earthquake.usgs.gov/earthquakes/eventpage/nc73088206 +,,20260833,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260833&format=geojson,,,,",ak20260833,",1.6,ml,,ak,,"121km NW of Arctic Village, Alaska",0.71,39,",ak,",automatic,1537634363395,"M 1.6 - 121km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537634893197,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260833 +,,20260831,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260831&format=geojson,,,,",ak20260831,",1.8,ml,,ak,,"101km NW of Arctic Village, Alaska",0.8,50,",ak,",automatic,1537634206082,"M 1.8 - 101km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537634792176,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260831 +,,20260828,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260828&format=geojson,,,,",ak20260828,",1.6,ml,,ak,,"90km NW of Arctic Village, Alaska",0.64,39,",ak,",automatic,1537633489840,"M 1.6 - 90km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537634690687,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260828 +,,2018265008,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018265008&format=geojson,0.31,,320.0,",pr2018265008,",2.72,md,,pr,7.0,"32km NW of San Antonio, Puerto Rico",0.31,114,",pr,",reviewed,1537633361460,"M 2.7 - 32km NW of San Antonio, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1537653068261,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018265008 +,,73088201,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73088201&format=geojson,0.02393,,130.0,",nc73088201,",0.56,md,,nc,7.0,"3km N of The Geysers, CA",0.03,5,",nc,",automatic,1537633284120,"M 0.6 - 3km N of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537633379904,https://earthquake.usgs.gov/earthquakes/eventpage/nc73088201 +,,37364634,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37364634&format=geojson,0.02095,,35.0,",ci37364634,",1.03,ml,,ci,43.0,"9km NE of Aguanga, CA",0.19,16,",ci,",reviewed,1537633214210,"M 1.0 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537799456150,https://earthquake.usgs.gov/earthquakes/eventpage/ci37364634 +,,37364618,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37364618&format=geojson,0.02023,,35.0,",ci37364618,",1.03,ml,,ci,45.0,"9km NE of Aguanga, CA",0.2,16,",ci,",reviewed,1537633049570,"M 1.0 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537799459160,https://earthquake.usgs.gov/earthquakes/eventpage/ci37364618 +,,20260820,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260820&format=geojson,,,,",ak20260820,",1.9,ml,,ak,,"86km WNW of Arctic Village, Alaska",0.8,56,",ak,",automatic,1537632817526,"M 1.9 - 86km WNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537634690444,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260820 +,,20260818,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260818&format=geojson,,,,",ak20260818,",1.8,ml,,ak,,"94km WNW of Arctic Village, Alaska",0.83,50,",ak,",automatic,1537632740668,"M 1.8 - 94km WNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537633167994,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260818 +,,70804354,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804354&format=geojson,0.06738,,141.0,",av70804354,",-0.21,ml,,av,4.0,"21km W of Unalaska, Alaska",0.09,0,",av,",reviewed,1537632706050,"M -0.2 - 21km W of Unalaska, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537916542750,https://earthquake.usgs.gov/earthquakes/eventpage/av70804354 +,,20260817,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260817&format=geojson,,,,",ak20260817,",1.0,ml,,ak,,"13km NNE of Fairbanks, Alaska",0.43,15,",ak,",automatic,1537632682491,"M 1.0 - 13km NNE of Fairbanks, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537632864275,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260817 +,,20260814,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260814&format=geojson,,,,",ak20260814,",1.5,ml,,ak,,"119km NW of Arctic Village, Alaska",0.73,35,",ak,",automatic,1537632430678,"M 1.5 - 119km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537633066687,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260814 +,,73088196,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73088196&format=geojson,0.0153,,66.0,",nc73088196,",1.36,md,,nc,30.0,"3km NNW of The Geysers, CA",0.07,28,",nc,",reviewed,1537632351680,"M 1.4 - 3km NNW of The Geysers, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537841163273,https://earthquake.usgs.gov/earthquakes/eventpage/nc73088196 +,,20260812,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260812&format=geojson,,,,",ak20260812,",1.5,ml,,ak,,"124km NW of Arctic Village, Alaska",0.66,35,",ak,",automatic,1537632234902,"M 1.5 - 124km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537632864047,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260812 +,,20260807,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260807&format=geojson,,,,",ak20260807,us2000hipk,",2.8,ml,,ak,,"126km NW of Arctic Village, Alaska",0.68,121,",ak,us,",automatic,1537632058196,"M 2.8 - 126km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537636248040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260807 +,,73088191,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73088191&format=geojson,0.011,,55.0,",nc73088191,",0.49,md,,nc,11.0,"8km W of Cobb, CA",0.01,4,",nc,",automatic,1537631624570,"M 0.5 - 8km W of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537631719868,https://earthquake.usgs.gov/earthquakes/eventpage/nc73088191 +,,00657730,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657730&format=geojson,0.111,,135.41,",nn00657730,",0.0,ml,,nn,28.0,"63km WSW of Alamo, Nevada",0.1943,0,",nn,",reviewed,1537631621056,"M 0.0 - 63km WSW of Alamo, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537668596164,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657730 +,,70804349,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804349&format=geojson,0.07,,143.0,",av70804349,",-0.21,ml,,av,5.0,"22km W of Unalaska, Alaska",0.13,0,",av,",reviewed,1537631588630,"M -0.2 - 22km W of Unalaska, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537916379320,https://earthquake.usgs.gov/earthquakes/eventpage/av70804349 +,,37364570,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37364570&format=geojson,0.08689,,90.0,",ci37364570,",0.87,ml,,ci,24.0,"9km NE of Nuevo, CA",0.19,12,",ci,",reviewed,1537631415350,"M 0.9 - 9km NE of Nuevo, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537799445331,https://earthquake.usgs.gov/earthquakes/eventpage/ci37364570 +,,20260802,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260802&format=geojson,,,,",ak20260802,",1.7,ml,,ak,,"87km WNW of Arctic Village, Alaska",0.73,44,",ak,",automatic,1537631224238,"M 1.7 - 87km WNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537632439492,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260802 +,,20260800,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260800&format=geojson,,,,",ak20260800,",1.4,ml,,ak,,"96km WNW of Arctic Village, Alaska",0.82,30,",ak,",automatic,1537631160059,"M 1.4 - 96km WNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537632439276,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260800 +,,70804044,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804044&format=geojson,0.02035,,142.0,",av70804044,",-0.31,ml,,av,4.0,"15km WNW of Akutan, Alaska",0.08,0,",av,",reviewed,1537630945300,"M -0.3 - 15km WNW of Akutan, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537825440210,https://earthquake.usgs.gov/earthquakes/eventpage/av70804044 +,,20260798,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260798&format=geojson,,,,",ak20260798,",2.4,ml,,ak,,"122km NW of Arctic Village, Alaska",0.83,89,",ak,",automatic,1537630824649,"M 2.4 - 122km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537632439048,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260798 +,,20260796,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260796&format=geojson,,,,",ak20260796,",1.6,ml,,ak,,"50km SSW of Kaktovik, Alaska",0.86,39,",ak,",automatic,1537630730185,"M 1.6 - 50km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537630909631,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260796 +,,73088186,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73088186&format=geojson,0.003804,,82.0,",nc73088186,",0.88,md,,nc,16.0,"3km S of Anderson Springs, CA",0.06,12,",nc,",reviewed,1537630666700,"M 0.9 - 3km S of Anderson Springs, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537829882541,https://earthquake.usgs.gov/earthquakes/eventpage/nc73088186 +,,70804039,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804039&format=geojson,0.01952,,241.0,",av70804039,",-0.23,ml,,av,4.0,"101km ESE of King Salmon, Alaska",0.07,0,",av,",reviewed,1537630501240,"M -0.2 - 101km ESE of King Salmon, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537824706220,https://earthquake.usgs.gov/earthquakes/eventpage/av70804039 +,,00657728,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657728&format=geojson,0.057,,119.19,",nn00657728,",0.7,ml,,nn,7.0,"10km ESE of Carson City, Nevada",0.1558,8,",nn,",reviewed,1537630088669,"M 0.7 - 10km ESE of Carson City, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537668594539,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657728 +,,20260794,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260794&format=geojson,,,,",ak20260794,",1.8,ml,,ak,,"63km SW of Kaktovik, Alaska",0.75,50,",ak,",automatic,1537629989689,"M 1.8 - 63km SW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537630538134,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260794 +,,00657692,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657692&format=geojson,0.057,,73.77,",nn00657692,",0.8,ml,,nn,21.0,"10km ESE of Carson City, Nevada",0.1746,10,",nn,",reviewed,1537629987472,"M 0.8 - 10km ESE of Carson City, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537668564841,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657692 +,,20260791,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260791&format=geojson,,,,",ak20260791,",1.9,ml,,ak,,"86km WNW of Arctic Village, Alaska",0.76,56,",ak,",automatic,1537629679955,"M 1.9 - 86km WNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537629955930,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260791 +,,20260790,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260790&format=geojson,,,,",ak20260790,",1.5,ml,,ak,,"88km WNW of Arctic Village, Alaska",0.87,35,",ak,",automatic,1537629369533,"M 1.5 - 88km WNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537629544053,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260790 +,,37197020,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37197020&format=geojson,0.01585,,64.0,",ci37197020,",0.59,ml,,ci,18.0,"9km NE of Aguanga, CA",0.16,5,",ci,",reviewed,1537629047540,"M 0.6 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537901099233,https://earthquake.usgs.gov/earthquakes/eventpage/ci37197020 +,,37364522,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37364522&format=geojson,0.02055,,98.0,",ci37364522,",0.31,ml,,ci,19.0,"9km NE of Aguanga, CA",0.08,1,",ci,",reviewed,1537629043190,"M 0.3 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537900883880,https://earthquake.usgs.gov/earthquakes/eventpage/ci37364522 +,,20260786,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260786&format=geojson,,,,",ak20260786,",1.3,ml,,ak,,"85km WNW of Arctic Village, Alaska",0.77,26,",ak,",automatic,1537628377010,"M 1.3 - 85km WNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537628811338,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260786 +,,20260784,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260784&format=geojson,,,,",ak20260784,",1.9,ml,,ak,,"94km WNW of Arctic Village, Alaska",0.57,56,",ak,",automatic,1537628272010,"M 1.9 - 94km WNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537628710718,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260784 +,,70804069,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804069&format=geojson,0.06961,,141.0,",av70804069,",0.16,ml,,av,5.0,"22km W of Unalaska, Alaska",0.09,0,",av,",reviewed,1537628144630,"M 0.2 - 22km W of Unalaska, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537831077330,https://earthquake.usgs.gov/earthquakes/eventpage/av70804069 +,,20260780,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260780&format=geojson,,,,",ak20260780,",1.8,ml,,ak,,"72km W of Anchor Point, Alaska",0.59,50,",ak,",automatic,1537628074892,"M 1.8 - 72km W of Anchor Point, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537628348812,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260780 +,,37364506,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37364506&format=geojson,0.006237,,58.0,",ci37364506,",0.22,ml,,ci,24.0,"10km NE of Aguanga, CA",0.12,1,",ci,",reviewed,1537627991310,"M 0.2 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537843262478,https://earthquake.usgs.gov/earthquakes/eventpage/ci37364506 +,,20260778,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260778&format=geojson,,,,",ak20260778,",1.7,ml,,ak,,"86km WNW of Arctic Village, Alaska",0.82,44,",ak,",automatic,1537627713855,"M 1.7 - 86km WNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537627936884,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260778 +,,20260776,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260776&format=geojson,,,,",ak20260776,",1.2,ml,,ak,,"93km WNW of Arctic Village, Alaska",0.91,22,",ak,",automatic,1537627474226,"M 1.2 - 93km WNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537627715917,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260776 +,,37364490,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37364490&format=geojson,0.008645,,61.0,",ci37364490,",0.19,ml,,ci,19.0,"10km NE of Aguanga, CA",0.09,1,",ci,",reviewed,1537627413580,"M 0.2 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537839925335,https://earthquake.usgs.gov/earthquakes/eventpage/ci37364490 +,,37364482,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37364482&format=geojson,0.007744,,59.0,",ci37364482,",0.36,ml,,ci,19.0,"10km NE of Aguanga, CA",0.18,2,",ci,",reviewed,1537627251140,"M 0.4 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537799479341,https://earthquake.usgs.gov/earthquakes/eventpage/ci37364482 +,,20260774,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260774&format=geojson,,,,",ak20260774,",1.5,ml,,ak,,"86km WNW of Arctic Village, Alaska",0.82,35,",ak,",automatic,1537627215119,"M 1.5 - 86km WNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537627494813,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260774 +,,00657724,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657724&format=geojson,0.207,,113.93,",nn00657724,",0.5,ml,,nn,8.0,"19km WSW of Smith Valley, Nevada",0.1972,4,",nn,",reviewed,1537626818409,"M 0.5 - 19km WSW of Smith Valley, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537668591384,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657724 +,,37364474,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37364474&format=geojson,0.02431,,33.0,",ci37364474,",1.79,ml,,ci,38.0,"3km SE of Vincent, CA",0.18,49,",ci,",reviewed,1537626658900,"M 1.8 - 3km SE of Vincent, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537799523970,https://earthquake.usgs.gov/earthquakes/eventpage/ci37364474 +,,2000hipa,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hipa&format=geojson,4.006,,156.0,",us2000hipa,",4.4,mb,,us,,"71km N of Isangel, Vanuatu",0.55,298,",us,",reviewed,1537626465260,"M 4.4 - 71km N of Isangel, Vanuatu",0,earthquake,",geoserve,origin,phase-data,",660.0,1537635988040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hipa +,,20260769,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260769&format=geojson,,,,",ak20260769,",2.3,ml,,ak,,"71km S of Kaktovik, Alaska",0.8,81,",ak,",automatic,1537625947881,"M 2.3 - 71km S of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537626270407,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260769 +,,37364458,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37364458&format=geojson,0.05844,,114.0,",ci37364458,",0.63,ml,,ci,17.0,"23km ESE of Anza, CA",0.2,6,",ci,",reviewed,1537625941370,"M 0.6 - 23km ESE of Anza, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537799496925,https://earthquake.usgs.gov/earthquakes/eventpage/ci37364458 +,,2018265007,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018265007&format=geojson,0.0913,,85.0,",pr2018265007,",2.19,md,,pr,16.0,"5km ESE of G. L. Garcia, Puerto Rico",0.09,74,",pr,",reviewed,1537625180210,"M 2.2 - 5km ESE of G. L. Garcia, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1537636932822,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018265007 +,,20260760,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260760&format=geojson,,,,",ak20260760,",2.3,ml,,ak,,"67km NNE of Manley Hot Springs, Alaska",0.78,81,",ak,",automatic,1537624724087,"M 2.3 - 67km NNE of Manley Hot Springs, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537625075948,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260760 +,,20260757,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260757&format=geojson,,,,",ak20260757,",1.9,ml,,ak,,"118km NNW of Arctic Village, Alaska",0.59,56,",ak,",automatic,1537624615253,"M 1.9 - 118km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537624874833,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260757 +,,20260753,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260753&format=geojson,,,,",ak20260753,",2.1,ml,,ak,,"59km SSW of Kaktovik, Alaska",0.71,68,",ak,",automatic,1537624009446,"M 2.1 - 59km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537624613512,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260753 +,,20260750,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260750&format=geojson,,,,",ak20260750,",1.6,ml,,ak,,"129km NNW of Arctic Village, Alaska",0.86,39,",ak,",automatic,1537623607132,"M 1.6 - 129km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537623890380,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260750 +,,37364418,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37364418&format=geojson,0.006771,,60.0,",ci37364418,",0.32,ml,,ci,24.0,"10km NE of Aguanga, CA",0.1,2,",ci,",reviewed,1537623177750,"M 0.3 - 10km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537804965930,https://earthquake.usgs.gov/earthquakes/eventpage/ci37364418 +,,20260739,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260739&format=geojson,,,,",ak20260739,",1.8,ml,,ak,,"75km SE of New Allakaket, Alaska",0.79,50,",ak,",automatic,1537623135076,"M 1.8 - 75km SE of New Allakaket, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537623508626,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260739 +,,37364410,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37364410&format=geojson,0.1355,,105.0,",ci37364410,",1.13,ml,,ci,41.0,"17km N of Borrego Springs, CA",0.2,20,",ci,",reviewed,1537623017150,"M 1.1 - 17km N of Borrego Springs, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537799589590,https://earthquake.usgs.gov/earthquakes/eventpage/ci37364410 +,,73088171,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73088171&format=geojson,0.01503,,128.0,",nc73088171,",0.72,md,,nc,19.0,"16km NW of Toms Place, CA",0.05,8,",nc,",reviewed,1537623013950,"M 0.7 - 16km NW of Toms Place, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537901522884,https://earthquake.usgs.gov/earthquakes/eventpage/nc73088171 +,,73088176,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73088176&format=geojson,0.008081,,54.0,",nc73088176,",1.03,md,,nc,36.0,"6km NW of The Geysers, CA",0.06,16,",nc,",reviewed,1537623004980,"M 1.0 - 6km NW of The Geysers, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537829163472,https://earthquake.usgs.gov/earthquakes/eventpage/nc73088176 +,,73088166,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73088166&format=geojson,0.01583,,121.0,",nc73088166,",0.47,md,,nc,6.0,"4km WSW of Cobb, CA",0.01,3,",nc,",automatic,1537622943090,"M 0.5 - 4km WSW of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537623039368,https://earthquake.usgs.gov/earthquakes/eventpage/nc73088166 +,,20260735,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260735&format=geojson,,,,",ak20260735,",1.7,ml,,ak,,"65km SSW of Kaktovik, Alaska",0.52,44,",ak,",automatic,1537622841957,"M 1.7 - 65km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537623146585,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260735 +,,37364402,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37364402&format=geojson,0.1045,,69.0,",ci37364402,",1.5,ml,,ci,62.0,"12km NNE of Ocotillo Wells, CA",0.18,35,",ci,",reviewed,1537622762450,"M 1.5 - 12km NNE of Ocotillo Wells, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537899772160,https://earthquake.usgs.gov/earthquakes/eventpage/ci37364402 +,,37364386,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37364386&format=geojson,0.04176,,31.0,",ci37364386,",1.31,ml,,ci,40.0,"5km WNW of Devore, CA",0.17,26,",ci,",reviewed,1537622501770,"M 1.3 - 5km WNW of Devore, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537799592240,https://earthquake.usgs.gov/earthquakes/eventpage/ci37364386 +,,37364378,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37364378&format=geojson,0.1007,,70.0,",ci37364378,",1.17,ml,,ci,47.0,"12km NNE of Ocotillo Wells, CA",0.18,21,",ci,",reviewed,1537622418630,"M 1.2 - 12km NNE of Ocotillo Wells, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537898289100,https://earthquake.usgs.gov/earthquakes/eventpage/ci37364378 +,,37364370,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37364370&format=geojson,0.01403,,105.0,",ci37364370,",0.07,ml,,ci,10.0,"10km NE of Aguanga, CA",0.19,0,",ci,",reviewed,1537622258370,"M 0.1 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537799533766,https://earthquake.usgs.gov/earthquakes/eventpage/ci37364370 +,,20260729,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260729&format=geojson,,,,",ak20260729,",2.5,ml,,ak,,"75km NE of McGrath, Alaska",1.24,96,",ak,",automatic,1537622220629,"M 2.5 - 75km NE of McGrath, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537622483555,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260729 +,,20260726,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260726&format=geojson,,,,",ak20260726,",2.3,ml,,ak,,"107km W of Cantwell, Alaska",0.73,81,",ak,",automatic,1537622204527,"M 2.3 - 107km W of Cantwell, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537622764919,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260726 +,,37364362,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37364362&format=geojson,0.009904,,31.0,",ci37364362,",1.08,ml,,ci,45.0,"9km NE of Aguanga, CA",0.15,18,",ci,",reviewed,1537622196710,"M 1.1 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537897924830,https://earthquake.usgs.gov/earthquakes/eventpage/ci37364362 +,,37364354,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37364354&format=geojson,0.00729,,59.0,",ci37364354,",0.58,ml,,ci,25.0,"10km NE of Aguanga, CA",0.16,5,",ci,",reviewed,1537622129620,"M 0.6 - 10km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537799595980,https://earthquake.usgs.gov/earthquakes/eventpage/ci37364354 +,2.7,2000hin5,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hin5&format=geojson,0.463,3.0,109.0,",us2000hin5,",5.4,mww,,us,,"77km SW of Taltal, Chile",1.34,449,",us,",reviewed,1537622038030,"M 5.4 - 77km SW of Taltal, Chile",0,earthquake,",dyfi,geoserve,origin,phase-data,",-300.0,1537684151555,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hin5 +,,60297357,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60297357&format=geojson,0.1906,,84.0,",uu60297357,",2.36,ml,,uu,21.0,"24km SW of Afton, Wyoming",0.26,86,",uu,",reviewed,1537621684270,"M 2.4 - 24km SW of Afton, Wyoming",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537803267540,https://earthquake.usgs.gov/earthquakes/eventpage/uu60297357 +,,37364346,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37364346&format=geojson,0.09503,,69.0,",ci37364346,",0.6,ml,,ci,20.0,"3km SE of Loma Linda, CA",0.18,6,",ci,",reviewed,1537621622960,"M 0.6 - 3km SE of Loma Linda, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537821394967,https://earthquake.usgs.gov/earthquakes/eventpage/ci37364346 +,,73088151,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73088151&format=geojson,0.06056,,260.0,",nc73088151,",0.45,md,,nc,15.0,"15km SE of Mammoth Lakes, CA",0.03,3,",nc,",reviewed,1537621588500,"M 0.5 - 15km SE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537806400323,https://earthquake.usgs.gov/earthquakes/eventpage/nc73088151 +,,37364338,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37364338&format=geojson,0.02203,,43.0,",ci37364338,",0.46,ml,,ci,25.0,"10km NE of Aguanga, CA",0.12,3,",ci,",reviewed,1537621233910,"M 0.5 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537897679083,https://earthquake.usgs.gov/earthquakes/eventpage/ci37364338 +,,20260722,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260722&format=geojson,,,,",ak20260722,",2.0,ml,,ak,,"50km SSW of Kaktovik, Alaska",0.91,62,",ak,",automatic,1537620972312,"M 2.0 - 50km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537621168714,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260722 +,,1000h3qc,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3qc&format=geojson,3.747,,145.0,",us1000h3qc,",4.2,mb,,us,,Fiji region,0.32,271,",us,",reviewed,1537620790330,M 4.2 - Fiji region,0,earthquake,",geoserve,origin,phase-data,",-720.0,1538226672040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3qc +,,20260720,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260720&format=geojson,,,,",ak20260720,",1.1,ml,,ak,,"89km ENE of Cape Yakataga, Alaska",1.05,19,",ak,",automatic,1537620152227,"M 1.1 - 89km ENE of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,",-480.0,1537620406031,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260720 +,,20260718,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260718&format=geojson,,,,",ak20260718,",1.9,ml,,ak,,"111km NW of Arctic Village, Alaska",1.04,56,",ak,",automatic,1537620078697,"M 1.9 - 111km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537620405807,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260718 +,,20260717,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260717&format=geojson,,,,",ak20260717,",1.5,ml,,ak,,"80km S of Kaktovik, Alaska",0.67,35,",ak,",automatic,1537619635680,"M 1.5 - 80km S of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537619843430,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260717 +,,20260714,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260714&format=geojson,,,,",ak20260714,",1.7,ml,,ak,,"88km NW of Arctic Village, Alaska",0.94,44,",ak,",automatic,1537619402751,"M 1.7 - 88km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537619682694,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260714 +,,1000h3qb,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3qb&format=geojson,0.571,,124.0,",us1000h3qb,",4.4,mb,,us,,"67km NNE of Hachijo-jima, Japan",0.82,298,",us,",reviewed,1537619327220,"M 4.4 - 67km NNE of Hachijo-jima, Japan",0,earthquake,",geoserve,origin,phase-data,",540.0,1538226419040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3qb +,,1000h3qa,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3qa&format=geojson,6.202,,198.0,",us1000h3qa,",4.3,mb,,us,,South of the Fiji Islands,0.63,284,",us,",reviewed,1537618871940,M 4.3 - South of the Fiji Islands,0,earthquake,",geoserve,origin,phase-data,",-720.0,1538226094040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3qa +,,73088141,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73088141&format=geojson,0.01432,,86.0,",nc73088141,",0.14,md,,nc,18.0,"2km ESE of Mammoth Lakes, CA",0.04,0,",nc,",reviewed,1537618537300,"M 0.1 - 2km ESE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537820500644,https://earthquake.usgs.gov/earthquakes/eventpage/nc73088141 +,,70605702,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70605702&format=geojson,0.008519,,151.0,",hv70605702,",0.94,md,,hv,17.0,"13km ESE of Volcano, Hawaii",0.12,14,",hv,",reviewed,1537618426960,"M 0.9 - 13km ESE of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537931248260,https://earthquake.usgs.gov/earthquakes/eventpage/hv70605702 +,,2000himg,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000himg&format=geojson,,,68.0,",us2000himg,",2.5,ml,,us,,"19km NNE of Okeene, Oklahoma",0.45,96,",us,",reviewed,1537618191000,"M 2.5 - 19km NNE of Okeene, Oklahoma",0,earthquake,",geoserve,origin,phase-data,",-360.0,1538225729040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000himg +,,20260706,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260706&format=geojson,,,,",ak20260706,us2000himi,",2.6,ml,,ak,,"85km WNW of Arctic Village, Alaska",0.79,104,",ak,us,",automatic,1537618174427,"M 2.6 - 85km WNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538225240040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260706 +,,2000himm,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000himm&format=geojson,2.284,,87.0,",us2000himm,",4.6,mb,,us,,"14km WSW of Palu, Indonesia",1.2,326,",us,",reviewed,1537618096890,"M 4.6 - 14km WSW of Palu, Indonesia",0,earthquake,",geoserve,origin,phase-data,",480.0,1538225037040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000himm +,,20260704,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260704&format=geojson,,,,",ak20260704,",1.4,ml,,ak,,"17km W of Anchorage, Alaska",0.52,30,",ak,",automatic,1537618056547,"M 1.4 - 17km W of Anchorage, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537618346841,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260704 +,,37364234,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37364234&format=geojson,0.00829,,70.0,",ci37364234,",0.02,ml,,ci,20.0,"9km NE of Aguanga, CA",0.11,0,",ci,",reviewed,1537618055300,"M 0.0 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538063114671,https://earthquake.usgs.gov/earthquakes/eventpage/ci37364234 +,,20260700,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260700&format=geojson,,,,",ak20260700,",1.6,ml,,ak,,"118km NNW of Arctic Village, Alaska",0.95,39,",ak,",automatic,1537617795497,"M 1.6 - 118km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537618548257,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260700 +,,20260692,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260692&format=geojson,,,,",ak20260692,us2000himf,",2.4,ml,,ak,,"18km W of Anchorage, Alaska",0.75,89,",ak,us,",automatic,1537617428503,"M 2.4 - 18km W of Anchorage, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538223336040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260692 +,,20260690,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260690&format=geojson,,,,",ak20260690,",2.1,ml,,ak,,"126km NNW of Arctic Village, Alaska",0.72,68,",ak,",automatic,1537617119382,"M 2.1 - 126km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537617382208,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260690 +,,37364218,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37364218&format=geojson,0.0416,,83.0,",ci37364218,",0.79,ml,,ci,25.0,"3km NE of San Dimas, CA",0.17,10,",ci,",reviewed,1537617092710,"M 0.8 - 3km NE of San Dimas, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537897540444,https://earthquake.usgs.gov/earthquakes/eventpage/ci37364218 +,,80310849,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80310849&format=geojson,0.073,,178.0,",mb80310849,",1.24,ml,,mb,13.0,"36km ESE of Townsend, Montana",0.24,24,",mb,",reviewed,1537616937490,"M 1.2 - 36km ESE of Townsend, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537623640010,https://earthquake.usgs.gov/earthquakes/eventpage/mb80310849 +,,37364210,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37364210&format=geojson,0.0704,,83.0,",ci37364210,",0.31,ml,,ci,22.0,"10km NNW of Anza, CA",0.07,1,",ci,",reviewed,1537616858100,"M 0.3 - 10km NNW of Anza, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537799658953,https://earthquake.usgs.gov/earthquakes/eventpage/ci37364210 +,,20260688,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260688&format=geojson,,,,",ak20260688,",2.1,ml,,ak,,"60km SSW of Kaktovik, Alaska",0.89,68,",ak,",automatic,1537616842275,"M 2.1 - 60km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537617090873,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260688 +,,60297352,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60297352&format=geojson,0.2797,,125.0,",uu60297352,",2.06,ml,,uu,20.0,"12km E of Soda Springs, Idaho",0.14,65,",uu,",reviewed,1537616419400,"M 2.1 - 12km E of Soda Springs, Idaho",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537800281280,https://earthquake.usgs.gov/earthquakes/eventpage/uu60297352 +,,37364202,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37364202&format=geojson,0.006891,,69.0,",ci37364202,",0.2,ml,,ci,18.0,"10km NE of Aguanga, CA",0.09,1,",ci,",reviewed,1537616319240,"M 0.2 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537842943582,https://earthquake.usgs.gov/earthquakes/eventpage/ci37364202 +,,37364186,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37364186&format=geojson,0.03036,,46.0,",ci37364186,",0.49,ml,,ci,22.0,"9km ENE of Aguanga, CA",0.18,4,",ci,",reviewed,1537616202370,"M 0.5 - 9km ENE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537799661702,https://earthquake.usgs.gov/earthquakes/eventpage/ci37364186 +,,1000h3q8,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3q8&format=geojson,3.068,,124.0,",us1000h3q8,",4.8,mb,,us,,"135km WSW of Ile Hunter, New Caledonia",1.49,354,",us,",reviewed,1537616131390,"M 4.8 - 135km WSW of Ile Hunter, New Caledonia",0,earthquake,",geoserve,origin,phase-data,",660.0,1538222696040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3q8 +,,37364178,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37364178&format=geojson,0.005895,,46.0,",ci37364178,",0.4,ml,,ci,21.0,"9km NE of Aguanga, CA",0.18,2,",ci,",reviewed,1537615785310,"M 0.4 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537799663790,https://earthquake.usgs.gov/earthquakes/eventpage/ci37364178 +,,20260678,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260678&format=geojson,,,,",ak20260678,us2000hima,",2.5,ml,,ak,,"78km WSW of Cantwell, Alaska",0.62,96,",ak,us,",automatic,1537615782584,"M 2.5 - 78km WSW of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538222396040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260678 +,2.7,73088126,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73088126&format=geojson,0.08511,7.0,79.0,",nc73088126,",2.71,md,,nc,91.0,"7km NNE of Bay Point, CA",0.26,115,",nc,",reviewed,1537615283760,"M 2.7 - 7km NNE of Bay Point, CA",0,earthquake,",dyfi,focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538168485966,https://earthquake.usgs.gov/earthquakes/eventpage/nc73088126 +,,00657663,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657663&format=geojson,0.002,,122.34,",nn00657663,",0.3,ml,,nn,43.0,"71km E of Beatty, Nevada",0.198,1,",nn,",reviewed,1537615112126,"M 0.3 - 71km E of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537815159239,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657663 +,,2018265006,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018265006&format=geojson,0.0734,,258.0,",pr2018265006,",1.78,md,,pr,5.0,"1km W of Mayaguez, Puerto Rico",0.17,49,",pr,",reviewed,1537614397230,"M 1.8 - 1km W of Mayaguez, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1537634867161,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018265006 +,,2000him5,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000him5&format=geojson,1.263,,37.0,",us2000him5,",5.3,mww,,us,,"169km E of Nago, Japan",0.81,432,",us,",reviewed,1537613881810,"M 5.3 - 169km E of Nago, Japan",0,earthquake,",geoserve,origin,phase-data,",540.0,1537614975040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000him5 +,,73088091,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73088091&format=geojson,0.01526,,68.0,",nc73088091,",-0.06,md,,nc,12.0,"10km NW of Parkfield, CA",0.03,0,",nc,",reviewed,1537613857930,"M -0.1 - 10km NW of Parkfield, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537838001983,https://earthquake.usgs.gov/earthquakes/eventpage/nc73088091 +,,73088086,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73088086&format=geojson,0.01538,,113.0,",nc73088086,",0.56,md,,nc,7.0,"7km NW of The Geysers, CA",0.02,5,",nc,",automatic,1537613812560,"M 0.6 - 7km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537613910057,https://earthquake.usgs.gov/earthquakes/eventpage/nc73088086 +,,37364154,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37364154&format=geojson,0.118,,94.0,",ci37364154,",0.61,ml,,ci,20.0,"23km ESE of Anza, CA",0.15,6,",ci,",reviewed,1537613620350,"M 0.6 - 23km ESE of Anza, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537799665942,https://earthquake.usgs.gov/earthquakes/eventpage/ci37364154 +,,70605587,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70605587&format=geojson,0.004845,,133.0,",hv70605587,",1.8,ml,,hv,17.0,"3km W of Volcano, Hawaii",0.13,50,",hv,",automatic,1537613601580,"M 1.8 - 3km W of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537613941580,https://earthquake.usgs.gov/earthquakes/eventpage/hv70605587 +,,20260658,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260658&format=geojson,,,,",ak20260658,",1.9,ml,,ak,,"21km N of Sutton-Alpine, Alaska",0.71,56,",ak,",automatic,1537612980783,"M 1.9 - 21km N of Sutton-Alpine, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537613347895,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260658 +,,20260657,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260657&format=geojson,,,,",ak20260657,",1.5,ml,,ak,,"124km NNW of Arctic Village, Alaska",0.96,35,",ak,",automatic,1537612634484,"M 1.5 - 124km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537612835601,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260657 +,,73088081,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73088081&format=geojson,0.1319,,254.0,",nc73088081,",0.76,md,,nc,12.0,"24km W of Mammoth Lakes, CA",0.09,9,",nc,",reviewed,1537612629640,"M 0.8 - 24km W of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537805979053,https://earthquake.usgs.gov/earthquakes/eventpage/nc73088081 +,,20260654,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260654&format=geojson,,,,",ak20260654,",0.9,ml,,ak,,"32km NE of Cape Yakataga, Alaska",0.63,12,",ak,",automatic,1537612407411,"M 0.9 - 32km NE of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537612674908,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260654 +,,37364138,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37364138&format=geojson,0.06159,,48.0,",ci37364138,",1.72,ml,,ci,37.0,"2km E of El Centro, CA",0.31,46,",ci,",reviewed,1537612328050,"M 1.7 - 2km E of El Centro, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537897260630,https://earthquake.usgs.gov/earthquakes/eventpage/ci37364138 +,,20260648,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260648&format=geojson,,,,",ak20260648,",1.9,ml,,ak,,"46km SSE of Redoubt Volcano, Alaska",0.44,56,",ak,",automatic,1537612017711,"M 1.9 - 46km SSE of Redoubt Volcano, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537612443734,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260648 +,,37364130,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37364130&format=geojson,0.008577,,104.0,",ci37364130,",0.37,ml,,ci,14.0,"10km NE of Aguanga, CA",0.13,2,",ci,",reviewed,1537611973470,"M 0.4 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537799683429,https://earthquake.usgs.gov/earthquakes/eventpage/ci37364130 +,,37364122,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37364122&format=geojson,0.06156,,60.0,",ci37364122,",0.75,ml,,ci,30.0,"4km S of Redlands, CA",0.13,9,",ci,",reviewed,1537611607640,"M 0.8 - 4km S of Redlands, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537799681709,https://earthquake.usgs.gov/earthquakes/eventpage/ci37364122 +,,37364114,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37364114&format=geojson,0.08433,,56.0,",ci37364114,",0.69,ml,,ci,20.0,"14km S of Joshua Tree, CA",0.15,7,",ci,",reviewed,1537611125060,"M 0.7 - 14km S of Joshua Tree, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537799700950,https://earthquake.usgs.gov/earthquakes/eventpage/ci37364114 +,,2000hilu,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hilu&format=geojson,6.464,,76.0,",us2000hilu,",4.5,mb,,us,,"250km ESE of Enarotali, Indonesia",0.8,312,",us,",reviewed,1537610305170,"M 4.5 - 250km ESE of Enarotali, Indonesia",0,earthquake,",geoserve,origin,phase-data,",540.0,1537611311040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hilu +,,60297347,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60297347&format=geojson,0.08632,,102.0,",uu60297347,",0.41,md,,uu,8.0,"13km ESE of Millville, Utah",0.09,3,",uu,",reviewed,1537610054650,"M 0.4 - 13km ESE of Millville, Utah",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537828861300,https://earthquake.usgs.gov/earthquakes/eventpage/uu60297347 +,,00657643,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657643&format=geojson,0.291,,97.21,",nn00657643,",1.2,ml,,nn,11.0,"10km SSW of Gabbs, Nevada",0.1824,22,",nn,",reviewed,1537609907479,"M 1.2 - 10km SSW of Gabbs, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537668557530,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657643 +,,2018265005,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018265005&format=geojson,0.5997,,318.0,",pr2018265005,",1.92,md,,pr,6.0,"36km NNE of Luquillo, Puerto Rico",0.15,57,",pr,",reviewed,1537609905320,"M 1.9 - 36km NNE of Luquillo, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1537620907246,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018265005 +,,20260640,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260640&format=geojson,,,,",ak20260640,",2.2,ml,,ak,,"61km WNW of Skagway, Alaska",0.81,74,",ak,",automatic,1537609778898,"M 2.2 - 61km WNW of Skagway, Alaska",0,earthquake,",geoserve,origin,",-480.0,1537610005392,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260640 +,,20260639,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260639&format=geojson,,,,",ak20260639,",1.4,ml,,ak,,"98km NW of Arctic Village, Alaska",0.97,30,",ak,",automatic,1537609740413,"M 1.4 - 98km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537610005175,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260639 +,,20260636,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260636&format=geojson,,,,",ak20260636,",1.8,ml,,ak,,"77km SW of Kaktovik, Alaska",0.64,50,",ak,",automatic,1537609496655,"M 1.8 - 77km SW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537609904646,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260636 +,,00657642,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657642&format=geojson,0.457,,193.95,",nn00657642,",0.5,ml,,nn,10.0,"30km SE of Warm Springs, Nevada",0.1645,4,",nn,",reviewed,1537609464630,"M 0.5 - 30km SE of Warm Springs, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537668554521,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657642 +,,20260632,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260632&format=geojson,,,,",ak20260632,",1.7,ml,,ak,,"114km NNW of Arctic Village, Alaska",1.01,44,",ak,",automatic,1537608746776,"M 1.7 - 114km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537609031327,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260632 +,,73088071,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73088071&format=geojson,0.01165,,77.0,",nc73088071,",0.87,md,,nc,13.0,"6km NNW of The Geysers, CA",0.03,12,",nc,",automatic,1537608670520,"M 0.9 - 6km NNW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537608768858,https://earthquake.usgs.gov/earthquakes/eventpage/nc73088071 +,,73088066,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73088066&format=geojson,0.05359,,111.0,",nc73088066,",1.17,md,,nc,23.0,"12km WNW of Templeton, CA",0.06,21,",nc,",reviewed,1537608556230,"M 1.2 - 12km WNW of Templeton, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537839003902,https://earthquake.usgs.gov/earthquakes/eventpage/nc73088066 +,,00657720,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657720&format=geojson,0.282,,137.91,",nn00657720,",0.9,ml,,nn,7.0,"36km NE of Dixon Lane-Meadow Creek, California",0.0931,12,",nn,",reviewed,1537608303387,"M 0.9 - 36km NE of Dixon Lane-Meadow Creek, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537668589763,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657720 +,,73088056,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73088056&format=geojson,0.01115,,55.0,",nc73088056,",0.72,md,,nc,11.0,"6km NNW of The Geysers, CA",0.03,8,",nc,",automatic,1537608242270,"M 0.7 - 6km NNW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537608339017,https://earthquake.usgs.gov/earthquakes/eventpage/nc73088056 +,,37364106,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37364106&format=geojson,0.07817,,39.0,",ci37364106,",0.86,ml,,ci,35.0,"3km SE of Yucaipa, CA",0.15,11,",ci,",reviewed,1537607849770,"M 0.9 - 3km SE of Yucaipa, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537896806113,https://earthquake.usgs.gov/earthquakes/eventpage/ci37364106 +,,80311069,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80311069&format=geojson,0.447,,86.0,",mb80311069,",1.62,ml,,mb,5.0,"40km NW of Ketchum, Idaho",0.08,40,",mb,",reviewed,1537607643050,"M 1.6 - 40km NW of Ketchum, Idaho",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537828602960,https://earthquake.usgs.gov/earthquakes/eventpage/mb80311069 +,,70804344,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804344&format=geojson,0.06489,,153.0,",av70804344,",-0.4,ml,,av,4.0,"20km W of Dutch Harbor, Alaska",0.16,0,",av,",reviewed,1537607121990,"M -0.4 - 20km W of Dutch Harbor, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537916091330,https://earthquake.usgs.gov/earthquakes/eventpage/av70804344 +,,00657718,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657718&format=geojson,0.365,,146.5,",nn00657718,",0.6,ml,,nn,6.0,"69km SE of Hawthorne, Nevada",0.1518,6,",nn,",reviewed,1537606830290,"M 0.6 - 69km SE of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537668588223,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657718 +,,20260626,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260626&format=geojson,,,,",ak20260626,",2.5,ml,,ak,,"68km SSW of Kaktovik, Alaska",0.72,96,",ak,",automatic,1537606806725,"M 2.5 - 68km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537607114853,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260626 +,,20260597,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260597&format=geojson,,,,",ak20260597,",1.6,ml,,ak,,"78km ESE of Whittier, Alaska",0.73,39,",ak,",automatic,1537606491647,"M 1.6 - 78km ESE of Whittier, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537606823480,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260597 +,,20260592,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260592&format=geojson,,,,",ak20260592,",1.4,ml,,ak,,"37km S of Cantwell, Alaska",0.55,30,",ak,",automatic,1537606231849,"M 1.4 - 37km S of Cantwell, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537606471969,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260592 +,,00657717,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657717&format=geojson,0.045,,71.28,",nn00657717,",1.0,ml,,nn,19.0,"8km NE of Carson City, Nevada",0.165,15,",nn,",reviewed,1537605964154,"M 1.0 - 8km NE of Carson City, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537668586816,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657717 +,,2000hilf,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hilf&format=geojson,1.734,,35.0,",us2000hilf,",5.0,mb,,us,,"198km ENE of Georgetown, Saint Helena",0.92,385,",us,",reviewed,1537605751770,"M 5.0 - 198km ENE of Georgetown, Saint Helena",0,earthquake,",geoserve,origin,phase-data,",-60.0,1537606674040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hilf +,,2000hilm,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hilm&format=geojson,5.699,,196.0,",us2000hilm,",4.6,mb,,us,,"209km E of Kuril'sk, Russia",0.8,326,",us,",reviewed,1537605727440,"M 4.6 - 209km E of Kuril'sk, Russia",0,earthquake,",geoserve,origin,phase-data,",600.0,1537621884040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hilm +,,20260579,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260579&format=geojson,,,,",ak20260579,",1.9,ml,,ak,,"22km N of Anchor Point, Alaska",0.71,56,",ak,",automatic,1537605664701,"M 1.9 - 22km N of Anchor Point, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537605919856,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260579 +,,2000hila,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hila&format=geojson,5.703,,135.0,",us2000hila,",5.0,mb,,us,,"209km E of Kuril'sk, Russia",0.54,385,",us,",reviewed,1537605314670,"M 5.0 - 209km E of Kuril'sk, Russia",0,earthquake,",geoserve,origin,phase-data,",600.0,1537606371040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hila +,,37364098,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37364098&format=geojson,0.04568,,54.0,",ci37364098,",1.0,ml,,ci,51.0,"18km ENE of Thousand Palms, CA",0.14,15,",ci,",reviewed,1537605082770,"M 1.0 - 18km ENE of Thousand Palms, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537896590240,https://earthquake.usgs.gov/earthquakes/eventpage/ci37364098 +,,20260572,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260572&format=geojson,,,,",ak20260572,",2.0,ml,,ak,,"70km SSW of Kaktovik, Alaska",0.69,62,",ak,",automatic,1537604522990,"M 2.0 - 70km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537604805731,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260572 +,3.4,73088041,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73088041&format=geojson,0.09628,5.0,76.0,",nc73088041,",2.85,md,,nc,35.0,"13km SW of Toms Place, CA",0.05,127,",nc,",reviewed,1537604353860,"M 2.9 - 13km SW of Toms Place, CA",0,earthquake,",dyfi,focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538082543747,https://earthquake.usgs.gov/earthquakes/eventpage/nc73088041 +,,20260566,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260566&format=geojson,,,,",ak20260566,",2.2,ml,,ak,,"131km SSE of Prudhoe Bay, Alaska",0.85,74,",ak,",automatic,1537604269933,"M 2.2 - 131km SSE of Prudhoe Bay, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537604966577,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260566 +,,20260563,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260563&format=geojson,,,,",ak20260563,",2.1,ml,,ak,,"60km SSW of Kaktovik, Alaska",0.7,68,",ak,",automatic,1537604167093,"M 2.1 - 60km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537604443795,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260563 +,,37364082,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37364082&format=geojson,0.08311,,65.0,",ci37364082,",0.28,ml,,ci,17.0,"9km NE of Aguanga, CA",0.13,1,",ci,",reviewed,1537604023070,"M 0.3 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537799717118,https://earthquake.usgs.gov/earthquakes/eventpage/ci37364082 +,,00657716,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657716&format=geojson,0.045,,200.43,",nn00657716,",0.3,ml,,nn,7.0,"41km ESE of Bridgeport, California",0.1063,1,",nn,",reviewed,1537603727908,"M 0.3 - 41km ESE of Bridgeport, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537668584711,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657716 +,,70605352,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70605352&format=geojson,0.0046,,123.0,",hv70605352,",2.01,ml,,hv,26.0,"2km W of Volcano, Hawaii",0.1,62,",hv,",reviewed,1537602766410,"M 2.0 - 2km W of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537896726940,https://earthquake.usgs.gov/earthquakes/eventpage/hv70605352 +,,00657714,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657714&format=geojson,0.064,,83.02,",nn00657714,",0.2,ml,,nn,13.0,"11km NW of Kingsbury, Nevada",0.1765,1,",nn,",reviewed,1537602657286,"M 0.2 - 11km NW of Kingsbury, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537668582906,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657714 +,2.0,60064723,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=se60064723&format=geojson,0.5022,2.0,98.0,",se60064723,",2.11,md,,se,9.0,"2km SE of Bamberg, South Carolina",0.33,69,",se,",reviewed,1537602435390,"M 2.1 - 2km SE of Bamberg, South Carolina",0,earthquake,",dyfi,geoserve,origin,phase-data,",-300.0,1537798514153,https://earthquake.usgs.gov/earthquakes/eventpage/se60064723 +,,37364066,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37364066&format=geojson,0.03256,,37.0,",ci37364066,",0.86,ml,,ci,43.0,"8km ENE of Aguanga, CA",0.2,11,",ci,",reviewed,1537602310300,"M 0.9 - 8km ENE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537799790060,https://earthquake.usgs.gov/earthquakes/eventpage/ci37364066 +,,37364058,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37364058&format=geojson,0.03009,,45.0,",ci37364058,",0.37,ml,,ci,18.0,"9km ENE of Aguanga, CA",0.15,2,",ci,",reviewed,1537602045920,"M 0.4 - 9km ENE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537799741367,https://earthquake.usgs.gov/earthquakes/eventpage/ci37364058 +,,71109639,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc71109639&format=geojson,0.08288,,106.0,",nc71109639,",1.51,md,,nc,21.0,"4km NE of Toms Place, CA",0.05,35,",nc,",reviewed,1537601818380,"M 1.5 - 4km NE of Toms Place, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537840443202,https://earthquake.usgs.gov/earthquakes/eventpage/nc71109639 +,,73088031,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73088031&format=geojson,0.08641,,91.0,",nc73088031,",1.66,md,,nc,31.0,"4km ENE of Toms Place, CA",0.04,42,",nc,",reviewed,1537601805050,"M 1.7 - 4km ENE of Toms Place, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537851962784,https://earthquake.usgs.gov/earthquakes/eventpage/nc73088031 +,,2018265004,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018265004&format=geojson,0.1596,,107.0,",pr2018265004,",2.03,md,,pr,10.0,"6km ESE of Maricao, Puerto Rico",0.24,63,",pr,",reviewed,1537601300690,"M 2.0 - 6km ESE of Maricao, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1537620875422,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018265004 +,,37364042,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37364042&format=geojson,0.07187,,69.0,",ci37364042,",0.31,ml,,ci,14.0,"10km NE of Aguanga, CA",0.11,1,",ci,",reviewed,1537600808980,"M 0.3 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537799739026,https://earthquake.usgs.gov/earthquakes/eventpage/ci37364042 +,,60297342,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60297342&format=geojson,0.09726,,165.0,",uu60297342,",1.6,ml,,uu,7.0,"20km NW of Montpelier, Idaho",0.07,39,",uu,",reviewed,1537600662210,"M 1.6 - 20km NW of Montpelier, Idaho",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537814053200,https://earthquake.usgs.gov/earthquakes/eventpage/uu60297342 +,,70804034,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804034&format=geojson,0.06837,,127.0,",av70804034,",0.22,ml,,av,5.0,"21km W of Dutch Harbor, Alaska",0.15,1,",av,",reviewed,1537600382030,"M 0.2 - 21km W of Dutch Harbor, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537822718470,https://earthquake.usgs.gov/earthquakes/eventpage/av70804034 +,,20260554,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260554&format=geojson,,,,",ak20260554,",0.9,ml,,ak,,"44km WNW of Ester, Alaska",0.49,12,",ak,",automatic,1537599827371,"M 0.9 - 44km WNW of Ester, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537600100675,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260554 +,,73088026,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73088026&format=geojson,0.01346,,54.0,",nc73088026,",0.83,md,,nc,17.0,"11km NW of Parkfield, CA",0.04,11,",nc,",reviewed,1537599758270,"M 0.8 - 11km NW of Parkfield, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537817131861,https://earthquake.usgs.gov/earthquakes/eventpage/nc73088026 +,,37364026,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37364026&format=geojson,0.03694,,69.0,",ci37364026,",0.71,ml,,ci,21.0,"4km N of Julian, CA",0.19,8,",ci,",reviewed,1537599367680,"M 0.7 - 4km N of Julian, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537799796170,https://earthquake.usgs.gov/earthquakes/eventpage/ci37364026 +,,20260549,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260549&format=geojson,,,,",ak20260549,",2.4,ml,,ak,,"57km SSW of Kaktovik, Alaska",0.78,89,",ak,",automatic,1537599180846,"M 2.4 - 57km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537599448301,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260549 +,,73088021,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73088021&format=geojson,0.006321,,81.0,",nc73088021,",0.78,md,,nc,8.0,"9km NW of The Geysers, CA",0.04,9,",nc,",automatic,1537598437350,"M 0.8 - 9km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537598533732,https://earthquake.usgs.gov/earthquakes/eventpage/nc73088021 +,,20260546,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260546&format=geojson,,,,",ak20260546,",1.8,ml,,ak,,"80km ESE of Whittier, Alaska",0.57,50,",ak,",automatic,1537598334406,"M 1.8 - 80km ESE of Whittier, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537598595551,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260546 +,2.0,2000hivd,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hivd&format=geojson,0.084,1.0,74.0,",us2000hivd,",1.8,ml,,us,,"6km WNW of White River Junction, Vermont",0.5,50,",us,",reviewed,1537598158440,"M 1.8 - 6km WNW of White River Junction, Vermont",0,earthquake,",dyfi,geoserve,origin,phase-data,",-300.0,1537676672606,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hivd +,,2018265003,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018265003&format=geojson,0.9957,,301.0,",pr2018265003,",3.13,md,,pr,16.0,"93km NNE of San Juan, Puerto Rico",0.28,151,",pr,",reviewed,1537598107750,"M 3.1 - 93km NNE of San Juan, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1537601107590,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018265003 +,,2000hikd,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hikd&format=geojson,0.924,,53.0,",us2000hikd,",4.9,mb,,us,,"105km WSW of Saumlaki, Indonesia",0.71,369,",us,",reviewed,1537597991110,"M 4.9 - 105km WSW of Saumlaki, Indonesia",0,earthquake,",geoserve,origin,phase-data,",540.0,1537599435040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hikd +,,20260542,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260542&format=geojson,,,,",ak20260542,",0.9,ml,,ak,,"55km SW of Cantwell, Alaska",0.46,12,",ak,",automatic,1537597890867,"M 0.9 - 55km SW of Cantwell, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537598183865,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260542 +,,20260541,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260541&format=geojson,,,,",ak20260541,",1.3,ml,,ak,,"64km W of Willow, Alaska",0.52,26,",ak,",automatic,1537597824720,"M 1.3 - 64km W of Willow, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537598053262,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260541 +,,20260538,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260538&format=geojson,,,,",ak20260538,",1.8,ml,,ak,,"131km NW of Arctic Village, Alaska",0.7,50,",ak,",automatic,1537597348444,"M 1.8 - 131km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537597651410,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260538 +,,37364010,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37364010&format=geojson,0.03675,,55.0,",ci37364010,",0.54,ml,,ci,23.0,"11km N of Julian, CA",0.23,4,",ci,",reviewed,1537597322370,"M 0.5 - 11km N of Julian, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537799761231,https://earthquake.usgs.gov/earthquakes/eventpage/ci37364010 +,,70804014,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70804014&format=geojson,0.06749,,157.0,",av70804014,",0.27,ml,,av,4.0,"20km W of Dutch Harbor, Alaska",0.12,1,",av,",reviewed,1537597076530,"M 0.3 - 20km W of Dutch Harbor, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537817139300,https://earthquake.usgs.gov/earthquakes/eventpage/av70804014 +,,20260535,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260535&format=geojson,,,,",ak20260535,",2.1,ml,,ak,,"72km S of Cantwell, Alaska",0.55,68,",ak,",automatic,1537596880999,"M 2.1 - 72km S of Cantwell, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537597149468,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260535 +,,20260533,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260533&format=geojson,,,,",ak20260533,",1.1,ml,,ak,,"7km E of Lazy Mountain, Alaska",1.09,19,",ak,",automatic,1537596723013,"M 1.1 - 7km E of Lazy Mountain, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537596918368,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260533 +,,00657624,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657624&format=geojson,0.087,,171.19,",nn00657624,",0.2,ml,,nn,6.0,"35km ENE of Big Pine, California",0.1008,1,",nn,",reviewed,1537596696041,"M 0.2 - 35km ENE of Big Pine, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537668539060,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657624 +,,73088011,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73088011&format=geojson,0.01878,,105.0,",nc73088011,",0.56,md,,nc,6.0,"10km WNW of The Geysers, CA",0.03,5,",nc,",automatic,1537596465400,"M 0.6 - 10km WNW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537596563356,https://earthquake.usgs.gov/earthquakes/eventpage/nc73088011 +,,73088006,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73088006&format=geojson,0.01886,,105.0,",nc73088006,",0.69,md,,nc,8.0,"10km WNW of The Geysers, CA",0.02,7,",nc,",automatic,1537596448510,"M 0.7 - 10km WNW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537596543433,https://earthquake.usgs.gov/earthquakes/eventpage/nc73088006 +,,61783346,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61783346&format=geojson,0.06916,,131.0,",av61783346,",0.67,ml,,av,6.0,"21km W of Dutch Harbor, Alaska",0.18,7,",av,",reviewed,1537596443060,"M 0.7 - 21km W of Dutch Harbor, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537816852090,https://earthquake.usgs.gov/earthquakes/eventpage/av61783346 +,,73088001,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73088001&format=geojson,0.002477,,92.0,",nc73088001,",0.87,md,,nc,14.0,"10km WNW of The Geysers, CA",0.03,12,",nc,",automatic,1537596418080,"M 0.9 - 10km WNW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537596514266,https://earthquake.usgs.gov/earthquakes/eventpage/nc73088001 +,,20260530,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260530&format=geojson,,,,",ak20260530,",0.2,ml,,ak,,"70km NNW of Cape Yakataga, Alaska",0.38,1,",ak,",reviewed,1537596413607,"M 0.2 - 70km NNW of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537643827643,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260530 +,,00657712,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657712&format=geojson,0.192,,189.68,",nn00657712,",0.1,ml,,nn,5.0,"27km SSW of Hawthorne, Nevada",0.0833,0,",nn,",reviewed,1537596289162,"M 0.1 - 27km SSW of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537668581063,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657712 +,,73087996,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087996&format=geojson,0.01245,,91.0,",nc73087996,",0.61,md,,nc,19.0,"8km E of Mammoth Lakes, CA",0.05,6,",nc,",reviewed,1537595586010,"M 0.6 - 8km E of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537805678870,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087996 +,,20260523,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260523&format=geojson,,,,",ak20260523,",1.6,ml,,ak,,"70km SSW of Kaktovik, Alaska",0.59,39,",ak,",automatic,1537595438815,"M 1.6 - 70km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537595814580,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260523 +,,20260506,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260506&format=geojson,,,,",ak20260506,",2.9,ml,,ak,,"44km SSW of Redoubt Volcano, Alaska",0.77,129,",ak,",automatic,1537595224025,"M 2.9 - 44km SSW of Redoubt Volcano, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537595915168,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260506 +,,73087991,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087991&format=geojson,0.02864,,120.0,",nc73087991,",1.0,md,,nc,13.0,"9km NE of Milpitas, CA",0.04,15,",nc,",reviewed,1537595161910,"M 1.0 - 9km NE of Milpitas, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537829279314,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087991 +,,61783326,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61783326&format=geojson,0.06776,,133.0,",av61783326,",1.34,ml,,av,8.0,"21km W of Dutch Harbor, Alaska",0.13,28,",av,",reviewed,1537595138710,"M 1.3 - 21km W of Dutch Harbor, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537815489960,https://earthquake.usgs.gov/earthquakes/eventpage/av61783326 +,,73087986,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087986&format=geojson,0.05735,,256.0,",nc73087986,",0.81,md,,nc,18.0,"14km SE of Mammoth Lakes, CA",0.04,10,",nc,",reviewed,1537594786560,"M 0.8 - 14km SE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537816410410,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087986 +,,70605157,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70605157&format=geojson,0.01701,,136.0,",hv70605157,",1.8,ml,,hv,42.0,"7km ENE of Pahala, Hawaii",0.18,50,",hv,",automatic,1537594766440,"M 1.8 - 7km ENE of Pahala, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537595109830,https://earthquake.usgs.gov/earthquakes/eventpage/hv70605157 +,,37363986,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37363986&format=geojson,0.02731,,65.0,",ci37363986,",0.39,ml,,ci,18.0,"10km NE of Aguanga, CA",0.14,2,",ci,",reviewed,1537594162170,"M 0.4 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537799763335,https://earthquake.usgs.gov/earthquakes/eventpage/ci37363986 +,,37363978,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37363978&format=geojson,0.04324,,80.0,",ci37363978,",0.71,ml,,ci,41.0,"21km ESE of Anza, CA",0.22,8,",ci,",reviewed,1537594084050,"M 0.7 - 21km ESE of Anza, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537840742836,https://earthquake.usgs.gov/earthquakes/eventpage/ci37363978 +,,37363970,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37363970&format=geojson,0.02902,,38.0,",ci37363970,",1.18,ml,,ci,48.0,"8km NE of Aguanga, CA",0.18,21,",ci,",reviewed,1537593800990,"M 1.2 - 8km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537799800730,https://earthquake.usgs.gov/earthquakes/eventpage/ci37363970 +,,00657710,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657710&format=geojson,0.142,,155.39,",nn00657710,",0.9,ml,,nn,10.0,"40km SSW of Currant, Nevada",0.1099,12,",nn,",reviewed,1537593011804,"M 0.9 - 40km SSW of Currant, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537668579651,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657710 +,,20260501,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260501&format=geojson,,,,",ak20260501,",1.5,ml,,ak,,"164km NW of Kobuk, Alaska",0.92,35,",ak,",automatic,1537592927843,"M 1.5 - 164km NW of Kobuk, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537593085300,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260501 +,,37363954,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37363954&format=geojson,0.04242,,87.0,",ci37363954,",0.45,ml,,ci,16.0,"5km E of Palomar Observatory, CA",0.14,3,",ci,",reviewed,1537592524060,"M 0.5 - 5km E of Palomar Observatory, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537799783599,https://earthquake.usgs.gov/earthquakes/eventpage/ci37363954 +,,20260497,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260497&format=geojson,,,,",ak20260497,",1.6,ml,,ak,,"1km E of Kenai, Alaska",0.68,39,",ak,",automatic,1537592299633,"M 1.6 - 1km E of Kenai, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537592563501,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260497 +,,37363946,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37363946&format=geojson,0.01546,,76.0,",ci37363946,",0.38,ml,,ci,17.0,"9km NE of Aguanga, CA",0.23,2,",ci,",reviewed,1537592241640,"M 0.4 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537799785737,https://earthquake.usgs.gov/earthquakes/eventpage/ci37363946 +,,20260493,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260493&format=geojson,,,,",ak20260493,",2.2,ml,,ak,,"130km NNW of Arctic Village, Alaska",0.78,74,",ak,",automatic,1537592090727,"M 2.2 - 130km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537592362192,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260493 +,,80311079,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80311079&format=geojson,0.12,,110.0,",mb80311079,",0.96,ml,,mb,8.0,"14km SE of Lincoln, Montana",0.11,14,",mb,",reviewed,1537592020130,"M 1.0 - 14km SE of Lincoln, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537829584730,https://earthquake.usgs.gov/earthquakes/eventpage/mb80311079 +,,80311074,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80311074&format=geojson,0.23,,147.0,",mb80311074,",0.53,ml,,mb,5.0,"0km WSW of Three Forks, Montana",0.05,4,",mb,",reviewed,1537591957790,"M 0.5 - 0km WSW of Three Forks, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537829278430,https://earthquake.usgs.gov/earthquakes/eventpage/mb80311074 +,,73087961,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087961&format=geojson,0.00368,,67.0,",nc73087961,",1.01,md,,nc,10.0,"5km W of Mammoth Lakes, CA",0.07,16,",nc,",reviewed,1537591848730,"M 1.0 - 5km W of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537805197638,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087961 +,,20260491,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260491&format=geojson,,,,",ak20260491,",2.1,ml,,ak,,"51km SSW of Redoubt Volcano, Alaska",0.75,68,",ak,",automatic,1537591713380,"M 2.1 - 51km SSW of Redoubt Volcano, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537592462701,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260491 +,,00657708,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657708&format=geojson,0.265,,105.9,",nn00657708,",0.1,ml,,nn,8.0,"12km SE of Smith Valley, Nevada",0.0916,0,",nn,",reviewed,1537590410880,"M 0.1 - 12km SE of Smith Valley, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537668577802,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657708 +,,2018265002,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018265002&format=geojson,1.091,,327.0,",pr2018265002,us2000hikt,",2.99,md,,pr,7.0,"88km NNW of Charlotte Amalie, U.S. Virgin Islands",0.38,138,",pr,us,",reviewed,1537589949500,"M 3.0 - 88km NNW of Charlotte Amalie, U.S. Virgin Islands",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538702849040,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018265002 +,,20260487,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260487&format=geojson,,,,",ak20260487,",1.4,ml,,ak,,"49km ENE of Cape Yakataga, Alaska",0.7,30,",ak,",automatic,1537589225409,"M 1.4 - 49km ENE of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537589473436,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260487 +,,80311034,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80311034&format=geojson,0.249,,154.0,",mb80311034,",0.95,ml,,mb,8.0,"20km W of Dillon, Montana",0.05,14,",mb,",reviewed,1537589211120,"M 1.0 - 20km W of Dillon, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537824177780,https://earthquake.usgs.gov/earthquakes/eventpage/mb80311034 +,,73087946,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087946&format=geojson,0.01537,,70.0,",nc73087946,",1.52,md,,nc,37.0,"1km NW of The Geysers, CA",0.09,36,",nc,",reviewed,1537588748540,"M 1.5 - 1km NW of The Geysers, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537858202939,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087946 +,,37363914,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37363914&format=geojson,0.1007,,93.0,",ci37363914,",1.3,ml,,ci,24.0,"5km WSW of Bodfish, CA",0.17,26,",ci,",reviewed,1537587893060,"M 1.3 - 5km WSW of Bodfish, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537807998485,https://earthquake.usgs.gov/earthquakes/eventpage/ci37363914 +,,20260476,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260476&format=geojson,,,,",ak20260476,",2.3,ml,,ak,,"111km WNW of Tanana, Alaska",0.63,81,",ak,",automatic,1537587805813,"M 2.3 - 111km WNW of Tanana, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537588189346,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260476 +,,2000hij6,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hij6&format=geojson,0.202,,121.0,",ak20260461,us2000hij6,",4.5,mb,,us,,"46km WSW of Adak, Alaska",0.73,312,",ak,us,",reviewed,1537585916430,"M 4.5 - 46km WSW of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539049775040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hij6 +,,37363898,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37363898&format=geojson,0.1207,,154.0,",ci37363898,",1.38,ml,,ci,21.0,"10km S of Malibu Beach, CA",0.13,29,",ci,",reviewed,1537585353060,"M 1.4 - 10km S of Malibu Beach, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537819547103,https://earthquake.usgs.gov/earthquakes/eventpage/ci37363898 +,,00657612,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657612&format=geojson,0.054,,87.95,",nn00657612,",0.5,ml,,nn,49.0,"49km NE of Beatty, Nevada",0.1908,4,",nn,",reviewed,1537584927063,"M 0.5 - 49km NE of Beatty, Nevada",0,earthquake,",focal-mechanism,geoserve,origin,phase-data,",-480.0,1537814878256,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657612 +,,20260455,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260455&format=geojson,,,,",ak20260455,",1.3,ml,,ak,,"4km ENE of Kenai, Alaska",0.7,26,",ak,",automatic,1537584609339,"M 1.3 - 4km ENE of Kenai, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537584849184,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260455 +,,20260452,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260452&format=geojson,,,,",ak20260452,",1.7,ml,,ak,,"52km ENE of Cantwell, Alaska",0.72,44,",ak,",automatic,1537584129878,"M 1.7 - 52km ENE of Cantwell, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537584407333,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260452 +,,2018265001,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018265001&format=geojson,0.6958,,331.0,",pr2018265001,",2.45,md,,pr,4.0,"33km N of Tierras Nuevas Poniente, Puerto Rico",0.08,92,",pr,",reviewed,1537583496650,"M 2.5 - 33km N of Tierras Nuevas Poniente, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1537591759409,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018265001 +,,70604852,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70604852&format=geojson,0.03115,,119.0,",hv70604852,",1.76,md,,hv,33.0,"15km SSW of Volcano, Hawaii",0.12,48,",hv,",automatic,1537583113850,"M 1.8 - 15km SSW of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537583310670,https://earthquake.usgs.gov/earthquakes/eventpage/hv70604852 +,,73087936,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087936&format=geojson,0.04909,,29.0,",nc73087936,",1.71,md,,nc,39.0,"8km NNE of Milpitas, CA",0.07,45,",nc,",reviewed,1537582650390,"M 1.7 - 8km NNE of Milpitas, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537838222824,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087936 +,,37363866,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37363866&format=geojson,0.0227,,78.0,",ci37363866,",0.69,ml,,ci,38.0,"9km N of Borrego Springs, CA",0.19,7,",ci,",reviewed,1537582477430,"M 0.7 - 9km N of Borrego Springs, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537970347579,https://earthquake.usgs.gov/earthquakes/eventpage/ci37363866 +,,37363858,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37363858&format=geojson,0.04389,,50.0,",ci37363858,",2.23,ml,,ci,70.0,"18km ENE of Thousand Palms, CA",0.15,77,",ci,",reviewed,1537582276600,"M 2.2 - 18km ENE of Thousand Palms, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537802573420,https://earthquake.usgs.gov/earthquakes/eventpage/ci37363858 +,,20260446,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260446&format=geojson,,,,",ak20260446,",1.8,ml,,ak,,"128km NW of Arctic Village, Alaska",0.63,50,",ak,",automatic,1537582020367,"M 1.8 - 128km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537582461528,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260446 +,,2000hiiq,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hiiq&format=geojson,0.242,,36.0,",us2000hiiq,",4.1,mwr,,us,,"15km NNW of Lopatari, Romania",0.64,259,",us,",reviewed,1537581899280,"M 4.1 - 15km NNW of Lopatari, Romania",0,earthquake,",geoserve,origin,phase-data,",120.0,1539046730040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hiiq +,,20260440,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260440&format=geojson,,,,",ak20260440,",2.4,ml,,ak,,"69km SSW of Kaktovik, Alaska",0.73,89,",ak,",automatic,1537581416424,"M 2.4 - 69km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537581718971,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260440 +,,73087921,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087921&format=geojson,0.0441,,69.0,",nc73087921,",1.57,md,,nc,34.0,"14km E of Seven Trees, CA",0.06,38,",nc,",reviewed,1537581188700,"M 1.6 - 14km E of Seven Trees, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537834983023,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087921 +,,20260435,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260435&format=geojson,,,,",ak20260435,us2000hiim,",2.9,ml,,ak,,"127km SSE of Prudhoe Bay, Alaska",0.74,129,",ak,us,",automatic,1537581066866,"M 2.9 - 127km SSE of Prudhoe Bay, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539046157040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260435 +,,20260406,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260406&format=geojson,,,,",ak20260406,",1.6,ml,,ak,,"121km NW of Arctic Village, Alaska",0.72,39,",ak,",automatic,1537580268294,"M 1.6 - 121km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537580544761,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260406 +,,70803994,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70803994&format=geojson,0.1516,,168.0,",av70803994,",1.23,ml,,av,4.0,"47km W of Nikolski, Alaska",0.29,23,",av,",reviewed,1537580117520,"M 1.2 - 47km W of Nikolski, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537812930520,https://earthquake.usgs.gov/earthquakes/eventpage/av70803994 +,,60297337,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60297337&format=geojson,0.3365,,108.0,",uu60297337,",1.75,ml,,uu,18.0,"43km ENE of Kanab, Utah",0.16,47,",uu,",reviewed,1537579427480,"M 1.8 - 43km ENE of Kanab, Utah",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537799355630,https://earthquake.usgs.gov/earthquakes/eventpage/uu60297337 +,,00657701,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657701&format=geojson,0.092,,120.19,",nn00657701,",0.1,ml,,nn,12.0,"53km S of Goldfield, Nevada",0.1198,0,",nn,",reviewed,1537578913317,"M 0.1 - 53km S of Goldfield, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537668573325,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657701 +,,37363842,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37363842&format=geojson,0.03092,,56.0,",ci37363842,",0.42,ml,,ci,30.0,"8km ENE of Aguanga, CA",0.18,3,",ci,",reviewed,1537578693950,"M 0.4 - 8km ENE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537801901979,https://earthquake.usgs.gov/earthquakes/eventpage/ci37363842 +,,20260404,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260404&format=geojson,,,,",ak20260404,",2.0,ml,,ak,,"123km NNW of Arctic Village, Alaska",0.74,62,",ak,",automatic,1537578164566,"M 2.0 - 123km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537578388581,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260404 +,,73087916,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087916&format=geojson,0.006849,,121.0,",nc73087916,",0.23,md,,nc,9.0,"4km W of Cobb, CA",0.02,1,",nc,",reviewed,1537577952530,"M 0.2 - 4km W of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537826463184,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087916 +,,20260402,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260402&format=geojson,,,,",ak20260402,",0.9,ml,,ak,,"60km ENE of Cape Yakataga, Alaska",0.61,12,",ak,",automatic,1537577716545,"M 0.9 - 60km ENE of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537577866778,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260402 +,,37363834,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37363834&format=geojson,0.07756,,45.0,",ci37363834,",0.4,ml,,ci,17.0,"10km NE of Aguanga, CA",0.13,2,",ci,",reviewed,1537577635460,"M 0.4 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537799818704,https://earthquake.usgs.gov/earthquakes/eventpage/ci37363834 +,,73087911,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087911&format=geojson,0.01257,,129.0,",nc73087911,",1.01,md,,nc,7.0,"3km SSW of Cobb, CA",0.03,16,",nc,",automatic,1537577480910,"M 1.0 - 3km SSW of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537577577377,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087911 +,,73087906,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087906&format=geojson,0.01866,,65.0,",nc73087906,",0.88,md,,nc,13.0,"7km NW of The Geysers, CA",0.03,12,",nc,",automatic,1537577310740,"M 0.9 - 7km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537577476805,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087906 +,,73087901,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087901&format=geojson,0.08487,,81.0,",nc73087901,",1.08,md,,nc,17.0,"16km ESE of Livermore, CA",0.04,18,",nc,",reviewed,1537577226210,"M 1.1 - 16km ESE of Livermore, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537825743116,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087901 +,,80311029,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80311029&format=geojson,0.134,,112.0,",mb80311029,",0.8,ml,,mb,10.0,"16km ESE of Lincoln, Montana",0.11,10,",mb,",reviewed,1537576745080,"M 0.8 - 16km ESE of Lincoln, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537823842150,https://earthquake.usgs.gov/earthquakes/eventpage/mb80311029 +,,20260399,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260399&format=geojson,,,,",ak20260399,",1.3,ml,,ak,,"60km NNW of Valdez, Alaska",0.47,26,",ak,",automatic,1537576225674,"M 1.3 - 60km NNW of Valdez, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537576382523,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260399 +,,2018265000,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018265000&format=geojson,0.6433,,307.0,",pr2018265000,",3.06,md,,pr,8.0,"68km N of Isabela, Puerto Rico",0.34,144,",pr,",reviewed,1537575357930,"M 3.1 - 68km N of Isabela, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1537591730170,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018265000 +,,20260393,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260393&format=geojson,,,,",ak20260393,",1.5,ml,,ak,,"93km W of Willow, Alaska",0.99,35,",ak,",automatic,1537575081643,"M 1.5 - 93km W of Willow, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537575469910,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260393 +,,37363826,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37363826&format=geojson,0.06449,,79.0,",ci37363826,",0.72,ml,,ci,21.0,"6km E of Murrieta Hot Springs, CA",0.15,8,",ci,",reviewed,1537574790570,"M 0.7 - 6km E of Murrieta Hot Springs, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537576069026,https://earthquake.usgs.gov/earthquakes/eventpage/ci37363826 +,,2000hihk,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hihk&format=geojson,1.004,,55.0,",us2000hihk,",4.3,mb,,us,,"136km W of Colchani, Bolivia",0.94,284,",us,",reviewed,1537574525910,"M 4.3 - 136km W of Colchani, Bolivia",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538870407040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hihk +,,2000hihl,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hihl&format=geojson,0.665,,105.0,",us2000hihl,",4.6,mb,,us,,"74km SE of Saipan, Northern Mariana Islands",1.07,326,",us,",reviewed,1537574430700,"M 4.6 - 74km SE of Saipan, Northern Mariana Islands",0,earthquake,",geoserve,origin,phase-data,",600.0,1538971531040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hihl +,,20260386,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260386&format=geojson,,,,",ak20260386,",1.9,ml,,ak,,"53km W of Cantwell, Alaska",0.94,56,",ak,",automatic,1537574347641,"M 1.9 - 53km W of Cantwell, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537574717129,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260386 +,,20260383,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260383&format=geojson,,,,",ak20260383,",2.2,ml,,ak,,"57km SSW of Kaktovik, Alaska",0.78,74,",ak,",automatic,1537574187675,"M 2.2 - 57km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537574486061,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260383 +,,73087891,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087891&format=geojson,0.00207,,68.0,",nc73087891,",0.68,md,,nc,15.0,"7km WNW of The Geysers, CA",0.04,7,",nc,",reviewed,1537574150060,"M 0.7 - 7km WNW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537816740764,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087891 +,,37363810,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37363810&format=geojson,0.03411,,130.0,",ci37363810,",0.2,ml,,ci,7.0,"12km NE of Little Lake, CA",0.04,1,",ci,",reviewed,1537573935540,"M 0.2 - 12km NE of Little Lake, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537574660026,https://earthquake.usgs.gov/earthquakes/eventpage/ci37363810 +,,20260381,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260381&format=geojson,,,,",ak20260381,",1.4,ml,,ak,,"22km NE of Fairbanks, Alaska",0.72,30,",ak,",automatic,1537573418412,"M 1.4 - 22km NE of Fairbanks, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537573603204,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260381 +,,37363786,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37363786&format=geojson,0.04176,,33.0,",ci37363786,",1.31,ml,,ci,43.0,"8km S of Idyllwild, CA",0.14,26,",ci,",reviewed,1537573385610,"M 1.3 - 8km S of Idyllwild, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537829518880,https://earthquake.usgs.gov/earthquakes/eventpage/ci37363786 +,3.1,2000hih9,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hih9&format=geojson,2.262,1.0,56.0,",us2000hih9,",4.8,mwr,,us,,"15km W of Palu, Indonesia",0.87,355,",us,",reviewed,1537572034330,"M 4.8 - 15km W of Palu, Indonesia",0,earthquake,",dyfi,geoserve,moment-tensor,origin,phase-data,",480.0,1538870294495,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hih9 +,,20260378,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260378&format=geojson,,,,",ak20260378,",2.0,ml,,ak,,"39km S of Kaktovik, Alaska",0.86,62,",ak,",automatic,1537571697303,"M 2.0 - 39km S of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537571998781,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260378 +,,20260374,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260374&format=geojson,,,,",ak20260374,",1.8,ml,,ak,,"119km SSE of Prudhoe Bay, Alaska",0.85,50,",ak,",automatic,1537571462221,"M 1.8 - 119km SSE of Prudhoe Bay, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537571687674,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260374 +,,73087886,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087886&format=geojson,0.01992,,135.0,",nc73087886,",0.55,md,,nc,8.0,"10km WNW of The Geysers, CA",0.03,5,",nc,",automatic,1537571112020,"M 0.6 - 10km WNW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537571207697,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087886 +,,20260370,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260370&format=geojson,,,,",ak20260370,",1.4,ml,,ak,,"63km SW of Anchor Point, Alaska",0.31,30,",ak,",automatic,1537571086408,"M 1.4 - 63km SW of Anchor Point, Alaska",0,earthquake,",geoserve,origin,",-600.0,1537571316237,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260370 +,,20260368,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260368&format=geojson,,,,",ak20260368,",1.5,ml,,ak,,"41km NE of Y, Alaska",0.78,35,",ak,",automatic,1537571007004,"M 1.5 - 41km NE of Y, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537571316456,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260368 +,,73087881,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087881&format=geojson,0.00495,,83.0,",nc73087881,",0.89,md,,nc,9.0,"10km WNW of Cobb, CA",0.03,12,",nc,",automatic,1537570971720,"M 0.9 - 10km WNW of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537571068157,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087881 +,,73087876,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087876&format=geojson,0.005268,,113.0,",nc73087876,",0.9,md,,nc,12.0,"10km WNW of The Geysers, CA",0.04,12,",nc,",automatic,1537570941650,"M 0.9 - 10km WNW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537571034376,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087876 +,,61421967,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61421967&format=geojson,0.1061,,102.0,",uw61421967,",1.16,ml,,uw,8.0,"7km NNW of Waterville, Washington",0.06,21,",uw,",reviewed,1537570222210,"M 1.2 - 7km NNW of Waterville, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537594453660,https://earthquake.usgs.gov/earthquakes/eventpage/uw61421967 +,,20260363,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260363&format=geojson,,,,",ak20260363,",0.7,ml,,ak,,"6km N of North Pole, Alaska",0.5,8,",ak,",automatic,1537569835223,"M 0.7 - 6km N of North Pole, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537570092418,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260363 +,,20260362,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260362&format=geojson,,,,",ak20260362,",1.8,ml,,ak,,"73km WNW of Arctic Village, Alaska",0.67,50,",ak,",automatic,1537569753064,"M 1.8 - 73km WNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537569991954,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260362 +,,20260358,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260358&format=geojson,,,,",ak20260358,us2000higw,",2.8,ml,,ak,,"83km WNW of Arctic Village, Alaska",0.89,121,",ak,us,",automatic,1537569592483,"M 2.8 - 83km WNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538971363040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260358 +,2.2,2018264008,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018264008&format=geojson,0.244,1.0,235.0,",pr2018264008,us2000higz,",2.58,md,,pr,19.0,"19km N of Hatillo, Puerto Rico",0.26,103,",pr,us,",reviewed,1537569341300,"M 2.6 - 19km N of Hatillo, Puerto Rico",0,earthquake,",dyfi,geoserve,origin,phase-data,",-240.0,1537574911415,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018264008 +,,20260355,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260355&format=geojson,,,,",ak20260355,",0.9,ml,,ak,,"70km E of Cape Yakataga, Alaska",1.23,12,",ak,",automatic,1537569096899,"M 0.9 - 70km E of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537569630041,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260355 +,,37363722,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37363722&format=geojson,0.03129,,127.0,",ci37363722,",0.25,ml,,ci,8.0,"12km NE of Little Lake, CA",0.03,1,",ci,",reviewed,1537568652440,"M 0.3 - 12km NE of Little Lake, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537574219982,https://earthquake.usgs.gov/earthquakes/eventpage/ci37363722 +,,37363714,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37363714&format=geojson,0.1298,,92.0,",ci37363714,",1.3,ml,,ci,48.0,"18km N of Borrego Springs, CA",0.22,26,",ci,",reviewed,1537568521520,"M 1.3 - 18km N of Borrego Springs, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537573878960,https://earthquake.usgs.gov/earthquakes/eventpage/ci37363714 +,,70803974,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70803974&format=geojson,0.01549,,131.0,",av70803974,",0.55,ml,,av,4.0,"17km W of Akutan, Alaska",0.15,5,",av,",reviewed,1537568306450,"M 0.6 - 17km W of Akutan, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537575522940,https://earthquake.usgs.gov/earthquakes/eventpage/av70803974 +,,61421952,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61421952&format=geojson,0.1342,,195.0,",uw61421952,",1.38,ml,,uw,5.0,"25km WSW of Dallas, Oregon",0.09,29,",uw,",reviewed,1537567976660,"M 1.4 Explosion - 25km WSW of Dallas, Oregon",0,explosion,",geoserve,origin,phase-data,",-480.0,1537595094830,https://earthquake.usgs.gov/earthquakes/eventpage/uw61421952 +,,2000higp,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000higp&format=geojson,1.592,,173.0,",us2000higp,",4.0,mb,,us,,"180km WSW of Puerto Quellon, Chile",0.87,246,",us,",reviewed,1537567889790,"M 4.0 - 180km WSW of Puerto Quellon, Chile",0,earthquake,",geoserve,origin,phase-data,",-300.0,1537569531040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000higp +,,20260352,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260352&format=geojson,,,,",ak20260352,",1.2,ml,,ak,,"54km N of Yakutat, Alaska",0.78,22,",ak,",automatic,1537567427516,"M 1.2 - 54km N of Yakutat, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537567654180,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260352 +,,61421937,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61421937&format=geojson,0.0371,,104.0,",uw61421937,",1.11,ml,,uw,10.0,"28km N of Amboy, Washington",0.33,19,",uw,",reviewed,1537567349010,"M 1.1 - 28km N of Amboy, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537593764830,https://earthquake.usgs.gov/earthquakes/eventpage/uw61421937 +,,37363674,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37363674&format=geojson,0.01578,,115.0,",ci37363674,",0.44,ml,,ci,16.0,"5km SSE of Idyllwild, CA",0.08,3,",ci,",reviewed,1537567221740,"M 0.4 - 5km SSE of Idyllwild, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537573462908,https://earthquake.usgs.gov/earthquakes/eventpage/ci37363674 +,,20260350,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260350&format=geojson,,,,",ak20260350,",1.1,ml,,ak,,"24km W of Anchorage, Alaska",0.9,19,",ak,",automatic,1537566979828,"M 1.1 - 24km W of Anchorage, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537567222847,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260350 +,,37363650,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37363650&format=geojson,0.1345,,90.0,",ci37363650,",1.14,ml,,ci,23.0,"26km ENE of Pine Valley, CA",0.13,20,",ci,",reviewed,1537566931220,"M 1.1 - 26km ENE of Pine Valley, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537567586351,https://earthquake.usgs.gov/earthquakes/eventpage/ci37363650 +,,20260349,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260349&format=geojson,,,,",ak20260349,",1.8,ml,,ak,,"56km SSW of Kaktovik, Alaska",0.91,50,",ak,",automatic,1537566924567,"M 1.8 - 56km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537567122388,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260349 +,,70803969,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70803969&format=geojson,0.01735,,113.0,",av70803969,",-0.61,ml,,av,6.0,"17km W of Akutan, Alaska",0.12,0,",av,",reviewed,1537566772200,"M -0.6 - 17km W of Akutan, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537575200350,https://earthquake.usgs.gov/earthquakes/eventpage/av70803969 +,,2018264011,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018264011&format=geojson,0.0971,,343.0,",pr2018264011,",1.27,md,,pr,3.0,"0km SSE of Espino, Puerto Rico",0.24,25,",pr,",reviewed,1537565964710,"M 1.3 - 0km SSE of Espino, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1537576373880,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018264011 +,,20260343,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260343&format=geojson,,,,",ak20260343,",1.6,ml,,ak,,"116km SSE of Prudhoe Bay, Alaska",1.03,39,",ak,",automatic,1537565883722,"M 1.6 - 116km SSE of Prudhoe Bay, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537566510538,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260343 +,,20260341,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260341&format=geojson,,,,",ak20260341,",1.1,ml,,ak,,"65km ENE of Cantwell, Alaska",0.39,19,",ak,",automatic,1537565782558,"M 1.1 - 65km ENE of Cantwell, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537565957885,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260341 +,,20260340,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260340&format=geojson,,,,",ak20260340,",0.6,ml,,ak,,"48km NW of Cape Yakataga, Alaska",0.23,6,",ak,",reviewed,1537565454278,"M 0.6 - 48km NW of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537568055478,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260340 +,,2018264010,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018264010&format=geojson,0.128,,305.0,",pr2018264010,",1.71,md,,pr,4.0,"4km S of La Playa, Puerto Rico",0.09,45,",pr,",reviewed,1537565415120,"M 1.7 - 4km S of La Playa, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1537576364192,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018264010 +,,20260338,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260338&format=geojson,,,,",ak20260338,",1.5,ml,,ak,,"48km ESE of Whittier, Alaska",0.6,35,",ak,",automatic,1537565205282,"M 1.5 - 48km ESE of Whittier, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537565445709,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260338 +,,20260335,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260335&format=geojson,,,,",ak20260335,",0.9,ml,,ak,,"43km NW of Ester, Alaska",0.57,12,",ak,",automatic,1537565040990,"M 0.9 - 43km NW of Ester, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537565315154,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260335 +,,73087871,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087871&format=geojson,0.05032,,311.0,",nc73087871,",0.32,md,,nc,7.0,"10km W of Toms Place, CA",0.01,2,",nc,",reviewed,1537564731310,"M 0.3 - 10km W of Toms Place, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537804926682,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087871 +,,61421897,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61421897&format=geojson,1.044,,262.0,",uw61421897,",2.0,ml,,uw,9.0,"12km SSW of Princeton, Canada",0.42,62,",uw,",reviewed,1537564518940,"M 2.0 Explosion - 12km SSW of Princeton, Canada",0,explosion,",geoserve,origin,phase-data,",-480.0,1537595388500,https://earthquake.usgs.gov/earthquakes/eventpage/uw61421897 +,,73087861,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087861&format=geojson,0.00524,,97.0,",nc73087861,",0.55,md,,nc,10.0,"6km NW of The Geysers, CA",0.03,5,",nc,",automatic,1537564192270,"M 0.6 - 6km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537564289047,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087861 +,,73087856,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087856&format=geojson,0.0646,,244.0,",nc73087856,",0.83,md,,nc,11.0,"9km WSW of Toms Place, CA",0.03,11,",nc,",reviewed,1537563742710,"M 0.8 - 9km WSW of Toms Place, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537814486405,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087856 +,,37363594,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37363594&format=geojson,0.02582,,108.0,",ci37363594,",0.54,ml,,ci,17.0,"6km S of Idyllwild, CA",0.08,4,",ci,",reviewed,1537563216090,"M 0.5 - 6km S of Idyllwild, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537566910969,https://earthquake.usgs.gov/earthquakes/eventpage/ci37363594 +,,00657580,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657580&format=geojson,0.152,,178.45,",nn00657580,",0.7,ml,,nn,5.0,"37km SSW of Gabbs, Nevada",0.0159,8,",nn,",reviewed,1537563170608,"M 0.7 - 37km SSW of Gabbs, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537564712210,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657580 +,,37363586,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37363586&format=geojson,0.05501,,207.0,",ci37363586,",1.38,ml,,ci,32.0,"6km SE of Chula Vista, CA",0.23,29,",ci,",reviewed,1537563094020,"M 1.4 Quarry Blast - 6km SE of Chula Vista, CA",0,quarry blast,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537566471783,https://earthquake.usgs.gov/earthquakes/eventpage/ci37363586 +,,20260324,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260324&format=geojson,,,,",ak20260324,",1.3,ml,,ak,,"21km ENE of Willow, Alaska",0.68,26,",ak,",automatic,1537562071562,"M 1.3 - 21km ENE of Willow, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537562456213,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260324 +,,37363546,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37363546&format=geojson,0.06449,,50.0,",ci37363546,",1.17,ml,,ci,40.0,"3km ESE of Home Gardens, CA",0.2,21,",ci,",reviewed,1537561916690,"M 1.2 Quarry Blast - 3km ESE of Home Gardens, CA",0,quarry blast,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537566092708,https://earthquake.usgs.gov/earthquakes/eventpage/ci37363546 +,,73087836,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087836&format=geojson,0.01025,,93.0,",nc73087836,",0.51,md,,nc,12.0,"6km ENE of Mammoth Lakes, CA",0.07,4,",nc,",reviewed,1537561833100,"M 0.5 - 6km ENE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537804655877,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087836 +,,1000h3ct,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3ct&format=geojson,4.431,,142.0,",us1000h3ct,",4.0,mb,,us,,"183km SW of Hihifo, Tonga",0.36,246,",us,",reviewed,1537561729860,"M 4.0 - 183km SW of Hihifo, Tonga",0,earthquake,",geoserve,origin,phase-data,",-720.0,1539192959040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3ct +,,70604277,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70604277&format=geojson,0.04055,,136.0,",hv70604277,",2.46,ml,,hv,31.0,"16km SE of Volcano, Hawaii",0.1,93,",hv,",reviewed,1537561565540,"M 2.5 - 16km SE of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537578694050,https://earthquake.usgs.gov/earthquakes/eventpage/hv70604277 +,,70604272,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70604272&format=geojson,0.04652,,149.0,",hv70604272,",0.87,md,,hv,16.0,"16km SE of Volcano, Hawaii",0.09,12,",hv,",reviewed,1537561560440,"M 0.9 - 16km SE of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537579526680,https://earthquake.usgs.gov/earthquakes/eventpage/hv70604272 +,,1000h3cv,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3cv&format=geojson,3.2,,199.0,",us1000h3cv,",4.3,mb,,us,,"269km N of Ndoi Island, Fiji",0.52,284,",us,",reviewed,1537561473860,"M 4.3 - 269km N of Ndoi Island, Fiji",0,earthquake,",geoserve,origin,phase-data,",-720.0,1539189656040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3cv +,,37363538,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37363538&format=geojson,0.07613,,47.0,",ci37363538,",0.58,ml,,ci,20.0,"10km NE of Aguanga, CA",0.13,5,",ci,",reviewed,1537561437850,"M 0.6 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537563034188,https://earthquake.usgs.gov/earthquakes/eventpage/ci37363538 +,,00657574,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657574&format=geojson,0.265,,93.49,",nn00657574,",1.8,ml,,nn,7.0,"10km W of Ely, Nevada",0.3423,50,",nn,",reviewed,1537561376273,"M 1.8 Explosion - 10km W of Ely, Nevada",0,explosion,",geoserve,origin,phase-data,",-480.0,1537562124997,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657574 +,,73087831,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087831&format=geojson,0.04337,,89.0,",nc73087831,",1.66,md,,nc,21.0,"12km SE of Laytonville, CA",0.2,42,",nc,",reviewed,1537561298780,"M 1.7 - 12km SE of Laytonville, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537859765084,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087831 +,,73087821,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087821&format=geojson,0.01738,,146.0,",nc73087821,",0.7,md,,nc,6.0,"10km WNW of The Geysers, CA",0.02,8,",nc,",automatic,1537561136390,"M 0.7 - 10km WNW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537561232635,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087821 +,1.0,37363514,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37363514&format=geojson,0.1641,1.0,67.0,",ci37363514,",1.82,ml,,ci,23.0,"9km W of Isla Vista, CA",0.22,51,",ci,",reviewed,1537561108240,"M 1.8 - 9km W of Isla Vista, CA",0,earthquake,",dyfi,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537565389564,https://earthquake.usgs.gov/earthquakes/eventpage/ci37363514 +,,70803939,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70803939&format=geojson,0.009938,,189.0,",av70803939,",-0.9,ml,,av,5.0,"94km ESE of Old Iliamna, Alaska",0.07,0,",av,",reviewed,1537560947090,"M -0.9 - 94km ESE of Old Iliamna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537572590010,https://earthquake.usgs.gov/earthquakes/eventpage/av70803939 +,,1000h3cu,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3cu&format=geojson,2.678,,153.0,",us1000h3cu,",4.4,mb,,us,,"242km SW of Nadi, Fiji",1.09,298,",us,",reviewed,1537560927380,"M 4.4 - 242km SW of Nadi, Fiji",0,earthquake,",geoserve,origin,phase-data,",720.0,1539187785040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3cu +,,73087816,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087816&format=geojson,0.003357,,61.0,",nc73087816,",1.65,md,,nc,14.0,"10km ENE of Mount Shasta, CA",0.06,42,",nc,",reviewed,1537560889570,"M 1.7 - 10km ENE of Mount Shasta, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537807683090,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087816 +,,37363498,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37363498&format=geojson,0.09769,,107.0,",ci37363498,",1.4,ml,,ci,17.0,"18km NW of Tehachapi, CA",0.13,30,",ci,",reviewed,1537560069000,"M 1.4 - 18km NW of Tehachapi, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537563036520,https://earthquake.usgs.gov/earthquakes/eventpage/ci37363498 +,,60297302,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60297302&format=geojson,0.1366,,83.0,",uu60297302,",1.39,ml,,uu,11.0,"14km NW of Salina, Utah",0.11,30,",uu,",reviewed,1537559927970,"M 1.4 - 14km NW of Salina, Utah",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537814732810,https://earthquake.usgs.gov/earthquakes/eventpage/uu60297302 +,,37363490,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37363490&format=geojson,0.1062,,76.0,",ci37363490,",1.1,ml,,ci,13.0,"7km SE of Tehachapi, CA",0.13,19,",ci,",reviewed,1537559408010,"M 1.1 - 7km SE of Tehachapi, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537563056048,https://earthquake.usgs.gov/earthquakes/eventpage/ci37363490 +,,20260312,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260312&format=geojson,,,,",ak20260312,",1.8,ml,,ak,,"49km SSW of Kaktovik, Alaska",0.76,50,",ak,",automatic,1537559327783,"M 1.8 - 49km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537559628186,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260312 +,,20260307,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260307&format=geojson,,,,",ak20260307,",1.6,ml,,ak,,"81km NW of Arctic Village, Alaska",0.96,39,",ak,",automatic,1537559200299,"M 1.6 - 81km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537559527708,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260307 +,,73087806,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087806&format=geojson,0.009183,,86.0,",nc73087806,",1.1,md,,nc,10.0,"5km W of Cobb, CA",0.02,19,",nc,",automatic,1537559112810,"M 1.1 - 5km W of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537560062357,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087806 +,,70604212,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70604212&format=geojson,0.00515,,42.0,",hv70604212,",1.9,ml,,hv,22.0,"5km SW of Volcano, Hawaii",0.17,56,",hv,",automatic,1537558996620,"M 1.9 - 5km SW of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537559338170,https://earthquake.usgs.gov/earthquakes/eventpage/hv70604212 +,,20260302,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260302&format=geojson,,,,",ak20260302,",1.5,ml,,ak,,"119km NW of Arctic Village, Alaska",0.96,35,",ak,",automatic,1537558724013,"M 1.5 - 119km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537559085650,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260302 +,,20260297,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260297&format=geojson,,,,",ak20260297,",0.9,ml,,ak,,"60km NW of Healy, Alaska",0.76,12,",ak,",automatic,1537558584547,"M 0.9 - 60km NW of Healy, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537559085885,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260297 +,,20260298,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260298&format=geojson,,,,",ak20260298,",1.3,ml,,ak,,"101km WNW of Arctic Village, Alaska",0.67,26,",ak,",automatic,1537558574710,"M 1.3 - 101km WNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537559086114,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260298 +,,37363442,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37363442&format=geojson,0.07528,,74.0,",ci37363442,",0.87,ml,,ci,34.0,"5km NNE of Banning, CA",0.13,12,",ci,",reviewed,1537557940470,"M 0.9 - 5km NNE of Banning, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537807390421,https://earthquake.usgs.gov/earthquakes/eventpage/ci37363442 +,,20260292,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260292&format=geojson,,,,",ak20260292,",1.3,ml,,ak,,"109km NW of Arctic Village, Alaska",0.75,26,",ak,",automatic,1537557307264,"M 1.3 - 109km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537557751139,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260292 +,,37363434,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37363434&format=geojson,0.1137,,99.0,",ci37363434,",1.29,ml,,ci,13.0,"7km S of Mojave, CA",0.18,26,",ci,",reviewed,1537557068440,"M 1.3 Quarry Blast - 7km S of Mojave, CA",0,quarry blast,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537564837086,https://earthquake.usgs.gov/earthquakes/eventpage/ci37363434 +,,20260289,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260289&format=geojson,,,,",ak20260289,",2.0,ml,,ak,,"71km SW of Kaktovik, Alaska",1.03,62,",ak,",automatic,1537557005973,"M 2.0 - 71km SW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537557309282,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260289 +,,1000h3cz,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3cz&format=geojson,1.927,,118.0,",us1000h3cz,",4.5,mb,,us,,"215km ESE of Grytviken, South Georgia and the South Sandwich Islands",1.17,312,",us,",reviewed,1537556875970,"M 4.5 - 215km ESE of Grytviken, South Georgia and the South Sandwich Islands",0,earthquake,",geoserve,origin,phase-data,",-120.0,1539185083040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3cz +,,37363418,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37363418&format=geojson,0.08071,,161.0,",ci37363418,",0.12,ml,,ci,11.0,"22km NNW of Borrego Springs, CA",0.08,0,",ci,",reviewed,1537556674540,"M 0.1 - 22km NNW of Borrego Springs, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537567419335,https://earthquake.usgs.gov/earthquakes/eventpage/ci37363418 +,,80310799,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80310799&format=geojson,0.063,,114.0,",mb80310799,",1.92,ml,,mb,9.0,"5km E of Butte, Montana",0.09,57,",mb,",reviewed,1537556544290,"M 1.9 Quarry Blast - 5km E of Butte, Montana",0,quarry blast,",geoserve,origin,phase-data,",-420.0,1537558067690,https://earthquake.usgs.gov/earthquakes/eventpage/mb80310799 +,,70803964,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70803964&format=geojson,0.01347,,233.0,",av70803964,",-0.25,ml,,av,6.0,"100km ESE of King Salmon, Alaska",0.07,0,",av,",reviewed,1537556305260,"M -0.3 - 100km ESE of King Salmon, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537573990730,https://earthquake.usgs.gov/earthquakes/eventpage/av70803964 +,,20260284,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260284&format=geojson,,,,",ak20260284,",1.4,ml,,ak,,"97km WNW of Arctic Village, Alaska",0.6,30,",ak,",automatic,1537556297191,"M 1.4 - 97km WNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537556807756,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260284 +,,70803959,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70803959&format=geojson,0.008432,,223.0,",av70803959,",-0.48,ml,,av,5.0,"99km ESE of King Salmon, Alaska",0.09,0,",av,",reviewed,1537556211710,"M -0.5 - 99km ESE of King Salmon, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537573418470,https://earthquake.usgs.gov/earthquakes/eventpage/av70803959 +,,70803944,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70803944&format=geojson,0.01376,,233.0,",av70803944,",-0.52,ml,,av,5.0,"100km ESE of King Salmon, Alaska",0.06,0,",av,",reviewed,1537556206700,"M -0.5 - 100km ESE of King Salmon, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537573129910,https://earthquake.usgs.gov/earthquakes/eventpage/av70803944 +,,00657571,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657571&format=geojson,0.038,,103.07,",nn00657571,",-0.2,ml,,nn,19.0,"63km N of Pahrump, Nevada",0.1227,0,",nn,",reviewed,1537555567354,"M -0.2 - 63km N of Pahrump, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537568586068,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657571 +,,20260276,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260276&format=geojson,,,,",ak20260276,",1.9,ml,,ak,,"131km NW of Arctic Village, Alaska",0.66,56,",ak,",automatic,1537554579400,"M 1.9 - 131km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537554882530,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260276 +,,37363378,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37363378&format=geojson,0.1082,,32.0,",ci37363378,",1.53,ml,,ci,54.0,"7km SSE of Big Bear City, CA",0.18,36,",ci,",reviewed,1537554575780,"M 1.5 - 7km SSE of Big Bear City, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537563133670,https://earthquake.usgs.gov/earthquakes/eventpage/ci37363378 +,,20260275,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260275&format=geojson,,,,",ak20260275,",1.4,ml,,ak,,"63km W of Anchor Point, Alaska",0.52,30,",ak,",automatic,1537554386954,"M 1.4 - 63km W of Anchor Point, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537554621540,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260275 +,,73087771,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087771&format=geojson,0.01101,,74.0,",nc73087771,",0.97,md,,nc,13.0,"3km E of Aromas, CA",0.05,14,",nc,",reviewed,1537553466630,"M 1.0 - 3km E of Aromas, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537560172974,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087771 +,,37363354,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37363354&format=geojson,0.02857,,125.0,",ci37363354,",0.74,ml,,ci,11.0,"13km NE of Little Lake, CA",0.11,8,",ci,",reviewed,1537553129160,"M 0.7 - 13km NE of Little Lake, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537554190036,https://earthquake.usgs.gov/earthquakes/eventpage/ci37363354 +,,70604102,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70604102&format=geojson,0.007598,,44.0,",hv70604102,",1.77,ml,,hv,20.0,"5km SW of Volcano, Hawaii",0.22,48,",hv,",automatic,1537552315450,"M 1.8 - 5km SW of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537552656470,https://earthquake.usgs.gov/earthquakes/eventpage/hv70604102 +,,2018264009,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018264009&format=geojson,0.9486,,313.0,",pr2018264009,",2.81,md,,pr,6.0,"89km N of San Juan, Puerto Rico",0.13,121,",pr,",reviewed,1537551701980,"M 2.8 - 89km N of San Juan, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1537571816720,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018264009 +,,20260261,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260261&format=geojson,,,,",ak20260261,",1.2,ml,,ak,,"115km W of Talkeetna, Alaska",0.57,22,",ak,",automatic,1537551540585,"M 1.2 - 115km W of Talkeetna, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537552075032,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260261 +,,20260260,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260260&format=geojson,,,,",ak20260260,",1.6,ml,,ak,,"101km W of Cantwell, Alaska",1.08,39,",ak,",automatic,1537551528265,"M 1.6 - 101km W of Cantwell, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537552175517,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260260 +,,70604097,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70604097&format=geojson,0.06931,,158.0,",hv70604097,",1.83,ml,,hv,31.0,"4km ESE of Pahala, Hawaii",0.1,52,",hv,",reviewed,1537551476020,"M 1.8 - 4km ESE of Pahala, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537561368670,https://earthquake.usgs.gov/earthquakes/eventpage/hv70604097 +,,73087756,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087756&format=geojson,0.003269,,84.0,",nc73087756,",0.56,md,,nc,8.0,"9km NW of The Geysers, CA",0.02,5,",nc,",automatic,1537551323900,"M 0.6 - 9km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537551418141,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087756 +,,73087761,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087761&format=geojson,0.0854,,79.0,",nc73087761,",1.07,md,,nc,16.0,"17km ESE of Livermore, CA",0.05,18,",nc,",reviewed,1537551270600,"M 1.1 - 17km ESE of Livermore, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537833242879,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087761 +,,20260262,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260262&format=geojson,,,,",ak20260262,",0.9,ml,,ak,,"48km ENE of Eielson Air Force Base, Alaska",0.74,12,",ak,",automatic,1537551079126,"M 0.9 - 48km ENE of Eielson Air Force Base, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537551683175,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260262 +,,2018264007,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018264007&format=geojson,0.1519,,255.0,",pr2018264007,",2.24,md,,pr,4.0,"17km NNW of Garrochales, Puerto Rico",0.14,77,",pr,",reviewed,1537551047180,"M 2.2 - 17km NNW of Garrochales, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1537571786192,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018264007 +,,20260251,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260251&format=geojson,,,,",ak20260251,",1.8,ml,,ak,,"34km S of Valdez, Alaska",0.7,50,",ak,",automatic,1537550860555,"M 1.8 - 34km S of Valdez, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537551522324,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260251 +,,2000hic7,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hic7&format=geojson,2.666,,150.0,",us2000hic7,",4.4,mb,,us,,"67km E of Nemuro, Japan",0.79,298,",us,",reviewed,1537550307820,"M 4.4 - 67km E of Nemuro, Japan",0,earthquake,",geoserve,origin,phase-data,",600.0,1539122080040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hic7 +,,37363282,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37363282&format=geojson,0.02069,,72.0,",ci37363282,",0.68,ml,,ci,35.0,"2km ENE of Colton, CA",0.2,7,",ci,",reviewed,1537549963580,"M 0.7 - 2km ENE of Colton, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538072967654,https://earthquake.usgs.gov/earthquakes/eventpage/ci37363282 +,,70803934,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70803934&format=geojson,0.02497,,215.0,",av70803934,",-0.48,ml,,av,6.0,"93km SE of King Salmon, Alaska",0.08,0,",av,",reviewed,1537549652150,"M -0.5 - 93km SE of King Salmon, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537570056180,https://earthquake.usgs.gov/earthquakes/eventpage/av70803934 +,,20260242,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260242&format=geojson,,,,",ak20260242,",1.1,ml,,ak,,"2km E of Big Lake, Alaska",0.81,19,",ak,",automatic,1537548765756,"M 1.1 - 2km E of Big Lake, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537548932277,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260242 +,,00657606,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657606&format=geojson,0.199,,262.17,",nn00657606,",0.4,ml,,nn,4.0,"24km W of Sunnyside-Tahoe City, California",0.1535,2,",nn,",reviewed,1537548741372,"M 0.4 - 24km W of Sunnyside-Tahoe City, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537576734566,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657606 +,,73087746,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087746&format=geojson,0.002409,,69.0,",nc73087746,",0.44,md,,nc,18.0,"9km NW of The Geysers, CA",0.04,3,",nc,",reviewed,1537548269680,"M 0.4 - 9km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537562126043,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087746 +,,73087741,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087741&format=geojson,0.07518,,94.0,",nc73087741,",1.2,md,,nc,10.0,"26km SW of Gustine, CA",0.03,22,",nc,",reviewed,1537548138400,"M 1.2 - 26km SW of Gustine, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537563663712,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087741 +,,20260239,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260239&format=geojson,,,,",ak20260239,",1.0,ml,,ak,,"21km ENE of Willow, Alaska",0.84,15,",ak,",automatic,1537547846051,"M 1.0 - 21km ENE of Willow, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537548249224,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260239 +,,20260235,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260235&format=geojson,,,,",ak20260235,",1.5,ml,,ak,,"56km WNW of Anchor Point, Alaska",0.64,35,",ak,",automatic,1537547766426,"M 1.5 - 56km WNW of Anchor Point, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537548249013,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260235 +,,73087736,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087736&format=geojson,0.08656,,125.0,",nc73087736,",1.07,md,,nc,15.0,"11km NE of Hollister, CA",0.09,18,",nc,",reviewed,1537547539540,"M 1.1 - 11km NE of Hollister, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537559330825,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087736 +,,73087731,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087731&format=geojson,0.005035,,73.0,",nc73087731,",0.56,md,,nc,17.0,"9km NW of The Geysers, CA",0.04,5,",nc,",reviewed,1537547506070,"M 0.6 - 9km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537555513855,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087731 +,,70604012,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70604012&format=geojson,0.0621,,63.0,",hv70604012,",1.72,md,,hv,36.0,"22km N of Pahala, Hawaii",0.24,46,",hv,",automatic,1537547286540,"M 1.7 - 22km N of Pahala, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537547476750,https://earthquake.usgs.gov/earthquakes/eventpage/hv70604012 +,,61421852,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61421852&format=geojson,0.04786,,219.0,",uw61421852,",0.39,ml,,uw,10.0,"37km SSE of Morton, Washington",0.17,2,",uw,",reviewed,1537546492570,"M 0.4 - 37km SSE of Morton, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537549359860,https://earthquake.usgs.gov/earthquakes/eventpage/uw61421852 +,,20260228,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260228&format=geojson,,,,",ak20260228,",1.5,ml,,ak,,"68km SW of Kaktovik, Alaska",0.49,35,",ak,",automatic,1537546065614,"M 1.5 - 68km SW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537546358426,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260228 +,,2000hib7,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hib7&format=geojson,3.244,,126.0,",us2000hib7,",4.8,mb,,us,,South of the Fiji Islands,1.37,354,",us,",reviewed,1537546024730,M 4.8 - South of the Fiji Islands,0,earthquake,",geoserve,origin,phase-data,",-720.0,1537562249040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hib7 +,,60297272,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60297272&format=geojson,0.3508,,171.0,",uu60297272,",0.95,md,,uu,7.0,"24km WNW of Montpelier, Idaho",0.05,14,",uu,",reviewed,1537545869420,"M 1.0 - 24km WNW of Montpelier, Idaho",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537825650860,https://earthquake.usgs.gov/earthquakes/eventpage/uu60297272 +,,73087726,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087726&format=geojson,0.0473,,91.0,",nc73087726,",1.84,md,,nc,21.0,"3km NNE of Pinnacles, CA",0.07,52,",nc,",reviewed,1537545408570,"M 1.8 - 3km NNE of Pinnacles, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537574367493,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087726 +,,70603977,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70603977&format=geojson,0.02441,,111.0,",hv70603977,",1.73,md,,hv,28.0,"18km ENE of Honaunau-Napoopoo, Hawaii",0.17,46,",hv,",automatic,1537544716800,"M 1.7 - 18km ENE of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537544905440,https://earthquake.usgs.gov/earthquakes/eventpage/hv70603977 +,,20260225,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260225&format=geojson,,,,",ak20260225,",1.1,ml,,ak,,"52km SSW of Tok, Alaska",0.53,19,",ak,",automatic,1537544630398,"M 1.1 - 52km SSW of Tok, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537545976439,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260225 +,,80310794,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80310794&format=geojson,0.025,,119.0,",mb80310794,",-0.17,md,,mb,6.0,"30km WNW of West Yellowstone, Montana",0.09,0,",mb,",reviewed,1537543993520,"M -0.2 - 30km WNW of West Yellowstone, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537558465590,https://earthquake.usgs.gov/earthquakes/eventpage/mb80310794 +,,20260222,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260222&format=geojson,,,,",ak20260222,",1.6,ml,,ak,,"102km ENE of Kotzebue, Alaska",0.66,39,",ak,",automatic,1537543891608,"M 1.6 - 102km ENE of Kotzebue, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537544200182,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260222 +,,80310789,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80310789&format=geojson,0.189,,59.0,",mb80310789,",1.72,ml,,mb,13.0,"4km WSW of Three Forks, Montana",0.23,46,",mb,",reviewed,1537543065870,"M 1.7 - 4km WSW of Three Forks, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537558861270,https://earthquake.usgs.gov/earthquakes/eventpage/mb80310789 +,,70603952,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70603952&format=geojson,0.05711,,47.0,",hv70603952,",1.34,md,,hv,43.0,"13km W of Volcano, Hawaii",0.1,28,",hv,",reviewed,1537542958770,"M 1.3 - 13km W of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537567112620,https://earthquake.usgs.gov/earthquakes/eventpage/hv70603952 +,,37363170,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37363170&format=geojson,0.02918,,83.0,",ci37363170,",0.31,ml,,ci,26.0,"8km ENE of Aguanga, CA",0.13,1,",ci,",reviewed,1537542501870,"M 0.3 - 8km ENE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537544075127,https://earthquake.usgs.gov/earthquakes/eventpage/ci37363170 +,,20260218,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260218&format=geojson,,,,",ak20260218,",0.9,ml,,ak,,"31km WNW of North Nenana, Alaska",0.38,12,",ak,",automatic,1537542416428,"M 0.9 - 31km WNW of North Nenana, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537542796292,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260218 +,,70803924,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70803924&format=geojson,0.008892,,137.0,",av70803924,",-0.13,ml,,av,6.0,"94km ESE of Old Iliamna, Alaska",0.19,0,",av,",reviewed,1537542244440,"M -0.1 - 94km ESE of Old Iliamna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537567835580,https://earthquake.usgs.gov/earthquakes/eventpage/av70803924 +,,73087721,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087721&format=geojson,0.009676,,75.0,",nc73087721,",0.32,md,,nc,16.0,"4km NE of Mammoth Lakes, CA",0.05,2,",nc,",reviewed,1537541772120,"M 0.3 - 4km NE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537549803586,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087721 +,,37363154,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37363154&format=geojson,0.1476,,77.0,",ci37363154,",0.68,ml,,ci,16.0,"11km S of Olancha, CA",0.13,7,",ci,",reviewed,1537541649200,"M 0.7 - 11km S of Olancha, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537543787605,https://earthquake.usgs.gov/earthquakes/eventpage/ci37363154 +,,37363146,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37363146&format=geojson,0.107,,80.0,",ci37363146,",1.2,ml,,ci,27.0,"10km NE of Ocotillo Wells, CA",0.21,22,",ci,",reviewed,1537541626710,"M 1.2 - 10km NE of Ocotillo Wells, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537542744870,https://earthquake.usgs.gov/earthquakes/eventpage/ci37363146 +,,20260198,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260198&format=geojson,,,,",ak20260198,",0.9,ml,,ak,,"47km W of Big Lake, Alaska",0.39,12,",ak,",automatic,1537541444919,"M 0.9 - 47km W of Big Lake, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537541643241,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260198 +,,60297257,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60297257&format=geojson,0.2977,,119.0,",uu60297257,",2.25,ml,,uu,19.0,"15km ESE of Soda Springs, Idaho",0.17,78,",uu,",reviewed,1537541158820,"M 2.3 - 15km ESE of Soda Springs, Idaho",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537561616140,https://earthquake.usgs.gov/earthquakes/eventpage/uu60297257 +,,70603922,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70603922&format=geojson,0.3929,,272.0,",hv70603922,",1.65,md,,hv,28.0,"48km SE of Pahala, Hawaii",0.16,42,",hv,",reviewed,1537541154640,"M 1.7 - 48km SE of Pahala, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537564506710,https://earthquake.usgs.gov/earthquakes/eventpage/hv70603922 +,,20260195,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260195&format=geojson,,,,",ak20260195,",1.9,ml,,ak,,"60km SSW of Kaktovik, Alaska",0.78,56,",ak,",automatic,1537540867469,"M 1.9 - 60km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537541181978,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260195 +,,73087716,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087716&format=geojson,0.146,,96.0,",nc73087716,",1.69,md,,nc,16.0,"11km W of Manton, CA",0.03,44,",nc,",reviewed,1537540538390,"M 1.7 - 11km W of Manton, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537554903627,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087716 +,,2018264006,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018264006&format=geojson,0.5505,,301.0,",pr2018264006,",2.63,md,,pr,6.0,"57km N of Isabela, Puerto Rico",0.23,106,",pr,",reviewed,1537540400360,"M 2.6 - 57km N of Isabela, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1537545992704,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018264006 +,,20260186,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260186&format=geojson,,,,",ak20260186,",1.4,ml,,ak,,"63km ENE of Cape Yakataga, Alaska",1.12,30,",ak,",automatic,1537539872536,"M 1.4 - 63km ENE of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537540138838,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260186 +,,20260183,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260183&format=geojson,,,,",ak20260183,",1.8,ml,,ak,,"55km SW of Kaktovik, Alaska",0.84,50,",ak,",automatic,1537539746104,"M 1.8 - 55km SW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537540038356,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260183 +,,37363098,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37363098&format=geojson,0.07341,,98.0,",ci37363098,",0.98,ml,,ci,44.0,"2km SE of Loma Linda, CA",0.17,15,",ci,",reviewed,1537539662070,"M 1.0 - 2km SE of Loma Linda, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537543543136,https://earthquake.usgs.gov/earthquakes/eventpage/ci37363098 +,,80310784,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80310784&format=geojson,0.176,,164.0,",mb80310784,",0.89,ml,,mb,6.0,"17km N of Manhattan, Montana",0.02,12,",mb,",reviewed,1537539653690,"M 0.9 - 17km N of Manhattan, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537541957550,https://earthquake.usgs.gov/earthquakes/eventpage/mb80310784 +,,60297252,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60297252&format=geojson,0.3718,,119.0,",uu60297252,",1.81,ml,,uu,16.0,"22km NW of Montpelier, Idaho",0.22,50,",uu,",reviewed,1537539274760,"M 1.8 - 22km NW of Montpelier, Idaho",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537821245350,https://earthquake.usgs.gov/earthquakes/eventpage/uu60297252 +,,20260181,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260181&format=geojson,,,,",ak20260181,",2.1,ml,,ak,,"45km SSW of Kaktovik, Alaska",0.67,68,",ak,",automatic,1537539189945,"M 2.1 - 45km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537539476541,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260181 +,,73087706,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087706&format=geojson,0.0178,,96.0,",nc73087706,",0.39,md,,nc,17.0,"9km E of Mammoth Lakes, CA",0.06,2,",nc,",reviewed,1537538959450,"M 0.4 - 9km E of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537547578767,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087706 +,,70803919,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70803919&format=geojson,0.06688,,175.0,",av70803919,",1.12,ml,,av,9.0,"24km W of Unalaska, Alaska",0.12,19,",av,",reviewed,1537538439740,"M 1.1 - 24km W of Unalaska, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537567171650,https://earthquake.usgs.gov/earthquakes/eventpage/av70803919 +,3.1,2000hivc,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hivc&format=geojson,0.332,7.0,128.0,",us2000hivc,ld60161676,",1.9,ml,,us,,"5km SW of Londonderry, New Hampshire",0.4,58,",us,ld,",reviewed,1537538068360,"M 1.9 - 5km SW of Londonderry, New Hampshire",0,earthquake,",dyfi,geoserve,origin,phase-data,",-300.0,1537804009410,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hivc +,,20260174,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260174&format=geojson,,,,",ak20260174,",1.9,ml,,ak,,"49km SSW of Kaktovik, Alaska",0.6,56,",ak,",automatic,1537537943790,"M 1.9 - 49km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537538173192,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260174 +,,20260171,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260171&format=geojson,,,,",ak20260171,",1.5,ml,,ak,,"82km ENE of Cantwell, Alaska",0.78,35,",ak,",automatic,1537537917603,"M 1.5 - 82km ENE of Cantwell, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537538172961,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260171 +,,00657604,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657604&format=geojson,0.126,,213.7,",nn00657604,",0.5,ml,,nn,3.0,"30km N of Spanish Springs, Nevada",0.0562,4,",nn,",reviewed,1537537433644,"M 0.5 - 30km N of Spanish Springs, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537576180902,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657604 +,,37363066,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37363066&format=geojson,0.03222,,74.0,",ci37363066,",0.77,ml,,ci,16.0,"13km NE of Little Lake, CA",0.13,9,",ci,",reviewed,1537537092180,"M 0.8 - 13km NE of Little Lake, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537542952379,https://earthquake.usgs.gov/earthquakes/eventpage/ci37363066 +,3.8,60297227,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60297227&format=geojson,0.3743,2.0,117.0,",uu60297227,us2000hi4l,",3.21,ml,3.34,uu,21.0,"21km NW of Montpelier, Idaho",0.17,159,",uu,us,",reviewed,1537536891160,"M 3.2 - 21km NW of Montpelier, Idaho",0,earthquake,",dyfi,geoserve,origin,phase-data,shakemap,",-420.0,1538221693040,https://earthquake.usgs.gov/earthquakes/eventpage/uu60297227 +,,60297222,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60297222&format=geojson,0.3497,,119.0,",uu60297222,",1.47,ml,,uu,8.0,"22km WNW of Montpelier, Idaho",0.27,33,",uu,",reviewed,1537536555050,"M 1.5 - 22km WNW of Montpelier, Idaho",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537820842550,https://earthquake.usgs.gov/earthquakes/eventpage/uu60297222 +,,70803914,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70803914&format=geojson,0.2028,,253.0,",av70803914,",1.65,ml,,av,5.0,"50km SW of Nikolski, Alaska",0.18,42,",av,",reviewed,1537536472160,"M 1.7 - 50km SW of Nikolski, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537566408710,https://earthquake.usgs.gov/earthquakes/eventpage/av70803914 +,,20260168,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260168&format=geojson,,,,",ak20260168,",1.3,ml,,ak,,"50km NNE of Yakutat, Alaska",0.83,26,",ak,",automatic,1537536288972,"M 1.3 - 50km NNE of Yakutat, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537536588924,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260168 +,,73089616,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73089616&format=geojson,0.04663,,96.0,",nc73089616,",0.35,md,,nc,6.0,"13km NE of Mount Shasta, CA",0.09,2,",nc,",reviewed,1537535949130,"M 0.4 - 13km NE of Mount Shasta, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537903803098,https://earthquake.usgs.gov/earthquakes/eventpage/nc73089616 +,,1000h3ci,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3ci&format=geojson,1.208,,152.0,",us1000h3ci,",4.1,mb,,us,,"62km SSE of Bilungala, Indonesia",1.07,259,",us,",reviewed,1537535835980,"M 4.1 - 62km SSE of Bilungala, Indonesia",0,earthquake,",geoserve,origin,phase-data,",480.0,1538221451040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3ci +,,20260163,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260163&format=geojson,,,,",ak20260163,",1.3,ml,,ak,,"13km NE of Healy, Alaska",0.25,26,",ak,",automatic,1537535447380,"M 1.3 - 13km NE of Healy, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537535726411,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260163 +,,2000hi4b,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hi4b&format=geojson,,,35.0,",us2000hi4b,",2.6,ml,,us,,"15km NE of Enid, Oklahoma",0.29,104,",us,",reviewed,1537534990700,"M 2.6 - 15km NE of Enid, Oklahoma",0,earthquake,",geoserve,origin,phase-data,",-360.0,1538221138040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hi4b +,,60297217,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60297217&format=geojson,0.3688,,120.0,",uu60297217,",2.32,ml,,uu,19.0,"23km WNW of Montpelier, Idaho",0.17,83,",uu,",reviewed,1537534805820,"M 2.3 - 23km WNW of Montpelier, Idaho",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537820531220,https://earthquake.usgs.gov/earthquakes/eventpage/uu60297217 +,,20260148,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260148&format=geojson,,,,",ak20260148,",1.2,ml,,ak,,"107km NW of Talkeetna, Alaska",0.49,22,",ak,",automatic,1537534391646,"M 1.2 - 107km NW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537534562943,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260148 +,,70603807,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70603807&format=geojson,0.005627,,67.0,",hv70603807,",1.64,ml,,hv,29.0,"3km SW of Volcano, Hawaii",0.1,41,",hv,",reviewed,1537534262120,"M 1.6 - 3km SW of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537559822820,https://earthquake.usgs.gov/earthquakes/eventpage/hv70603807 +,,73087701,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087701&format=geojson,0.1299,,87.0,",nc73087701,",1.62,md,,nc,10.0,"10km NNE of Lewiston, CA",0.12,40,",nc,",reviewed,1537534175530,"M 1.6 - 10km NNE of Lewiston, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537845903402,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087701 +green,,2000hi48,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hi48&format=geojson,6.03,,148.0,",us2000hi48,",5.7,mww,1.87,us,,"Galapagos Islands, Ecuador region",0.98,500,",us,",reviewed,1537534168840,"M 5.7 - Galapagos Islands, Ecuador region",0,earthquake,",geoserve,ground-failure,losspager,moment-tensor,origin,phase-data,shakemap,",-360.0,1537565201040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hi48 +,,20260144,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260144&format=geojson,,,,",ak20260144,",1.6,ml,,ak,,"117km NNW of Arctic Village, Alaska",0.78,39,",ak,",automatic,1537533719598,"M 1.6 - 117km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537533921194,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260144 +,,73087696,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087696&format=geojson,0.002844,,171.0,",nc73087696,",0.56,md,,nc,5.0,"6km WNW of Cobb, CA",0.01,5,",nc,",automatic,1537533707320,"M 0.6 - 6km WNW of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537533801598,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087696 +,,37363042,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37363042&format=geojson,0.03829,,26.0,",ci37363042,",1.91,ml,,ci,38.0,"3km NE of Vincent, CA",0.19,56,",ci,",reviewed,1537533169240,"M 1.9 - 3km NE of Vincent, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537535159720,https://earthquake.usgs.gov/earthquakes/eventpage/ci37363042 +,,37410821,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37410821&format=geojson,0.008641,,73.0,",ci37410821,",0.43,ml,,ci,20.0,"10km NE of Aguanga, CA",0.11,3,",ci,",reviewed,1537532915740,"M 0.4 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537546106436,https://earthquake.usgs.gov/earthquakes/eventpage/ci37410821 +,,37363034,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37363034&format=geojson,0.03407,,35.0,",ci37363034,",0.51,ml,,ci,31.0,"8km ENE of Aguanga, CA",0.17,4,",ci,",reviewed,1537532883670,"M 0.5 - 8km ENE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,",-480.0,1537545993860,https://earthquake.usgs.gov/earthquakes/eventpage/ci37363034 +,,73087691,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087691&format=geojson,0.1381,,256.0,",nc73087691,",1.05,md,,nc,18.0,"17km SW of Toms Place, CA",0.03,17,",nc,",reviewed,1537531920710,"M 1.1 - 17km SW of Toms Place, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537548751474,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087691 +,,61421767,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61421767&format=geojson,0.0482,,75.0,",uw61421767,",1.07,ml,,uw,14.0,"11km NW of Shelton, Washington",0.08,18,",uw,",reviewed,1537531823550,"M 1.1 - 11km NW of Shelton, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537549931210,https://earthquake.usgs.gov/earthquakes/eventpage/uw61421767 +,3.8,70603737,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70603737&format=geojson,0.04613,5.0,143.0,",hv70603737,us2000hi3s,",3.69,ml,4.28,hv,67.0,"18km SE of Volcano, Hawaii",0.11,211,",hv,us,",reviewed,1537531002620,"M 3.7 - 18km SE of Volcano, Hawaii",0,earthquake,",dyfi,geoserve,origin,phase-data,shakemap,",-600.0,1538030638735,https://earthquake.usgs.gov/earthquakes/eventpage/hv70603737 +,,20260138,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260138&format=geojson,,,,",ak20260138,",1.6,ml,,ak,,"96km ENE of Circle, Alaska",0.57,39,",ak,",automatic,1537530975261,"M 1.6 - 96km ENE of Circle, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537531294713,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260138 +,,70603712,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70603712&format=geojson,0.0461,,109.0,",hv70603712,us2000hi3n,",2.74,ml,,hv,46.0,"14km SE of Volcano, Hawaii",0.1,116,",hv,us,",reviewed,1537530497990,"M 2.7 - 14km SE of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537565098230,https://earthquake.usgs.gov/earthquakes/eventpage/hv70603712 +,,60297197,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60297197&format=geojson,0.3714,,117.0,",uu60297197,",1.86,ml,,uu,18.0,"21km NW of Montpelier, Idaho",0.21,53,",uu,",reviewed,1537530131970,"M 1.9 - 21km NW of Montpelier, Idaho",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537819666960,https://earthquake.usgs.gov/earthquakes/eventpage/uu60297197 +,,60297192,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60297192&format=geojson,0.3744,,118.0,",uu60297192,",1.92,ml,,uu,17.0,"22km NW of Montpelier, Idaho",0.26,57,",uu,",reviewed,1537529760520,"M 1.9 - 22km NW of Montpelier, Idaho",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537549717860,https://earthquake.usgs.gov/earthquakes/eventpage/uu60297192 +,,60297187,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60297187&format=geojson,0.3673,,120.0,",uu60297187,",1.76,ml,,uu,21.0,"23km WNW of Montpelier, Idaho",0.22,48,",uu,",reviewed,1537529620550,"M 1.8 - 23km WNW of Montpelier, Idaho",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537570365110,https://earthquake.usgs.gov/earthquakes/eventpage/uu60297187 +,,00657556,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657556&format=geojson,0.012,,187.18,",nn00657556,",0.3,ml,,nn,16.0,"72km E of Beatty, Nevada",0.118,1,",nn,",reviewed,1537529369780,"M 0.3 - 72km E of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537563974350,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657556 +,,20260133,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260133&format=geojson,,,,",ak20260133,",1.7,ml,,ak,,"82km NNW of Talkeetna, Alaska",0.54,44,",ak,",automatic,1537528820518,"M 1.7 - 82km NNW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537529259207,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260133 +,,61782821,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61782821&format=geojson,0.01623,,285.0,",av61782821,",0.45,ml,,av,5.0,"46km W of Tanaga Volcano, Alaska",0.16,3,",av,",reviewed,1537528385640,"M 0.5 - 46km W of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537565774000,https://earthquake.usgs.gov/earthquakes/eventpage/av61782821 +,,20260128,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260128&format=geojson,,,,",ak20260128,",0.9,ml,,ak,,"7km WNW of Anchor Point, Alaska",0.35,12,",ak,",automatic,1537528315031,"M 0.9 - 7km WNW of Anchor Point, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537528927794,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260128 +,,20260123,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260123&format=geojson,,,,",ak20260123,",2.2,ml,,ak,,"78km SW of Kaktovik, Alaska",0.8,74,",ak,",automatic,1537527972559,"M 2.2 - 78km SW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537528646916,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260123 +,,20260121,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260121&format=geojson,,,,",ak20260121,",1.2,ml,,ak,,"92km NNW of Talkeetna, Alaska",0.29,22,",ak,",automatic,1537527928314,"M 1.2 - 92km NNW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537528195229,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260121 +,,20260119,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260119&format=geojson,,,,",ak20260119,",1.8,ml,,ak,,"72km SSW of Kaktovik, Alaska",0.85,50,",ak,",automatic,1537527616132,"M 1.8 - 72km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537527964062,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260119 +,,73087681,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087681&format=geojson,0.004353,,82.0,",nc73087681,",0.24,md,,nc,18.0,"4km NE of Mammoth Lakes, CA",0.03,1,",nc,",reviewed,1537527088290,"M 0.2 - 4km NE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537548120226,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087681 +,,20260117,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260117&format=geojson,,,,",ak20260117,",1.4,ml,,ak,,"90km NW of Arctic Village, Alaska",0.99,30,",ak,",automatic,1537527082926,"M 1.4 - 90km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537527372193,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260117 +,,00657552,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657552&format=geojson,0.207,,271.59,",nn00657552,",0.3,ml,,nn,12.0,"59km NNE of Pahrump, Nevada",0.2089,1,",nn,",reviewed,1537526964291,"M 0.3 - 59km NNE of Pahrump, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537563048496,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657552 +,,2018264005,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018264005&format=geojson,0.467,,301.0,",pr2018264005,",2.11,md,,pr,5.0,"49km NNW of San Antonio, Puerto Rico",0.15,68,",pr,",reviewed,1537526834840,"M 2.1 - 49km NNW of San Antonio, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1537529954544,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018264005 +,,73087676,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087676&format=geojson,0.1363,,270.0,",nc73087676,",2.1,md,,nc,15.0,"17km WNW of Petrolia, CA",0.08,68,",nc,",reviewed,1537526368620,"M 2.1 - 17km WNW of Petrolia, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537568103149,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087676 +,,00657547,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657547&format=geojson,0.208,,127.56,",nn00657547,",0.9,ml,,nn,35.0,"60km NNE of Pahrump, Nevada",0.1704,12,",nn,",reviewed,1537526271176,"M 0.9 - 60km NNE of Pahrump, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537561564568,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657547 +,,60297152,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60297152&format=geojson,0.3727,,139.0,",uu60297152,",1.57,ml,,uu,11.0,"21km NW of Montpelier, Idaho",0.21,38,",uu,",reviewed,1537525716730,"M 1.6 - 21km NW of Montpelier, Idaho",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537570023980,https://earthquake.usgs.gov/earthquakes/eventpage/uu60297152 +,,20260095,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260095&format=geojson,,,,",ak20260095,",3.0,ml,,ak,,"75km SW of Kaktovik, Alaska",0.81,138,",ak,",automatic,1537525180929,"M 3.0 - 75km SW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537525818139,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260095 +,,20260091,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260091&format=geojson,,,,",ak20260091,",2.4,ml,,ak,,"53km ESE of Lazy Mountain, Alaska",0.93,89,",ak,",automatic,1537525173004,"M 2.4 - 53km ESE of Lazy Mountain, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537525717579,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260091 +,,00657546,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657546&format=geojson,0.052,,215.72,",nn00657546,",1.0,ml,,nn,7.0,"39km NNW of Carlin, Nevada",0.036,15,",nn,",reviewed,1537524993390,"M 1.0 - 39km NNW of Carlin, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537550435439,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657546 +,,37363002,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37363002&format=geojson,0.01568,,187.0,",ci37363002,",0.27,ml,,ci,14.0,"8km NE of Aguanga, CA",0.08,1,",ci,",reviewed,1537524818530,"M 0.3 - 8km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537535144458,https://earthquake.usgs.gov/earthquakes/eventpage/ci37363002 +,,60297142,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60297142&format=geojson,0.3673,,117.0,",uu60297142,",1.61,ml,,uu,14.0,"19km WNW of Montpelier, Idaho",0.22,40,",uu,",reviewed,1537524799460,"M 1.6 - 19km WNW of Montpelier, Idaho",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537818741100,https://earthquake.usgs.gov/earthquakes/eventpage/uu60297142 +,,37362994,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37362994&format=geojson,0.03167,,39.0,",ci37362994,",0.93,ml,,ci,38.0,"8km ENE of Aguanga, CA",0.2,13,",ci,",reviewed,1537524394280,"M 0.9 - 8km ENE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537535164410,https://earthquake.usgs.gov/earthquakes/eventpage/ci37362994 +,,60297137,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60297137&format=geojson,0.3716,,117.0,",uu60297137,",2.25,ml,,uu,22.0,"21km NW of Montpelier, Idaho",0.25,78,",uu,",reviewed,1537524389750,"M 2.3 - 21km NW of Montpelier, Idaho",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537569744410,https://earthquake.usgs.gov/earthquakes/eventpage/uu60297137 +,,00657602,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657602&format=geojson,0.343,,159.74,",nn00657602,",0.7,ml,,nn,5.0,"24km WSW of Hawthorne, Nevada",0.1029,8,",nn,",reviewed,1537524343585,"M 0.7 - 24km WSW of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537575627596,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657602 +,,73087661,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087661&format=geojson,0.01614,,56.0,",nc73087661,",0.73,md,,nc,22.0,"5km E of Mammoth Lakes, CA",0.03,8,",nc,",reviewed,1537523649090,"M 0.7 - 5km E of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537549173334,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087661 +,,60297127,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60297127&format=geojson,0.3839,,137.0,",uu60297127,",1.38,ml,,uu,11.0,"21km NW of Montpelier, Idaho",0.09,29,",uu,",reviewed,1537523510430,"M 1.4 - 21km NW of Montpelier, Idaho",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537818431530,https://earthquake.usgs.gov/earthquakes/eventpage/uu60297127 +,,20260090,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260090&format=geojson,,,,",ak20260090,",1.1,ml,,ak,,"7km NNE of Talkeetna, Alaska",0.57,19,",ak,",automatic,1537523028779,"M 1.1 - 7km NNE of Talkeetna, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537523179899,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260090 +,,2000hi2k,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hi2k&format=geojson,1.419,,191.0,",us2000hi2k,",4.3,mb,,us,,"86km SSW of Masachapa, Nicaragua",0.81,284,",us,",reviewed,1537522335690,"M 4.3 - 86km SSW of Masachapa, Nicaragua",0,earthquake,",geoserve,origin,phase-data,",-360.0,1537524754040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hi2k +,,20260087,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260087&format=geojson,,,,",ak20260087,",1.0,ml,,ak,,"62km NW of Ester, Alaska",0.4,15,",ak,",automatic,1537521603734,"M 1.0 - 62km NW of Ester, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537522087179,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260087 +,,61421757,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61421757&format=geojson,0.017,,121.0,",uw61421757,",0.15,md,,uw,5.0,"22km E of Mount Hood Village, Oregon",0.15,0,",uw,",reviewed,1537521600060,"M 0.2 - 22km E of Mount Hood Village, Oregon",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537550494910,https://earthquake.usgs.gov/earthquakes/eventpage/uw61421757 +,,61782796,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61782796&format=geojson,0.0384,,237.0,",av61782796,",0.24,ml,,av,11.0,"76km NW of Nikiski, Alaska",0.09,1,",av,",reviewed,1537521266440,"M 0.2 - 76km NW of Nikiski, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537565264700,https://earthquake.usgs.gov/earthquakes/eventpage/av61782796 +,,73087656,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087656&format=geojson,0.09964,,69.0,",nn00657534,nc73087656,",2.29,md,,nc,37.0,"39km N of Toms Place, CA",0.04,81,",nn,nc,",reviewed,1537521183300,"M 2.3 - 39km N of Toms Place, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537657849651,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087656 +,,60297117,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60297117&format=geojson,0.3765,,152.0,",uu60297117,",1.8,ml,,uu,8.0,"21km NW of Montpelier, Idaho",0.11,50,",uu,",reviewed,1537521175480,"M 1.8 - 21km NW of Montpelier, Idaho",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537812016960,https://earthquake.usgs.gov/earthquakes/eventpage/uu60297117 +,,20260079,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260079&format=geojson,,,,",ak20260079,",2.4,ml,,ak,,"42km SSW of Cantwell, Alaska",0.55,89,",ak,",automatic,1537521160827,"M 2.4 - 42km SSW of Cantwell, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537521986704,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260079 +,,2018264004,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018264004&format=geojson,0.1448,,139.0,",pr2018264004,",1.76,md,,pr,3.0,"2km ESE of Sabana Grande, Puerto Rico",0.54,48,",pr,",reviewed,1537520999420,"M 1.8 - 2km ESE of Sabana Grande, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1537529893310,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018264004 +,,60297112,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60297112&format=geojson,0.3762,,117.0,",uu60297112,",2.49,ml,,uu,20.0,"21km NW of Montpelier, Idaho",0.21,95,",uu,",reviewed,1537520846080,"M 2.5 - 21km NW of Montpelier, Idaho",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537549284260,https://earthquake.usgs.gov/earthquakes/eventpage/uu60297112 +,,60297107,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60297107&format=geojson,0.4641,,125.0,",uu60297107,",1.83,ml,,uu,21.0,"21km S of Soda Springs, Idaho",0.32,52,",uu,",reviewed,1537520792170,"M 1.8 - 21km S of Soda Springs, Idaho",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537817812780,https://earthquake.usgs.gov/earthquakes/eventpage/uu60297107 +,,20260078,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260078&format=geojson,,,,",ak20260078,",1.8,ml,,ak,,"58km SSW of Kaktovik, Alaska",0.67,50,",ak,",automatic,1537520707470,"M 1.8 - 58km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537520972885,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260078 +,,20260076,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260076&format=geojson,,,,",ak20260076,",1.5,ml,,ak,,"114km SSE of Prudhoe Bay, Alaska",0.88,35,",ak,",automatic,1537520590390,"M 1.5 - 114km SSE of Prudhoe Bay, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537520812299,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260076 +,,73087651,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087651&format=geojson,0.004252,,113.0,",nc73087651,",0.66,md,,nc,10.0,"7km NW of The Geysers, CA",0.04,7,",nc,",automatic,1537519796240,"M 0.7 - 7km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537519892700,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087651 +,,60297102,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60297102&format=geojson,0.3773,,157.0,",uu60297102,",1.06,md,,uu,8.0,"23km SSE of Soda Springs, Idaho",0.21,17,",uu,",reviewed,1537519737940,"M 1.1 - 23km SSE of Soda Springs, Idaho",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537811644820,https://earthquake.usgs.gov/earthquakes/eventpage/uu60297102 +,,73087646,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087646&format=geojson,0.01537,,64.0,",nc73087646,",0.51,md,,nc,14.0,"10km NW of Parkfield, CA",0.05,4,",nc,",reviewed,1537519652050,"M 0.5 - 10km NW of Parkfield, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537544724137,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087646 +,,37362970,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37362970&format=geojson,0.02783,,56.0,",ci37362970,",0.18,ml,,ci,26.0,"9km NE of Aguanga, CA",0.13,0,",ci,",reviewed,1537519585820,"M 0.2 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537546364395,https://earthquake.usgs.gov/earthquakes/eventpage/ci37362970 +,,60016484,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60016484&format=geojson,0.3808,,122.0,",uu60016484,",2.6,ml,,uu,19.0,"22km SSE of Soda Springs, Idaho",0.2,104,",uu,",reviewed,1537519178360,"M 2.6 - 22km SSE of Soda Springs, Idaho",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537559337460,https://earthquake.usgs.gov/earthquakes/eventpage/uu60016484 +,,60297097,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60297097&format=geojson,0.3734,,134.0,",uu60297097,",2.03,ml,,uu,20.0,"23km SSE of Soda Springs, Idaho",0.21,63,",uu,",reviewed,1537519156380,"M 2.0 - 23km SSE of Soda Springs, Idaho",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537558964670,https://earthquake.usgs.gov/earthquakes/eventpage/uu60297097 +,,20260069,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260069&format=geojson,,,,",ak20260069,",1.9,ml,,ak,,"61km SSW of Kaktovik, Alaska",0.8,56,",ak,",automatic,1537519020524,"M 1.9 - 61km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537519268402,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260069 +,,37362962,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37362962&format=geojson,0.08695,,71.0,",nn00657533,ci37362962,",1.03,ml,,ci,24.0,"29km ENE of Coso Junction, CA",0.13,16,",nn,ci,",reviewed,1537518974620,"M 1.0 - 29km ENE of Coso Junction, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537559893942,https://earthquake.usgs.gov/earthquakes/eventpage/ci37362962 +,,00657600,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657600&format=geojson,0.306,,144.42,",nn00657600,",0.4,ml,,nn,7.0,"15km SE of Gardnerville Ranchos, Nevada",0.1399,2,",nn,",reviewed,1537518619801,"M 0.4 - 15km SE of Gardnerville Ranchos, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537575074272,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657600 +,,73087641,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087641&format=geojson,0.01013,,172.0,",nc73087641,",0.15,md,,nc,12.0,"6km ENE of Mammoth Lakes, CA",0.06,0,",nc,",reviewed,1537518538290,"M 0.2 - 6km ENE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537544543559,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087641 +,,61421722,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61421722&format=geojson,0.2012,,112.0,",uw61421722,",1.12,ml,,uw,22.0,"3km SSE of Rainier, Washington",0.16,19,",uw,",reviewed,1537518281560,"M 1.1 - 3km SSE of Rainier, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537548453320,https://earthquake.usgs.gov/earthquakes/eventpage/uw61421722 +,,2000hi23,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hi23&format=geojson,1.122,,98.0,",us2000hi23,",4.3,mb,,us,,"56km E of Mulchen, Chile",0.87,284,",us,",reviewed,1537518229880,"M 4.3 - 56km E of Mulchen, Chile",0,earthquake,",geoserve,origin,phase-data,",-240.0,1537530361040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hi23 +,,00657599,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657599&format=geojson,0.165,,292.53,",nn00657599,",-0.1,ml,,nn,3.0,"45km SE of Hawthorne, Nevada",0.0478,0,",nn,",reviewed,1537518175992,"M -0.1 - 45km SE of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537574887359,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657599 +,,00657598,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657598&format=geojson,0.044,,155.8,",nn00657598,",0.0,ml,,nn,5.0,"48km S of Goldfield, Nevada",0.1101,0,",nn,",reviewed,1537518088323,"M 0.0 - 48km S of Goldfield, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537574702095,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657598 +,,20260062,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260062&format=geojson,,,,",ak20260062,",1.1,ml,,ak,,"44km W of Anchor Point, Alaska",0.59,19,",ak,",automatic,1537517797469,"M 1.1 - 44km W of Anchor Point, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537517994906,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260062 +,,37362954,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37362954&format=geojson,0.0458,,85.0,",ci37362954,",1.12,ml,,ci,17.0,"8km ENE of Imperial, CA",0.15,19,",ci,",reviewed,1537517707400,"M 1.1 - 8km ENE of Imperial, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537542487605,https://earthquake.usgs.gov/earthquakes/eventpage/ci37362954 +,,37362946,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37362946&format=geojson,0.05382,,67.0,",ci37362946,",0.68,ml,,ci,31.0,"13km SSE of Anza, CA",0.13,7,",ci,",reviewed,1537517477220,"M 0.7 - 13km SSE of Anza, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537535232070,https://earthquake.usgs.gov/earthquakes/eventpage/ci37362946 +,,20260060,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260060&format=geojson,,,,",ak20260060,",1.8,ml,,ak,,"88km SW of Larsen Bay, Alaska",0.82,50,",ak,",automatic,1537517421183,"M 1.8 - 88km SW of Larsen Bay, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537517683845,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260060 +,,60297092,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60297092&format=geojson,0.3672,,113.0,",uu60297092,",1.88,ml,,uu,14.0,"18km WNW of Montpelier, Idaho",0.17,54,",uu,",reviewed,1537517316870,"M 1.9 - 18km WNW of Montpelier, Idaho",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537558438630,https://earthquake.usgs.gov/earthquakes/eventpage/uu60297092 +,,20260058,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260058&format=geojson,,,,",ak20260058,",1.3,ml,,ak,,"124km NNW of Arctic Village, Alaska",0.7,26,",ak,",automatic,1537517007177,"M 1.3 - 124km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537517252501,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260058 +,,20260053,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260053&format=geojson,,,,",ak20260053,",1.3,ml,,ak,,"48km N of Yakutat, Alaska",0.5,26,",ak,",automatic,1537516682901,"M 1.3 - 48km N of Yakutat, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537516971666,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260053 +,,20260049,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260049&format=geojson,,,,",ak20260049,",1.6,ml,,ak,,"34km WNW of Talkeetna, Alaska",0.72,39,",ak,",automatic,1537516183781,"M 1.6 - 34km WNW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537516470019,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260049 +,,20260046,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260046&format=geojson,,,,",ak20260046,",2.0,ml,,ak,,"70km SSW of Kaktovik, Alaska",0.74,62,",ak,",automatic,1537515831581,"M 2.0 - 70km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537516178849,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260046 +,,60240966,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nm60240966&format=geojson,0.03572,,61.0,",nm60240966,",1.87,md,,nm,20.0,"9km WSW of Lilbourn, Missouri",0.03,54,",nm,",reviewed,1537515722940,"M 1.9 - 9km WSW of Lilbourn, Missouri",0,earthquake,",geoserve,origin,phase-data,",-360.0,1537534621150,https://earthquake.usgs.gov/earthquakes/eventpage/nm60240966 +,,20260043,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260043&format=geojson,,,,",ak20260043,",0.7,ml,,ak,,"87km N of Yakutat, Alaska",0.39,8,",ak,",automatic,1537515706449,"M 0.7 - 87km N of Yakutat, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537515827527,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260043 +,,20260038,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260038&format=geojson,,,,",ak20260038,",1.3,ml,,ak,,"52km ENE of Cantwell, Alaska",0.59,26,",ak,",automatic,1537515573820,"M 1.3 - 52km ENE of Cantwell, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537515827299,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260038 +,,20260036,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260036&format=geojson,,,,",ak20260036,",0.6,ml,,ak,,"85km ENE of Sutton-Alpine, Alaska",0.49,6,",ak,",reviewed,1537514937306,"M 0.6 - 85km ENE of Sutton-Alpine, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537550879391,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260036 +,,20260031,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260031&format=geojson,,,,",ak20260031,",1.1,ml,,ak,,"100km NNW of Yakutat, Alaska",0.71,19,",ak,",automatic,1537514200630,"M 1.1 - 100km NNW of Yakutat, Alaska",0,earthquake,",geoserve,origin,",-480.0,1537514363467,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260031 +,,70603457,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70603457&format=geojson,0.02806,,78.0,",hv70603457,us2000hi1h,",2.49,ml,,hv,42.0,"25km E of Honaunau-Napoopoo, Hawaii",0.14,95,",hv,us,",reviewed,1537513440760,"M 2.5 - 25km E of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537580506970,https://earthquake.usgs.gov/earthquakes/eventpage/hv70603457 +,,20260026,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260026&format=geojson,,,,",ak20260026,",1.4,ml,,ak,,"95km NNW of Yakutat, Alaska",0.7,30,",ak,",automatic,1537513303420,"M 1.4 - 95km NNW of Yakutat, Alaska",0,earthquake,",geoserve,origin,",-480.0,1537513571478,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260026 +,,20260021,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260021&format=geojson,,,,",ak20260021,",2.0,ml,,ak,,"117km SSE of Prudhoe Bay, Alaska",0.64,62,",ak,",automatic,1537512988087,"M 2.0 - 117km SSE of Prudhoe Bay, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537513340188,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260021 +,,2000hi1d,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hi1d&format=geojson,3.489,,132.0,",us2000hi1d,",4.2,mb,,us,,"299km N of Ndoi Island, Fiji",0.64,271,",us,",reviewed,1537512562940,"M 4.2 - 299km N of Ndoi Island, Fiji",0,earthquake,",geoserve,origin,phase-data,",-720.0,1537513915040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hi1d +,,20260019,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260019&format=geojson,,,,",ak20260019,",1.2,ml,,ak,,"34km SW of New Allakaket, Alaska",0.51,22,",ak,",automatic,1537512169786,"M 1.2 - 34km SW of New Allakaket, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537512447732,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260019 +,,00657597,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657597&format=geojson,0.191,,199.72,",nn00657597,",-0.1,ml,,nn,7.0,"49km SSW of Beatty, Nevada",0.1539,0,",nn,",reviewed,1537511895211,"M -0.1 - 49km SSW of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537574331134,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657597 +,,61782771,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61782771&format=geojson,0.05981,,197.0,",av61782771,",0.39,ml,,av,9.0,"103km NW of Larsen Bay, Alaska",0.13,2,",av,",reviewed,1537511623980,"M 0.4 - 103km NW of Larsen Bay, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537562230380,https://earthquake.usgs.gov/earthquakes/eventpage/av61782771 +,,20260012,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260012&format=geojson,,,,",ak20260012,",2.0,ml,,ak,,"11km W of Kalifornsky, Alaska",0.55,62,",ak,",automatic,1537511480100,"M 2.0 - 11km W of Kalifornsky, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537511825849,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260012 +,,80310739,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80310739&format=geojson,0.2,,84.0,",mb80310739,",0.86,ml,,mb,8.0,"16km NE of Three Forks, Montana",0.08,11,",mb,",reviewed,1537511304020,"M 0.9 - 16km NE of Three Forks, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537540340840,https://earthquake.usgs.gov/earthquakes/eventpage/mb80310739 +,,20260011,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260011&format=geojson,,,,",ak20260011,",1.1,ml,,ak,,"31km N of Valdez, Alaska",1.03,19,",ak,",automatic,1537510955295,"M 1.1 - 31km N of Valdez, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537511133437,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260011 +,,37196708,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37196708&format=geojson,0.02998,,66.0,",ci37196708,",0.65,ml,,ci,20.0,"10km N of Anza, CA",0.11,6,",ci,",reviewed,1537510205260,"M 0.7 - 10km N of Anza, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537545980665,https://earthquake.usgs.gov/earthquakes/eventpage/ci37196708 +,,37362938,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37362938&format=geojson,0.03261,,65.0,",ci37362938,",0.31,ml,,ci,21.0,"9km N of Anza, CA",0.06,1,",ci,",reviewed,1537510202300,"M 0.3 - 9km N of Anza, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537545708017,https://earthquake.usgs.gov/earthquakes/eventpage/ci37362938 +,,00657596,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657596&format=geojson,0.093,,95.99,",nn00657596,",0.1,ml,,nn,6.0,"13km SSE of Mogul, Nevada",0.1352,0,",nn,",reviewed,1537510040922,"M 0.1 - 13km SSE of Mogul, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537573960462,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657596 +,,20260003,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260003&format=geojson,,,,",ak20260003,",2.1,ml,,ak,,"116km SSE of Prudhoe Bay, Alaska",0.73,68,",ak,",automatic,1537509591891,"M 2.1 - 116km SSE of Prudhoe Bay, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537509890322,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260003 +,,60297087,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60297087&format=geojson,0.3779,,138.0,",uu60297087,",1.4,ml,,uu,9.0,"22km NW of Montpelier, Idaho",0.13,30,",uu,",reviewed,1537509006670,"M 1.4 - 22km NW of Montpelier, Idaho",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537558282160,https://earthquake.usgs.gov/earthquakes/eventpage/uu60297087 +,,20260002,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20260002&format=geojson,,,,",ak20260002,",1.3,ml,,ak,,"16km S of Anchor Point, Alaska",0.81,26,",ak,",automatic,1537508429734,"M 1.3 - 16km S of Anchor Point, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537508637036,https://earthquake.usgs.gov/earthquakes/eventpage/ak20260002 +,,37362930,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37362930&format=geojson,0.01486,,47.0,",ci37362930,",0.42,ml,,ci,17.0,"9km NE of Aguanga, CA",0.14,3,",ci,",reviewed,1537507946950,"M 0.4 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537535184341,https://earthquake.usgs.gov/earthquakes/eventpage/ci37362930 +,,37362922,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37362922&format=geojson,0.1436,,119.0,",ci37362922,",0.96,ml,,ci,45.0,"15km SSW of Ocotillo Wells, CA",0.21,14,",ci,",reviewed,1537507822700,"M 1.0 - 15km SSW of Ocotillo Wells, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537542078559,https://earthquake.usgs.gov/earthquakes/eventpage/ci37362922 +,,37362914,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37362914&format=geojson,0.02079,,44.0,",ci37362914,",0.8,ml,,ci,32.0,"9km NE of Aguanga, CA",0.18,10,",ci,",reviewed,1537507435130,"M 0.8 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537535295240,https://earthquake.usgs.gov/earthquakes/eventpage/ci37362914 +,,37362906,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37362906&format=geojson,0.01651,,108.0,",ci37362906,",0.26,ml,,ci,18.0,"9km NE of Aguanga, CA",0.09,1,",ci,",reviewed,1537506962390,"M 0.3 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537535217870,https://earthquake.usgs.gov/earthquakes/eventpage/ci37362906 +,,20259977,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259977&format=geojson,,,,",ak20259977,",1.5,ml,,ak,,"67km ESE of Cape Yakataga, Alaska",1.17,35,",ak,",automatic,1537506947004,"M 1.5 - 67km ESE of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537507694557,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259977 +,,20259990,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259990&format=geojson,,,,",ak20259990,",1.9,ml,,ak,,"55km SSW of Kaktovik, Alaska",0.87,56,",ak,",automatic,1537506807407,"M 1.9 - 55km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537507694322,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259990 +,,60297082,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60297082&format=geojson,0.3741,,117.0,",uu60297082,",1.89,ml,,uu,17.0,"22km NW of Montpelier, Idaho",0.16,55,",uu,",reviewed,1537506709120,"M 1.9 - 22km NW of Montpelier, Idaho",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537558187120,https://earthquake.usgs.gov/earthquakes/eventpage/uu60297082 +,,20259945,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259945&format=geojson,,,,",ak20259945,us2000hi0l,",2.4,ml,,ak,,"11km NNW of Meadow Lakes, Alaska",0.7,89,",ak,us,",automatic,1537506550021,"M 2.4 - 11km NNW of Meadow Lakes, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537530001040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259945 +,,2000hi0k,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hi0k&format=geojson,0.114,,139.0,",us2000hi0k,",2.3,mb_lg,,us,,"15km ENE of Harper, Kansas",0.15,81,",us,",reviewed,1537506294870,"M 2.3 - 15km ENE of Harper, Kansas",0,earthquake,",geoserve,origin,phase-data,",-360.0,1537529785040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hi0k +,,37362898,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37362898&format=geojson,0.03049,,170.0,",ci37362898,",1.29,ml,,ci,26.0,"2km SSE of Huntington Beach, CA",0.26,26,",ci,",reviewed,1537506201560,"M 1.3 - 2km SSE of Huntington Beach, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537541371038,https://earthquake.usgs.gov/earthquakes/eventpage/ci37362898 +,,73087606,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087606&format=geojson,0.08345,,277.0,",nc73087606,",0.49,md,,nc,7.0,"17km SE of Mammoth Lakes, CA",0.03,4,",nc,",reviewed,1537505815770,"M 0.5 - 17km SE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537547759683,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087606 +,,1000h3cb,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3cb&format=geojson,27.438,,160.0,",us1000h3cb,",4.5,mb,,us,,Central East Pacific Rise,0.86,312,",us,",reviewed,1537505336280,M 4.5 - Central East Pacific Rise,0,earthquake,",geoserve,origin,phase-data,",-420.0,1539054102040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3cb +,,20259941,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259941&format=geojson,,,,",ak20259941,",1.1,ml,,ak,,"29km SE of Valdez, Alaska",0.58,19,",ak,",automatic,1537504932846,"M 1.1 - 29km SE of Valdez, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537505125582,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259941 +,,60297077,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60297077&format=geojson,0.4352,,77.0,",uu60297077,",2.09,ml,,uu,19.0,"9km NW of Mountain View, Wyoming",0.16,67,",uu,",reviewed,1537504885770,"M 2.1 - 9km NW of Mountain View, Wyoming",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537567434950,https://earthquake.usgs.gov/earthquakes/eventpage/uu60297077 +,,37196700,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37196700&format=geojson,0.05153,,93.0,",ci37196700,",0.68,ml,,ci,22.0,"9km NNE of Cabazon, CA",0.16,7,",ci,",reviewed,1537504614920,"M 0.7 - 9km NNE of Cabazon, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537540402686,https://earthquake.usgs.gov/earthquakes/eventpage/ci37196700 +,,00657595,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657595&format=geojson,0.276,,154.33,",nn00657595,",0.5,ml,,nn,5.0,"31km NW of Hawthorne, Nevada",0.1253,4,",nn,",reviewed,1537504614133,"M 0.5 - 31km NW of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537573588808,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657595 +,,37362882,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37362882&format=geojson,0.04525,,94.0,",ci37362882,",0.86,ml,,ci,42.0,"10km N of Cabazon, CA",0.13,11,",ci,",reviewed,1537504611000,"M 0.9 - 10km N of Cabazon, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537540054300,https://earthquake.usgs.gov/earthquakes/eventpage/ci37362882 +,,73087596,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087596&format=geojson,0.009453,,81.0,",nc73087596,",1.03,md,,nc,21.0,"3km SSW of Anderson Springs, CA",0.05,16,",nc,",reviewed,1537504193350,"M 1.0 - 3km SSW of Anderson Springs, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1538446082667,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087596 +,,20259931,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259931&format=geojson,,,,",ak20259931,us2000hi09,",3.6,ml,3.52,ak,,"68km SSW of Kaktovik, Alaska",1.09,199,",ak,us,",reviewed,1537504106314,"M 3.6 - 68km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,moment-tensor,origin,phase-data,shakemap,",-540.0,1538691081040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259931 +,,00657594,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657594&format=geojson,0.293,,162.53,",nn00657594,",1.5,ml,,nn,5.0,"38km NNW of Elko, Nevada",0.1313,35,",nn,",reviewed,1537503889924,"M 1.5 - 38km NNW of Elko, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537573402929,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657594 +,,00657532,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657532&format=geojson,0.145,,205.06,",nn00657532,",0.1,ml,,nn,9.0,"39km SSE of Goldfield, Nevada",0.1022,0,",nn,",reviewed,1537503779663,"M 0.1 - 39km SSE of Goldfield, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537559893908,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657532 +,,00657593,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657593&format=geojson,0.057,,77.91,",nn00657593,",-0.3,ml,,nn,13.0,"50km E of Beatty, Nevada",0.1452,0,",nn,",reviewed,1537503634870,"M -0.3 - 50km E of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537573031809,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657593 +,,20259928,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259928&format=geojson,,,,",ak20259928,",1.7,ml,,ak,,"143km W of Cantwell, Alaska",1.28,44,",ak,",automatic,1537503628654,"M 1.7 - 143km W of Cantwell, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537504032756,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259928 +,,20259926,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259926&format=geojson,,,,",ak20259926,",1.1,ml,,ak,,"14km NW of Anchorage, Alaska",0.67,19,",ak,",automatic,1537503531250,"M 1.1 - 14km NW of Anchorage, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537503801544,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259926 +,,73087591,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087591&format=geojson,0.08588,,109.0,",nc73087591,",1.05,md,,nc,23.0,"3km W of San Francisco Zoo, CA",0.03,17,",nc,",reviewed,1537503377240,"M 1.1 - 3km W of San Francisco Zoo, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537543131032,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087591 +,,00657592,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657592&format=geojson,0.002,,176.36,",nn00657592,",0.3,ml,,nn,27.0,"70km E of Beatty, Nevada",0.1912,1,",nn,",reviewed,1537502523702,"M 0.3 - 70km E of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537657468770,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657592 +,,73087586,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087586&format=geojson,0.01893,,61.0,",nc73087586,",1.66,md,,nc,44.0,"8km ENE of Gilroy, CA",0.06,42,",nc,",reviewed,1537502479650,"M 1.7 - 8km ENE of Gilroy, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537558082930,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087586 +,,2018264003,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018264003&format=geojson,0.4337,,305.0,",pr2018264003,",2.63,md,,pr,5.0,"30km NNE of Otra Banda, Dominican Republic",0.31,106,",pr,",reviewed,1537502374500,"M 2.6 - 30km NNE of Otra Banda, Dominican Republic",0,earthquake,",geoserve,origin,phase-data,",-240.0,1537515307253,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018264003 +,,37362866,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37362866&format=geojson,0.05371,,81.0,",ci37362866,",0.96,ml,,ci,29.0,"12km WSW of Morongo Valley, CA",0.17,14,",ci,",reviewed,1537501993930,"M 1.0 - 12km WSW of Morongo Valley, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537535249595,https://earthquake.usgs.gov/earthquakes/eventpage/ci37362866 +,,61421562,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61421562&format=geojson,0.2774,,81.0,",uw61421562,",0.96,ml,,uw,16.0,"8km W of Home, Washington",0.18,14,",uw,",reviewed,1537501686720,"M 1.0 - 8km W of Home, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537549004500,https://earthquake.usgs.gov/earthquakes/eventpage/uw61421562 +,,00657591,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657591&format=geojson,0.209,,298.09,",nn00657591,",0.6,ml,,nn,5.0,"33km SSW of Hawthorne, Nevada",0.0641,6,",nn,",reviewed,1537501571230,"M 0.6 - 33km SSW of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537571542194,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657591 +green,,2000hhzr,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hhzr&format=geojson,1.971,,37.0,",us2000hhzr,",5.7,mwb,1.0,us,,"175km SSE of Lambasa, Fiji",1.18,500,",us,",reviewed,1537501301530,"M 5.7 - 175km SSE of Lambasa, Fiji",0,earthquake,",geoserve,losspager,moment-tensor,origin,phase-data,shakemap,",-720.0,1538112671764,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hhzr +green,,2000hhzn,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hhzn&format=geojson,1.91,,19.0,",us2000hhzn,",5.9,mww,1.91,us,,"172km E of Suva, Fiji",1.02,536,",us,",reviewed,1537501240640,"M 5.9 - 172km E of Suva, Fiji",0,earthquake,",geoserve,losspager,moment-tensor,origin,phase-data,shakemap,",-720.0,1538112401134,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hhzn +,,70603167,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70603167&format=geojson,0.02722,,104.0,",hv70603167,",2.12,ml,,hv,29.0,"25km E of Honaunau-Napoopoo, Hawaii",0.1,69,",hv,",reviewed,1537501015270,"M 2.1 - 25km E of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537561019190,https://earthquake.usgs.gov/earthquakes/eventpage/hv70603167 +,,70803904,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70803904&format=geojson,0.2587,,255.0,",av70803904,",1.91,ml,,av,5.0,"47km SW of Nikolski, Alaska",0.18,56,",av,",reviewed,1537500900450,"M 1.9 - 47km SW of Nikolski, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537560869770,https://earthquake.usgs.gov/earthquakes/eventpage/av70803904 +,,1000h3c5,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3c5&format=geojson,2.664,,120.0,",us1000h3c5,",4.3,mb,,us,,"34km WNW of Severo-Kuril'sk, Russia",0.76,284,",us,",reviewed,1537500717530,"M 4.3 - 34km WNW of Severo-Kuril'sk, Russia",0,earthquake,",geoserve,origin,phase-data,",660.0,1538261313040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3c5 +,2.2,20259899,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259899&format=geojson,,4.0,,",ak20259899,us2000hhzm,",3.5,ml,2.68,ak,,"14km S of Y, Alaska",0.61,189,",ak,us,",reviewed,1537500709159,"M 3.5 - 14km S of Y, Alaska",0,earthquake,",dyfi,geoserve,origin,phase-data,shakemap,",-540.0,1538260806040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259899 +,,2000hhzl,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hhzl&format=geojson,1.528,,160.0,",us2000hhzl,",4.3,mb,,us,,"68km SSE of Salina Cruz, Mexico",1.49,284,",us,",reviewed,1537500465810,"M 4.3 - 68km SSE of Salina Cruz, Mexico",0,earthquake,",geoserve,origin,phase-data,",-360.0,1539122127040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hhzl +,,20259896,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259896&format=geojson,,,,",ak20259896,",1.2,ml,,ak,,"120km NW of Talkeetna, Alaska",0.59,22,",ak,",automatic,1537500411515,"M 1.2 - 120km NW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537500712841,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259896 +,,00657497,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657497&format=geojson,0.062,,83.84,",nn00657497,",0.7,ml,,nn,10.0,"11km NW of Kingsbury, Nevada",0.1087,8,",nn,",reviewed,1537500250026,"M 0.7 - 11km NW of Kingsbury, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537548737079,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657497 +,,70603127,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70603127&format=geojson,0.03036,,141.0,",hv70603127,us2000hhzh,",2.97,ml,,hv,15.0,"25km E of Honaunau-Napoopoo, Hawaii",0.11,136,",hv,us,",reviewed,1537499379290,"M 3.0 - 25km E of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538111123040,https://earthquake.usgs.gov/earthquakes/eventpage/hv70603127 +,,20259950,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259950&format=geojson,,,,",ak20259950,",1.7,ml,,ak,,"97km ENE of Circle, Alaska",0.57,44,",ak,",automatic,1537498606240,"M 1.7 - 97km ENE of Circle, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537506960541,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259950 +,,70803899,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70803899&format=geojson,0.06852,,141.0,",av70803899,",-0.15,ml,,av,5.0,"22km W of Unalaska, Alaska",0.15,0,",av,",reviewed,1537498398990,"M -0.2 - 22km W of Unalaska, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537558777200,https://earthquake.usgs.gov/earthquakes/eventpage/av70803899 +,,61782671,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61782671&format=geojson,0.06696,,131.0,",av61782671,",0.28,ml,,av,6.0,"21km W of Unalaska, Alaska",0.16,1,",av,",reviewed,1537498381830,"M 0.3 - 21km W of Unalaska, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537558586330,https://earthquake.usgs.gov/earthquakes/eventpage/av61782671 +,,2018264002,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018264002&format=geojson,0.0944,,136.0,",pr2018264002,",1.92,md,,pr,4.0,"3km NE of San German, Puerto Rico",0.09,57,",pr,",reviewed,1537497826880,"M 1.9 - 3km NE of San German, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1537504240286,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018264002 +,,00657590,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657590&format=geojson,0.309,,160.63,",nn00657590,",0.6,ml,,nn,6.0,"15km SE of Gardnerville Ranchos, Nevada",0.0924,6,",nn,",reviewed,1537497477643,"M 0.6 - 15km SE of Gardnerville Ranchos, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537571172483,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657590 +,2.0,37362810,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37362810&format=geojson,0.1543,1.0,47.0,",ci37362810,",1.6,ml,,ci,31.0,"9km W of Tehachapi, CA",0.15,40,",ci,",reviewed,1537497452500,"M 1.6 - 9km W of Tehachapi, CA",0,earthquake,",dyfi,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537547342483,https://earthquake.usgs.gov/earthquakes/eventpage/ci37362810 +,,00657490,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657490&format=geojson,0.46,,128.49,",nn00657490,",1.4,ml,,nn,8.0,"40km NE of Fallon, Nevada",0.0944,30,",nn,",reviewed,1537497228832,"M 1.4 - 40km NE of Fallon, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537558784181,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657490 +,,61782661,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61782661&format=geojson,0.06299,,301.0,",av61782661,",0.56,ml,,av,6.0,"34km WSW of Dutch Harbor, Alaska",0.12,5,",av,",reviewed,1537496440380,"M 0.6 - 34km WSW of Dutch Harbor, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537557448340,https://earthquake.usgs.gov/earthquakes/eventpage/av61782661 +,,20259885,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259885&format=geojson,,,,",ak20259885,",3.0,ml,,ak,,"68km SSW of Kaktovik, Alaska",0.69,138,",ak,",automatic,1537496378977,"M 3.0 - 68km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537496793430,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259885 +,,20259884,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259884&format=geojson,,,,",ak20259884,",1.2,ml,,ak,,"89km NW of Talkeetna, Alaska",0.56,22,",ak,",automatic,1537496286550,"M 1.2 - 89km NW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537496793667,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259884 +,,00657589,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657589&format=geojson,0.073,,236.77,",nn00657589,",0.4,ml,,nn,5.0,"43km ESE of Hawthorne, Nevada",0.0802,2,",nn,",reviewed,1537496204899,"M 0.4 - 43km ESE of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537570614600,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657589 +,2.7,73087566,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087566&format=geojson,0.03905,19.0,64.0,",nc73087566,",2.29,md,,nc,73.0,"4km N of Santa Rosa, CA",0.16,86,",nc,",reviewed,1537496039070,"M 2.3 - 4km N of Santa Rosa, CA",0,earthquake,",dyfi,focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537647234637,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087566 +,,2018264001,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018264001&format=geojson,1.0038,,332.0,",pr2018264001,",2.64,md,,pr,3.0,"81km NNE of Luquillo, Puerto Rico",0.22,107,",pr,",reviewed,1537495737100,"M 2.6 - 81km NNE of Luquillo, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1537504229974,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018264001 +,,2000hhz5,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hhz5&format=geojson,3.259,,54.0,",us2000hhz5,",4.6,mb,,us,,"43km SE of Mountain, Colombia",1.08,326,",us,",reviewed,1537495648320,"M 4.6 - 43km SE of Mountain, Colombia",0,earthquake,",geoserve,origin,phase-data,",-300.0,1538690833040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hhz5 +,,1000h3c9,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3c9&format=geojson,2.157,,255.0,",us1000h3c9,",4.6,mb,,us,,"193km ESE of Tadine, New Caledonia",0.87,326,",us,",reviewed,1537495446040,"M 4.6 - 193km ESE of Tadine, New Caledonia",0,earthquake,",geoserve,origin,phase-data,",660.0,1538690703040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3c9 +,,00657588,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657588&format=geojson,0.234,,168.73,",nn00657588,",-0.1,ml,,nn,4.0,"60km S of Goldfield, Nevada",0.07,0,",nn,",reviewed,1537495001921,"M -0.1 - 60km S of Goldfield, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537570429142,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657588 +,,80310724,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80310724&format=geojson,0.106,,110.0,",mb80310724,",1.24,ml,,mb,13.0,"13km ESE of Lincoln, Montana",0.17,24,",mb,",reviewed,1537494871540,"M 1.2 - 13km ESE of Lincoln, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537538117280,https://earthquake.usgs.gov/earthquakes/eventpage/mb80310724 +,,73087561,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087561&format=geojson,0.1013,,157.0,",nc73087561,",1.01,md,,nc,21.0,"27km SSW of Mammoth Lakes, CA",0.04,16,",nc,",reviewed,1537494805800,"M 1.0 - 27km SSW of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537495901203,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087561 +,,1000h3c0,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3c0&format=geojson,4.409,,173.0,",us1000h3c0,",4.5,mb,,us,,"14km SE of Xuyang, China",0.71,312,",us,",reviewed,1537494718500,"M 4.5 - 14km SE of Xuyang, China",0,earthquake,",geoserve,origin,phase-data,",480.0,1538690397040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3c0 +,,73087556,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087556&format=geojson,0.0278,,117.0,",nc73087556,",0.44,md,,nc,9.0,"18km NW of Parkfield, CA",0.05,3,",nc,",reviewed,1537494251130,"M 0.4 - 18km NW of Parkfield, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537500722133,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087556 +,,00657587,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657587&format=geojson,0.018,,229.62,",nn00657587,",-0.3,ml,,nn,5.0,"72km E of Beatty, Nevada",0.0428,0,",nn,",reviewed,1537494079308,"M -0.3 - 72km E of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537570243849,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657587 +,,2018264000,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018264000&format=geojson,0.1406,,190.0,",pr2018264000,",2.87,md,,pr,6.0,"16km WSW of Rincon, Puerto Rico",0.13,127,",pr,",reviewed,1537493652640,"M 2.9 - 16km WSW of Rincon, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1537504218678,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018264000 +,,20259881,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259881&format=geojson,,,,",ak20259881,",1.3,ml,,ak,,"38km W of Willow, Alaska",0.39,26,",ak,",automatic,1537493375351,"M 1.3 - 38km W of Willow, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537493645868,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259881 +,,37362762,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37362762&format=geojson,0.09096,,165.0,",ci37362762,",0.6,mh,,ci,8.0,"12km SE of Bombay Beach, CA",0.2,6,",ci,",reviewed,1537492959120,"M 0.6 - 12km SE of Bombay Beach, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537546510818,https://earthquake.usgs.gov/earthquakes/eventpage/ci37362762 +,,73087551,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087551&format=geojson,0.006254,,133.0,",nc73087551,",0.68,md,,nc,9.0,"8km WNW of The Geysers, CA",0.04,7,",nc,",automatic,1537492943800,"M 0.7 - 8km WNW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537493040496,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087551 +,,00657489,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657489&format=geojson,0.017,,190.88,",nn00657489,",0.1,ml,,nn,14.0,"72km E of Beatty, Nevada",0.1069,0,",nn,",reviewed,1537492914617,"M 0.1 - 72km E of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537557124556,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657489 +,,20259879,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259879&format=geojson,,,,",ak20259879,",0.8,ml,,ak,,"105km W of Haines Junction, Canada",0.71,10,",ak,",automatic,1537492781059,"M 0.8 - 105km W of Haines Junction, Canada",0,earthquake,",geoserve,origin,",-480.0,1537493054012,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259879 +,,70803889,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70803889&format=geojson,0.06871,,191.0,",av70803889,",-0.44,ml,,av,4.0,"94km SE of King Salmon, Alaska",0.03,0,",av,",reviewed,1537492677380,"M -0.4 - 94km SE of King Salmon, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537556266540,https://earthquake.usgs.gov/earthquakes/eventpage/av70803889 +,,37362754,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37362754&format=geojson,0.02946,,90.0,",ci37362754,",1.48,ml,,ci,21.0,"6km ESE of Wofford Heights, CA",0.14,34,",ci,",reviewed,1537492476640,"M 1.5 - 6km ESE of Wofford Heights, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537535268988,https://earthquake.usgs.gov/earthquakes/eventpage/ci37362754 +,,61421517,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61421517&format=geojson,0.009033,,156.0,",uw61421517,",0.05,ml,,uw,6.0,"36km NNE of Amboy, Washington",0.11,0,",uw,",reviewed,1537491904620,"M 0.1 - 36km NNE of Amboy, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537501804980,https://earthquake.usgs.gov/earthquakes/eventpage/uw61421517 +,,20259873,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259873&format=geojson,,,,",ak20259873,",0.7,ml,,ak,,"27km N of North Nenana, Alaska",0.89,8,",ak,",automatic,1537491779838,"M 0.7 - 27km N of North Nenana, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537491980873,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259873 +,,37362746,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37362746&format=geojson,0.1072,,44.0,",ci37362746,",1.73,ml,,ci,67.0,"11km ENE of Ocotillo Wells, CA",0.19,46,",ci,",reviewed,1537491308010,"M 1.7 - 11km ENE of Ocotillo Wells, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537539747850,https://earthquake.usgs.gov/earthquakes/eventpage/ci37362746 +,,00657478,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657478&format=geojson,0.006,,67.0,",nn00657478,",2.1,ml,,nn,61.0,"71km E of Beatty, Nevada",0.2341,68,",nn,",reviewed,1537490892148,"M 2.1 - 71km E of Beatty, Nevada",0,earthquake,",focal-mechanism,geoserve,origin,phase-data,",-480.0,1537657283530,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657478 +,,00657476,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657476&format=geojson,0.049,,127.65,",nn00657476,",-0.4,ml,,nn,16.0,"48km ESE of Beatty, Nevada",0.0993,0,",nn,",reviewed,1537490871963,"M -0.4 - 48km ESE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537551179237,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657476 +,,37362714,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37362714&format=geojson,0.04865,,58.0,",ci37362714,",1.0,ml,,ci,38.0,"13km ESE of Anza, CA",0.12,15,",ci,",reviewed,1537490315730,"M 1.0 - 13km ESE of Anza, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537491198150,https://earthquake.usgs.gov/earthquakes/eventpage/ci37362714 +,,61421487,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61421487&format=geojson,0.00623,,226.0,",uw61421487,",0.39,ml,,uw,6.0,"37km NNE of Amboy, Washington",0.14,2,",uw,",reviewed,1537490211010,"M 0.4 - 37km NNE of Amboy, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537502010340,https://earthquake.usgs.gov/earthquakes/eventpage/uw61421487 +,,2000hhyc,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hhyc&format=geojson,5.765,,61.0,",us2000hhyc,",4.9,mb,,us,,"76km E of Lakatoro, Vanuatu",0.93,369,",us,",reviewed,1537489539840,"M 4.9 - 76km E of Lakatoro, Vanuatu",0,earthquake,",geoserve,origin,phase-data,",660.0,1538970935040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hhyc +,,73087536,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087536&format=geojson,0.03862,,131.0,",nc73087536,",0.74,md,,nc,17.0,"24km E of San Ardo, CA",0.07,8,",nc,",reviewed,1537489498340,"M 0.7 - 24km E of San Ardo, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537491356375,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087536 +,,37362674,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37362674&format=geojson,0.04354,,73.0,",ci37362674,",1.01,ml,,ci,19.0,"7km NNE of Santa Clarita, CA",0.16,16,",ci,",reviewed,1537489381230,"M 1.0 - 7km NNE of Santa Clarita, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537490875353,https://earthquake.usgs.gov/earthquakes/eventpage/ci37362674 +,,70602952,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70602952&format=geojson,0.1011,,232.0,",hv70602952,",2.13,ml,,hv,32.0,"6km W of Kalaoa, Hawaii",0.14,70,",hv,",reviewed,1537489125470,"M 2.1 - 6km W of Kalaoa, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537495748200,https://earthquake.usgs.gov/earthquakes/eventpage/hv70602952 +,3.4,37362666,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37362666&format=geojson,0.04113,1.0,70.0,",ci37362666,",1.84,ml,,ci,50.0,"2km NW of Lennox, CA",0.23,52,",ci,",reviewed,1537488608450,"M 1.8 - 2km NW of Lennox, CA",0,earthquake,",dyfi,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537490655387,https://earthquake.usgs.gov/earthquakes/eventpage/ci37362666 +,,20259854,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259854&format=geojson,,,,",ak20259854,",1.9,ml,,ak,,"18km W of Healy, Alaska",0.78,56,",ak,",automatic,1537488521338,"M 1.9 - 18km W of Healy, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537489324200,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259854 +,,61421457,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61421457&format=geojson,0.008207,,193.0,",uw61421457,",0.41,ml,,uw,7.0,"38km NNE of Amboy, Washington",0.14,3,",uw,",reviewed,1537488285660,"M 0.4 - 38km NNE of Amboy, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537502173330,https://earthquake.usgs.gov/earthquakes/eventpage/uw61421457 +,,60297062,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60297062&format=geojson,0.1559,,111.0,",uu60297062,",1.04,ml,,uu,13.0,"6km ESE of Huntington, Utah",0.14,17,",uu,",reviewed,1537487991480,"M 1.0 - 6km ESE of Huntington, Utah",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537550151220,https://earthquake.usgs.gov/earthquakes/eventpage/uu60297062 +,,1000h3av,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3av&format=geojson,1.23,,95.0,",us1000h3av,",4.4,mb,,us,,"166km E of Nago, Japan",1.34,298,",us,",reviewed,1537487811890,"M 4.4 - 166km E of Nago, Japan",0,earthquake,",geoserve,origin,phase-data,",540.0,1538880454040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3av +,,2000hhy0,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hhy0&format=geojson,2.096,,71.0,",us2000hhy0,",4.4,mb,,us,,"190km ESE of Tadine, New Caledonia",0.63,298,",us,",reviewed,1537487771620,"M 4.4 - 190km ESE of Tadine, New Caledonia",0,earthquake,",geoserve,origin,phase-data,",660.0,1538870715040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hhy0 +,,73087531,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087531&format=geojson,0.03186,,161.0,",nc73087531,",0.18,md,,nc,11.0,"3km ENE of Mammoth Lakes, CA",0.04,0,",nc,",reviewed,1537487199510,"M 0.2 - 3km ENE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537488528476,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087531 +,,20259849,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259849&format=geojson,,,,",ak20259849,",2.1,ml,,ak,,"72km SW of Kaktovik, Alaska",0.95,68,",ak,",automatic,1537487129001,"M 2.1 - 72km SW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537487619863,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259849 +,,37362634,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37362634&format=geojson,0.02999,,72.0,",ci37362634,",1.05,ml,,ci,42.0,"2km NE of Beaumont, CA",0.12,17,",ci,",reviewed,1537486988730,"M 1.1 - 2km NE of Beaumont, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537490227990,https://earthquake.usgs.gov/earthquakes/eventpage/ci37362634 +,,20259847,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259847&format=geojson,,,,",ak20259847,",1.5,ml,,ak,,"22km NE of Fairbanks, Alaska",0.91,35,",ak,",automatic,1537486791658,"M 1.5 - 22km NE of Fairbanks, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537487088308,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259847 +,,70602902,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70602902&format=geojson,0.04856,,108.0,",hv70602902,",1.87,ml,,hv,39.0,"14km SE of Volcano, Hawaii",0.17,54,",hv,",automatic,1537486781290,"M 1.9 - 14km SE of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537487124520,https://earthquake.usgs.gov/earthquakes/eventpage/hv70602902 +,,20259845,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259845&format=geojson,,,,",ak20259845,",1.4,ml,,ak,,"10km SSW of Willow, Alaska",0.9,30,",ak,",automatic,1537486653395,"M 1.4 - 10km SSW of Willow, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537486797130,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259845 +,,73087526,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087526&format=geojson,0.04219,,290.0,",nc73087526,",0.76,md,,nc,15.0,"10km W of Toms Place, CA",0.04,9,",nc,",reviewed,1537486595990,"M 0.8 - 10km W of Toms Place, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537488378096,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087526 +,,20259841,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259841&format=geojson,,,,",ak20259841,",1.5,ml,,ak,,"88km WSW of Anchor Point, Alaska",1.16,35,",ak,",automatic,1537486431769,"M 1.5 - 88km WSW of Anchor Point, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537486666602,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259841 +,3.3,00657464,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657464&format=geojson,0.814,2.0,281.85,",nn00657464,",1.5,ml,,nn,6.0,"11km N of Gerlach-Empire, Nevada",0.1441,35,",nn,",reviewed,1537486341349,"M 1.5 - 11km N of Gerlach-Empire, Nevada",0,earthquake,",dyfi,geoserve,origin,phase-data,",-480.0,1537489415810,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657464 +,,61421417,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61421417&format=geojson,0.06691,,319.0,",uw61421417,",1.16,ml,,uw,5.0,"20km WSW of Port Ludlow, Washington",0.18,21,",uw,",reviewed,1537484892070,"M 1.2 Explosion - 20km WSW of Port Ludlow, Washington",0,explosion,",geoserve,origin,phase-data,",-480.0,1537501455620,https://earthquake.usgs.gov/earthquakes/eventpage/uw61421417 +,2.2,37362610,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37362610&format=geojson,0.04316,1.0,73.0,",ci37362610,",1.75,ml,,ci,33.0,"2km NW of Lennox, CA",0.21,47,",ci,",reviewed,1537484822100,"M 1.8 - 2km NW of Lennox, CA",0,earthquake,",dyfi,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537487378830,https://earthquake.usgs.gov/earthquakes/eventpage/ci37362610 +,,2000hhxa,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hhxa&format=geojson,1.234,,82.0,",us2000hhxa,",4.6,mb,,us,,"167km E of Nago, Japan",0.65,326,",us,",reviewed,1537484762840,"M 4.6 - 167km E of Nago, Japan",0,earthquake,",geoserve,origin,phase-data,",540.0,1538969995040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hhxa +,,00657470,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657470&format=geojson,0.069,,172.84,",nn00657470,",0.3,ml,,nn,5.0,"30km E of Hawthorne, Nevada",0.0548,1,",nn,",reviewed,1537484647686,"M 0.3 - 30km E of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537490392265,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657470 +,,20259835,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259835&format=geojson,,,,",ak20259835,",0.9,ml,,ak,,"139km WNW of Haines Junction, Canada",0.56,12,",ak,",automatic,1537484195503,"M 0.9 - 139km WNW of Haines Junction, Canada",0,earthquake,",geoserve,origin,",-480.0,1537484460717,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259835 +,,2000hhx3,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hhx3&format=geojson,1.068,,89.0,",us2000hhx3,",4.2,mb,,us,,"34km ESE of Chitose, Japan",0.46,271,",us,",reviewed,1537484169100,"M 4.2 - 34km ESE of Chitose, Japan",0,earthquake,",geoserve,origin,phase-data,",540.0,1538870822040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hhx3 +,,20259833,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259833&format=geojson,,,,",ak20259833,",2.3,ml,,ak,,"68km SSW of Kaktovik, Alaska",0.62,81,",ak,",automatic,1537484153262,"M 2.3 - 68km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537484460496,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259833 +,,73087516,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087516&format=geojson,0.01449,,70.0,",nc73087516,",0.32,md,,nc,9.0,"4km WSW of Mammoth Lakes, CA",0.04,2,",nc,",reviewed,1537484124790,"M 0.3 - 4km WSW of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537488593784,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087516 +,,20259817,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259817&format=geojson,,,,",ak20259817,",2.3,ml,,ak,,"67km NNW of Valdez, Alaska",0.85,81,",ak,",automatic,1537483717645,"M 2.3 - 67km NNW of Valdez, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537484169273,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259817 +,,1000h3aw,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3aw&format=geojson,2.326,,145.0,",us1000h3aw,",4.3,mb,,us,,"87km ESE of Palora, Ecuador",1.24,284,",us,",reviewed,1537483519600,"M 4.3 - 87km ESE of Palora, Ecuador",0,earthquake,",geoserve,origin,phase-data,",-300.0,1538883817040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3aw +,,20259811,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259811&format=geojson,,,,",ak20259811,",0.8,ml,,ak,,"52km E of Cape Yakataga, Alaska",0.92,10,",ak,",automatic,1537483025922,"M 0.8 - 52km E of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537483286128,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259811 +,,37362578,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37362578&format=geojson,0.07769,,83.0,",ci37362578,",1.05,ml,,ci,35.0,"8km NNE of Cabazon, CA",0.12,17,",ci,",reviewed,1537482987620,"M 1.1 - 8km NNE of Cabazon, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537483847776,https://earthquake.usgs.gov/earthquakes/eventpage/ci37362578 +,,37362562,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37362562&format=geojson,0.04942,,58.0,",ci37362562,",1.01,ml,,ci,33.0,"8km WNW of Morongo Valley, CA",0.13,16,",ci,",reviewed,1537482642700,"M 1.0 - 8km WNW of Morongo Valley, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537483583920,https://earthquake.usgs.gov/earthquakes/eventpage/ci37362562 +,,2000hhw1,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hhw1&format=geojson,1.994,,145.0,",us2000hhw1,",4.6,mb,,us,,"107km SSW of Pijijiapan, Mexico",0.66,326,",us,",reviewed,1537482617170,"M 4.6 - 107km SSW of Pijijiapan, Mexico",0,earthquake,",geoserve,origin,phase-data,",-360.0,1538969891040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hhw1 +,,20259807,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259807&format=geojson,,,,",ak20259807,",1.4,ml,,ak,,"97km ENE of Circle, Alaska",0.52,30,",ak,",automatic,1537482193901,"M 1.4 - 97km ENE of Circle, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537482443591,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259807 +,,73087506,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087506&format=geojson,0.01016,,52.0,",nc73087506,",2.21,md,,nc,48.0,"6km NNW of Pinnacles, CA",0.06,75,",nc,",reviewed,1537482185610,"M 2.2 - 6km NNW of Pinnacles, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537499824044,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087506 +,,73087511,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087511&format=geojson,0.004755,,62.0,",nc73087511,",0.78,md,,nc,11.0,"4km W of Cobb, CA",0.03,9,",nc,",automatic,1537482144520,"M 0.8 - 4km W of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537482239354,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087511 +,,20259800,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259800&format=geojson,,,,",ak20259800,us2000hhvl,",2.3,ml,,ak,,"34km SW of Healy, Alaska",0.38,81,",ak,us,",automatic,1537482126295,"M 2.3 - 34km SW of Healy, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538968672040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259800 +,,73087501,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087501&format=geojson,0.01343,,90.0,",nc73087501,",0.82,md,,nc,13.0,"4km W of Cobb, CA",0.02,10,",nc,",automatic,1537482055820,"M 0.8 - 4km W of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537482149209,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087501 +,,1000h3au,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3au&format=geojson,1.581,,136.0,",us1000h3au,",4.3,mb,,us,,"159km S of Kokopo, Papua New Guinea",0.97,284,",us,",reviewed,1537481664290,"M 4.3 - 159km S of Kokopo, Papua New Guinea",0,earthquake,",geoserve,origin,phase-data,",600.0,1538873466040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3au +,,20259793,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259793&format=geojson,,,,",ak20259793,us2000hhvd,",2.2,ml,,ak,,"84km WSW of Cantwell, Alaska",0.41,74,",ak,us,",automatic,1537481385186,"M 2.2 - 84km WSW of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538871255040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259793 +,,20259790,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259790&format=geojson,,,,",ak20259790,",1.1,ml,,ak,,"76km ENE of Cape Yakataga, Alaska",0.5,19,",ak,",automatic,1537481071012,"M 1.1 - 76km ENE of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537481440304,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259790 +,,1000h3as,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3as&format=geojson,3.176,,49.0,",us1000h3as,",4.3,mb,,us,,"42km SSE of Mountain, Colombia",0.89,284,",us,",reviewed,1537481049560,"M 4.3 - 42km SSE of Mountain, Colombia",0,earthquake,",geoserve,origin,phase-data,",-300.0,1538885246040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3as +,,37362514,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37362514&format=geojson,0.02252,,93.0,",ci37362514,",1.34,ml,,ci,21.0,"4km NNE of El Segundo, CA",0.23,28,",ci,",reviewed,1537480317880,"M 1.3 - 4km NNE of El Segundo, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537482126147,https://earthquake.usgs.gov/earthquakes/eventpage/ci37362514 +,,37362506,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37362506&format=geojson,0.0009043,,109.0,",ci37362506,",0.21,ml,,ci,16.0,"10km NE of Aguanga, CA",0.08,1,",ci,",reviewed,1537480198960,"M 0.2 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537481497125,https://earthquake.usgs.gov/earthquakes/eventpage/ci37362506 +,,37362490,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37362490&format=geojson,0.0007219,,59.0,",ci37362490,",0.58,ml,,ci,16.0,"10km NE of Aguanga, CA",0.1,5,",ci,",reviewed,1537479837770,"M 0.6 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537481208634,https://earthquake.usgs.gov/earthquakes/eventpage/ci37362490 +,,20259783,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259783&format=geojson,,,,",ak20259783,",0.9,ml,,ak,,"43km WNW of Talkeetna, Alaska",0.6,12,",ak,",automatic,1537479518079,"M 0.9 - 43km WNW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537479725598,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259783 +,,73087491,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087491&format=geojson,0.03267,,175.0,",nc73087491,",0.63,md,,nc,12.0,"12km ENE of Mammoth Lakes, CA",0.05,6,",nc,",reviewed,1537479038850,"M 0.6 - 12km ENE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537480563408,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087491 +,3.8,73087486,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087486&format=geojson,0.0547,2.0,89.0,",nc73087486,",2.27,md,,nc,58.0,"17km NNE of San Simeon, CA",0.08,80,",nc,",reviewed,1537478839700,"M 2.3 - 17km NNE of San Simeon, CA",0,earthquake,",dyfi,focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537498922949,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087486 +,,61421357,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61421357&format=geojson,0.2172,,221.0,",uw61421357,",1.94,ml,,uw,13.0,"21km ENE of Castle Rock, Washington",0.24,58,",uw,",reviewed,1537478783780,"M 1.9 Explosion - 21km ENE of Castle Rock, Washington",0,explosion,",geoserve,origin,phase-data,",-480.0,1537550978040,https://earthquake.usgs.gov/earthquakes/eventpage/uw61421357 +,,70602752,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70602752&format=geojson,0.07867,,132.0,",hv70602752,",1.72,md,,hv,36.0,"8km NE of Pahala, Hawaii",0.26,46,",hv,",automatic,1537478116170,"M 1.7 - 8km NE of Pahala, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537478330250,https://earthquake.usgs.gov/earthquakes/eventpage/hv70602752 +,,20259775,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259775&format=geojson,,,,",ak20259775,",1.3,ml,,ak,,"33km W of Seward, Alaska",0.3,26,",ak,",automatic,1537478087795,"M 1.3 - 33km W of Seward, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537478302173,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259775 +,,00657438,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657438&format=geojson,0.116,,122.33,",nn00657438,",1.7,ml,,nn,14.0,"74km E of Gabbs, Nevada",0.5481,44,",nn,",reviewed,1537477867795,"M 1.7 Explosion - 74km E of Gabbs, Nevada",0,explosion,",geoserve,origin,phase-data,",-480.0,1537479872042,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657438 +,,73087481,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087481&format=geojson,0.01268,,170.0,",nc73087481,",0.21,md,,nc,13.0,"6km SE of Mammoth Lakes, CA",0.04,1,",nc,",reviewed,1537476891700,"M 0.2 - 6km SE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537480804014,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087481 +,,37362450,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37362450&format=geojson,0.04318,,243.0,",ci37362450,",1.48,ml,,ci,27.0,"6km ESE of Chula Vista, CA",0.16,34,",ci,",reviewed,1537476883140,"M 1.5 Quarry Blast - 6km ESE of Chula Vista, CA",0,quarry blast,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537480995580,https://earthquake.usgs.gov/earthquakes/eventpage/ci37362450 +,,61421322,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61421322&format=geojson,0.188,,197.0,",uw61421322,",1.07,ml,,uw,6.0,"5km NW of Darrington, Washington",0.07,18,",uw,",reviewed,1537476812140,"M 1.1 - 5km NW of Darrington, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537482205580,https://earthquake.usgs.gov/earthquakes/eventpage/uw61421322 +,,1000h3aq,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3aq&format=geojson,1.366,,210.0,",us1000h3aq,",4.1,mb,,us,,"148km SW of Mapastepec, Mexico",0.72,259,",us,",reviewed,1537476672910,"M 4.1 - 148km SW of Mapastepec, Mexico",0,earthquake,",geoserve,origin,phase-data,",-360.0,1539466988040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3aq +,,2000hhu4,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hhu4&format=geojson,1.239,,144.0,",us2000hhu4,",4.2,mb,,us,,"137km ENE of Petropavlovsk-Kamchatskiy, Russia",0.64,271,",us,",reviewed,1537476665180,"M 4.2 - 137km ENE of Petropavlovsk-Kamchatskiy, Russia",0,earthquake,",geoserve,origin,phase-data,",660.0,1539463499040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hhu4 +,,20259767,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259767&format=geojson,,,,",ak20259767,",1.9,ml,,ak,,"54km S of Redoubt Volcano, Alaska",0.52,56,",ak,",automatic,1537476059604,"M 1.9 - 54km S of Redoubt Volcano, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537476457588,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259767 +,,61421302,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61421302&format=geojson,0.1707,,89.0,",uw61421302,",1.11,ml,,uw,8.0,"4km WNW of Bainbridge Island, Washington",0.18,19,",uw,",reviewed,1537475399150,"M 1.1 - 4km WNW of Bainbridge Island, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537484491090,https://earthquake.usgs.gov/earthquakes/eventpage/uw61421302 +,,20259765,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259765&format=geojson,,,,",ak20259765,",1.1,ml,,ak,,"78km SSW of Kobuk, Alaska",0.98,19,",ak,",automatic,1537475351181,"M 1.1 - 78km SSW of Kobuk, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537475554829,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259765 +,,73087471,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087471&format=geojson,0.02177,,171.0,",nc73087471,",0.53,md,,nc,16.0,"5km SE of Mammoth Lakes, CA",0.04,4,",nc,",reviewed,1537475077320,"M 0.5 - 5km SE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537475665408,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087471 +,,37362394,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37362394&format=geojson,0.01944,,31.0,",ci37362394,",0.88,ml,,ci,39.0,"8km NE of Aguanga, CA",0.15,12,",ci,",reviewed,1537474696440,"M 0.9 - 8km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537475846950,https://earthquake.usgs.gov/earthquakes/eventpage/ci37362394 +,,20259751,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259751&format=geojson,,,,",ak20259751,us2000hhtb,",2.2,ml,,ak,,"63km WSW of Anchor Point, Alaska",0.62,74,",ak,us,",automatic,1537474462813,"M 2.2 - 63km WSW of Anchor Point, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539464114040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259751 +,,20259750,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259750&format=geojson,,,,",ak20259750,",1.9,ml,,ak,,"127km WNW of Arctic Village, Alaska",0.72,56,",ak,",automatic,1537474429431,"M 1.9 - 127km WNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537474722310,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259750 +,,20259746,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259746&format=geojson,,,,",ak20259746,",1.7,ml,,ak,,"89km WNW of Cantwell, Alaska",0.84,44,",ak,",automatic,1537473634383,"M 1.7 - 89km WNW of Cantwell, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537473919721,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259746 +,,73087461,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087461&format=geojson,0.008084,,113.0,",nc73087461,",0.88,md,,nc,10.0,"6km WNW of The Geysers, CA",0.03,12,",nc,",automatic,1537473562880,"M 0.9 - 6km WNW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537473659618,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087461 +,,2018263013,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018263013&format=geojson,0.3722,,232.0,",pr2018263013,",2.73,md,,pr,9.0,"5km ESE of San Juan, Puerto Rico",0.27,115,",pr,",reviewed,1537473336320,"M 2.7 - 5km ESE of San Juan, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1537493390270,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018263013 +,,20259737,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259737&format=geojson,,,,",ak20259737,",1.3,ml,,ak,,"17km NNE of Nikiski, Alaska",0.86,26,",ak,",automatic,1537472422569,"M 1.3 - 17km NNE of Nikiski, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537473107150,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259737 +,,37362330,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37362330&format=geojson,0.02132,,82.0,",ci37362330,",1.36,ml,,ci,32.0,"13km WSW of Niland, CA",0.2,28,",ci,",reviewed,1537472193260,"M 1.4 - 13km WSW of Niland, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537474454659,https://earthquake.usgs.gov/earthquakes/eventpage/ci37362330 +,,1000h3ap,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3ap&format=geojson,8.878,,127.0,",us1000h3ap,",4.5,mb,,us,,South of the Fiji Islands,0.69,312,",us,",reviewed,1537472145230,M 4.5 - South of the Fiji Islands,0,earthquake,",geoserve,origin,phase-data,",-720.0,1539465653040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3ap +,,20259734,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259734&format=geojson,,,,",ak20259734,",1.6,ml,,ak,,"57km WSW of Valdez, Alaska",0.83,39,",ak,",automatic,1537472082313,"M 1.6 - 57km WSW of Valdez, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537472344268,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259734 +,,20259724,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259724&format=geojson,,,,",ak20259724,",2.3,ml,,ak,,"42km ESE of Old Iliamna, Alaska",0.93,81,",ak,",automatic,1537470716189,"M 2.3 - 42km ESE of Old Iliamna, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537471431420,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259724 +,,37362322,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37362322&format=geojson,0.05318,,65.0,",ci37362322,",0.89,ml,,ci,40.0,"1km NE of Loma Linda, CA",0.13,12,",ci,",reviewed,1537470656760,"M 0.9 - 1km NE of Loma Linda, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537474137366,https://earthquake.usgs.gov/earthquakes/eventpage/ci37362322 +,,1000h3am,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3am&format=geojson,1.272,,91.0,",us1000h3am,",4.4,mb,,us,,"171km E of Nago, Japan",0.74,298,",us,",reviewed,1537470382450,"M 4.4 - 171km E of Nago, Japan",0,earthquake,",geoserve,origin,phase-data,",540.0,1539464832040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3am +,,37362306,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37362306&format=geojson,0.06571,,60.0,",ci37362306,",0.37,ml,,ci,11.0,"8km NNE of Murrieta Hot Springs, CA",0.24,2,",ci,",reviewed,1537470368440,"M 0.4 Quarry Blast - 8km NNE of Murrieta Hot Springs, CA",0,quarry blast,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537474790401,https://earthquake.usgs.gov/earthquakes/eventpage/ci37362306 +,,20259703,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259703&format=geojson,,,,",ak20259703,us2000hhrq,",3.7,ml,,ak,,"33km W of Cantwell, Alaska",0.65,211,",ak,us,",reviewed,1537468966414,"M 3.7 - 33km W of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539463387040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259703 +,,37362266,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37362266&format=geojson,0.0243,,47.0,",ci37362266,",0.59,ml,,ci,34.0,"8km NE of Aguanga, CA",0.14,5,",ci,",reviewed,1537468544150,"M 0.6 - 8km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537469918301,https://earthquake.usgs.gov/earthquakes/eventpage/ci37362266 +,,00657426,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657426&format=geojson,0.148,,75.58,",nn00657426,",1.4,ml,,nn,18.0,"30km SW of Hawthorne, Nevada",0.1477,30,",nn,",reviewed,1537467829355,"M 1.4 - 30km SW of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537473610384,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657426 +,,73087446,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087446&format=geojson,0.01316,,102.0,",nc73087446,",1.14,md,,nc,7.0,"3km S of Loyola, CA",0.03,20,",nc,",reviewed,1537467166640,"M 1.1 Quarry Blast - 3km S of Loyola, CA",0,quarry blast,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537488800060,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087446 +,,37362226,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37362226&format=geojson,0.01748,,27.0,",ci37362226,",0.75,ml,,ci,44.0,"9km NE of Aguanga, CA",0.16,9,",ci,",reviewed,1537467111990,"M 0.8 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537468670000,https://earthquake.usgs.gov/earthquakes/eventpage/ci37362226 +,,20259693,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259693&format=geojson,,,,",ak20259693,",1.6,ml,,ak,,"134km WNW of Arctic Village, Alaska",0.86,39,",ak,",automatic,1537466654086,"M 1.6 - 134km WNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537467048996,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259693 +,,20259692,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259692&format=geojson,,,,",ak20259692,",1.4,ml,,ak,,"135km WNW of Arctic Village, Alaska",0.92,30,",ak,",automatic,1537466487168,"M 1.4 - 135km WNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537466948555,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259692 +,,61782376,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61782376&format=geojson,0.002867,,129.0,",av61782376,",0.66,ml,,av,5.0,"93km ESE of Old Iliamna, Alaska",0.17,7,",av,",reviewed,1537466375360,"M 0.7 - 93km ESE of Old Iliamna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537483556410,https://earthquake.usgs.gov/earthquakes/eventpage/av61782376 +,,61782371,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61782371&format=geojson,0.05306,,85.0,",av61782371,",0.56,ml,,av,9.0,"16km WSW of Dutch Harbor, Alaska",0.17,5,",av,",reviewed,1537466212020,"M 0.6 - 16km WSW of Dutch Harbor, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537484517320,https://earthquake.usgs.gov/earthquakes/eventpage/av61782371 +,,20259687,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259687&format=geojson,,,,",ak20259687,",0.7,ml,,ak,,"123km NNE of Cape Yakataga, Alaska",0.63,8,",ak,",automatic,1537465471961,"M 0.7 - 123km NNE of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537466195913,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259687 +,,20259685,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259685&format=geojson,,,,",ak20259685,",1.5,ml,,ak,,"88km N of Yakutat, Alaska",0.44,35,",ak,",automatic,1537465046820,"M 1.5 - 88km N of Yakutat, Alaska",0,earthquake,",geoserve,origin,",-480.0,1537465824947,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259685 +,,60240826,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nm60240826&format=geojson,0.03021,,65.0,",nm60240826,",1.23,md,,nm,12.0,"3km ENE of Ridgely, Tennessee",0.06,23,",nm,",reviewed,1537464977950,"M 1.2 - 3km ENE of Ridgely, Tennessee",0,earthquake,",geoserve,origin,phase-data,",-360.0,1537535137700,https://earthquake.usgs.gov/earthquakes/eventpage/nm60240826 +,,20259446,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259446&format=geojson,,,,",ak20259446,",1.4,ml,,ak,,"48km NNE of Yakutat, Alaska",0.9,30,",ak,",automatic,1537464903696,"M 1.4 - 48km NNE of Yakutat, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537465183087,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259446 +,,37362146,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37362146&format=geojson,0.02887,,35.0,",ci37362146,",0.39,ml,,ci,29.0,"9km ENE of Aguanga, CA",0.13,2,",ci,",reviewed,1537464689240,"M 0.4 - 9km ENE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537467302964,https://earthquake.usgs.gov/earthquakes/eventpage/ci37362146 +,,00657466,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657466&format=geojson,0.368,,169.12,",nn00657466,",0.6,ml,,nn,4.0,"29km WSW of Hawthorne, Nevada",0.1067,6,",nn,",reviewed,1537464450990,"M 0.6 - 29km WSW of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537486704026,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657466 +,,61782361,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61782361&format=geojson,,,84.0,",av61782361,",2.35,ml,,av,19.0,"16km WSW of Dutch Harbor, Alaska",0.16,85,",av,",reviewed,1537464438550,"M 2.4 - 16km WSW of Dutch Harbor, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537484323300,https://earthquake.usgs.gov/earthquakes/eventpage/av61782361 +,,20259439,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259439&format=geojson,,,,",ak20259439,",1.2,ml,,ak,,"54km NNW of Valdez, Alaska",0.69,22,",ak,",automatic,1537464340380,"M 1.2 - 54km NNW of Valdez, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537464591314,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259439 +,,61421242,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61421242&format=geojson,0.2188,,167.0,",uw61421242,",1.19,ml,,uw,5.0,"10km S of Winlock, Washington",0.43,22,",uw,",reviewed,1537464199090,"M 1.2 Explosion - 10km S of Winlock, Washington",0,explosion,",geoserve,origin,phase-data,",-480.0,1537502331660,https://earthquake.usgs.gov/earthquakes/eventpage/uw61421242 +,,73087441,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087441&format=geojson,0.009692,,105.0,",nc73087441,",0.17,md,,nc,6.0,"5km W of Cobb, CA",0.02,0,",nc,",reviewed,1537464032550,"M 0.2 - 5km W of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537489612865,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087441 +,,37362114,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37362114&format=geojson,0.04032,,37.0,",ci37362114,",0.48,ml,,ci,29.0,"11km W of Anza, CA",0.15,4,",ci,",reviewed,1537463849420,"M 0.5 - 11km W of Anza, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537466660832,https://earthquake.usgs.gov/earthquakes/eventpage/ci37362114 +,,20259424,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259424&format=geojson,,,,",ak20259424,",2.6,ml,,ak,,"30km SE of Redoubt Volcano, Alaska",0.55,104,",ak,",automatic,1537463803589,"M 2.6 - 30km SE of Redoubt Volcano, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537464490633,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259424 +,,20259421,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259421&format=geojson,,,,",ak20259421,",1.3,ml,,ak,,"46km ENE of Cordova, Alaska",0.66,26,",ak,",automatic,1537463387705,"M 1.3 - 46km ENE of Cordova, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537463767072,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259421 +,,80310679,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80310679&format=geojson,0.112,,113.0,",mb80310679,",1.71,ml,,mb,10.0,"14km ESE of Lincoln, Montana",0.13,45,",mb,",reviewed,1537463312340,"M 1.7 - 14km ESE of Lincoln, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537464001940,https://earthquake.usgs.gov/earthquakes/eventpage/mb80310679 +,,80310674,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80310674&format=geojson,0.109,,101.0,",mb80310674,",1.42,ml,,mb,18.0,"7km ENE of Lima, Montana",0.25,31,",mb,",reviewed,1537462868450,"M 1.4 - 7km ENE of Lima, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537465104160,https://earthquake.usgs.gov/earthquakes/eventpage/mb80310674 +,,2000hhpg,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hhpg&format=geojson,1.162,,82.0,",us2000hhpg,",4.4,mb,,us,,"89km SSE of Kupang, Indonesia",1.56,298,",us,",reviewed,1537462866230,"M 4.4 - 89km SSE of Kupang, Indonesia",0,earthquake,",geoserve,origin,phase-data,",480.0,1539463044040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hhpg +,,73087436,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087436&format=geojson,0.004651,,180.0,",nc73087436,",0.81,md,,nc,6.0,"9km NW of The Geysers, CA",0.01,10,",nc,",automatic,1537462770350,"M 0.8 - 9km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537462864690,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087436 +,,2018263012,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018263012&format=geojson,0.8853,,322.0,",pr2018263012,us2000hhs6,",2.83,md,,pr,5.0,"81km NNE of Luquillo, Puerto Rico",0.27,123,",pr,us,",reviewed,1537462395740,"M 2.8 - 81km NNE of Luquillo, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1539107796040,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018263012 +,,80310669,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80310669&format=geojson,0.182,,228.0,",mb80310669,",1.01,ml,,mb,5.0,"48km ENE of Driggs, Idaho",0.09,16,",mb,",reviewed,1537462144410,"M 1.0 - 48km ENE of Driggs, Idaho",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537464465890,https://earthquake.usgs.gov/earthquakes/eventpage/mb80310669 +,,1000h3al,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3al&format=geojson,2.859,,189.0,",us1000h3al,",4.3,mb,,us,,"116km NE of Angoram, Papua New Guinea",0.7,284,",us,",reviewed,1537462070280,"M 4.3 - 116km NE of Angoram, Papua New Guinea",0,earthquake,",geoserve,origin,phase-data,",600.0,1539106738040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3al +,,2000hhnz,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hhnz&format=geojson,2.307,,125.0,",us2000hhnz,",4.2,mb,,us,,"72km WSW of Tual, Indonesia",1.62,271,",us,",reviewed,1537461412370,"M 4.2 - 72km WSW of Tual, Indonesia",0,earthquake,",geoserve,origin,phase-data,",540.0,1539105789040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hhnz +,,80310664,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80310664&format=geojson,0.333,,144.0,",mb80310664,",1.33,ml,,mb,7.0,"7km WNW of Townsend, Montana",0.08,27,",mb,",reviewed,1537461384750,"M 1.3 Quarry Blast - 7km WNW of Townsend, Montana",0,quarry blast,",geoserve,origin,phase-data,",-420.0,1537464226720,https://earthquake.usgs.gov/earthquakes/eventpage/mb80310664 +,,73087431,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087431&format=geojson,0.06319,,85.0,",nc73087431,",0.84,md,,nc,18.0,"6km WSW of San Ardo, CA",0.04,11,",nc,",reviewed,1537461350590,"M 0.8 - 6km WSW of San Ardo, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537492018124,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087431 +,,70803874,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70803874&format=geojson,0.02792,,171.0,",av70803874,",-0.12,ml,,av,4.0,"53km SSW of Redoubt Volcano, Alaska",0.15,0,",av,",reviewed,1537461124860,"M -0.1 - 53km SSW of Redoubt Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537488870640,https://earthquake.usgs.gov/earthquakes/eventpage/av70803874 +,2.0,73087421,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087421&format=geojson,0.06354,1.0,38.0,",nc73087421,",1.85,md,,nc,52.0,"6km WSW of San Ardo, CA",0.06,53,",nc,",reviewed,1537460835420,"M 1.9 - 6km WSW of San Ardo, CA",0,earthquake,",dyfi,focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537483202091,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087421 +,,70602462,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70602462&format=geojson,0.007,,101.0,",hv70602462,",1.81,md,,hv,16.0,"6km SW of Volcano, Hawaii",0.15,50,",hv,",automatic,1537460713440,"M 1.8 - 6km SW of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537460894120,https://earthquake.usgs.gov/earthquakes/eventpage/hv70602462 +,,70602467,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70602467&format=geojson,0.04622,,309.0,",hv70602467,",1.93,ml,,hv,11.0,"12km SW of Volcano, Hawaii",0.19,57,",hv,",automatic,1537460712690,"M 1.9 - 12km SW of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537461064070,https://earthquake.usgs.gov/earthquakes/eventpage/hv70602467 +,,20259413,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259413&format=geojson,,,,",ak20259413,",1.8,ml,,ak,,"39km W of Kalifornsky, Alaska",0.58,50,",ak,",automatic,1537460342089,"M 1.8 - 39km W of Kalifornsky, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537460705900,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259413 +,,20259412,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259412&format=geojson,,,,",ak20259412,",2.0,ml,,ak,,"50km SSW of Kaktovik, Alaska",0.87,62,",ak,",automatic,1537460011086,"M 2.0 - 50km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537460313384,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259412 +,,1000h3aj,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3aj&format=geojson,3.419,,115.0,",us1000h3aj,",4.2,mb,,us,,"290km N of Ndoi Island, Fiji",0.8,271,",us,",reviewed,1537458942820,"M 4.2 - 290km N of Ndoi Island, Fiji",0,earthquake,",geoserve,origin,phase-data,",-720.0,1539096033040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3aj +,,61421237,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61421237&format=geojson,0.07673,,251.0,",uw61421237,",0.38,ml,,uw,8.0,"12km S of Morton, Washington",0.1,2,",uw,",reviewed,1537458886330,"M 0.4 - 12km S of Morton, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537502720420,https://earthquake.usgs.gov/earthquakes/eventpage/uw61421237 +,,2000hhmf,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hhmf&format=geojson,3.461,,115.0,",us2000hhmf,",4.2,mb,,us,,"275km N of Ndoi Island, Fiji",1.03,271,",us,",reviewed,1537458608380,"M 4.2 - 275km N of Ndoi Island, Fiji",0,earthquake,",geoserve,origin,phase-data,",-720.0,1539094226040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hhmf +,,20259402,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259402&format=geojson,,,,",ak20259402,",1.6,ml,,ak,,"46km NE of Talkeetna, Alaska",0.55,39,",ak,",automatic,1537458330870,"M 1.6 - 46km NE of Talkeetna, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537459579450,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259402 +,,20259401,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259401&format=geojson,,,,",ak20259401,",1.3,ml,,ak,,"69km W of Valdez, Alaska",0.67,26,",ak,",automatic,1537458296497,"M 1.3 - 69km W of Valdez, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537459579675,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259401 +,,61782336,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61782336&format=geojson,0.05285,,86.0,",av61782336,",0.77,ml,,av,7.0,"16km WSW of Dutch Harbor, Alaska",0.17,9,",av,",reviewed,1537458192400,"M 0.8 - 16km WSW of Dutch Harbor, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537482886040,https://earthquake.usgs.gov/earthquakes/eventpage/av61782336 +,,61782331,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61782331&format=geojson,0.0592,,100.0,",av61782331,",-0.62,ml,,av,7.0,"18km W of Unalaska, Alaska",0.19,0,",av,",reviewed,1537457834980,"M -0.6 - 18km W of Unalaska, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537482463700,https://earthquake.usgs.gov/earthquakes/eventpage/av61782331 +,,20259396,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259396&format=geojson,,,,",ak20259396,",1.3,ml,,ak,,"151km ENE of McGrath, Alaska",0.62,26,",ak,",automatic,1537457253009,"M 1.3 - 151km ENE of McGrath, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537457582623,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259396 +,,1000h3ai,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3ai&format=geojson,3.795,,103.0,",us1000h3ai,",4.3,mb,,us,,"294km NNE of Ndoi Island, Fiji",0.99,284,",us,",reviewed,1537457179620,"M 4.3 - 294km NNE of Ndoi Island, Fiji",0,earthquake,",geoserve,origin,phase-data,",-720.0,1539094066040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3ai +,,1000h3ah,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3ah&format=geojson,31.389,,181.0,",us1000h3ah,",4.6,mb,,us,,Southeast Indian Ridge,0.85,326,",us,",reviewed,1537457095880,M 4.6 - Southeast Indian Ridge,0,earthquake,",geoserve,origin,phase-data,",420.0,1539036374040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3ah +,,61421222,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61421222&format=geojson,0.008394,,139.0,",uw61421222,",0.3,ml,,uw,6.0,"39km NNE of Amboy, Washington",0.24,1,",uw,",reviewed,1537457083490,"M 0.3 - 39km NNE of Amboy, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537502909980,https://earthquake.usgs.gov/earthquakes/eventpage/uw61421222 +,,2000hhmn,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hhmn&format=geojson,4.317,,81.0,",us2000hhmn,",4.7,mb,,us,,"186km SSW of Panguna, Papua New Guinea",1.09,340,",us,",reviewed,1537457016690,"M 4.7 - 186km SSW of Panguna, Papua New Guinea",0,earthquake,",geoserve,origin,phase-data,",600.0,1539035973040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hhmn +,,00657924,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657924&format=geojson,0.06,,187.69,",nn00657924,",-0.1,ml,,nn,4.0,"25km SSE of Hawthorne, Nevada",0.0587,0,",nn,",reviewed,1537456101538,"M -0.1 - 25km SSE of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537817380483,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657924 +,,20259387,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259387&format=geojson,,,,",ak20259387,",1.4,ml,,ak,,"53km ENE of Y, Alaska",0.72,30,",ak,",automatic,1537455988769,"M 1.4 - 53km ENE of Y, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537456247967,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259387 +,,2018263011,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018263011&format=geojson,0.8839,,300.0,",pr2018263011,us2000hhry,",3.12,md,,pr,6.0,"88km ENE of Miches, Dominican Republic",0.19,150,",pr,us,",reviewed,1537455770940,"M 3.1 - 88km ENE of Miches, Dominican Republic",0,earthquake,",geoserve,origin,phase-data,",-300.0,1539035853040,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018263011 +,,2000hhlf,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hhlf&format=geojson,1.27,,95.0,",us2000hhlf,",4.6,mb,,us,,"171km E of Nago, Japan",1.4,326,",us,",reviewed,1537455447970,"M 4.6 - 171km E of Nago, Japan",0,earthquake,",geoserve,origin,phase-data,",540.0,1537457187040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hhlf +,,2018263009,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018263009&format=geojson,1.2111,,340.0,",pr2018263009,",3.36,md,,pr,6.0,"47km NNW of Road Town, British Virgin Islands",0.11,174,",pr,",reviewed,1537455433840,"M 3.4 - 47km NNW of Road Town, British Virgin Islands",0,earthquake,",geoserve,origin,phase-data,",-240.0,1537468467372,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018263009 +,,20259380,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259380&format=geojson,,,,",ak20259380,",1.9,ml,,ak,,"129km NNW of Arctic Village, Alaska",0.92,56,",ak,",automatic,1537455139039,"M 1.9 - 129km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537455413604,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259380 +,,37361938,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37361938&format=geojson,0.03508,,116.0,",ci37361938,",1.38,ml,,ci,30.0,"2km S of Long Beach, CA",0.3,29,",ci,",reviewed,1537455131290,"M 1.4 - 2km S of Long Beach, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537469285004,https://earthquake.usgs.gov/earthquakes/eventpage/ci37361938 +,,2018263008,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018263008&format=geojson,0.1629,,184.0,",pr2018263008,",1.97,md,,pr,6.0,"0km NW of Playita Cortada, Puerto Rico",0.32,60,",pr,",reviewed,1537454975030,"M 2.0 - 0km NW of Playita Cortada, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1537464415819,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018263008 +,,37361858,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37361858&format=geojson,0.09705,,62.0,",ci37361858,",1.52,ml,,ci,33.0,"16km NW of Fillmore, CA",0.26,36,",ci,",reviewed,1537454664700,"M 1.5 - 16km NW of Fillmore, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537457663840,https://earthquake.usgs.gov/earthquakes/eventpage/ci37361858 +,,37361850,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37361850&format=geojson,0.05911,,57.0,",ci37361850,",1.05,ml,,ci,19.0,"22km E of Coso Junction, CA",0.13,17,",ci,",reviewed,1537454659550,"M 1.1 - 22km E of Coso Junction, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537457177333,https://earthquake.usgs.gov/earthquakes/eventpage/ci37361850 +,,20259373,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259373&format=geojson,,,,",ak20259373,",1.6,ml,,ak,,"33km NNE of Anchor Point, Alaska",0.75,39,",ak,",automatic,1537454518462,"M 1.6 - 33km NNE of Anchor Point, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537455312899,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259373 +,,73087416,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087416&format=geojson,0.004951,,76.0,",nc73087416,",0.9,md,,nc,12.0,"6km WNW of Cobb, CA",0.02,12,",nc,",automatic,1537454513130,"M 0.9 - 6km WNW of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537454610227,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087416 +,,20259371,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259371&format=geojson,,,,",ak20259371,",1.7,ml,,ak,,"120km NNW of Arctic Village, Alaska",0.75,44,",ak,",automatic,1537453643248,"M 1.7 - 120km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537453826009,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259371 +,,73087411,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087411&format=geojson,0.01536,,134.0,",nc73087411,",1.15,md,,nc,13.0,"5km WNW of The Geysers, CA",0.02,20,",nc,",automatic,1537453044080,"M 1.2 - 5km WNW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537455003287,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087411 +,,37361794,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37361794&format=geojson,0.08951,,118.0,",ci37361794,",0.35,ml,,ci,14.0,"8km NE of Aguanga, CA",0.13,2,",ci,",reviewed,1537452700600,"M 0.4 - 8km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537456466432,https://earthquake.usgs.gov/earthquakes/eventpage/ci37361794 +,,20259364,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259364&format=geojson,,,,",ak20259364,",1.8,ml,,ak,,"121km NNW of Arctic Village, Alaska",0.76,50,",ak,",automatic,1537452452919,"M 1.8 - 121km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537452772466,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259364 +,,2000hhjz,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hhjz&format=geojson,3.827,,68.0,",us2000hhjz,",5.1,mb,,us,,Southern Mid-Atlantic Ridge,0.69,400,",us,",reviewed,1537452277480,M 5.1 - Southern Mid-Atlantic Ridge,0,earthquake,",geoserve,moment-tensor,origin,phase-data,",-60.0,1537476223040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hhjz +,,2018263010,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018263010&format=geojson,0.9229,,292.0,",pr2018263010,",3.24,md,,pr,7.0,"94km N of Punta Cana, Dominican Republic",0.27,162,",pr,",reviewed,1537452093120,"M 3.2 - 94km N of Punta Cana, Dominican Republic",0,earthquake,",geoserve,origin,phase-data,",-300.0,1537465374890,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018263010 +,,20259352,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259352&format=geojson,,,,",ak20259352,us2000hhjv,",3.0,ml,,ak,,"130km NNW of Arctic Village, Alaska",0.71,138,",ak,us,",automatic,1537451752773,"M 3.0 - 130km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537456318040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259352 +,,20259349,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259349&format=geojson,,,,",ak20259349,",1.0,ml,,ak,,"10km NNW of Meadow Lakes, Alaska",0.71,15,",ak,",automatic,1537451656355,"M 1.0 - 10km NNW of Meadow Lakes, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537451919073,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259349 +,,70602267,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70602267&format=geojson,0.01264,,37.0,",hv70602267,",2.02,ml,,hv,24.0,"5km WSW of Volcano, Hawaii",0.07,63,",hv,",reviewed,1537451647350,"M 2.0 - 5km WSW of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537557853188,https://earthquake.usgs.gov/earthquakes/eventpage/hv70602267 +,,20259345,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259345&format=geojson,,,,",ak20259345,",1.1,ml,,ak,,"104km W of Cantwell, Alaska",0.92,19,",ak,",automatic,1537451422776,"M 1.1 - 104km W of Cantwell, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537451718159,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259345 +,,20259343,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259343&format=geojson,,,,",ak20259343,",1.3,ml,,ak,,"10km SW of Redoubt Volcano, Alaska",0.38,26,",ak,",automatic,1537451334186,"M 1.3 - 10km SW of Redoubt Volcano, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537451617366,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259343 +,,2018263007,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018263007&format=geojson,0.2683,,216.0,",pr2018263007,",1.85,md,,pr,4.0,"19km WNW of Puerto Real, Puerto Rico",0.22,53,",pr,",reviewed,1537451226300,"M 1.9 - 19km WNW of Puerto Real, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1537463275460,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018263007 +,,2000hhjs,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hhjs&format=geojson,3.927,,138.0,",us2000hhjs,",4.7,mb,,us,,South of the Kermadec Islands,0.74,340,",us,",reviewed,1537451060710,M 4.7 - South of the Kermadec Islands,0,earthquake,",geoserve,origin,phase-data,",-720.0,1537452605040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hhjs +,2.7,37361770,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37361770&format=geojson,0.1396,2.0,142.0,",ci37361770,",2.28,ml,,ci,26.0,"53km ENE of Ensenada, B.C., MX",0.21,81,",ci,",reviewed,1537450549560,"M 2.3 - 53km ENE of Ensenada, B.C., MX",0,earthquake,",dyfi,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537459008479,https://earthquake.usgs.gov/earthquakes/eventpage/ci37361770 +,,61782286,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61782286&format=geojson,0.06737,,127.0,",av61782286,",0.43,ml,,av,8.0,"21km W of Dutch Harbor, Alaska",0.28,3,",av,",reviewed,1537450526420,"M 0.4 - 21km W of Dutch Harbor, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537481784010,https://earthquake.usgs.gov/earthquakes/eventpage/av61782286 +,,20259337,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259337&format=geojson,,,,",ak20259337,",1.6,ml,,ak,,"123km NNW of Arctic Village, Alaska",1.0,39,",ak,",automatic,1537450479919,"M 1.6 - 123km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537450705108,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259337 +,,70602247,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70602247&format=geojson,0.006828,,102.0,",hv70602247,",1.74,ml,,hv,15.0,"4km W of Volcano, Hawaii",0.22,47,",hv,",automatic,1537450426600,"M 1.7 - 4km W of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537450766170,https://earthquake.usgs.gov/earthquakes/eventpage/hv70602247 +,,20259334,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259334&format=geojson,,,,",ak20259334,",1.1,ml,,ak,,"80km ENE of Cantwell, Alaska",0.28,19,",ak,",automatic,1537450334834,"M 1.1 - 80km ENE of Cantwell, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537450604618,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259334 +,,37361754,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37361754&format=geojson,0.09225,,39.0,",ci37361754,",1.67,ml,,ci,57.0,"7km N of Big Bear City, CA",0.18,43,",ci,",reviewed,1537449800570,"M 1.7 - 7km N of Big Bear City, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537452670060,https://earthquake.usgs.gov/earthquakes/eventpage/ci37361754 +,,20259328,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259328&format=geojson,,,,",ak20259328,",1.4,ml,,ak,,"90km NW of Talkeetna, Alaska",0.31,30,",ak,",automatic,1537449722216,"M 1.4 - 90km NW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537449892447,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259328 +,,20259326,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259326&format=geojson,,,,",ak20259326,",1.5,ml,,ak,,"123km SSE of Prudhoe Bay, Alaska",0.66,35,",ak,",automatic,1537449547799,"M 1.5 - 123km SSE of Prudhoe Bay, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537449731840,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259326 +,,20259324,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259324&format=geojson,,,,",ak20259324,",1.7,ml,,ak,,"122km NNW of Arctic Village, Alaska",0.88,44,",ak,",automatic,1537449376872,"M 1.7 - 122km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537449631370,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259324 +,,70803854,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70803854&format=geojson,,,171.0,",av70803854,",0.25,ml,,av,6.0,"4km SW of Redoubt Volcano, Alaska",0.05,1,",av,",reviewed,1537449089530,"M 0.3 - 4km SW of Redoubt Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537482046000,https://earthquake.usgs.gov/earthquakes/eventpage/av70803854 +,,37361738,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37361738&format=geojson,0.01218,,69.0,",ci37361738,",0.51,ml,,ci,18.0,"9km NE of Aguanga, CA",0.18,4,",ci,",reviewed,1537448972430,"M 0.5 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537449804502,https://earthquake.usgs.gov/earthquakes/eventpage/ci37361738 +,,2018263004,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018263004&format=geojson,0.3967,,273.0,",pr2018263004,",3.31,md,,pr,15.0,"33km SSE of Boca de Yuma, Dominican Republic",0.4,169,",pr,",reviewed,1537448715870,"M 3.3 - 33km SSE of Boca de Yuma, Dominican Republic",0,earthquake,",geoserve,origin,phase-data,",-300.0,1537682599060,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018263004 +,,20259319,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259319&format=geojson,,,,",ak20259319,",1.9,ml,,ak,,"60km SSW of Kaktovik, Alaska",0.7,56,",ak,",automatic,1537448322457,"M 1.9 - 60km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537448628751,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259319 +,,61782266,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61782266&format=geojson,0.1641,,195.0,",av61782266,",1.1,ml,,av,13.0,"38km SW of Unalaska, Alaska",0.22,19,",av,",reviewed,1537448285820,"M 1.1 - 38km SW of Unalaska, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537480891730,https://earthquake.usgs.gov/earthquakes/eventpage/av61782266 +,,70803849,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70803849&format=geojson,0.187,,208.0,",av70803849,",0.71,ml,,av,8.0,"40km SW of Unalaska, Alaska",0.25,8,",av,",reviewed,1537448229580,"M 0.7 - 40km SW of Unalaska, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537481116780,https://earthquake.usgs.gov/earthquakes/eventpage/av70803849 +,,20259315,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259315&format=geojson,,,,",ak20259315,",1.6,ml,,ak,,"116km NNW of Arctic Village, Alaska",0.92,39,",ak,",automatic,1537448133909,"M 1.6 - 116km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537448337582,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259315 +,,20259314,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259314&format=geojson,,,,",ak20259314,",2.0,ml,,ak,,"42km SSW of Kaktovik, Alaska",0.6,62,",ak,",automatic,1537447616012,"M 2.0 - 42km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537447846141,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259314 +,3.8,37361730,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37361730&format=geojson,0.01049,179.0,13.0,",ci37361730,",3.43,ml,3.05,ci,172.0,"3km N of Colton, CA",0.19,249,",ci,",reviewed,1537447474520,"M 3.4 - 3km N of Colton, CA",0,earthquake,",dyfi,focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,shakemap,",-480.0,1539193357671,https://earthquake.usgs.gov/earthquakes/eventpage/ci37361730 +,,20259309,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259309&format=geojson,,,,",ak20259309,",1.7,ml,,ak,,"124km NNW of Arctic Village, Alaska",0.62,44,",ak,",automatic,1537447206643,"M 1.7 - 124km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537447384842,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259309 +,,60064633,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=se60064633&format=geojson,0.09595,,95.0,",se60064633,",1.79,md,,se,10.0,"9km S of Etowah, Tennessee",0.07,49,",se,",reviewed,1537447150070,"M 1.8 - 9km S of Etowah, Tennessee",0,earthquake,",geoserve,origin,phase-data,",-300.0,1537448777650,https://earthquake.usgs.gov/earthquakes/eventpage/se60064633 +,,00657460,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657460&format=geojson,0.036,,213.4,",nn00657460,",-0.5,ml,,nn,3.0,"28km SSE of Hawthorne, Nevada",0.0011,0,",nn,",reviewed,1537447135509,"M -0.5 - 28km SSE of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537485413294,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657460 +,,20259307,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259307&format=geojson,,,,",ak20259307,",1.0,ml,,ak,,"18km NW of Fishhook, Alaska",0.71,15,",ak,",automatic,1537446991412,"M 1.0 - 18km NW of Fishhook, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537447254289,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259307 +,,37361714,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37361714&format=geojson,0.09106,,61.0,",ci37361714,",1.27,ml,,ci,26.0,"16km N of Santa Paula, CA",0.23,25,",ci,",reviewed,1537446877560,"M 1.3 - 16km N of Santa Paula, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537456813488,https://earthquake.usgs.gov/earthquakes/eventpage/ci37361714 +,,20259305,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259305&format=geojson,,,,",ak20259305,",1.7,ml,,ak,,"113km N of Larsen Bay, Alaska",0.94,44,",ak,",automatic,1537446524379,"M 1.7 - 113km N of Larsen Bay, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537446872993,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259305 +,,70602172,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70602172&format=geojson,0.002632,,70.0,",hv70602172,",1.71,ml,,hv,12.0,"4km W of Volcano, Hawaii",0.12,45,",hv,",automatic,1537446272950,"M 1.7 - 4km W of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537446617700,https://earthquake.usgs.gov/earthquakes/eventpage/hv70602172 +,,00657402,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657402&format=geojson,0.133,,62.71,",nn00657402,",0.7,ml,,nn,10.0,"41km ENE of Bishop, California",0.196,8,",nn,",reviewed,1537446111869,"M 0.7 - 41km ENE of Bishop, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537472684790,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657402 +,,20259299,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259299&format=geojson,,,,",ak20259299,",2.8,ml,,ak,,"128km NNW of Arctic Village, Alaska",0.73,121,",ak,",automatic,1537445367848,"M 2.8 - 128km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537445980402,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259299 +,,2018263005,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018263005&format=geojson,0.1285,,183.0,",pr2018263005,",2.2,md,,pr,7.0,"1km ESE of Potala Pastillo, Puerto Rico",0.4,74,",pr,",reviewed,1537445268910,"M 2.2 - 1km ESE of Potala Pastillo, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1537461401247,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018263005 +,,2018263006,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018263006&format=geojson,0.5261,,331.0,",pr2018263006,",2.53,md,,pr,6.0,"55km NNW of San Antonio, Puerto Rico",0.14,98,",pr,",reviewed,1537445130230,"M 2.5 - 55km NNW of San Antonio, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1537461857991,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018263006 +,,73087391,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087391&format=geojson,0.009269,,101.0,",nc73087391,",0.21,md,,nc,7.0,"12km E of Mammoth Lakes, CA",0.06,1,",nc,",reviewed,1537445086420,"M 0.2 - 12km E of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537459588811,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087391 +,,20259286,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259286&format=geojson,,,,",ak20259286,",2.5,ml,,ak,,"97km N of Larsen Bay, Alaska",0.56,96,",ak,",automatic,1537444572587,"M 2.5 - 97km N of Larsen Bay, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537444946784,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259286 +,,20259285,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259285&format=geojson,,,,",ak20259285,",1.2,ml,,ak,,"52km W of Valdez, Alaska",0.55,22,",ak,",automatic,1537444518803,"M 1.2 - 52km W of Valdez, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537444715696,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259285 +,,37361698,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37361698&format=geojson,0.007799,,36.0,",ci37361698,",0.63,ml,,ci,26.0,"10km NE of Aguanga, CA",0.14,6,",ci,",reviewed,1537444453920,"M 0.6 - 10km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537449880410,https://earthquake.usgs.gov/earthquakes/eventpage/ci37361698 +,,70602112,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70602112&format=geojson,0.003798,,60.0,",hv70602112,",1.81,ml,,hv,18.0,"4km WSW of Volcano, Hawaii",0.23,50,",hv,",automatic,1537443949550,"M 1.8 - 4km WSW of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537444289230,https://earthquake.usgs.gov/earthquakes/eventpage/hv70602112 +,2.5,2000hhwn,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hhwn&format=geojson,0.24,3.0,96.0,",us2000hhwn,",2.5,mb_lg,,us,,"7km NNW of Trinidad, Colorado",0.31,97,",us,",reviewed,1537443494190,"M 2.5 - 7km NNW of Trinidad, Colorado",0,earthquake,",dyfi,geoserve,origin,phase-data,",-420.0,1537823773295,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hhwn +,,20259282,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259282&format=geojson,,,,",ak20259282,",1.6,ml,,ak,,"63km ENE of Cape Yakataga, Alaska",0.96,39,",ak,",automatic,1537443361708,"M 1.6 - 63km ENE of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537443652681,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259282 +,,37361674,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37361674&format=geojson,0.02484,,45.0,",ci37361674,",1.44,ml,,ci,53.0,"2km ENE of Beaumont, CA",0.21,32,",ci,",reviewed,1537443237590,"M 1.4 - 2km ENE of Beaumont, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537449883130,https://earthquake.usgs.gov/earthquakes/eventpage/ci37361674 +,,20259278,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259278&format=geojson,,,,",ak20259278,",1.7,ml,,ak,,"39km N of Valdez, Alaska",0.72,44,",ak,",automatic,1537443052133,"M 1.7 - 39km N of Valdez, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537443331305,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259278 +,,70602092,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70602092&format=geojson,0.003559,,58.0,",hv70602092,",1.71,ml,,hv,21.0,"4km WSW of Volcano, Hawaii",0.08,45,",hv,",reviewed,1537442919450,"M 1.7 - 4km WSW of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537497384270,https://earthquake.usgs.gov/earthquakes/eventpage/hv70602092 +,,20259274,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259274&format=geojson,,,,",ak20259274,",1.3,ml,,ak,,"59km SE of Whittier, Alaska",0.48,26,",ak,",automatic,1537442606133,"M 1.3 - 59km SE of Whittier, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537442829594,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259274 +,,73087386,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087386&format=geojson,0.01029,,110.0,",nc73087386,",0.4,md,,nc,13.0,"12km E of Mammoth Lakes, CA",0.03,2,",nc,",reviewed,1537442578310,"M 0.4 - 12km E of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537458747416,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087386 +,,20259271,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259271&format=geojson,,,,",ak20259271,",0.7,ml,,ak,,"16km ENE of Salcha, Alaska",0.49,8,",ak,",automatic,1537442429391,"M 0.7 - 16km ENE of Salcha, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537442728480,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259271 +,,37361666,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37361666&format=geojson,0.03411,,35.0,",ci37361666,",0.39,ml,,ci,32.0,"8km ENE of Aguanga, CA",0.16,2,",ci,",reviewed,1537442410380,"M 0.4 - 8km ENE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537456404358,https://earthquake.usgs.gov/earthquakes/eventpage/ci37361666 +,,37361658,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37361658&format=geojson,0.001053,,50.0,",ci37361658,",0.51,ml,,ci,17.0,"1km SE of Lake Henshaw, CA",0.17,4,",ci,",reviewed,1537442342900,"M 0.5 - 1km SE of Lake Henshaw, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537449856312,https://earthquake.usgs.gov/earthquakes/eventpage/ci37361658 +,,20259267,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259267&format=geojson,,,,",ak20259267,",1.5,ml,,ak,,"72km WSW of Willow, Alaska",0.56,35,",ak,",automatic,1537442157459,"M 1.5 - 72km WSW of Willow, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537442829371,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259267 +,,70602062,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70602062&format=geojson,0.05541,,109.0,",hv70602062,",1.77,md,,hv,30.0,"14km SSE of Volcano, Hawaii",0.2,48,",hv,",automatic,1537441673110,"M 1.8 - 14km SSE of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537441874410,https://earthquake.usgs.gov/earthquakes/eventpage/hv70602062 +,,70602057,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70602057&format=geojson,0.004345,,61.0,",hv70602057,",1.73,ml,,hv,21.0,"4km WSW of Volcano, Hawaii",0.09,46,",hv,",reviewed,1537441655730,"M 1.7 - 4km WSW of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537497792400,https://earthquake.usgs.gov/earthquakes/eventpage/hv70602057 +,,37361650,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37361650&format=geojson,0.03721,,38.0,",ci37361650,",1.29,ml,,ci,57.0,"8km ENE of Aguanga, CA",0.21,26,",ci,",reviewed,1537441270820,"M 1.3 - 8km ENE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537449858601,https://earthquake.usgs.gov/earthquakes/eventpage/ci37361650 +,,37361642,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37361642&format=geojson,0.03716,,74.0,",ci37361642,",0.95,ml,,ci,42.0,"8km ENE of Aguanga, CA",0.18,14,",ci,",reviewed,1537441221240,"M 1.0 - 8km ENE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537449950600,https://earthquake.usgs.gov/earthquakes/eventpage/ci37361642 +,,20259260,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259260&format=geojson,,,,",ak20259260,",2.4,ml,,ak,,"39km S of Kaktovik, Alaska",0.96,89,",ak,",automatic,1537441133521,"M 2.4 - 39km S of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537441534253,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259260 +,,37361634,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37361634&format=geojson,0.03202,,72.0,",ci37361634,",0.46,ml,,ci,22.0,"9km ENE of Aguanga, CA",0.16,3,",ci,",reviewed,1537441125430,"M 0.5 - 9km ENE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537449875004,https://earthquake.usgs.gov/earthquakes/eventpage/ci37361634 +,,20259258,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259258&format=geojson,,,,",ak20259258,",1.8,ml,,ak,,"32km WNW of Cantwell, Alaska",0.85,50,",ak,",automatic,1537441105783,"M 1.8 - 32km WNW of Cantwell, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537441403457,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259258 +,,73087381,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087381&format=geojson,0.04359,,83.0,",nc73087381,",1.4,md,,nc,20.0,"25km SW of Gustine, CA",0.04,30,",nc,",reviewed,1537441075660,"M 1.4 - 25km SW of Gustine, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537481642936,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087381 +,,37361626,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37361626&format=geojson,0.03485,,39.0,",ci37361626,",0.89,ml,,ci,44.0,"8km ENE of Aguanga, CA",0.2,12,",ci,",reviewed,1537440947820,"M 0.9 - 8km ENE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537449983780,https://earthquake.usgs.gov/earthquakes/eventpage/ci37361626 +,,20259255,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259255&format=geojson,,,,",ak20259255,",1.3,ml,,ak,,"76km NNW of Talkeetna, Alaska",0.59,26,",ak,",automatic,1537440644567,"M 1.3 - 76km NNW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537441202514,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259255 +,,73087376,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087376&format=geojson,0.004136,,74.0,",nc73087376,",1.08,md,,nc,19.0,"7km WNW of The Geysers, CA",0.03,18,",nc,",automatic,1537440359830,"M 1.1 - 7km WNW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537440458057,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087376 +,,2018263001,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018263001&format=geojson,0.9259,,320.0,",pr2018263001,",2.53,md,,pr,10.0,"75km N of Loiza, Puerto Rico",0.24,98,",pr,",reviewed,1537440163690,"M 2.5 - 75km N of Loiza, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1537446332366,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018263001 +,,73087371,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087371&format=geojson,0.01813,,97.0,",nc73087371,",0.91,md,,nc,34.0,"6km NNW of Cholame, CA",0.07,13,",nc,",reviewed,1537439215770,"M 0.9 - 6km NNW of Cholame, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537489528464,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087371 +,,37361618,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37361618&format=geojson,0.107,,77.0,",ci37361618,",0.59,ml,,ci,32.0,"10km SSW of Big Bear Lake, CA",0.16,5,",ci,",reviewed,1537438482530,"M 0.6 - 10km SSW of Big Bear Lake, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537456009657,https://earthquake.usgs.gov/earthquakes/eventpage/ci37361618 +,,00657922,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657922&format=geojson,0.216,,331.57,",nn00657922,",0.1,ml,,nn,3.0,"32km SSW of Hawthorne, Nevada",0.034,0,",nn,",reviewed,1537438216925,"M 0.1 - 32km SSW of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537817193954,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657922 +,,20259247,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259247&format=geojson,,,,",ak20259247,",2.1,ml,,ak,,"116km NW of Arctic Village, Alaska",0.84,68,",ak,",automatic,1537438152579,"M 2.1 - 116km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537438465615,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259247 +,,20259245,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259245&format=geojson,,,,",ak20259245,",1.6,ml,,ak,,"98km NW of Arctic Village, Alaska",0.68,39,",ak,",automatic,1537438056305,"M 1.6 - 98km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537438365123,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259245 +,,20259243,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259243&format=geojson,,,,",ak20259243,",1.0,ml,,ak,,"66km WSW of Willow, Alaska",0.34,15,",ak,",automatic,1537437898856,"M 1.0 - 66km WSW of Willow, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537438074015,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259243 +,,2018263000,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018263000&format=geojson,1.1366,,344.0,",pr2018263000,",2.61,md,,pr,3.0,"57km N of Vieques, Puerto Rico",0.04,105,",pr,",reviewed,1537437437000,"M 2.6 - 57km N of Vieques, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1537444724472,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018263000 +,,20259235,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259235&format=geojson,,,,",ak20259235,",1.7,ml,,ak,,"108km NNW of Arctic Village, Alaska",1.09,44,",ak,",automatic,1537437159405,"M 1.7 - 108km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537437492530,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259235 +,,20259234,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259234&format=geojson,,,,",ak20259234,",0.8,ml,,ak,,"37km ENE of Cantwell, Alaska",0.3,10,",ak,",automatic,1537437106366,"M 0.8 - 37km ENE of Cantwell, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537437291662,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259234 +,,20259226,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259226&format=geojson,,,,",ak20259226,",2.0,ml,,ak,,"27km S of Redoubt Volcano, Alaska",0.34,62,",ak,",automatic,1537436803752,"M 2.0 - 27km S of Redoubt Volcano, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537437100594,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259226 +,,20259223,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259223&format=geojson,,,,",ak20259223,",2.3,ml,,ak,,"112km NNW of Arctic Village, Alaska",0.72,81,",ak,",automatic,1537436755442,"M 2.3 - 112km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537437100817,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259223 +,,00657396,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657396&format=geojson,0.052,,125.93,",nn00657396,",2.1,ml,,nn,9.0,"40km NNW of Carlin, Nevada",0.0699,68,",nn,",reviewed,1537436752457,"M 2.1 - 40km NNW of Carlin, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537461427397,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657396 +,,37361546,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37361546&format=geojson,0.103,,70.0,",ci37361546,",0.93,ml,,ci,24.0,"10km SSW of Big Bear Lake, CA",0.2,13,",ci,",reviewed,1537436604070,"M 0.9 - 10km SSW of Big Bear Lake, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537449910692,https://earthquake.usgs.gov/earthquakes/eventpage/ci37361546 +,,20259218,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259218&format=geojson,,,,",ak20259218,",0.9,ml,,ak,,"62km W of Anchor Point, Alaska",0.27,12,",ak,",automatic,1537436447669,"M 0.9 - 62km W of Anchor Point, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537436658742,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259218 +green,,20259185,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259185&format=geojson,,,,",ak20259185,us2000hhh9,",3.8,ml,3.71,ak,,"69km SSW of Kaktovik, Alaska",0.74,222,",ak,us,",reviewed,1537435679405,"M 3.8 - 69km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,ground-failure,losspager,moment-tensor,origin,phase-data,shakemap,",-540.0,1537456806040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259185 +,,2000hhh4,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hhh4&format=geojson,1.966,,132.0,",us2000hhh4,",5.4,mww,,us,,"119km SW of Mapastepec, Mexico",1.29,449,",us,",reviewed,1537435278650,"M 5.4 - 119km SW of Mapastepec, Mexico",0,earthquake,",geoserve,moment-tensor,origin,phase-data,",-360.0,1537455719040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hhh4 +,,20259184,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259184&format=geojson,,,,",ak20259184,",1.0,ml,,ak,,"85km WNW of Skagway, Alaska",0.79,15,",ak,",automatic,1537435233155,"M 1.0 - 85km WNW of Skagway, Alaska",0,earthquake,",geoserve,origin,",-480.0,1537435473744,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259184 +,,60064638,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nm60064638&format=geojson,0.01695,,60.0,",nm60064638,",1.14,md,,nm,14.0,"7km SSW of Lilbourn, Missouri",0.03,20,",nm,",reviewed,1537435232470,"M 1.1 - 7km SSW of Lilbourn, Missouri",0,earthquake,",geoserve,origin,phase-data,",-360.0,1537453883610,https://earthquake.usgs.gov/earthquakes/eventpage/nm60064638 +,,20259179,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259179&format=geojson,,,,",ak20259179,",1.7,ml,,ak,,"124km NNW of Arctic Village, Alaska",0.74,44,",ak,",automatic,1537435204656,"M 1.7 - 124km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537435473522,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259179 +,,37361530,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37361530&format=geojson,0.02902,,35.0,",ci37361530,",0.24,ml,,ci,31.0,"9km ENE of Aguanga, CA",0.14,1,",ci,",reviewed,1537435190430,"M 0.2 - 9km ENE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537455554472,https://earthquake.usgs.gov/earthquakes/eventpage/ci37361530 +,,2018263002,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018263002&format=geojson,0.8517,,306.0,",pr2018263002,",1.93,md,,pr,9.0,"65km N of Loiza, Puerto Rico",0.31,57,",pr,",reviewed,1537434677310,"M 1.9 - 65km N of Loiza, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1537449189161,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018263002 +,,20259172,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259172&format=geojson,,,,",ak20259172,",1.6,ml,,ak,,"24km SE of Tok, Alaska",0.99,39,",ak,",automatic,1537434629930,"M 1.6 - 24km SE of Tok, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537435373071,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259172 +,,20259164,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259164&format=geojson,,,,",ak20259164,",1.2,ml,,ak,,"55km NNW of Yakutat, Alaska",0.6,22,",ak,",automatic,1537434114013,"M 1.2 - 55km NNW of Yakutat, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537434399530,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259164 +,,20259160,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259160&format=geojson,,,,",ak20259160,",1.6,ml,,ak,,"48km WSW of Delta Junction, Alaska",0.64,39,",ak,",automatic,1537434101466,"M 1.6 - 48km WSW of Delta Junction, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537434740589,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259160 +,,20259158,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259158&format=geojson,,,,",ak20259158,",1.8,ml,,ak,,"115km NNW of Arctic Village, Alaska",0.56,50,",ak,",automatic,1537433963561,"M 1.8 - 115km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537434298413,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259158 +,,00657459,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657459&format=geojson,0.292,,127.77,",nn00657459,",1.0,ml,,nn,11.0,"38km N of Yosemite Valley, California",0.1249,15,",nn,",reviewed,1537433915215,"M 1.0 - 38km N of Yosemite Valley, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537485227457,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657459 +,2.0,2000hhgs,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hhgs&format=geojson,3.051,1.0,156.0,",us2000hhgs,",4.5,mb,,us,,"76km WSW of Palpa, Peru",0.95,312,",us,",reviewed,1537433118620,"M 4.5 - 76km WSW of Palpa, Peru",0,earthquake,",dyfi,geoserve,origin,phase-data,",-300.0,1537466638036,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hhgs +,,37361522,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37361522&format=geojson,0.02254,,35.0,",ci37361522,",1.32,ml,,ci,58.0,"8km NE of Aguanga, CA",0.2,27,",ci,",reviewed,1537432942900,"M 1.3 - 8km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537449987880,https://earthquake.usgs.gov/earthquakes/eventpage/ci37361522 +,,37361514,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37361514&format=geojson,0.02207,,67.0,",ci37361514,",0.99,ml,,ci,29.0,"8km NE of Aguanga, CA",0.21,15,",ci,",reviewed,1537432838450,"M 1.0 - 8km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537449914894,https://earthquake.usgs.gov/earthquakes/eventpage/ci37361514 +,,37361506,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37361506&format=geojson,0.01906,,66.0,",ci37361506,",0.83,ml,,ci,40.0,"9km NE of Aguanga, CA",0.18,11,",ci,",reviewed,1537432831760,"M 0.8 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537450052530,https://earthquake.usgs.gov/earthquakes/eventpage/ci37361506 +,,70803844,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70803844&format=geojson,0.02206,,213.0,",av70803844,",0.2,ml,,av,4.0,"51km SSW of Redoubt Volcano, Alaska",0.05,1,",av,",reviewed,1537432803890,"M 0.2 - 51km SSW of Redoubt Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537488913980,https://earthquake.usgs.gov/earthquakes/eventpage/av70803844 +,,00657458,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657458&format=geojson,0.07,,152.31,",nn00657458,",0.4,ml,,nn,5.0,"30km E of Hawthorne, Nevada",0.0753,2,",nn,",reviewed,1537432769255,"M 0.4 - 30km E of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537484299568,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657458 +,,37361498,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37361498&format=geojson,0.01748,,65.0,",ci37361498,",0.8,ml,,ci,32.0,"9km NE of Aguanga, CA",0.16,10,",ci,",reviewed,1537432645950,"M 0.8 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537450055500,https://earthquake.usgs.gov/earthquakes/eventpage/ci37361498 +,,37361490,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37361490&format=geojson,0.01242,,77.0,",ci37361490,",0.27,ml,,ci,14.0,"10km NE of Aguanga, CA",0.16,1,",ci,",reviewed,1537432606300,"M 0.3 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537449937196,https://earthquake.usgs.gov/earthquakes/eventpage/ci37361490 +,,20259138,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259138&format=geojson,,,,",ak20259138,us2000hhgq,",2.5,ml,,ak,,"35km SW of Redoubt Volcano, Alaska",0.67,96,",ak,us,",automatic,1537432069974,"M 2.5 - 35km SW of Redoubt Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537508822040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259138 +,,00657918,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657918&format=geojson,0.069,,267.35,",nn00657918,",0.4,ml,,nn,4.0,"21km E of Hawthorne, Nevada",0.0133,2,",nn,",reviewed,1537431972194,"M 0.4 - 21km E of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537816453765,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657918 +,,73087361,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087361&format=geojson,0.01044,,98.0,",nc73087361,",1.14,md,,nc,12.0,"3km NNW of The Geysers, CA",0.01,20,",nc,",automatic,1537431613170,"M 1.1 - 3km NNW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537433643295,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087361 +,,20259136,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259136&format=geojson,,,,",ak20259136,",1.3,ml,,ak,,"69km NE of Cape Yakataga, Alaska",0.72,26,",ak,",automatic,1537431542374,"M 1.3 - 69km NE of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537431790773,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259136 +,,73087351,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087351&format=geojson,0.005439,,125.0,",nc73087351,",0.57,md,,nc,6.0,"12km ENE of Cloverdale, CA",0.02,5,",nc,",automatic,1537431481730,"M 0.6 - 12km ENE of Cloverdale, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537431578649,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087351 +,,20259135,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259135&format=geojson,,,,",ak20259135,",0.6,ml,,ak,,"64km NNW of Nikiski, Alaska",0.35,6,",ak,",reviewed,1537430923228,"M 0.6 - 64km NNW of Nikiski, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537455574190,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259135 +,,2000hhgj,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hhgj&format=geojson,1.844,,164.0,",us2000hhgj,",4.4,mb,,us,,"105km ENE of Miyako, Japan",0.98,298,",us,",reviewed,1537430889800,"M 4.4 - 105km ENE of Miyako, Japan",0,earthquake,",geoserve,origin,phase-data,",600.0,1537510968040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hhgj +,,00657457,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657457&format=geojson,0.07,,101.64,",nn00657457,",0.8,ml,,nn,9.0,"29km E of Hawthorne, Nevada",0.1677,10,",nn,",reviewed,1537430669976,"M 0.8 - 29km E of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537483929496,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657457 +,,70803839,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70803839&format=geojson,0.09925,,206.0,",av70803839,",0.31,ml,,av,8.0,"101km NNW of Larsen Bay, Alaska",0.19,1,",av,",reviewed,1537430338400,"M 0.3 - 101km NNW of Larsen Bay, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537479991830,https://earthquake.usgs.gov/earthquakes/eventpage/av70803839 +,,2018263003,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018263003&format=geojson,0.7897,,262.0,",pr2018263003,us2000hhk3,",3.07,md,,pr,10.0,"86km NNE of Punta Cana, Dominican Republic",0.53,145,",pr,us,",reviewed,1537429978620,"M 3.1 - 86km NNE of Punta Cana, Dominican Republic",0,earthquake,",geoserve,origin,phase-data,",-300.0,1537510640040,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018263003 +,,20259125,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259125&format=geojson,,,,",ak20259125,",2.1,ml,,ak,,"68km SSW of Kaktovik, Alaska",0.91,68,",ak,",automatic,1537429875956,"M 2.1 - 68km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537430136205,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259125 +,,2000hhga,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hhga&format=geojson,1.825,,129.0,",us2000hhga,",4.6,mb,,us,,"105km ENE of Miyako, Japan",0.68,326,",us,",reviewed,1537429466000,"M 4.6 - 105km ENE of Miyako, Japan",0,earthquake,",geoserve,origin,phase-data,",600.0,1537430366040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hhga +,,20259123,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259123&format=geojson,,,,",ak20259123,",1.8,ml,,ak,,"120km NW of Arctic Village, Alaska",0.64,50,",ak,",automatic,1537429356144,"M 1.8 - 120km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537429694692,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259123 +,,20259121,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259121&format=geojson,,,,",ak20259121,",0.8,ml,,ak,,"69km NE of Cape Yakataga, Alaska",0.65,10,",ak,",automatic,1537429011517,"M 0.8 - 69km NE of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537429283288,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259121 +,,20259111,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259111&format=geojson,,,,",ak20259111,",1.6,ml,,ak,,"64km NE of Talkeetna, Alaska",0.67,39,",ak,",automatic,1537428171877,"M 1.6 - 64km NE of Talkeetna, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537428510943,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259111 +,,73087346,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087346&format=geojson,0.006994,,65.0,",nc73087346,",0.73,md,,nc,31.0,"12km WNW of The Geysers, CA",0.03,8,",nc,",reviewed,1537427606640,"M 0.7 - 12km WNW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537489161686,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087346 +,,00657373,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657373&format=geojson,0.532,,217.41,",nn00657373,",1.5,ml,,nn,12.0,"21km SSW of Gerlach-Empire, Nevada",0.1551,35,",nn,",reviewed,1537427137165,"M 1.5 - 21km SSW of Gerlach-Empire, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537464376566,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657373 +,,2000hhg1,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hhg1&format=geojson,2.347,,47.0,",us2000hhg1,",5.4,mb,,us,,"228km S of Taron, Papua New Guinea",0.43,449,",us,",reviewed,1537427126700,"M 5.4 - 228km S of Taron, Papua New Guinea",1,earthquake,",geoserve,moment-tensor,origin,phase-data,",600.0,1537455811040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hhg1 +,,20259084,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259084&format=geojson,,,,",ak20259084,",1.4,ml,,ak,,"37km WNW of Nikiski, Alaska",0.6,30,",ak,",automatic,1537427016953,"M 1.4 - 37km WNW of Nikiski, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537427407514,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259084 +,,20259076,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259076&format=geojson,,,,",ak20259076,",2.2,ml,,ak,,"68km ESE of Cape Yakataga, Alaska",0.83,74,",ak,",automatic,1537426668533,"M 2.2 - 68km ESE of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537426925646,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259076 +,,20259065,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259065&format=geojson,,,,",ak20259065,",0.5,ml,,ak,,"19km SSE of Ester, Alaska",0.43,4,",ak,",automatic,1537426248296,"M 0.5 - 19km SSE of Ester, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537426424017,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259065 +,,37361474,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37361474&format=geojson,0.03301,,73.0,",ci37361474,",0.59,ml,,ci,21.0,"9km ENE of Aguanga, CA",0.16,5,",ci,",reviewed,1537426127310,"M 0.6 - 9km ENE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537449935036,https://earthquake.usgs.gov/earthquakes/eventpage/ci37361474 +,,2000hhfx,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hhfx&format=geojson,1.751,,48.0,",us2000hhfx,",5.1,mb,,us,,"143km SW of Dadali, Solomon Islands",1.08,400,",us,",reviewed,1537425901020,"M 5.1 - 143km SW of Dadali, Solomon Islands",0,earthquake,",geoserve,origin,phase-data,",660.0,1537427024040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hhfx +,,60064623,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nm60064623&format=geojson,0.4577,,70.0,",nm60064623,",2.29,md,,nm,23.0,"14km NE of Pinckneyville, Illinois",0.18,81,",nm,",reviewed,1537425864390,"M 2.3 - 14km NE of Pinckneyville, Illinois",0,earthquake,",geoserve,origin,phase-data,",-360.0,1537447451150,https://earthquake.usgs.gov/earthquakes/eventpage/nm60064623 +,,37361466,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37361466&format=geojson,0.03464,,73.0,",ci37361466,",0.79,ml,,ci,33.0,"9km ENE of Aguanga, CA",0.17,10,",ci,",reviewed,1537425684080,"M 0.8 - 9km ENE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537450121420,https://earthquake.usgs.gov/earthquakes/eventpage/ci37361466 +,,61782161,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61782161&format=geojson,0.06528,,129.0,",av61782161,",0.31,ml,,av,6.0,"21km W of Unalaska, Alaska",0.2,1,",av,",reviewed,1537425629040,"M 0.3 - 21km W of Unalaska, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537476626960,https://earthquake.usgs.gov/earthquakes/eventpage/av61782161 +,2.2,61421107,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61421107&format=geojson,0.1677,1.0,47.0,",uw61421107,",1.7,ml,,uw,34.0,"8km NE of Woodland, Washington",0.16,45,",uw,",reviewed,1537425372180,"M 1.7 - 8km NE of Woodland, Washington",0,earthquake,",dyfi,geoserve,origin,phase-data,",-480.0,1537480180137,https://earthquake.usgs.gov/earthquakes/eventpage/uw61421107 +,,20259063,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259063&format=geojson,,,,",ak20259063,",1.4,ml,,ak,,"100km NW of Talkeetna, Alaska",1.03,30,",ak,",automatic,1537425032266,"M 1.4 - 100km NW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537425331214,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259063 +,,61782156,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61782156&format=geojson,0.07978,,203.0,",av61782156,",0.83,ml,,av,12.0,"105km NNW of Larsen Bay, Alaska",0.32,11,",av,",reviewed,1537424879590,"M 0.8 - 105km NNW of Larsen Bay, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537475800650,https://earthquake.usgs.gov/earthquakes/eventpage/av61782156 +,,70601642,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70601642&format=geojson,0.04908,,143.0,",hv70601642,",1.09,md,,hv,21.0,"25km W of Volcano, Hawaii",0.11,18,",hv,",reviewed,1537424697240,"M 1.1 - 25km W of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537493929210,https://earthquake.usgs.gov/earthquakes/eventpage/hv70601642 +,,61782151,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61782151&format=geojson,0.03643,,259.0,",av61782151,",-0.25,ml,,av,4.0,"42km NE of Adak, Alaska",0.15,0,",av,",reviewed,1537424610320,"M -0.3 - 42km NE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537474654580,https://earthquake.usgs.gov/earthquakes/eventpage/av61782151 +,,61421102,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61421102&format=geojson,0.1359,,87.0,",uw61421102,",1.01,ml,,uw,25.0,"12km SW of Morton, Washington",0.13,16,",uw,",reviewed,1537424371640,"M 1.0 - 12km SW of Morton, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537480527660,https://earthquake.usgs.gov/earthquakes/eventpage/uw61421102 +,,70803834,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70803834&format=geojson,0.1379,,168.0,",av70803834,",1.06,ml,,av,4.0,"46km W of Nikolski, Alaska",0.09,17,",av,",reviewed,1537424225420,"M 1.1 - 46km W of Nikolski, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537476212540,https://earthquake.usgs.gov/earthquakes/eventpage/av70803834 +,,2000hhfs,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hhfs&format=geojson,1.765,,48.0,",us2000hhfs,",4.9,mb,,us,,"142km SW of Dadali, Solomon Islands",0.58,369,",us,",reviewed,1537424038790,"M 4.9 - 142km SW of Dadali, Solomon Islands",0,earthquake,",geoserve,origin,phase-data,",660.0,1537425000040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hhfs +,,20259050,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259050&format=geojson,,,,",ak20259050,",2.0,ml,,ak,,"49km WNW of Talkeetna, Alaska",0.44,62,",ak,",automatic,1537423452998,"M 2.0 - 49km WNW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537423807169,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259050 +,,20259049,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259049&format=geojson,,,,",ak20259049,",1.3,ml,,ak,,"17km NNE of Willow, Alaska",0.6,26,",ak,",automatic,1537423423575,"M 1.3 - 17km NNE of Willow, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537423706630,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259049 +,,00657819,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657819&format=geojson,0.064,,99.56,",nn00657819,",0.3,ml,,nn,9.0,"10km N of Kingsbury, Nevada",0.0767,1,",nn,",reviewed,1537422973079,"M 0.3 - 10km N of Kingsbury, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537726242315,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657819 +,,20259036,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259036&format=geojson,,,,",ak20259036,",2.1,ml,,ak,,"70km SSW of Kaktovik, Alaska",0.68,68,",ak,",automatic,1537422540451,"M 2.1 - 70km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537423174483,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259036 +,,20259022,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259022&format=geojson,,,,",ak20259022,us2000hhfg,",2.5,ml,,ak,,"68km NNW of Valdez, Alaska",0.89,96,",ak,us,",automatic,1537422501959,"M 2.5 - 68km NNW of Valdez, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537509310040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259022 +green,,2000hhfi,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hhfi&format=geojson,1.671,,32.0,",us2000hhfi,",5.5,mb,4.23,us,,"132km SW of Dadali, Solomon Islands",0.94,465,",us,",reviewed,1537422457310,"M 5.5 - 132km SW of Dadali, Solomon Islands",0,earthquake,",geoserve,ground-failure,losspager,moment-tensor,origin,phase-data,shakemap,",660.0,1537499655040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hhfi +,,20259020,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259020&format=geojson,,,,",ak20259020,",2.2,ml,,ak,,"83km W of Larsen Bay, Alaska",0.54,74,",ak,",automatic,1537422387743,"M 2.2 - 83km W of Larsen Bay, Alaska",0,earthquake,",geoserve,origin,",-600.0,1537422711536,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259020 +,,20259011,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259011&format=geojson,,,,",ak20259011,",2.2,ml,,ak,,"57km ENE of Cantwell, Alaska",0.77,74,",ak,",automatic,1537422126461,"M 2.2 - 57km ENE of Cantwell, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537422510153,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259011 +,,00657455,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657455&format=geojson,0.071,,106.81,",nn00657455,",0.2,ml,,nn,6.0,"30km E of Hawthorne, Nevada",0.134,1,",nn,",reviewed,1537421842854,"M 0.2 - 30km E of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537483373046,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657455 +,,20259007,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259007&format=geojson,,,,",ak20259007,",1.4,ml,,ak,,"25km ENE of Talkeetna, Alaska",0.64,30,",ak,",automatic,1537421810869,"M 1.4 - 25km ENE of Talkeetna, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537422409501,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259007 +,,20259000,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20259000&format=geojson,,,,",ak20259000,",1.8,ml,,ak,,"45km S of Cantwell, Alaska",0.92,50,",ak,",automatic,1537421742372,"M 1.8 - 45km S of Cantwell, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537421997881,https://earthquake.usgs.gov/earthquakes/eventpage/ak20259000 +,,20258996,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258996&format=geojson,,,,",ak20258996,",2.3,ml,,ak,,"66km SSW of Kaktovik, Alaska",0.78,81,",ak,",automatic,1537420996054,"M 2.3 - 66km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537421706648,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258996 +,,37361450,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37361450&format=geojson,0.0238,,74.0,",ci37361450,",1.44,ml,,ci,32.0,"13km WNW of Calipatria, CA",0.2,32,",ci,",reviewed,1537420786580,"M 1.4 - 13km WNW of Calipatria, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537455145101,https://earthquake.usgs.gov/earthquakes/eventpage/ci37361450 +,,20258994,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258994&format=geojson,,,,",ak20258994,",1.9,ml,,ak,,"130km SSE of Prudhoe Bay, Alaska",0.78,56,",ak,",automatic,1537420727416,"M 1.9 - 130km SSE of Prudhoe Bay, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537421706431,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258994 +,,73087331,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087331&format=geojson,0.05671,,144.0,",nc73087331,",1.28,md,,nc,13.0,"10km SE of Pinnacles, CA",0.03,25,",nc,",reviewed,1537420479240,"M 1.3 - 10km SE of Pinnacles, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537492563418,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087331 +,,60240796,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nm60240796&format=geojson,0.04651,,68.0,",nm60240796,",2.26,md,,nm,21.0,"4km N of Blytheville, Arkansas",0.15,79,",nm,",reviewed,1537420298840,"M 2.3 - 4km N of Blytheville, Arkansas",0,earthquake,",geoserve,origin,phase-data,",-360.0,1537444795400,https://earthquake.usgs.gov/earthquakes/eventpage/nm60240796 +,,20258952,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258952&format=geojson,,,,",ak20258952,",2.8,ml,,ak,,"94km W of Alakanuk, Alaska",0.84,121,",ak,",automatic,1537419402507,"M 2.8 - 94km W of Alakanuk, Alaska",0,earthquake,",geoserve,origin,",-660.0,1537420342294,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258952 +,,20258946,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258946&format=geojson,,,,",ak20258946,",1.4,ml,,ak,,"26km WNW of Anchor Point, Alaska",0.52,30,",ak,",automatic,1537419375435,"M 1.4 - 26km WNW of Anchor Point, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537419700350,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258946 +,2.7,2000hheu,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hheu&format=geojson,1.764,2.0,75.0,",us2000hheu,",5.4,mb,,us,,"73km N of Anatahan, Northern Mariana Islands",1.01,449,",us,",reviewed,1537419333020,"M 5.4 - 73km N of Anatahan, Northern Mariana Islands",0,earthquake,",dyfi,geoserve,moment-tensor,origin,phase-data,",600.0,1537461936828,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hheu +,,20258941,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258941&format=geojson,,,,",ak20258941,",1.7,ml,,ak,,"81km NW of Talkeetna, Alaska",0.47,44,",ak,",automatic,1537418897478,"M 1.7 - 81km NW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537419499261,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258941 +,,20258938,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258938&format=geojson,,,,",ak20258938,",2.3,ml,,ak,,"116km NNW of Arctic Village, Alaska",0.81,81,",ak,",automatic,1537418634105,"M 2.3 - 116km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537418957181,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258938 +,,20258933,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258933&format=geojson,,,,",ak20258933,",1.4,ml,,ak,,"144km SE of McGrath, Alaska",0.92,30,",ak,",automatic,1537418304105,"M 1.4 - 144km SE of McGrath, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537418635743,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258933 +,,20258931,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258931&format=geojson,,,,",ak20258931,",1.4,ml,,ak,,"16km ESE of Cohoe, Alaska",0.16,30,",ak,",automatic,1537418285179,"M 1.4 - 16km ESE of Cohoe, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537418635961,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258931 +,,73087321,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087321&format=geojson,0.01205,,73.0,",nc73087321,",1.04,md,,nc,20.0,"4km WNW of The Geysers, CA",0.05,17,",nc,",automatic,1537417960210,"M 1.0 - 4km WNW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537418059007,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087321 +,,20258926,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258926&format=geojson,,,,",ak20258926,",1.1,ml,,ak,,"43km NNE of Sutton-Alpine, Alaska",0.86,19,",ak,",automatic,1537417371478,"M 1.1 - 43km NNE of Sutton-Alpine, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537417863184,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258926 +,,20258925,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258925&format=geojson,,,,",ak20258925,",0.7,ml,,ak,,"48km NNE of North Pole, Alaska",0.56,8,",ak,",automatic,1537417313338,"M 0.7 - 48km NNE of North Pole, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537417552238,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258925 +,,20258922,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258922&format=geojson,,,,",ak20258922,",1.2,ml,,ak,,"94km W of Cape Yakataga, Alaska",0.62,22,",ak,",automatic,1537416710050,"M 1.2 - 94km W of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537416910198,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258922 +,,2000hheh,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hheh&format=geojson,13.722,,67.0,",us2000hheh,",4.6,mb,,us,,Socotra region,0.95,326,",us,",reviewed,1537416602540,M 4.6 - Socotra region,0,earthquake,",geoserve,origin,phase-data,",240.0,1537418697040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hheh +,,61421047,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61421047&format=geojson,0.2268,,168.0,",uw61421047,",1.14,ml,,uw,4.0,"22km NNW of Elgin, Oregon",0.46,20,",uw,",reviewed,1537416562880,"M 1.1 - 22km NNW of Elgin, Oregon",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537504222410,https://earthquake.usgs.gov/earthquakes/eventpage/uw61421047 +,,70601407,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70601407&format=geojson,0.0408,,168.0,",hv70601407,",1.83,ml,,hv,27.0,"13km SE of Volcano, Hawaii",0.22,52,",hv,",automatic,1537416223080,"M 1.8 - 13km SE of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537416563810,https://earthquake.usgs.gov/earthquakes/eventpage/hv70601407 +,,70803824,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70803824&format=geojson,0.05444,,269.0,",av70803824,",-0.28,ml,,av,4.0,"55km SSW of Redoubt Volcano, Alaska",0.27,0,",av,",reviewed,1537416140400,"M -0.3 - 55km SSW of Redoubt Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537473230980,https://earthquake.usgs.gov/earthquakes/eventpage/av70803824 +,,37361402,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37361402&format=geojson,0.005191,,39.0,",ci37361402,",0.67,ml,,ci,27.0,"10km NE of Aguanga, CA",0.16,7,",ci,",reviewed,1537415828570,"M 0.7 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537449970559,https://earthquake.usgs.gov/earthquakes/eventpage/ci37361402 +,,37361394,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37361394&format=geojson,0.004158,,69.0,",ci37361394,",0.62,ml,,ci,26.0,"10km NE of Aguanga, CA",0.15,6,",ci,",reviewed,1537415326090,"M 0.6 - 10km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537450125540,https://earthquake.usgs.gov/earthquakes/eventpage/ci37361394 +,,20258917,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258917&format=geojson,,,,",ak20258917,",1.5,ml,,ak,,"63km SE of Whittier, Alaska",0.52,35,",ak,",automatic,1537415298356,"M 1.5 - 63km SE of Whittier, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537415576753,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258917 +,,20258914,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258914&format=geojson,,,,",ak20258914,",2.2,ml,,ak,,"96km SW of Kaktovik, Alaska",0.79,74,",ak,",automatic,1537414988833,"M 2.2 - 96km SW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537415285657,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258914 +,,37361386,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37361386&format=geojson,0.0111,,31.0,",ci37361386,",1.09,ml,,ci,50.0,"9km NE of Aguanga, CA",0.2,18,",ci,",reviewed,1537414539450,"M 1.1 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537450128700,https://earthquake.usgs.gov/earthquakes/eventpage/ci37361386 +,,20258911,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258911&format=geojson,,,,",ak20258911,",2.1,ml,,ak,,"125km NW of Arctic Village, Alaska",0.71,68,",ak,",automatic,1537414456482,"M 2.1 - 125km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537414794207,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258911 +,,37361378,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37361378&format=geojson,0.03083,,62.0,",ci37361378,",0.37,ml,,ci,26.0,"8km ENE of Aguanga, CA",0.13,2,",ci,",reviewed,1537414245860,"M 0.4 - 8km ENE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537454627559,https://earthquake.usgs.gov/earthquakes/eventpage/ci37361378 +,,20258908,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258908&format=geojson,,,,",ak20258908,",1.4,ml,,ak,,"58km ENE of Cape Yakataga, Alaska",0.76,30,",ak,",automatic,1537413431567,"M 1.4 - 58km ENE of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537413660995,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258908 +,,70601327,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70601327&format=geojson,0.2432,,237.0,",hv70601327,",2.06,md,,hv,37.0,"41km ESE of Pahala, Hawaii",0.12,65,",hv,",reviewed,1537413173690,"M 2.1 - 41km ESE of Pahala, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537991489560,https://earthquake.usgs.gov/earthquakes/eventpage/hv70601327 +,,20258904,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258904&format=geojson,,,,",ak20258904,",1.1,ml,,ak,,"81km ENE of Cape Yakataga, Alaska",0.66,19,",ak,",automatic,1537412742900,"M 1.1 - 81km ENE of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537412928925,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258904 +,,00657449,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657449&format=geojson,0.046,,153.69,",nn00657449,",0.3,ml,,nn,5.0,"29km ESE of Hawthorne, Nevada",0.079,1,",nn,",reviewed,1537412239486,"M 0.3 - 29km ESE of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537481162081,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657449 +,,20258899,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258899&format=geojson,,,,",ak20258899,",1.3,ml,,ak,,"66km ENE of Sutton-Alpine, Alaska",0.97,26,",ak,",automatic,1537412170687,"M 1.3 - 66km ENE of Sutton-Alpine, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537412617936,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258899 +,,73087311,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087311&format=geojson,0.1029,,116.0,",nc73087311,",1.57,md,,nc,31.0,"12km NE of San Simeon, CA",0.06,38,",nc,",reviewed,1537411643690,"M 1.6 - 12km NE of San Simeon, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537462264008,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087311 +,,60297017,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60297017&format=geojson,0.375,,117.0,",uu60297017,",1.3,ml,,uu,9.0,"21km NW of Montpelier, Idaho",0.06,26,",uu,",reviewed,1537411429810,"M 1.3 - 21km NW of Montpelier, Idaho",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537482621770,https://earthquake.usgs.gov/earthquakes/eventpage/uu60297017 +,,37361362,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37361362&format=geojson,0.02349,,60.0,",ci37361362,",0.36,ml,,ci,22.0,"9km NE of Aguanga, CA",0.12,2,",ci,",reviewed,1537411241580,"M 0.4 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537454368024,https://earthquake.usgs.gov/earthquakes/eventpage/ci37361362 +,,2000hhe6,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hhe6&format=geojson,3.419,,94.0,",us2000hhe6,",5.1,mb,,us,,"278km SE of Pondaguitan, Philippines",0.92,400,",us,",reviewed,1537411002190,"M 5.1 - 278km SE of Pondaguitan, Philippines",1,earthquake,",geoserve,origin,phase-data,",540.0,1537411958040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hhe6 +,,20258866,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258866&format=geojson,,,,",ak20258866,",0.8,ml,,ak,,"61km NW of Ester, Alaska",0.73,10,",ak,",automatic,1537410456815,"M 0.8 - 61km NW of Ester, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537410672396,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258866 +,,20258859,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258859&format=geojson,,,,",ak20258859,",2.0,ml,,ak,,"58km WSW of Talkeetna, Alaska",0.53,62,",ak,",automatic,1537409000745,"M 2.0 - 58km WSW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537409429291,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258859 +,,73087306,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087306&format=geojson,0.1677,,184.0,",nc73087306,",1.71,md,,nc,31.0,"6km WNW of Huron, CA",0.1,45,",nc,",reviewed,1537408808070,"M 1.7 - 6km WNW of Huron, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537413363326,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087306 +,,37361338,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37361338&format=geojson,0.08496,,118.0,",ci37361338,",1.17,ml,,ci,41.0,"8km NNE of Borrego Springs, CA",0.21,21,",ci,",reviewed,1537408163640,"M 1.2 - 8km NNE of Borrego Springs, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537450191870,https://earthquake.usgs.gov/earthquakes/eventpage/ci37361338 +,,20258856,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258856&format=geojson,,,,",ak20258856,",2.5,ml,,ak,,"88km SSW of Kaktovik, Alaska",0.89,96,",ak,",automatic,1537407926902,"M 2.5 - 88km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537408225848,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258856 +,,37361330,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37361330&format=geojson,0.07779,,110.0,",ci37361330,",0.8,ml,,ci,19.0,"5km E of Borrego Springs, CA",0.17,10,",ci,",reviewed,1537407661110,"M 0.8 - 5km E of Borrego Springs, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537450023110,https://earthquake.usgs.gov/earthquakes/eventpage/ci37361330 +,,73087301,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087301&format=geojson,0.00896,,115.0,",nc73087301,",0.29,md,,nc,8.0,"3km SW of Mammoth Lakes, CA",0.15,1,",nc,",reviewed,1537407536080,"M 0.3 - 3km SW of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537409171622,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087301 +,,70803809,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70803809&format=geojson,0.02009,,194.0,",av70803809,",-0.27,ml,,av,5.0,"38km ENE of Adak, Alaska",0.1,0,",av,",reviewed,1537407373100,"M -0.3 - 38km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537469871020,https://earthquake.usgs.gov/earthquakes/eventpage/av70803809 +,,20258851,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258851&format=geojson,,,,",ak20258851,",2.1,ml,,ak,,"76km SW of Kaktovik, Alaska",0.68,68,",ak,",automatic,1537406855312,"M 2.1 - 76km SW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537407073008,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258851 +,,73087296,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087296&format=geojson,0.009131,,50.0,",nc73087296,",0.88,md,,nc,16.0,"4km NNW of The Geysers, CA",0.03,12,",nc,",automatic,1537406804310,"M 0.9 - 4km NNW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537406903801,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087296 +,,70601187,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70601187&format=geojson,0.06376,,110.0,",hv70601187,",2.05,ml,,hv,19.0,"26km SE of Waikoloa, Hawaii",0.13,65,",hv,",reviewed,1537406792760,"M 2.1 - 26km SE of Waikoloa, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537409715230,https://earthquake.usgs.gov/earthquakes/eventpage/hv70601187 +,,70803799,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70803799&format=geojson,0.1335,,314.0,",av70803799,",-0.24,ml,,av,6.0,"27km NNW of Redoubt Volcano, Alaska",0.06,0,",av,",reviewed,1537406012940,"M -0.2 - 27km NNW of Redoubt Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537468859840,https://earthquake.usgs.gov/earthquakes/eventpage/av70803799 +,,61782011,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61782011&format=geojson,0.02435,,133.0,",av61782011,",-0.43,ml,,av,5.0,"42km ENE of Adak, Alaska",0.13,0,",av,",reviewed,1537405834660,"M -0.4 - 42km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537468097840,https://earthquake.usgs.gov/earthquakes/eventpage/av61782011 +,,20258843,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258843&format=geojson,,,,",ak20258843,",2.7,ml,,ak,,"67km SSW of Kaktovik, Alaska",0.82,112,",ak,",automatic,1537405427768,"M 2.7 - 67km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537405739672,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258843 +,,37361322,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37361322&format=geojson,0.03496,,131.0,",ci37361322,",0.3,ml,,ci,9.0,"13km NE of Little Lake, CA",0.09,1,",ci,",reviewed,1537405378340,"M 0.3 - 13km NE of Little Lake, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537459302196,https://earthquake.usgs.gov/earthquakes/eventpage/ci37361322 +,,37361314,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37361314&format=geojson,0.003938,,48.0,",ci37361314,",0.69,ml,,ci,27.0,"10km NE of Aguanga, CA",0.17,7,",ci,",reviewed,1537405194570,"M 0.7 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537450025238,https://earthquake.usgs.gov/earthquakes/eventpage/ci37361314 +,,00657331,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657331&format=geojson,0.019,,66.39,",nn00657331,",-0.1,ml,,nn,14.0,"46km E of Beatty, Nevada",0.148,0,",nn,",reviewed,1537405118822,"M -0.1 - 46km E of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537469918285,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657331 +,,1000h3a1,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3a1&format=geojson,0.787,,107.0,",us1000h3a1,",4.2,mb,,us,,"77km NNE of Luwuk, Indonesia",1.2,271,",us,",reviewed,1537404532860,"M 4.2 - 77km NNE of Luwuk, Indonesia",0,earthquake,",geoserve,origin,phase-data,",480.0,1539045214040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3a1 +,,73087291,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087291&format=geojson,0.01175,,46.0,",nc73087291,",1.82,md,,nc,51.0,"6km NW of The Geysers, CA",0.07,51,",nc,",reviewed,1537404526560,"M 1.8 - 6km NW of The Geysers, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537491184066,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087291 +,,73087286,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087286&format=geojson,0.008461,,105.0,",nc73087286,",0.88,md,,nc,12.0,"6km WNW of The Geysers, CA",0.02,12,",nc,",automatic,1537404426850,"M 0.9 - 6km WNW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537404522944,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087286 +,,37361306,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37361306&format=geojson,0.01564,,38.0,",ci37361306,",0.81,ml,,ci,35.0,"5km SSE of Idyllwild, CA",0.12,10,",ci,",reviewed,1537404223970,"M 0.8 - 5km SSE of Idyllwild, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537454100996,https://earthquake.usgs.gov/earthquakes/eventpage/ci37361306 +,,00657325,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657325&format=geojson,0.086,,116.07,",nn00657325,",1.0,ml,,nn,39.0,"66km N of Pahrump, Nevada",0.1406,15,",nn,",reviewed,1537404207864,"M 1.0 - 66km N of Pahrump, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537466045498,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657325 +,,37361290,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37361290&format=geojson,0.06119,,32.0,",ci37361290,",1.32,ml,,ci,48.0,"10km S of Idyllwild, CA",0.16,27,",ci,",reviewed,1537404091300,"M 1.3 - 10km S of Idyllwild, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537450197830,https://earthquake.usgs.gov/earthquakes/eventpage/ci37361290 +,,73087281,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087281&format=geojson,0.004591,,67.0,",nc73087281,",1.61,md,,nc,10.0,"5km W of Mammoth Lakes, CA",0.08,40,",nc,",reviewed,1537403585240,"M 1.6 - 5km W of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537411865239,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087281 +,,37361282,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37361282&format=geojson,0.2431,,252.0,",ci37361282,",1.9,ml,,ci,28.0,"29km SW of La Jolla, CA",0.14,56,",ci,",reviewed,1537402801940,"M 1.9 - 29km SW of La Jolla, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537453699951,https://earthquake.usgs.gov/earthquakes/eventpage/ci37361282 +,,1000h3a0,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h3a0&format=geojson,16.385,,158.0,",us1000h3a0,",4.3,mb,,us,,Northern Mid-Atlantic Ridge,0.65,284,",us,",reviewed,1537402124050,M 4.3 - Northern Mid-Atlantic Ridge,0,earthquake,",geoserve,origin,phase-data,",-120.0,1539044621040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h3a0 +,,37361266,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37361266&format=geojson,0.02247,,186.0,",ci37361266,",0.96,ml,,ci,18.0,"0km NNW of La Habra, CA",0.14,14,",ci,",reviewed,1537401573100,"M 1.0 - 0km NNW of La Habra, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537402170404,https://earthquake.usgs.gov/earthquakes/eventpage/ci37361266 +,,37361250,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37361250&format=geojson,0.0224,,35.0,",ci37361250,",0.75,ml,,ci,26.0,"8km NE of Aguanga, CA",0.17,9,",ci,",reviewed,1537400913540,"M 0.8 - 8km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537401811340,https://earthquake.usgs.gov/earthquakes/eventpage/ci37361250 +,,1000h2ta,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h2ta&format=geojson,1.816,,174.0,",us1000h2ta,",4.2,mb,,us,,"99km SE of Pondaguitan, Philippines",0.76,271,",us,",reviewed,1537400446800,"M 4.2 - 99km SE of Pondaguitan, Philippines",0,earthquake,",geoserve,origin,phase-data,",480.0,1539043473040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h2ta +,,20258834,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258834&format=geojson,,,,",ak20258834,",1.3,ml,,ak,,"127km SSE of Coldfoot, Alaska",1.3,26,",ak,",automatic,1537400181312,"M 1.3 - 127km SSE of Coldfoot, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537400396907,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258834 +,,70803759,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70803759&format=geojson,0.03174,,177.0,",av70803759,",-0.42,ml,,av,5.0,"56km SSW of Redoubt Volcano, Alaska",0.26,0,",av,",reviewed,1537400075030,"M -0.4 - 56km SSW of Redoubt Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537403638390,https://earthquake.usgs.gov/earthquakes/eventpage/av70803759 +,,73087271,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087271&format=geojson,0.004189,,61.0,",nc73087271,",0.91,md,,nc,17.0,"7km NW of The Geysers, CA",0.02,13,",nc,",automatic,1537399946350,"M 0.9 - 7km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537400043264,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087271 +,,73087266,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087266&format=geojson,0.004226,,205.0,",nc73087266,",0.57,md,,nc,6.0,"9km NW of The Geysers, CA",0.05,5,",nc,",automatic,1537399711790,"M 0.6 - 9km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537399808565,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087266 +,,73087261,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087261&format=geojson,0.005104,,118.0,",nc73087261,",0.87,md,,nc,10.0,"7km WNW of The Geysers, CA",0.05,12,",nc,",automatic,1537399394180,"M 0.9 - 7km WNW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537399493466,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087261 +,,61781941,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61781941&format=geojson,0.06895,,138.0,",av61781941,",1.39,ml,,av,8.0,"21km W of Dutch Harbor, Alaska",0.15,30,",av,",reviewed,1537399309360,"M 1.4 - 21km W of Dutch Harbor, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537403353910,https://earthquake.usgs.gov/earthquakes/eventpage/av61781941 +,,73087251,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087251&format=geojson,0.00463,,78.0,",nc73087251,",0.91,md,,nc,10.0,"6km WNW of Cobb, CA",0.01,13,",nc,",automatic,1537398628940,"M 0.9 - 6km WNW of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537398723186,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087251 +,,37361234,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37361234&format=geojson,0.0197,,58.0,",ci37361234,",0.7,ml,,ci,27.0,"9km NE of Aguanga, CA",0.1,8,",ci,",reviewed,1537398453600,"M 0.7 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537401638600,https://earthquake.usgs.gov/earthquakes/eventpage/ci37361234 +,,80310634,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80310634&format=geojson,0.107,,206.0,",mb80310634,",0.4,ml,,mb,4.0,"5km E of Whitehall, Montana",0.03,2,",mb,",reviewed,1537398281820,"M 0.4 Quarry Blast - 5km E of Whitehall, Montana",0,quarry blast,",geoserve,origin,phase-data,",-420.0,1537454526430,https://earthquake.usgs.gov/earthquakes/eventpage/mb80310634 +,,70601037,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70601037&format=geojson,0.04325,,99.0,",hv70601037,",1.33,md,,hv,37.0,"12km S of Volcano, Hawaii",0.09,27,",hv,",reviewed,1537398230010,"M 1.3 - 12km S of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537412068950,https://earthquake.usgs.gov/earthquakes/eventpage/hv70601037 +,,61420992,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61420992&format=geojson,,,110.0,",uw61420992,",1.42,ml,,uw,7.0,"1km W of Sweet Home, Oregon",0.21,31,",uw,",reviewed,1537398150570,"M 1.4 Explosion - 1km W of Sweet Home, Oregon",0,explosion,",geoserve,origin,phase-data,",-480.0,1537504675760,https://earthquake.usgs.gov/earthquakes/eventpage/uw61420992 +,,00657322,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657322&format=geojson,0.031,,84.95,",nn00657322,",0.4,ml,,nn,10.0,"4km WSW of Tahoe Vista, California",0.1514,2,",nn,",reviewed,1537398067319,"M 0.4 - 4km WSW of Tahoe Vista, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537403640265,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657322 +,,2000hhcj,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hhcj&format=geojson,3.283,,74.0,",us2000hhcj,",4.0,mb,,us,,"13km NNE of Marazy, Azerbaijan",0.97,246,",us,",reviewed,1537397867680,"M 4.0 - 13km NNE of Marazy, Azerbaijan",0,earthquake,",geoserve,origin,phase-data,",240.0,1539041508040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hhcj +,,73087246,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087246&format=geojson,0.02939,,208.0,",nc73087246,",0.67,md,,nc,25.0,"9km E of Cloverdale, CA",0.03,7,",nc,",reviewed,1537397755500,"M 0.7 - 9km E of Cloverdale, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537487806502,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087246 +,,20258823,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258823&format=geojson,,,,",ak20258823,",2.4,ml,,ak,,"124km SSE of Prudhoe Bay, Alaska",1.1,89,",ak,",automatic,1537397253961,"M 2.4 - 124km SSE of Prudhoe Bay, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537398451465,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258823 +,,37361218,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37361218&format=geojson,0.0331,,48.0,",ci37361218,",1.96,ml,,ci,30.0,"6km ESE of Wofford Heights, CA",0.13,59,",ci,",reviewed,1537397247670,"M 2.0 - 6km ESE of Wofford Heights, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537401303340,https://earthquake.usgs.gov/earthquakes/eventpage/ci37361218 +,,37361210,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37361210&format=geojson,0.08284,,61.0,",ci37361210,",0.68,ml,,ci,20.0,"9km NE of Aguanga, CA",0.14,7,",ci,",reviewed,1537397004150,"M 0.7 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537401058820,https://earthquake.usgs.gov/earthquakes/eventpage/ci37361210 +,,60297012,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60297012&format=geojson,0.03799,,156.0,",uu60297012,",0.93,md,,uu,5.0,"18km S of Nephi, Utah",0.1,13,",uu,",reviewed,1537396748050,"M 0.9 - 18km S of Nephi, Utah",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538405728290,https://earthquake.usgs.gov/earthquakes/eventpage/uu60297012 +,,00657306,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657306&format=geojson,0.332,,87.51,",nn00657306,",1.1,ml,,nn,6.0,"50km N of Fort Irwin, California",0.2183,19,",nn,",reviewed,1537396268665,"M 1.1 - 50km N of Fort Irwin, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537399770164,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657306 +,,70803769,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70803769&format=geojson,0.03683,,243.0,",av70803769,",-0.22,ml,,av,6.0,"101km ESE of King Salmon, Alaska",0.07,0,",av,",reviewed,1537395828230,"M -0.2 - 101km ESE of King Salmon, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537403998520,https://earthquake.usgs.gov/earthquakes/eventpage/av70803769 +,,20258814,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258814&format=geojson,,,,",ak20258814,",1.2,ml,,ak,,"68km WNW of Talkeetna, Alaska",0.53,22,",ak,",automatic,1537395638632,"M 1.2 - 68km WNW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537395980688,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258814 +,,61420937,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61420937&format=geojson,0.04919,,219.0,",uw61420937,",0.29,ml,,uw,10.0,"37km SSE of Morton, Washington",0.16,1,",uw,",reviewed,1537395566160,"M 0.3 - 37km SSE of Morton, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537505087610,https://earthquake.usgs.gov/earthquakes/eventpage/uw61420937 +,,20258813,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258813&format=geojson,,,,",ak20258813,",1.7,ml,,ak,,"83km SSE of Old Iliamna, Alaska",0.91,44,",ak,",automatic,1537395352122,"M 1.7 - 83km SSE of Old Iliamna, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537395879908,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258813 +,,20258796,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258796&format=geojson,,,,",ak20258796,us2000hhc4,",3.9,ml,3.83,ak,,"76km SSW of Kaktovik, Alaska",0.64,234,",ak,us,",reviewed,1537395162773,"M 3.9 - 76km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,moment-tensor,origin,phase-data,shakemap,",-540.0,1539040313040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258796 +,,20258794,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258794&format=geojson,,,,",ak20258794,",2.1,ml,,ak,,"72km SSW of Kaktovik, Alaska",0.72,68,",ak,",automatic,1537395041544,"M 2.1 - 72km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537395355442,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258794 +,,37361130,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37361130&format=geojson,0.04118,,74.0,",ci37361130,",0.97,ml,,ci,19.0,"3km NNW of La Verne, CA",0.11,14,",ci,",reviewed,1537394742570,"M 1.0 - 3km NNW of La Verne, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537400766920,https://earthquake.usgs.gov/earthquakes/eventpage/ci37361130 +,,20258792,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258792&format=geojson,,,,",ak20258792,",1.1,ml,,ak,,"66km E of Cape Yakataga, Alaska",0.63,19,",ak,",automatic,1537394170671,"M 1.1 - 66km E of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537394408980,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258792 +,,37361114,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37361114&format=geojson,0.02331,,219.0,",ci37361114,",0.22,ml,,ci,13.0,"9km NE of Aguanga, CA",0.08,1,",ci,",reviewed,1537394122070,"M 0.2 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537400522657,https://earthquake.usgs.gov/earthquakes/eventpage/ci37361114 +,,1000h2tc,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h2tc&format=geojson,16.551,,127.0,",us1000h2tc,",4.4,mb,,us,,"129km NNE of Bristol Island, South Sandwich Islands",0.33,298,",us,",reviewed,1537393632950,"M 4.4 - 129km NNE of Bristol Island, South Sandwich Islands",0,earthquake,",geoserve,origin,phase-data,",-120.0,1538891709040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h2tc +,,73087231,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087231&format=geojson,0.05397,,41.0,",nc73087231,",1.51,md,,nc,40.0,"5km WNW of San Ardo, CA",0.08,35,",nc,",reviewed,1537393274090,"M 1.5 - 5km WNW of San Ardo, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537398842886,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087231 +,,37361074,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37361074&format=geojson,0.06802,,158.0,",ci37361074,",0.62,ml,,ci,6.0,"2km E of Diamond Bar, CA",0.08,6,",ci,",reviewed,1537392748280,"M 0.6 - 2km E of Diamond Bar, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537399994017,https://earthquake.usgs.gov/earthquakes/eventpage/ci37361074 +,,70803774,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70803774&format=geojson,0.03725,,204.0,",av70803774,",-0.87,ml,,av,4.0,"14km W of Akutan, Alaska",0.07,0,",av,",reviewed,1537392629450,"M -0.9 - 14km W of Akutan, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537404854090,https://earthquake.usgs.gov/earthquakes/eventpage/av70803774 +,,37361058,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37361058&format=geojson,0.1173,,49.0,",ci37361058,",1.14,ml,,ci,41.0,"17km ESE of Julian, CA",0.18,20,",ci,",reviewed,1537392409510,"M 1.1 - 17km ESE of Julian, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537399545800,https://earthquake.usgs.gov/earthquakes/eventpage/ci37361058 +,,1000h2t5,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h2t5&format=geojson,0.485,,147.0,",us1000h2t5,",4.2,mb,,us,,"39km NE of Misawa, Japan",0.93,271,",us,",reviewed,1537392267190,"M 4.2 - 39km NE of Misawa, Japan",0,earthquake,",geoserve,origin,phase-data,",540.0,1538890503040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h2t5 +,,80310639,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80310639&format=geojson,0.274,,196.0,",mb80310639,",-0.06,md,,mb,7.0,"34km ENE of Pablo, Montana",0.11,0,",mb,",reviewed,1537391293250,"M -0.1 - 34km ENE of Pablo, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537454800000,https://earthquake.usgs.gov/earthquakes/eventpage/mb80310639 +,,20258772,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258772&format=geojson,,,,",ak20258772,",1.3,ml,,ak,,"43km NE of Whittier, Alaska",0.93,26,",ak,",automatic,1537391250415,"M 1.3 - 43km NE of Whittier, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537391439936,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258772 +,,20258768,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258768&format=geojson,,,,",ak20258768,",1.5,ml,,ak,,"20km ENE of Talkeetna, Alaska",0.83,35,",ak,",automatic,1537390744955,"M 1.5 - 20km ENE of Talkeetna, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537391007015,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258768 +,,70600892,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70600892&format=geojson,0.003504,,86.0,",hv70600892,",1.75,ml,,hv,21.0,"4km SW of Volcano, Hawaii",0.12,47,",hv,",automatic,1537390081880,"M 1.8 - 4km SW of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537390421740,https://earthquake.usgs.gov/earthquakes/eventpage/hv70600892 +,,20258766,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258766&format=geojson,,,,",ak20258766,",1.4,ml,,ak,,"110km E of Yakutat, Alaska",1.02,30,",ak,",automatic,1537390021786,"M 1.4 - 110km E of Yakutat, Alaska",0,earthquake,",geoserve,origin,",-480.0,1537390322397,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258766 +,,1000h2t3,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h2t3&format=geojson,4.471,,144.0,",us1000h2t3,",4.0,mb,,us,,Fiji region,0.33,246,",us,",reviewed,1537389754960,M 4.0 - Fiji region,0,earthquake,",geoserve,origin,phase-data,",-720.0,1539453770040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h2t3 +,,1000h2sz,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h2sz&format=geojson,3.054,,122.0,",us1000h2sz,",4.2,mb,,us,,"97km NNW of Madang, Papua New Guinea",0.95,271,",us,",reviewed,1537389324620,"M 4.2 - 97km NNW of Madang, Papua New Guinea",0,earthquake,",geoserve,origin,phase-data,",600.0,1539450531040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h2sz +,,70600862,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70600862&format=geojson,0.006134,,59.0,",hv70600862,",1.68,ml,,hv,24.0,"5km WSW of Volcano, Hawaii",0.1,43,",hv,",reviewed,1537388684230,"M 1.7 - 5km WSW of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537395444430,https://earthquake.usgs.gov/earthquakes/eventpage/hv70600862 +,,00657293,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657293&format=geojson,0.601,,171.31,",nn00657293,",1.6,ml,,nn,5.0,"11km NW of Ely, Nevada",0.3155,39,",nn,",reviewed,1537388560865,"M 1.6 Explosion - 11km NW of Ely, Nevada",0,explosion,",geoserve,origin,phase-data,",-480.0,1537390342676,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657293 +,,20258762,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258762&format=geojson,,,,",ak20258762,",0.7,ml,,ak,,"38km WNW of Willow, Alaska",0.43,8,",ak,",automatic,1537388511544,"M 0.7 - 38km WNW of Willow, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537388641344,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258762 +,,20258757,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258757&format=geojson,,,,",ak20258757,",1.3,ml,,ak,,"22km NNE of Badger, Alaska",0.61,26,",ak,",automatic,1537388139462,"M 1.3 - 22km NNE of Badger, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537388641105,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258757 +,,20258750,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258750&format=geojson,,,,",ak20258750,us2000hhac,",3.1,ml,,ak,,"78km SSW of Kaktovik, Alaska",0.75,148,",ak,us,",automatic,1537387779636,"M 3.1 - 78km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539459789040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258750 +,,1000h2sy,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h2sy&format=geojson,42.333,,255.0,",us1000h2sy,",4.4,mb,,us,,South of the Kermadec Islands,0.88,298,",us,",reviewed,1537387667670,M 4.4 - South of the Kermadec Islands,0,earthquake,",geoserve,origin,phase-data,",-720.0,1539448965040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h2sy +,,61420892,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61420892&format=geojson,0.1962,,138.0,",uw61420892,",0.82,md,,uw,7.0,"20km NW of Rockport, Washington",0.04,10,",uw,",reviewed,1537387445610,"M 0.8 - 20km NW of Rockport, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537481986190,https://earthquake.usgs.gov/earthquakes/eventpage/uw61420892 +,,37360914,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37360914&format=geojson,0.07551,,67.0,",ci37360914,",1.18,ml,,ci,13.0,"7km E of Lebec, CA",0.29,21,",ci,",reviewed,1537387432390,"M 1.2 Quarry Blast - 7km E of Lebec, CA",0,quarry blast,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537388489880,https://earthquake.usgs.gov/earthquakes/eventpage/ci37360914 +,,2000hha4,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hha4&format=geojson,0.913,,67.0,",us2000hha4,",4.6,mb,,us,,"72km W of Tobelo, Indonesia",0.69,326,",us,",reviewed,1537386836930,"M 4.6 - 72km W of Tobelo, Indonesia",0,earthquake,",geoserve,origin,phase-data,",540.0,1539462502040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hha4 +,,20258744,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258744&format=geojson,,,,",ak20258744,",2.1,ml,,ak,,"130km NW of Arctic Village, Alaska",0.9,68,",ak,",automatic,1537386432116,"M 2.1 - 130km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537387120601,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258744 +,,20258741,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258741&format=geojson,,,,",ak20258741,",2.0,ml,,ak,,"130km NNW of Arctic Village, Alaska",0.93,62,",ak,",automatic,1537386299325,"M 2.0 - 130km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537387019760,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258741 +,,73087206,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087206&format=geojson,0.03182,,258.0,",nc73087206,",0.31,md,,nc,7.0,"8km ENE of Mammoth Lakes, CA",0.03,1,",nc,",reviewed,1537386127280,"M 0.3 - 8km ENE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537388008755,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087206 +,,00657320,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657320&format=geojson,0.229,,302.9,",nn00657320,",0.4,ml,,nn,4.0,"35km SSW of Hawthorne, Nevada",0.0059,2,",nn,",reviewed,1537385684666,"M 0.4 - 35km SSW of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537402715925,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657320 +,,2000hh9g,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hh9g&format=geojson,,,36.0,",us2000hh9g,",2.5,ml,,us,,"15km E of Enid, Oklahoma",0.73,96,",us,",reviewed,1537385555300,"M 2.5 - 15km E of Enid, Oklahoma",0,earthquake,",geoserve,origin,phase-data,",-360.0,1539375821040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hh9g +,,2000hh9h,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hh9h&format=geojson,1.497,,49.0,",us2000hh9h,",4.6,mb,,us,,"21km SE of Mandali, Iraq",0.67,326,",us,",reviewed,1537385360180,"M 4.6 - 21km SE of Mandali, Iraq",0,earthquake,",geoserve,origin,phase-data,",180.0,1539458163040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hh9h +,,20258732,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258732&format=geojson,,,,",ak20258732,",1.4,ml,,ak,,"7km WSW of North Pole, Alaska",0.69,30,",ak,",automatic,1537384851058,"M 1.4 - 7km WSW of North Pole, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537385137040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258732 +,,1000h2sx,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h2sx&format=geojson,1.27,,98.0,",us1000h2sx,",4.6,mb,,us,,"110km WSW of Isangel, Vanuatu",0.94,326,",us,",reviewed,1537384515950,"M 4.6 - 110km WSW of Isangel, Vanuatu",0,earthquake,",geoserve,origin,phase-data,",660.0,1539445607040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h2sx +,,37360874,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37360874&format=geojson,0.116,,133.0,",ci37360874,",1.49,ml,,ci,11.0,"7km SSW of Mojave, CA",0.2,34,",ci,",reviewed,1537384242640,"M 1.5 Quarry Blast - 7km SSW of Mojave, CA",0,quarry blast,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537384853301,https://earthquake.usgs.gov/earthquakes/eventpage/ci37360874 +,,20258728,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258728&format=geojson,,,,",ak20258728,",1.3,ml,,ak,,"55km ESE of Lazy Mountain, Alaska",0.82,26,",ak,",automatic,1537384120517,"M 1.3 - 55km ESE of Lazy Mountain, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537384362010,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258728 +,,1000h2sw,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h2sw&format=geojson,3.817,,81.0,",us1000h2sw,",4.1,mb,,us,,"297km NNE of Ndoi Island, Fiji",0.48,259,",us,",reviewed,1537383997190,"M 4.1 - 297km NNE of Ndoi Island, Fiji",0,earthquake,",geoserve,origin,phase-data,",-720.0,1539444419040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h2sw +,,73087196,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087196&format=geojson,0.003947,,109.0,",nc73087196,",0.89,md,,nc,13.0,"9km NW of The Geysers, CA",0.03,12,",nc,",automatic,1537383771620,"M 0.9 - 9km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537383869226,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087196 +,,80310574,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80310574&format=geojson,0.061,,98.0,",mb80310574,",1.49,ml,,mb,8.0,"5km ENE of Butte, Montana",0.12,34,",mb,",reviewed,1537383766190,"M 1.5 Quarry Blast - 5km ENE of Butte, Montana",0,quarry blast,",geoserve,origin,phase-data,",-420.0,1537453274650,https://earthquake.usgs.gov/earthquakes/eventpage/mb80310574 +,,37360850,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37360850&format=geojson,0.006976,,36.0,",ci37360850,",0.74,ml,,ci,31.0,"10km NE of Aguanga, CA",0.13,8,",ci,",reviewed,1537383763810,"M 0.7 - 10km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537385352010,https://earthquake.usgs.gov/earthquakes/eventpage/ci37360850 +,,37360842,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37360842&format=geojson,0.07577,,43.0,",ci37360842,",0.3,ml,,ci,19.0,"10km NE of Aguanga, CA",0.08,1,",ci,",reviewed,1537383747950,"M 0.3 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537385277347,https://earthquake.usgs.gov/earthquakes/eventpage/ci37360842 +,,20258725,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258725&format=geojson,,,,",ak20258725,",1.3,ml,,ak,,"50km NNE of Yakutat, Alaska",1.07,26,",ak,",automatic,1537383504031,"M 1.3 - 50km NNE of Yakutat, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537383798329,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258725 +,,2000hh8w,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hh8w&format=geojson,0.77,,112.0,",us2000hh8w,",4.3,mb,,us,,"28km WSW of Ashkasham, Afghanistan",0.71,284,",us,",reviewed,1537383299800,"M 4.3 - 28km WSW of Ashkasham, Afghanistan",0,earthquake,",geoserve,impact-text,origin,phase-data,",270.0,1539456725040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hh8w +,,00657269,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657269&format=geojson,0.254,,215.44,",nn00657269,",1.0,ml,,nn,8.0,"35km E of Bridgeport, California",0.0634,15,",nn,",reviewed,1537382874053,"M 1.0 - 35km E of Bridgeport, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537383898077,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657269 +,,20258720,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258720&format=geojson,,,,",ak20258720,",2.6,ml,,ak,,"74km ESE of Old Iliamna, Alaska",0.88,104,",ak,",automatic,1537382787877,"M 2.6 - 74km ESE of Old Iliamna, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537383697280,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258720 +,5.4,2000hh8t,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hh8t&format=geojson,0.765,7.0,97.0,",us2000hh8t,",5.0,mww,,us,,"79km NNW of Iquique, Chile",0.68,388,",us,",reviewed,1537382541450,"M 5.0 - 79km NNW of Iquique, Chile",0,earthquake,",dyfi,geoserve,moment-tensor,origin,phase-data,",-240.0,1539462077547,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hh8t +,,20258715,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258715&format=geojson,,,,",ak20258715,",1.6,ml,,ak,,"122km NW of Arctic Village, Alaska",0.77,39,",ak,",automatic,1537382156555,"M 1.6 - 122km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537382861908,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258715 +,,73087191,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087191&format=geojson,0.02147,,121.0,",nc73087191,",1.26,md,,nc,24.0,"6km E of Santa Venetia, CA",0.16,24,",nc,",reviewed,1537381832730,"M 1.3 Quarry Blast - 6km E of Santa Venetia, CA",0,quarry blast,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537393630348,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087191 +,,61781851,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61781851&format=geojson,0.07159,,297.0,",av61781851,",0.82,ml,,av,6.0,"51km NE of Adak, Alaska",0.19,10,",av,",reviewed,1537381823880,"M 0.8 - 51km NE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537402657040,https://earthquake.usgs.gov/earthquakes/eventpage/av61781851 +,,61420862,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61420862&format=geojson,0.01531,,229.0,",uw61420862,",-0.05,ml,,uw,11.0,"36km SSE of Morton, Washington",0.13,0,",uw,",reviewed,1537381778950,"M -0.1 - 36km SSE of Morton, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537506166890,https://earthquake.usgs.gov/earthquakes/eventpage/uw61420862 +,,20258713,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258713&format=geojson,,,,",ak20258713,",1.0,ml,,ak,,"90km NNW of Talkeetna, Alaska",0.81,15,",ak,",automatic,1537380383289,"M 1.0 - 90km NNW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537380658482,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258713 +,,1000h2sv,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h2sv&format=geojson,5.361,,217.0,",us1000h2sv,",4.0,mb,,us,,"165km E of Pondaguitan, Philippines",1.04,246,",us,",reviewed,1537380311210,"M 4.0 - 165km E of Pondaguitan, Philippines",0,earthquake,",geoserve,origin,phase-data,",540.0,1539378229040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h2sv +,,73087186,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087186&format=geojson,0.0114,,78.0,",nc73087186,",0.87,md,,nc,9.0,"1km NNE of The Geysers, CA",0.03,12,",nc,",automatic,1537379621800,"M 0.9 - 1km NNE of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537379718118,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087186 +,,73087181,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087181&format=geojson,0.01886,,50.0,",nc73087181,",1.02,md,,nc,18.0,"6km NW of The Geysers, CA",0.04,16,",nc,",automatic,1537379595560,"M 1.0 - 6km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537379692295,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087181 +,,73087176,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087176&format=geojson,0.07769,,68.0,",nc73087176,",2.62,md,,nc,69.0,"6km SSE of Elmira, CA",0.2,106,",nc,",reviewed,1537379247980,"M 2.6 - 6km SSE of Elmira, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537395422556,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087176 +,,1000h2su,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h2su&format=geojson,3.866,,117.0,",us1000h2su,",4.1,mb,,us,,"288km NNE of Ndoi Island, Fiji",0.36,259,",us,",reviewed,1537378970460,"M 4.1 - 288km NNE of Ndoi Island, Fiji",0,earthquake,",geoserve,origin,phase-data,",-720.0,1539377632040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h2su +,,73087166,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087166&format=geojson,0.02852,,96.0,",nc73087166,",1.14,md,,nc,15.0,"8km ENE of Alum Rock, CA",0.07,20,",nc,",reviewed,1537377497220,"M 1.1 - 8km ENE of Alum Rock, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537394522464,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087166 +,,1000h2st,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h2st&format=geojson,3.478,,187.0,",us1000h2st,",4.5,mb,,us,,"90km N of Lae, Papua New Guinea",1.1,312,",us,",reviewed,1537377219480,"M 4.5 - 90km N of Lae, Papua New Guinea",0,earthquake,",geoserve,origin,phase-data,",600.0,1539376862040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h2st +,,20258704,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258704&format=geojson,,,,",ak20258704,",1.0,ml,,ak,,"87km NW of Talkeetna, Alaska",0.66,15,",ak,",automatic,1537376150234,"M 1.0 - 87km NW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537376382715,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258704 +,,20258702,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258702&format=geojson,,,,",ak20258702,",1.5,ml,,ak,,"53km NNE of Cape Yakataga, Alaska",0.65,35,",ak,",automatic,1537375790599,"M 1.5 - 53km NNE of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537376010403,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258702 +,,00657257,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657257&format=geojson,0.024,,56.43,",nn00657257,",-0.1,ml,,nn,16.0,"45km ENE of Beatty, Nevada",0.1248,0,",nn,",reviewed,1537374937168,"M -0.1 - 45km ENE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537820351532,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657257 +,,37360682,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37360682&format=geojson,0.04637,,47.0,",ci37360682,",0.77,ml,,ci,25.0,"11km S of Corona, CA",0.2,9,",ci,",reviewed,1537374833660,"M 0.8 - 11km S of Corona, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537377196425,https://earthquake.usgs.gov/earthquakes/eventpage/ci37360682 +,,00657253,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657253&format=geojson,0.184,,71.72,",nn00657253,",1.5,ml,,nn,15.0,"13km SE of Sparks, Nevada",0.2008,35,",nn,",reviewed,1537374802260,"M 1.5 Explosion - 13km SE of Sparks, Nevada",0,explosion,",geoserve,origin,phase-data,",-480.0,1537375569715,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657253 +,,73087151,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087151&format=geojson,0.005417,,123.0,",nc73087151,",0.17,md,,nc,13.0,"4km NE of Mammoth Lakes, CA",0.04,0,",nc,",reviewed,1537374748880,"M 0.2 - 4km NE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537378122586,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087151 +,,37360674,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37360674&format=geojson,0.01216,,26.0,",ci37360674,",1.65,ml,,ci,70.0,"9km NE of Aguanga, CA",0.19,42,",ci,",reviewed,1537374739440,"M 1.7 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537376901040,https://earthquake.usgs.gov/earthquakes/eventpage/ci37360674 +,,37360658,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37360658&format=geojson,0.007247,,32.0,",ci37360658,",0.8,ml,,ci,38.0,"10km NE of Aguanga, CA",0.15,10,",ci,",reviewed,1537374573030,"M 0.8 - 10km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537376234780,https://earthquake.usgs.gov/earthquakes/eventpage/ci37360658 +,,80310629,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80310629&format=geojson,0.045,,102.0,",mb80310629,",0.7,ml,,mb,5.0,"15km NNE of Dillon, Montana",0.04,8,",mb,",reviewed,1537374435290,"M 0.7 - 15km NNE of Dillon, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537454220050,https://earthquake.usgs.gov/earthquakes/eventpage/mb80310629 +,,20258693,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258693&format=geojson,,,,",ak20258693,",1.9,ml,,ak,,"69km SW of Homer, Alaska",0.83,56,",ak,",automatic,1537374073089,"M 1.9 - 69km SW of Homer, Alaska",0,earthquake,",geoserve,origin,",-600.0,1537375446661,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258693 +,3.8,37360530,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37360530&format=geojson,0.05766,53.0,56.0,",ci37360530,",2.92,ml,,ci,63.0,"13km W of Malibu, CA",0.2,151,",ci,",reviewed,1537373862840,"M 2.9 - 13km W of Malibu, CA",0,earthquake,",dyfi,focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537652680161,https://earthquake.usgs.gov/earthquakes/eventpage/ci37360530 +,,37360514,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37360514&format=geojson,0.00717,,82.0,",ci37360514,",0.15,ml,,ci,20.0,"10km NE of Aguanga, CA",0.14,0,",ci,",reviewed,1537373267040,"M 0.2 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537375026687,https://earthquake.usgs.gov/earthquakes/eventpage/ci37360514 +,,20258686,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258686&format=geojson,,,,",ak20258686,",1.6,ml,,ak,,"121km NW of Arctic Village, Alaska",0.79,39,",ak,",automatic,1537372225655,"M 1.6 - 121km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537373122675,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258686 +,,20258682,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258682&format=geojson,,,,",ak20258682,",1.0,ml,,ak,,"48km S of Redoubt Volcano, Alaska",0.79,15,",ak,",automatic,1537372114936,"M 1.0 - 48km S of Redoubt Volcano, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537373122461,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258682 +,,2018262004,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018262004&format=geojson,0.1571,,271.0,",pr2018262004,",1.02,md,,pr,4.0,"9km S of Emajagua, Puerto Rico",0.06,16,",pr,",reviewed,1537372033880,"M 1.0 - 9km S of Emajagua, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1537391208241,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018262004 +,,20258681,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258681&format=geojson,,,,",ak20258681,",1.7,ml,,ak,,"110km NNW of Arctic Village, Alaska",0.85,44,",ak,",automatic,1537372023333,"M 1.7 - 110km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537373122234,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258681 +,,20258673,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258673&format=geojson,,,,",ak20258673,us2000hh4m,",3.0,ml,,ak,,"84km SW of Kaktovik, Alaska",0.82,138,",ak,us,",automatic,1537371649805,"M 3.0 - 84km SW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537395690040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258673 +,,73087131,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087131&format=geojson,0.003164,,89.0,",nc73087131,",1.14,md,,nc,23.0,"10km NW of The Geysers, CA",0.03,20,",nc,",reviewed,1537370518360,"M 1.1 - 10km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537381802864,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087131 +,,20258665,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258665&format=geojson,,,,",ak20258665,",2.5,ml,,ak,,"69km SSW of Kaktovik, Alaska",0.94,96,",ak,",automatic,1537370412688,"M 2.5 - 69km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537370782707,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258665 +,,20258659,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258659&format=geojson,,,,",ak20258659,",2.3,ml,,ak,,"83km SW of Kaktovik, Alaska",0.88,81,",ak,",automatic,1537369844302,"M 2.3 - 83km SW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537370130243,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258659 +,,20258657,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258657&format=geojson,,,,",ak20258657,",1.4,ml,,ak,,"134km NW of Arctic Village, Alaska",0.9,30,",ak,",automatic,1537369726517,"M 1.4 - 134km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537369999384,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258657 +,,20258655,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258655&format=geojson,,,,",ak20258655,",1.0,ml,,ak,,"27km NE of Nikiski, Alaska",0.41,15,",ak,",automatic,1537369664178,"M 1.0 - 27km NE of Nikiski, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537369898868,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258655 +,,20258649,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258649&format=geojson,,,,",ak20258649,",1.3,ml,,ak,,"65km W of Talkeetna, Alaska",0.55,26,",ak,",automatic,1537369526830,"M 1.3 - 65km W of Talkeetna, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537369797898,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258649 +,,20258650,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258650&format=geojson,,,,",ak20258650,",2.0,ml,,ak,,"74km SW of Kaktovik, Alaska",1.1,62,",ak,",automatic,1537369503506,"M 2.0 - 74km SW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537369798130,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258650 +,,00657313,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657313&format=geojson,0.088,,149.89,",nn00657313,",-0.3,ml,,nn,4.0,"18km SE of Hawthorne, Nevada",0.1208,0,",nn,",reviewed,1537369346210,"M -0.3 - 18km SE of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537398475404,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657313 +,,00657312,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657312&format=geojson,0.092,,151.02,",nn00657312,",-0.2,ml,,nn,4.0,"19km SE of Hawthorne, Nevada",0.0726,0,",nn,",reviewed,1537369315932,"M -0.2 - 19km SE of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537398290097,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657312 +,,20258647,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258647&format=geojson,,,,",ak20258647,",1.0,ml,,ak,,"51km ENE of Cantwell, Alaska",0.42,15,",ak,",automatic,1537369146772,"M 1.0 - 51km ENE of Cantwell, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537369386163,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258647 +,,20258645,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258645&format=geojson,,,,",ak20258645,",0.8,ml,,ak,,"66km W of Anchor Point, Alaska",0.45,10,",ak,",automatic,1537368854392,"M 0.8 - 66km W of Anchor Point, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537369105092,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258645 +,,37360434,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37360434&format=geojson,0.06683,,103.0,",ci37360434,",0.66,ml,,ci,11.0,"3km NNW of Monrovia, CA",0.06,7,",ci,",reviewed,1537368406450,"M 0.7 - 3km NNW of Monrovia, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537377443446,https://earthquake.usgs.gov/earthquakes/eventpage/ci37360434 +,,60296967,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60296967&format=geojson,0.07709,,102.0,",uu60296967,",1.7,ml,,uu,11.0,"24km ESE of Old Faithful Geyser, Wyoming",0.27,44,",uu,",reviewed,1537368288480,"M 1.7 - 24km ESE of Old Faithful Geyser, Wyoming",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537395974630,https://earthquake.usgs.gov/earthquakes/eventpage/uu60296967 +,,20258643,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258643&format=geojson,,,,",ak20258643,",0.2,ml,,ak,,"45km WNW of Cape Yakataga, Alaska",1.11,1,",ak,",automatic,1537368162436,"M 0.2 - 45km WNW of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537368351671,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258643 +,,20258635,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258635&format=geojson,,,,",ak20258635,",1.7,ml,,ak,,"130km NW of Arctic Village, Alaska",0.7,44,",ak,",automatic,1537367394309,"M 1.7 - 130km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537367698911,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258635 +,,20258633,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258633&format=geojson,,,,",ak20258633,",0.7,ml,,ak,,"61km WNW of Willow, Alaska",0.85,8,",ak,",automatic,1537367046015,"M 0.7 - 61km WNW of Willow, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537367196936,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258633 +,,70600267,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70600267&format=geojson,0.03527,,134.0,",hv70600267,",1.94,ml,,hv,30.0,"15km S of Volcano, Hawaii",0.1,58,",hv,",reviewed,1537366153550,"M 1.9 - 15km S of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537395109950,https://earthquake.usgs.gov/earthquakes/eventpage/hv70600267 +,,70600262,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70600262&format=geojson,0.01221,,34.0,",hv70600262,",2.07,ml,,hv,24.0,"5km WSW of Volcano, Hawaii",0.09,66,",hv,",reviewed,1537366095470,"M 2.1 - 5km WSW of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537395045426,https://earthquake.usgs.gov/earthquakes/eventpage/hv70600262 +,,20258573,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258573&format=geojson,,,,",ak20258573,",1.9,ml,,ak,,"96km WSW of Healy, Alaska",0.75,56,",ak,",automatic,1537365779257,"M 1.9 - 96km WSW of Healy, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537366043207,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258573 +,,2000hh3i,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hh3i&format=geojson,2.0,,47.0,",us2000hh3i,",4.5,mb,,us,,"54km NW of Abra Pampa, Argentina",1.05,312,",us,",reviewed,1537365738940,"M 4.5 - 54km NW of Abra Pampa, Argentina",0,earthquake,",geoserve,origin,phase-data,",-180.0,1537427291040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hh3i +,,70600247,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70600247&format=geojson,0.01394,,80.0,",hv70600247,",1.89,ml,,hv,9.0,"4km SSW of Volcano, Hawaii",0.15,55,",hv,",automatic,1537365506300,"M 1.9 - 4km SSW of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537365854870,https://earthquake.usgs.gov/earthquakes/eventpage/hv70600247 +,,70600242,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70600242&format=geojson,0.003576,,78.0,",hv70600242,",1.93,ml,,hv,27.0,"4km SW of Volcano, Hawaii",0.19,57,",hv,",automatic,1537365505500,"M 1.9 - 4km SW of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537365845190,https://earthquake.usgs.gov/earthquakes/eventpage/hv70600242 +,,80310539,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80310539&format=geojson,0.175,,164.0,",mb80310539,",1.1,ml,,mb,7.0,"18km N of Manhattan, Montana",0.06,19,",mb,",reviewed,1537364955100,"M 1.1 - 18km N of Manhattan, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537365966260,https://earthquake.usgs.gov/earthquakes/eventpage/mb80310539 +,2.0,70600212,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70600212&format=geojson,0.008652,1.0,43.0,",hv70600212,us2000hh3c,",2.59,ml,,hv,46.0,"4km SSW of Volcano, Hawaii",0.11,103,",hv,us,",reviewed,1537364746690,"M 2.6 - 4km SSW of Volcano, Hawaii",0,earthquake,",dyfi,geoserve,origin,phase-data,",-600.0,1537426466040,https://earthquake.usgs.gov/earthquakes/eventpage/hv70600212 +,,70600207,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70600207&format=geojson,0.01284,,51.0,",hv70600207,",0.52,md,,hv,21.0,"8km SW of Volcano, Hawaii",0.08,4,",hv,",reviewed,1537364717430,"M 0.5 - 8km SW of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537389823310,https://earthquake.usgs.gov/earthquakes/eventpage/hv70600207 +,,2000hh3b,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hh3b&format=geojson,0.95,,83.0,",us2000hh3b,",4.6,mb,,us,,"158km NNE of Calama, Chile",0.93,326,",us,",reviewed,1537364522900,"M 4.6 - 158km NNE of Calama, Chile",0,earthquake,",geoserve,origin,phase-data,",-240.0,1537426335040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hh3b +,,61420802,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61420802&format=geojson,0.01813,,197.0,",uw61420802,",0.76,ml,,uw,5.0,"27km N of Packwood, Washington",0.09,9,",uw,",reviewed,1537363615060,"M 0.8 - 27km N of Packwood, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537506237540,https://earthquake.usgs.gov/earthquakes/eventpage/uw61420802 +,,80310534,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80310534&format=geojson,0.038,,182.0,",mb80310534,",0.76,ml,,mb,5.0,"1km E of South Park, Wyoming",0.11,9,",mb,",reviewed,1537363271320,"M 0.8 - 1km E of South Park, Wyoming",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537366156050,https://earthquake.usgs.gov/earthquakes/eventpage/mb80310534 +,,00657311,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657311&format=geojson,0.303,,237.55,",nn00657311,",0.0,ml,,nn,6.0,"24km SSW of Portola, California",0.1365,0,",nn,",reviewed,1537362774714,"M 0.0 - 24km SSW of Portola, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537397920524,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657311 +,,61420797,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61420797&format=geojson,0.02738,,174.0,",uw61420797,",0.95,ml,,uw,9.0,"26km NNW of Packwood, Washington",0.08,14,",uw,",reviewed,1537362378120,"M 1.0 - 26km NNW of Packwood, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538021869400,https://earthquake.usgs.gov/earthquakes/eventpage/uw61420797 +,,20258563,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258563&format=geojson,,,,",ak20258563,",2.0,ml,,ak,,"70km SSW of Kaktovik, Alaska",0.77,62,",ak,",automatic,1537362205287,"M 2.0 - 70km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537362532764,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258563 +,,20258562,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258562&format=geojson,,,,",ak20258562,",1.0,ml,,ak,,"18km SSW of Talkeetna, Alaska",0.65,15,",ak,",automatic,1537362128192,"M 1.0 - 18km SSW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537362301665,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258562 +,,73087126,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087126&format=geojson,0.01436,,77.0,",nc73087126,",0.85,md,,nc,14.0,"3km SSW of Cobb, CA",0.03,11,",nc,",automatic,1537361604130,"M 0.9 - 3km SSW of Cobb, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537361702948,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087126 +,,20258559,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258559&format=geojson,,,,",ak20258559,",1.0,ml,,ak,,"78km ENE of Cape Yakataga, Alaska",1.21,15,",ak,",automatic,1537361477523,"M 1.0 - 78km ENE of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537361719770,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258559 +,,37360378,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37360378&format=geojson,0.0774,,90.0,",ci37360378,",1.48,ml,,ci,18.0,"10km W of Santa Paula, CA",0.26,34,",ci,",reviewed,1537361288370,"M 1.5 - 10km W of Santa Paula, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537544033094,https://earthquake.usgs.gov/earthquakes/eventpage/ci37360378 +,,20258557,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258557&format=geojson,,,,",ak20258557,",1.0,ml,,ak,,"42km E of Glennallen, Alaska",0.86,15,",ak,",automatic,1537361230568,"M 1.0 - 42km E of Glennallen, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537361498889,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258557 +,,1000h2sk,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h2sk&format=geojson,2.994,,56.0,",us1000h2sk,",4.3,mb,,us,,"9km WSW of Azna, Iran",1.09,284,",us,",reviewed,1537360865020,"M 4.3 - 9km WSW of Azna, Iran",0,earthquake,",geoserve,origin,phase-data,",210.0,1539492588040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h2sk +,,73087426,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087426&format=geojson,0.3629,,255.0,",nc73087426,",1.49,md,,nc,7.0,"35km W of Ambrose, CA",0.15,34,",nc,",reviewed,1537360287270,"M 1.5 - 35km W of Ambrose, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537462804052,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087426 +,,61420787,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61420787&format=geojson,0.1733,,111.0,",uw61420787,",0.95,ml,,uw,9.0,"22km NNW of Cathlamet, Washington",0.16,14,",uw,",reviewed,1537360101500,"M 1.0 - 22km NNW of Cathlamet, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538021710820,https://earthquake.usgs.gov/earthquakes/eventpage/uw61420787 +,,37360338,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37360338&format=geojson,0.02153,,135.0,",ci37360338,",0.58,ml,,ci,10.0,"7km NNE of Little Lake, CA",0.1,5,",ci,",reviewed,1537359570690,"M 0.6 - 7km NNE of Little Lake, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537378215597,https://earthquake.usgs.gov/earthquakes/eventpage/ci37360338 +,,61420777,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61420777&format=geojson,0.02708,,173.0,",uw61420777,",1.04,ml,,uw,9.0,"26km NNW of Packwood, Washington",0.07,17,",uw,",reviewed,1537359557840,"M 1.0 - 26km NNW of Packwood, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538021367930,https://earthquake.usgs.gov/earthquakes/eventpage/uw61420777 +,,20258548,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258548&format=geojson,,,,",ak20258548,",1.3,ml,,ak,,"28km SSE of Sterling, Alaska",0.68,26,",ak,",automatic,1537359555326,"M 1.3 - 28km SSE of Sterling, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537359793494,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258548 +,,61420772,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61420772&format=geojson,0.02784,,174.0,",uw61420772,",0.63,ml,,uw,8.0,"26km NNW of Packwood, Washington",0.07,6,",uw,",reviewed,1537359377870,"M 0.6 - 26km NNW of Packwood, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538021119550,https://earthquake.usgs.gov/earthquakes/eventpage/uw61420772 +,,61420767,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61420767&format=geojson,0.02864,,174.0,",uw61420767,",0.89,ml,,uw,9.0,"26km NNW of Packwood, Washington",0.07,12,",uw,",reviewed,1537359302630,"M 0.9 - 26km NNW of Packwood, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538020869930,https://earthquake.usgs.gov/earthquakes/eventpage/uw61420767 +,,61420762,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61420762&format=geojson,0.02632,,151.0,",uw61420762,",1.43,ml,,uw,13.0,"26km NNW of Packwood, Washington",0.09,31,",uw,",reviewed,1537359124670,"M 1.4 - 26km NNW of Packwood, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538020343090,https://earthquake.usgs.gov/earthquakes/eventpage/uw61420762 +,,37360330,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37360330&format=geojson,0.003623,,61.0,",ci37360330,",0.22,ml,,ci,15.0,"10km NE of Aguanga, CA",0.14,1,",ci,",automatic,1537359120100,"M 0.2 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537359343651,https://earthquake.usgs.gov/earthquakes/eventpage/ci37360330 +,,60142508,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw60142508&format=geojson,0.02183,,161.0,",uw60142508,",1.0,ml,,uw,8.0,"27km NNW of Packwood, Washington",0.06,15,",uw,",reviewed,1537359052480,"M 1.0 - 27km NNW of Packwood, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538019508290,https://earthquake.usgs.gov/earthquakes/eventpage/uw60142508 +,,61420757,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61420757&format=geojson,0.02425,,168.0,",uw61420757,",0.97,ml,,uw,9.0,"26km NNW of Packwood, Washington",0.07,14,",uw,",reviewed,1537359006260,"M 1.0 - 26km NNW of Packwood, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538019227700,https://earthquake.usgs.gov/earthquakes/eventpage/uw61420757 +,,61420752,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61420752&format=geojson,0.02164,,160.0,",uw61420752,",0.68,ml,,uw,8.0,"27km NNW of Packwood, Washington",0.05,7,",uw,",reviewed,1537358974840,"M 0.7 - 27km NNW of Packwood, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538018976800,https://earthquake.usgs.gov/earthquakes/eventpage/uw61420752 +,,61420747,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61420747&format=geojson,0.02792,,105.0,",uw61420747,",1.32,ml,,uw,10.0,"26km NNW of Packwood, Washington",0.07,27,",uw,",reviewed,1537358940210,"M 1.3 - 26km NNW of Packwood, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538018820090,https://earthquake.usgs.gov/earthquakes/eventpage/uw61420747 +,,00657308,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657308&format=geojson,0.158,,244.98,",nn00657308,",0.0,ml,,nn,4.0,"32km SSW of Hawthorne, Nevada",0.0367,0,",nn,",reviewed,1537358901430,"M 0.0 - 32km SSW of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537396813564,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657308 +,,61420742,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61420742&format=geojson,0.02537,,103.0,",uw61420742,",0.92,ml,,uw,10.0,"26km NNW of Packwood, Washington",0.07,13,",uw,",reviewed,1537358892020,"M 0.9 - 26km NNW of Packwood, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538018509060,https://earthquake.usgs.gov/earthquakes/eventpage/uw61420742 +,,61420737,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61420737&format=geojson,0.02232,,164.0,",uw61420737,",0.66,ml,,uw,8.0,"27km NNW of Packwood, Washington",0.05,7,",uw,",reviewed,1537358820710,"M 0.7 - 27km NNW of Packwood, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538018319910,https://earthquake.usgs.gov/earthquakes/eventpage/uw61420737 +,,61420732,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61420732&format=geojson,0.0258,,171.0,",uw61420732,",0.62,ml,,uw,9.0,"26km NNW of Packwood, Washington",0.07,6,",uw,",reviewed,1537358736480,"M 0.6 - 26km NNW of Packwood, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1538018194130,https://earthquake.usgs.gov/earthquakes/eventpage/uw61420732 +,,73087121,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087121&format=geojson,0.01368,,133.0,",nc73087121,",1.18,md,,nc,16.0,"5km NNW of Pinnacles, CA",0.07,21,",nc,",reviewed,1537358500210,"M 1.2 - 5km NNW of Pinnacles, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537371663424,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087121 +,,61781716,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61781716&format=geojson,0.02808,,131.0,",av61781716,",-0.03,ml,,av,5.0,"43km ENE of Adak, Alaska",0.11,0,",av,",reviewed,1537358351500,"M -0.0 - 43km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537401383860,https://earthquake.usgs.gov/earthquakes/eventpage/av61781716 +,,2018262003,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018262003&format=geojson,0.5264,,269.0,",pr2018262003,",2.84,md,,pr,6.0,"42km N of Hatillo, Puerto Rico",0.34,124,",pr,",reviewed,1537358170800,"M 2.8 - 42km N of Hatillo, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1537372347998,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018262003 +,,73087116,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087116&format=geojson,0.01415,,73.0,",nc73087116,",0.66,md,,nc,28.0,"1km WSW of Parkfield, CA",0.05,7,",nc,",reviewed,1537358074710,"M 0.7 - 1km WSW of Parkfield, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537390088410,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087116 +,,20258545,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258545&format=geojson,,,,",ak20258545,us2000hh2q,",2.5,ml,,ak,,"78km SSW of Kaktovik, Alaska",0.84,96,",ak,us,",automatic,1537357953676,"M 2.5 - 78km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539521741040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258545 +,,70600047,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70600047&format=geojson,0.02322,,155.0,",hv70600047,",1.9,ml,,hv,32.0,"8km E of Pahala, Hawaii",0.12,56,",hv,",reviewed,1537357952640,"M 1.9 - 8km E of Pahala, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537393849370,https://earthquake.usgs.gov/earthquakes/eventpage/hv70600047 +,,00657305,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657305&format=geojson,0.127,,83.39,",nn00657305,",0.1,ml,,nn,10.0,"12km SSE of Verdi, Nevada",0.1355,0,",nn,",reviewed,1537357793483,"M 0.1 - 12km SSE of Verdi, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537396628313,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657305 +,,70803739,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70803739&format=geojson,0.1472,,163.0,",av70803739,",1.02,ml,,av,6.0,"47km W of Nikolski, Alaska",0.24,16,",av,",reviewed,1537357348270,"M 1.0 - 47km W of Nikolski, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537401256960,https://earthquake.usgs.gov/earthquakes/eventpage/av70803739 +,,61781701,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61781701&format=geojson,0.07686,,324.0,",av61781701,",1.29,ml,,av,5.0,"35km W of Tanaga Volcano, Alaska",0.32,26,",av,",reviewed,1537356742130,"M 1.3 - 35km W of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537401029800,https://earthquake.usgs.gov/earthquakes/eventpage/av61781701 +,3.4,2000hh2h,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hh2h&format=geojson,0.318,9.0,76.0,",us2000hh2h,",4.3,mwr,,us,,"15km ENE of Las Animas, Chile",0.94,288,",us,",reviewed,1537356486770,"M 4.3 - 15km ENE of Las Animas, Chile",0,earthquake,",dyfi,geoserve,origin,phase-data,",-240.0,1539494064651,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hh2h +,,37360306,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37360306&format=geojson,0.007366,,69.0,",ci37360306,",0.43,ml,,ci,16.0,"10km NE of Aguanga, CA",0.11,3,",ci,",reviewed,1537356221440,"M 0.4 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537363094071,https://earthquake.usgs.gov/earthquakes/eventpage/ci37360306 +,,1000h2sh,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h2sh&format=geojson,1.295,,210.0,",us1000h2sh,",3.6,mb,,us,,"126km SE of Amatignak Island, Alaska",0.88,199,",us,",reviewed,1537356026680,"M 3.6 - 126km SE of Amatignak Island, Alaska",0,earthquake,",geoserve,origin,phase-data,",-720.0,1539520191040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h2sh +,,20258536,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258536&format=geojson,,,,",ak20258536,",1.2,ml,,ak,,"79km NNW of Yakutat, Alaska",0.52,22,",ak,",automatic,1537355847101,"M 1.2 - 79km NNW of Yakutat, Alaska",0,earthquake,",geoserve,origin,",-480.0,1537356051790,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258536 +,,20258533,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258533&format=geojson,,,,",ak20258533,",1.6,ml,,ak,,"52km NNE of Yakutat, Alaska",0.95,39,",ak,",automatic,1537355733582,"M 1.6 - 52km NNE of Yakutat, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537355921152,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258533 +,,2000hh2d,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hh2d&format=geojson,0.828,,97.0,",us2000hh2d,",4.2,mb,,us,,"31km W of Bandar, Indonesia",0.72,271,",us,",reviewed,1537355682460,"M 4.2 - 31km W of Bandar, Indonesia",0,earthquake,",geoserve,origin,phase-data,",420.0,1539493266040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hh2d +,,61420727,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61420727&format=geojson,0.2282,,54.0,",uw61420727,",1.31,ml,,uw,18.0,"10km WNW of Home, Washington",0.14,26,",uw,",reviewed,1537355604660,"M 1.3 - 10km WNW of Home, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537670093820,https://earthquake.usgs.gov/earthquakes/eventpage/uw61420727 +,,37360298,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37360298&format=geojson,0.09726,,50.0,",ci37360298,",1.22,ml,,ci,49.0,"3km N of Colton, CA",0.18,23,",ci,",reviewed,1537354105490,"M 1.2 - 3km N of Colton, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537363096277,https://earthquake.usgs.gov/earthquakes/eventpage/ci37360298 +,,20258521,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258521&format=geojson,,,,",ak20258521,us2000hh20,",2.7,ml,,ak,,"125km NNW of Arctic Village, Alaska",0.77,112,",ak,us,",automatic,1537353900886,"M 2.7 - 125km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539517158040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258521 +,,20258519,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258519&format=geojson,,,,",ak20258519,",2.0,ml,,ak,,"65km SW of Kaktovik, Alaska",1.1,62,",ak,",automatic,1537353799887,"M 2.0 - 65km SW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537354154944,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258519 +,,73087111,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087111&format=geojson,0.005164,,137.0,",nc73087111,",0.55,md,,nc,5.0,"7km NW of The Geysers, CA",0.01,5,",nc,",automatic,1537353708010,"M 0.6 - 7km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537353806076,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087111 +,,20258510,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258510&format=geojson,,,,",ak20258510,us2000hh1z,",2.0,ml,,ak,,"96km NNW of Talkeetna, Alaska",0.42,62,",ak,us,",automatic,1537353544652,"M 2.0 - 96km NNW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539506625040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258510 +,,20258506,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258506&format=geojson,,,,",ak20258506,us2000hh1x,",2.6,ml,,ak,,"72km SSW of Kaktovik, Alaska",0.7,104,",ak,us,",automatic,1537353165394,"M 2.6 - 72km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1539509343040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258506 +,,20258503,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258503&format=geojson,,,,",ak20258503,",1.5,ml,,ak,,"73km W of Anchor Point, Alaska",0.67,35,",ak,",automatic,1537353010836,"M 1.5 - 73km W of Anchor Point, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537353310257,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258503 +,2.7,37360274,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37360274&format=geojson,0.1362,1.0,122.0,",ci37360274,",1.85,ml,,ci,30.0,"18km W of Progreso, B.C., MX",0.2,53,",ci,",reviewed,1537352622380,"M 1.9 - 18km W of Progreso, B.C., MX",0,earthquake,",dyfi,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537374109040,https://earthquake.usgs.gov/earthquakes/eventpage/ci37360274 +,,20258501,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258501&format=geojson,,,,",ak20258501,",0.9,ml,,ak,,"33km NNE of Eielson Air Force Base, Alaska",0.33,12,",ak,",automatic,1537352462908,"M 0.9 - 33km NNE of Eielson Air Force Base, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537352658045,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258501 +,,1000h2sf,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us1000h2sf&format=geojson,2.173,,248.0,",us1000h2sf,",4.0,mb,,us,,"163km E of Tadine, New Caledonia",0.5,246,",us,",reviewed,1537352344640,"M 4.0 - 163km E of Tadine, New Caledonia",0,earthquake,",geoserve,origin,phase-data,",660.0,1539507756040,https://earthquake.usgs.gov/earthquakes/eventpage/us1000h2sf +,,73087101,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087101&format=geojson,0.008194,,55.0,",nc73087101,",1.71,md,,nc,36.0,"9km WNW of Cobb, CA",0.03,45,",nc,",reviewed,1537352010890,"M 1.7 - 9km WNW of Cobb, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537496343353,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087101 +,,20258496,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258496&format=geojson,,,,",ak20258496,",0.8,ml,,ak,,"16km N of North Nenana, Alaska",0.26,10,",ak,",automatic,1537351922567,"M 0.8 - 16km N of North Nenana, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537352106338,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258496 +,,73087096,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087096&format=geojson,0.01334,,43.0,",nc73087096,",1.5,md,,nc,39.0,"2km SE of The Geysers, CA",0.06,35,",nc,",reviewed,1537351844980,"M 1.5 - 2km SE of The Geysers, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537498022862,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087096 +,,73087091,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087091&format=geojson,0.1084,,81.0,",nn00657304,nc73087091,",1.24,md,,nc,11.0,"8km SSW of Almanor, CA",0.11,24,",nn,nc,",reviewed,1537351146370,"M 1.2 - 8km SSW of Almanor, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537403944396,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087091 +,,73087086,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087086&format=geojson,0.0186,,103.0,",nc73087086,",-0.05,md,,nc,10.0,"5km ENE of Mammoth Lakes, CA",0.03,0,",nc,",reviewed,1537350613220,"M -0.1 - 5km ENE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537370429911,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087086 +,,73087081,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087081&format=geojson,0.03612,,147.0,",nc73087081,",1.54,md,,nc,7.0,"6km ENE of San Ardo, CA",0.14,36,",nc,",reviewed,1537350355360,"M 1.5 - 6km ENE of San Ardo, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537374843744,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087081 +,,73087076,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087076&format=geojson,0.004654,,66.0,",nc73087076,",0.2,md,,nc,17.0,"7km E of Mammoth Lakes, CA",0.07,1,",nc,",reviewed,1537349992670,"M 0.2 - 7km E of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537379595376,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087076 +,,00657303,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657303&format=geojson,0.215,,179.75,",nn00657303,",0.1,ml,,nn,11.0,"66km WNW of Beatty, Nevada",0.1205,0,",nn,",reviewed,1537349673291,"M 0.1 - 66km WNW of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537395518556,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657303 +,,00657248,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657248&format=geojson,0.52,,265.15,",nn00657248,",1.4,ml,,nn,8.0,"22km SSW of Gerlach-Empire, Nevada",0.1809,30,",nn,",reviewed,1537349205405,"M 1.4 - 22km SSW of Gerlach-Empire, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537380384762,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657248 +,,20258478,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258478&format=geojson,,,,",ak20258478,",1.2,ml,,ak,,"51km S of Deltana, Alaska",0.57,22,",ak,",automatic,1537349094423,"M 1.2 - 51km S of Deltana, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537349418644,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258478 +,,37360258,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37360258&format=geojson,0.03686,,102.0,",ci37360258,",1.25,ml,,ci,17.0,"9km ENE of Coso Junction, CA",0.13,24,",ci,",reviewed,1537348933030,"M 1.3 - 9km ENE of Coso Junction, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537363163430,https://earthquake.usgs.gov/earthquakes/eventpage/ci37360258 +,,2000hh1a,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hh1a&format=geojson,7.827,,110.0,",us2000hh1a,",4.4,mb,,us,,"160km NNW of Bereeda, Somalia",0.82,298,",us,",reviewed,1537348493570,"M 4.4 - 160km NNW of Bereeda, Somalia",0,earthquake,",geoserve,origin,phase-data,",180.0,1539435761040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hh1a +,,00657239,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657239&format=geojson,0.145,,51.11,",nn00657239,",1.7,ml,,nn,23.0,"28km N of Bridgeport, California",0.1632,44,",nn,",reviewed,1537347979746,"M 1.7 - 28km N of Bridgeport, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537379461153,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657239 +,,80310529,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80310529&format=geojson,0.181,,121.0,",mb80310529,",1.18,ml,,mb,8.0,"19km NE of Three Forks, Montana",0.05,21,",mb,",reviewed,1537347859350,"M 1.2 - 19km NE of Three Forks, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537366462430,https://earthquake.usgs.gov/earthquakes/eventpage/mb80310529 +,,20258468,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258468&format=geojson,,,,",ak20258468,",1.8,ml,,ak,,"135km WNW of Arctic Village, Alaska",0.74,50,",ak,",automatic,1537347732545,"M 1.8 - 135km WNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537348405430,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258468 +,,20258467,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258467&format=geojson,,,,",ak20258467,",1.0,ml,,ak,,"18km S of Ester, Alaska",0.52,15,",ak,",automatic,1537347731193,"M 1.0 - 18km S of Ester, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537347953419,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258467 +,,00657301,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657301&format=geojson,0.15,,270.53,",nn00657301,",-0.4,ml,,nn,5.0,"43km SW of Beatty, Nevada",0.1677,0,",nn,",reviewed,1537347310942,"M -0.4 - 43km SW of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537394592349,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657301 +,,2000hh11,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hh11&format=geojson,13.957,,70.0,",us2000hh11,",5.4,mb,,us,,Carlsberg Ridge,1.47,449,",us,",reviewed,1537347194600,M 5.4 - Carlsberg Ridge,0,earthquake,",geoserve,origin,phase-data,",240.0,1537348430040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hh11 +,,73087066,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087066&format=geojson,0.04803,,109.0,",nc73087066,",2.09,md,,nc,17.0,"6km NNE of Hydesville, CA",0.07,67,",nc,",reviewed,1537346982760,"M 2.1 - 6km NNE of Hydesville, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537385344559,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087066 +,,00657238,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657238&format=geojson,0.028,,55.5,",nn00657238,",-0.3,ml,,nn,33.0,"59km ENE of Beatty, Nevada",0.1578,0,",nn,",reviewed,1537346931944,"M -0.3 - 59km ENE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537378526697,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657238 +,,20258462,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258462&format=geojson,,,,",ak20258462,",1.4,ml,,ak,,"74km ENE of Cape Yakataga, Alaska",0.57,30,",ak,",automatic,1537346724231,"M 1.4 - 74km ENE of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537346899495,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258462 +,,20258460,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258460&format=geojson,,,,",ak20258460,",1.3,ml,,ak,,"95km NNW of Talkeetna, Alaska",0.86,26,",ak,",automatic,1537346712246,"M 1.3 - 95km NNW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537346999985,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258460 +,,70803729,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70803729&format=geojson,0.1628,,174.0,",av70803729,",0.82,ml,,av,6.0,"47km W of Nikolski, Alaska",0.21,10,",av,",reviewed,1537346470940,"M 0.8 - 47km W of Nikolski, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537400071860,https://earthquake.usgs.gov/earthquakes/eventpage/av70803729 +,,00657237,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657237&format=geojson,0.323,,282.05,",nn00657237,",0.6,ml,,nn,8.0,"54km N of Fort Irwin, California",0.1466,6,",nn,",reviewed,1537346364712,"M 0.6 - 54km N of Fort Irwin, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537377048446,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657237 +,,73087061,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087061&format=geojson,0.02118,,48.0,",nc73087061,",1.72,md,,nc,49.0,"3km N of The Geysers, CA",0.06,46,",nc,",reviewed,1537346349320,"M 1.7 - 3km N of The Geysers, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537489503904,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087061 +,,73087056,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087056&format=geojson,0.03211,,112.0,",nc73087056,",0.77,md,,nc,8.0,"7km ENE of Pinnacles, CA",0.02,9,",nc,",reviewed,1537346013500,"M 0.8 - 7km ENE of Pinnacles, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537367634698,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087056 +,,37360242,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37360242&format=geojson,0.01266,,29.0,",ci37360242,",1.28,ml,,ci,59.0,"9km NE of Aguanga, CA",0.2,25,",ci,",reviewed,1537345770280,"M 1.3 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537363227740,https://earthquake.usgs.gov/earthquakes/eventpage/ci37360242 +,,37360234,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37360234&format=geojson,0.02701,,32.0,",ci37360234,",0.65,ml,,ci,41.0,"8km NE of Aguanga, CA",0.15,6,",ci,",reviewed,1537345446600,"M 0.7 - 8km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537373624460,https://earthquake.usgs.gov/earthquakes/eventpage/ci37360234 +,,60064643,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nm60064643&format=geojson,0.01836,,73.0,",nm60064643,",1.08,md,,nm,12.0,"6km SSW of Lilbourn, Missouri",0.04,18,",nm,",reviewed,1537345060770,"M 1.1 - 6km SSW of Lilbourn, Missouri",0,earthquake,",geoserve,origin,phase-data,",-360.0,1537454165900,https://earthquake.usgs.gov/earthquakes/eventpage/nm60064643 +,,70803724,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70803724&format=geojson,0.1414,,161.0,",av70803724,",1.4,ml,,av,9.0,"47km W of Nikolski, Alaska",0.29,30,",av,",reviewed,1537344470980,"M 1.4 - 47km W of Nikolski, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537399844260,https://earthquake.usgs.gov/earthquakes/eventpage/av70803724 +,,37360226,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37360226&format=geojson,0.04703,,59.0,",ci37360226,",1.31,ml,,ci,52.0,"21km NE of Big Bear City, CA",0.13,26,",ci,",reviewed,1537344460510,"M 1.3 - 21km NE of Big Bear City, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537372269480,https://earthquake.usgs.gov/earthquakes/eventpage/ci37360226 +,,73087051,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087051&format=geojson,0.04794,,259.0,",nc73087051,",0.52,md,,nc,12.0,"11km SE of Mammoth Lakes, CA",0.03,4,",nc,",reviewed,1537344369810,"M 0.5 - 11km SE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537379114871,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087051 +,,80310524,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80310524&format=geojson,0.117,,104.0,",mb80310524,",1.66,ml,,mb,14.0,"14km SE of Lincoln, Montana",0.18,42,",mb,",reviewed,1537343974290,"M 1.7 - 14km SE of Lincoln, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537366865170,https://earthquake.usgs.gov/earthquakes/eventpage/mb80310524 +,,20258452,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258452&format=geojson,,,,",ak20258452,",1.5,ml,,ak,,"41km NW of Anchor Point, Alaska",0.47,35,",ak,",automatic,1537343818625,"M 1.5 - 41km NW of Anchor Point, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537344091263,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258452 +,,2018262002,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018262002&format=geojson,1.178,,312.0,",pr2018262002,",2.15,md,,pr,3.0,"66km NE of Santa Barbara de Samana, Dominican Republic",0.08,71,",pr,",reviewed,1537343222740,"M 2.2 - 66km NE of Santa Barbara de Samana, Dominican Republic",0,earthquake,",geoserve,origin,phase-data,",-300.0,1537356575933,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018262002 +,,2000hh0f,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hh0f&format=geojson,1.323,,142.0,",us2000hh0f,",4.2,mb,,us,,"145km NE of Petropavlovsk-Kamchatskiy, Russia",0.52,271,",us,",reviewed,1537342921860,"M 4.2 - 145km NE of Petropavlovsk-Kamchatskiy, Russia",0,earthquake,",geoserve,origin,phase-data,",720.0,1537352033040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hh0f +,,00657299,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657299&format=geojson,0.05,,73.78,",nn00657299,",-0.4,ml,,nn,12.0,"47km ESE of Beatty, Nevada",0.1297,0,",nn,",reviewed,1537342801011,"M -0.4 - 47km ESE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537393854202,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657299 +,,70803749,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70803749&format=geojson,0.006121,,67.0,",av70803749,",0.03,ml,,av,10.0,"13km W of Akutan, Alaska",0.21,0,",av,",reviewed,1537342572200,"M 0.0 - 13km W of Akutan, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537402311030,https://earthquake.usgs.gov/earthquakes/eventpage/av70803749 +,,20258443,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258443&format=geojson,,,,",ak20258443,",1.1,ml,,ak,,"58km NE of Talkeetna, Alaska",0.84,19,",ak,",automatic,1537342469936,"M 1.1 - 58km NE of Talkeetna, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537342716898,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258443 +,,61781561,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61781561&format=geojson,0.1595,,171.0,",av61781561,",1.79,ml,,av,7.0,"47km W of Nikolski, Alaska",0.16,49,",av,",reviewed,1537342380520,"M 1.8 - 47km W of Nikolski, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537399617530,https://earthquake.usgs.gov/earthquakes/eventpage/av61781561 +,3.8,73087041,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087041&format=geojson,0.05825,5.0,96.0,",nc73087041,",2.67,md,,nc,23.0,"6km NNE of Hydesville, CA",0.13,112,",nc,",reviewed,1537342104880,"M 2.7 - 6km NNE of Hydesville, CA",0,earthquake,",dyfi,focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537380123389,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087041 +,,70803719,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70803719&format=geojson,0.1543,,165.0,",av70803719,",1.19,ml,,av,8.0,"46km W of Nikolski, Alaska",0.29,22,",av,",reviewed,1537341923720,"M 1.2 - 46km W of Nikolski, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537399486610,https://earthquake.usgs.gov/earthquakes/eventpage/av70803719 +,,20258439,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258439&format=geojson,,,,",ak20258439,",2.0,ml,,ak,,"135km WNW of Arctic Village, Alaska",0.71,62,",ak,",automatic,1537341915119,"M 2.0 - 135km WNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537342245102,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258439 +,,61781551,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61781551&format=geojson,0.1527,,167.0,",av61781551,",1.68,ml,,av,10.0,"47km W of Nikolski, Alaska",0.24,43,",av,",reviewed,1537341654040,"M 1.7 - 47km W of Nikolski, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537399135450,https://earthquake.usgs.gov/earthquakes/eventpage/av61781551 +,,2018262001,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018262001&format=geojson,0.1652,,165.0,",pr2018262001,",2.36,md,,pr,14.0,"10km WSW of Stella, Puerto Rico",0.17,86,",pr,",reviewed,1537341571690,"M 2.4 - 10km WSW of Stella, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1537356546966,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018262001 +,,20258432,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258432&format=geojson,,,,",ak20258432,",2.4,ml,,ak,,"127km SSE of Homer, Alaska",0.55,89,",ak,",automatic,1537341308615,"M 2.4 - 127km SSE of Homer, Alaska",0,earthquake,",geoserve,origin,",-600.0,1537341622985,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258432 +,2.0,37360218,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37360218&format=geojson,0.4795,1.0,254.0,",ci37360218,",2.07,ml,,ci,19.0,"39km SW of Rosarito, B.C., MX",0.18,66,",ci,",reviewed,1537341234520,"M 2.1 - 39km SW of Rosarito, B.C., MX",0,earthquake,",dyfi,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537371574802,https://earthquake.usgs.gov/earthquakes/eventpage/ci37360218 +,,20258427,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258427&format=geojson,,,,",ak20258427,",0.8,ml,,ak,,"11km SSE of Salcha, Alaska",0.35,10,",ak,",automatic,1537340907923,"M 0.8 - 11km SSE of Salcha, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537341271424,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258427 +,,20258426,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258426&format=geojson,,,,",ak20258426,",1.8,ml,,ak,,"135km WNW of Arctic Village, Alaska",0.9,50,",ak,",automatic,1537340876739,"M 1.8 - 135km WNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537341170932,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258426 +,,00657234,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657234&format=geojson,0.056,,53.18,",nn00657234,",-0.3,ml,,nn,22.0,"51km ENE of Beatty, Nevada",0.1205,0,",nn,",reviewed,1537340867133,"M -0.3 - 51km ENE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537375941398,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657234 +,,20258421,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258421&format=geojson,,,,",ak20258421,",2.9,ml,,ak,,"123km NW of Arctic Village, Alaska",0.74,129,",ak,",automatic,1537340616647,"M 2.9 - 123km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537340939555,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258421 +,,20258418,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258418&format=geojson,,,,",ak20258418,",2.5,ml,,ak,,"132km WNW of Arctic Village, Alaska",0.68,96,",ak,",automatic,1537340551791,"M 2.5 - 132km WNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537340839067,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258418 +,,00657298,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657298&format=geojson,0.278,,236.25,",nn00657298,",0.7,ml,,nn,10.0,"14km NW of Sandy Valley, Nevada",0.2486,8,",nn,",reviewed,1537339162456,"M 0.7 - 14km NW of Sandy Valley, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537393298020,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657298 +,,20258413,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258413&format=geojson,,,,",ak20258413,",1.1,ml,,ak,,"42km NW of Nikiski, Alaska",0.8,19,",ak,",automatic,1537338465815,"M 1.1 - 42km NW of Nikiski, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537338682770,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258413 +,2.2,20258410,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258410&format=geojson,,1.0,,",ak20258410,",2.5,ml,,ak,,"81km WNW of Skagway, Alaska",0.99,96,",ak,",reviewed,1537338374957,"M 2.5 - 81km WNW of Skagway, Alaska",0,earthquake,",dyfi,geoserve,origin,phase-data,",-480.0,1537368477431,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258410 +,,20258406,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258406&format=geojson,,,,",ak20258406,",1.1,ml,,ak,,"69km ENE of Talkeetna, Alaska",0.48,19,",ak,",automatic,1537337832599,"M 1.1 - 69km ENE of Talkeetna, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537338090441,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258406 +,,70803709,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70803709&format=geojson,0.07572,,240.0,",av70803709,",-0.27,ml,,av,6.0,"101km ESE of King Salmon, Alaska",0.03,0,",av,",reviewed,1537337204130,"M -0.3 - 101km ESE of King Salmon, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537398904750,https://earthquake.usgs.gov/earthquakes/eventpage/av70803709 +,,73087036,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087036&format=geojson,0.00552,,60.0,",nc73087036,",1.79,md,,nc,44.0,"1km S of Anderson Springs, CA",0.07,49,",nc,",reviewed,1537337044510,"M 1.8 - 1km S of Anderson Springs, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537402323244,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087036 +,,60296957,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60296957&format=geojson,0.08647,,135.0,",uu60296957,",0.88,md,,uu,12.0,"9km WSW of Beaver, Utah",0.08,12,",uu,",reviewed,1537336858690,"M 0.9 - 9km WSW of Beaver, Utah",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537379619270,https://earthquake.usgs.gov/earthquakes/eventpage/uu60296957 +,,20258402,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258402&format=geojson,,,,",ak20258402,",1.7,ml,,ak,,"93km WNW of Arctic Village, Alaska",0.63,44,",ak,",automatic,1537336770203,"M 1.7 - 93km WNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537337287828,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258402 +,,20258399,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258399&format=geojson,,,,",ak20258399,",1.2,ml,,ak,,"24km ENE of Talkeetna, Alaska",0.53,22,",ak,",automatic,1537336541472,"M 1.2 - 24km ENE of Talkeetna, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537336805922,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258399 +,,70599477,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70599477&format=geojson,0.05483,,173.0,",hv70599477,",1.82,md,,hv,28.0,"15km NE of Honaunau-Napoopoo, Hawaii",0.19,51,",hv,",automatic,1537336441730,"M 1.8 - 15km NE of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537336643800,https://earthquake.usgs.gov/earthquakes/eventpage/hv70599477 +,,80310519,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80310519&format=geojson,0.128,,107.0,",mb80310519,",0.6,md,,mb,11.0,"15km SE of Lincoln, Montana",0.09,6,",mb,",reviewed,1537336431120,"M 0.6 - 15km SE of Lincoln, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537453030790,https://earthquake.usgs.gov/earthquakes/eventpage/mb80310519 +,,37360210,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37360210&format=geojson,0.0941,,136.0,",ci37360210,",0.92,ml,,ci,36.0,"11km N of Borrego Springs, CA",0.21,13,",ci,",reviewed,1537336377800,"M 0.9 - 11km N of Borrego Springs, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537363147225,https://earthquake.usgs.gov/earthquakes/eventpage/ci37360210 +,,20258397,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258397&format=geojson,,,,",ak20258397,",1.4,ml,,ak,,"92km SE of New Allakaket, Alaska",0.6,30,",ak,",automatic,1537336269835,"M 1.4 - 92km SE of New Allakaket, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537336484652,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258397 +,,61420607,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61420607&format=geojson,0.1286,,75.0,",uw61420607,",0.97,ml,,uw,18.0,"4km ESE of Portland, Oregon",0.18,14,",uw,",reviewed,1537335988540,"M 1.0 - 4km ESE of Portland, Oregon",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537667212690,https://earthquake.usgs.gov/earthquakes/eventpage/uw61420607 +,,00657296,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657296&format=geojson,0.19,,168.0,",nn00657296,",0.6,ml,,nn,11.0,"39km NNE of Mammoth Lakes, California",0.1616,6,",nn,",reviewed,1537335665995,"M 0.6 - 39km NNE of Mammoth Lakes, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537391267109,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657296 +,,37360202,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37360202&format=geojson,0.02777,,36.0,",ci37360202,",0.12,ml,,ci,31.0,"9km NE of Aguanga, CA",0.12,0,",ci,",reviewed,1537335536570,"M 0.1 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537371234288,https://earthquake.usgs.gov/earthquakes/eventpage/ci37360202 +,,20258394,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258394&format=geojson,,,,",ak20258394,",0.7,ml,,ak,,"27km NNE of North Nenana, Alaska",0.5,8,",ak,",reviewed,1537334878770,"M 0.7 - 27km NNE of North Nenana, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537367799489,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258394 +,,20258392,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258392&format=geojson,,,,",ak20258392,",1.6,ml,,ak,,"117km NW of Arctic Village, Alaska",0.93,39,",ak,",automatic,1537334801269,"M 1.6 - 117km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537335030664,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258392 +,,20258387,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258387&format=geojson,,,,",ak20258387,",0.9,ml,,ak,,"25km ENE of Talkeetna, Alaska",0.67,12,",ak,",automatic,1537334548257,"M 0.9 - 25km ENE of Talkeetna, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537334930212,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258387 +,,61420602,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61420602&format=geojson,0.01468,,145.0,",uw61420602,",0.61,ml,,uw,8.0,"27km NNW of Packwood, Washington",0.13,6,",uw,",reviewed,1537334460960,"M 0.6 - 27km NNW of Packwood, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537667529900,https://earthquake.usgs.gov/earthquakes/eventpage/uw61420602 +,,20258386,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258386&format=geojson,,,,",ak20258386,",1.2,ml,,ak,,"78km WNW of Skagway, Alaska",0.87,22,",ak,",automatic,1537334323111,"M 1.2 - 78km WNW of Skagway, Alaska",0,earthquake,",geoserve,origin,",-480.0,1537334508413,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258386 +,,37360194,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37360194&format=geojson,0.0386,,89.0,",ci37360194,",1.83,ml,,ci,61.0,"1km WSW of Inglewood, CA",0.22,52,",ci,",reviewed,1537334307380,"M 1.8 - 1km WSW of Inglewood, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537370796320,https://earthquake.usgs.gov/earthquakes/eventpage/ci37360194 +,3.5,2000hgzj,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hgzj&format=geojson,0.103,12.0,28.0,",us2000hgzj,",2.8,mb_lg,,us,,"8km ESE of Guthrie, Oklahoma",0.11,125,",us,",reviewed,1537334116150,"M 2.8 - 8km ESE of Guthrie, Oklahoma",0,earthquake,",dyfi,geoserve,origin,phase-data,",-360.0,1537396506327,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hgzj +,,37360178,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37360178&format=geojson,0.007321,,136.0,",ci37360178,",0.36,ml,,ci,12.0,"10km NE of Aguanga, CA",0.12,2,",ci,",reviewed,1537333620040,"M 0.4 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537363164247,https://earthquake.usgs.gov/earthquakes/eventpage/ci37360178 +,,70803699,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70803699&format=geojson,0.1494,,165.0,",av70803699,",1.19,ml,,av,7.0,"47km W of Nikolski, Alaska",0.17,22,",av,",reviewed,1537333090520,"M 1.2 - 47km W of Nikolski, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537397598110,https://earthquake.usgs.gov/earthquakes/eventpage/av70803699 +,,20258381,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258381&format=geojson,,,,",ak20258381,",0.8,ml,,ak,,"35km NNE of Sterling, Alaska",0.54,10,",ak,",automatic,1537332504643,"M 0.8 - 35km NNE of Sterling, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537332783612,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258381 +,,73087031,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087031&format=geojson,0.08602,,127.0,",nc73087031,",1.33,md,,nc,22.0,"22km SW of New Idria, CA",0.06,27,",nc,",reviewed,1537332108790,"M 1.3 - 22km SW of New Idria, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537370042267,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087031 +,,20258378,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258378&format=geojson,,,,",ak20258378,",1.5,ml,,ak,,"48km WSW of Valdez, Alaska",0.73,35,",ak,",automatic,1537332039592,"M 1.5 - 48km WSW of Valdez, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537332311866,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258378 +,,61781471,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61781471&format=geojson,0.02782,,124.0,",av61781471,",-0.4,ml,,av,5.0,"43km ENE of Adak, Alaska",0.09,0,",av,",reviewed,1537331393840,"M -0.4 - 43km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537397244420,https://earthquake.usgs.gov/earthquakes/eventpage/av61781471 +,,37360034,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37360034&format=geojson,0.04767,,66.0,",ci37360034,",1.35,ml,,ci,39.0,"2km WSW of Inglewood, CA",0.21,28,",ci,",reviewed,1537331275200,"M 1.4 - 2km WSW of Inglewood, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537370142123,https://earthquake.usgs.gov/earthquakes/eventpage/ci37360034 +,,37360026,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37360026&format=geojson,0.02477,,131.0,",ci37360026,",0.34,ml,,ci,10.0,"14km NE of Little Lake, CA",0.08,2,",ci,",reviewed,1537330986590,"M 0.3 - 14km NE of Little Lake, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537377938500,https://earthquake.usgs.gov/earthquakes/eventpage/ci37360026 +,,20258373,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258373&format=geojson,,,,",ak20258373,",1.7,ml,,ak,,"9km NNE of Nikiski, Alaska",0.67,44,",ak,",automatic,1537330537291,"M 1.7 - 9km NNE of Nikiski, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537330787557,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258373 +,,61420512,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61420512&format=geojson,0.02323,,114.0,",uw61420512,",0.69,ml,,uw,7.0,"31km NNW of Packwood, Washington",0.13,7,",uw,",reviewed,1537330379400,"M 0.7 - 31km NNW of Packwood, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537638022650,https://earthquake.usgs.gov/earthquakes/eventpage/uw61420512 +,2.7,37360018,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37360018&format=geojson,0.04948,1.0,75.0,",ci37360018,",1.51,ml,,ci,39.0,"1km NE of Lennox, CA",0.21,35,",ci,",reviewed,1537330368960,"M 1.5 - 1km NE of Lennox, CA",0,earthquake,",dyfi,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537369724826,https://earthquake.usgs.gov/earthquakes/eventpage/ci37360018 +,,20258372,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258372&format=geojson,,,,",ak20258372,",1.5,ml,,ak,,"48km NNE of Yakutat, Alaska",0.85,35,",ak,",automatic,1537330153219,"M 1.5 - 48km NNE of Yakutat, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537330345853,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258372 +,,20258364,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258364&format=geojson,,,,",ak20258364,",2.8,ml,,ak,,"135km NW of Arctic Village, Alaska",0.68,121,",ak,",automatic,1537329041254,"M 2.8 - 135km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537329493396,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258364 +,,20258360,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258360&format=geojson,,,,",ak20258360,",1.6,ml,,ak,,"136km NW of Arctic Village, Alaska",0.55,39,",ak,",automatic,1537328524734,"M 1.6 - 136km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537329101717,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258360 +,,00657226,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657226&format=geojson,0.336,,60.45,",nn00657226,",1.5,ml,,nn,11.0,"36km SSE of Gabbs, Nevada",0.1727,35,",nn,",reviewed,1537328175870,"M 1.5 - 36km SSE of Gabbs, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537374084388,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657226 +,,20258357,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258357&format=geojson,,,,",ak20258357,",1.0,ml,,ak,,"57km S of Deltana, Alaska",0.65,15,",ak,",automatic,1537327799204,"M 1.0 - 57km S of Deltana, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537327998485,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258357 +,,37359986,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37359986&format=geojson,0.06379,,61.0,",ci37359986,",0.97,ml,,ci,19.0,"17km NNE of Coso Junction, CA",0.14,14,",ci,",reviewed,1537327482060,"M 1.0 - 17km NNE of Coso Junction, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537379171697,https://earthquake.usgs.gov/earthquakes/eventpage/ci37359986 +,,37359970,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37359970&format=geojson,0.02075,,57.0,",ci37359970,",0.29,ml,,ci,22.0,"9km NE of Aguanga, CA",0.14,1,",ci,",reviewed,1537326811060,"M 0.3 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537368992150,https://earthquake.usgs.gov/earthquakes/eventpage/ci37359970 +,,61781431,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61781431&format=geojson,0.02766,,124.0,",av61781431,",-0.58,ml,,av,5.0,"43km ENE of Adak, Alaska",0.07,0,",av,",reviewed,1537326465140,"M -0.6 - 43km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537396409830,https://earthquake.usgs.gov/earthquakes/eventpage/av61781431 +,,61781426,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61781426&format=geojson,0.03872,,245.0,",av61781426,",0.3,ml,,av,7.0,"95km SE of King Salmon, Alaska",0.05,1,",av,",reviewed,1537325842790,"M 0.3 - 95km SE of King Salmon, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537395552330,https://earthquake.usgs.gov/earthquakes/eventpage/av61781426 +,,20258352,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258352&format=geojson,,,,",ak20258352,",1.0,ml,,ak,,"22km ENE of Talkeetna, Alaska",0.95,15,",ak,",automatic,1537325363149,"M 1.0 - 22km ENE of Talkeetna, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537325601647,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258352 +,,20258351,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258351&format=geojson,,,,",ak20258351,",2.0,ml,,ak,,"40km S of Kaktovik, Alaska",0.6,62,",ak,",automatic,1537325247445,"M 2.0 - 40km S of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537325822571,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258351 +,,73087016,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087016&format=geojson,0.008868,,150.0,",nc73087016,",0.72,md,,nc,6.0,"2km E of The Geysers, CA",0.02,8,",nc,",automatic,1537324925360,"M 0.7 - 2km E of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537325021278,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087016 +,,61781411,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61781411&format=geojson,0.09601,,212.0,",av61781411,",0.36,ml,,av,9.0,"101km NNW of Larsen Bay, Alaska",0.13,2,",av,",reviewed,1537324721580,"M 0.4 - 101km NNW of Larsen Bay, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537395873010,https://earthquake.usgs.gov/earthquakes/eventpage/av61781411 +,,70803704,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70803704&format=geojson,0.008933,,64.0,",av70803704,",-0.54,ml,,av,9.0,"13km W of Akutan, Alaska",0.2,0,",av,",reviewed,1537324630510,"M -0.5 - 13km W of Akutan, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537398774400,https://earthquake.usgs.gov/earthquakes/eventpage/av70803704 +,,20258344,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258344&format=geojson,,,,",ak20258344,",1.3,ml,,ak,,"61km SSW of Kobuk, Alaska",0.83,26,",ak,",automatic,1537324298744,"M 1.3 - 61km SSW of Kobuk, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537324588347,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258344 +,,20258342,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258342&format=geojson,,,,",ak20258342,",1.6,ml,,ak,,"20km ENE of Talkeetna, Alaska",0.72,39,",ak,",automatic,1537324179802,"M 1.6 - 20km ENE of Talkeetna, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537324588112,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258342 +,,2018262000,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018262000&format=geojson,0.1555,,121.0,",pr2018262000,",1.76,md,,pr,8.0,"8km E of Adjuntas, Puerto Rico",0.12,48,",pr,",reviewed,1537323829720,"M 1.8 - 8km E of Adjuntas, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1537328852351,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018262000 +,,20258340,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258340&format=geojson,,,,",ak20258340,",1.0,ml,,ak,,"54km NW of Cape Yakataga, Alaska",0.28,15,",ak,",automatic,1537323827301,"M 1.0 - 54km NW of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537324166304,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258340 +,,00657223,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657223&format=geojson,0.225,,121.65,",nn00657223,",0.9,ml,,nn,15.0,"27km SE of Alamo, Nevada",0.182,12,",nn,",reviewed,1537323379430,"M 0.9 - 27km SE of Alamo, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537383343988,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657223 +,,37359938,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37359938&format=geojson,0.06049,,58.0,",ci37359938,",1.17,ml,,ci,41.0,"10km S of Idyllwild, CA",0.15,21,",ci,",reviewed,1537322885660,"M 1.2 - 10km S of Idyllwild, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537363234340,https://earthquake.usgs.gov/earthquakes/eventpage/ci37359938 +,,20258328,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258328&format=geojson,,,,",ak20258328,",1.7,ml,,ak,,"65km NNE of Redoubt Volcano, Alaska",0.5,44,",ak,",automatic,1537322465728,"M 1.7 - 65km NNE of Redoubt Volcano, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537322962270,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258328 +,,20258322,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258322&format=geojson,,,,",ak20258322,",1.0,ml,,ak,,"40km NW of Willow, Alaska",0.17,15,",ak,",automatic,1537321794186,"M 1.0 - 40km NW of Willow, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537322139285,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258322 +,,73087011,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087011&format=geojson,0.1926,,90.0,",nc73087011,",1.85,md,,nc,17.0,"24km SSE of Blue Lake, CA",0.08,53,",nc,",reviewed,1537321757620,"M 1.9 - 24km SSE of Blue Lake, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537378143067,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087011 +,,20258320,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258320&format=geojson,,,,",ak20258320,",1.1,ml,,ak,,"55km S of Deltana, Alaska",0.74,19,",ak,",automatic,1537321175992,"M 1.1 - 55km S of Deltana, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537321798219,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258320 +,,60296952,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60296952&format=geojson,0.1754,,167.0,",uu60296952,",1.2,md,,uu,7.0,"22km SW of Afton, Wyoming",0.29,22,",uu,",reviewed,1537320721690,"M 1.2 - 22km SW of Afton, Wyoming",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537379185630,https://earthquake.usgs.gov/earthquakes/eventpage/uu60296952 +,,20258295,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258295&format=geojson,,,,",ak20258295,us2000hgy2,",2.8,ml,,ak,,"67km NNW of Valdez, Alaska",0.85,121,",ak,us,",automatic,1537320252992,"M 2.8 - 67km NNW of Valdez, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538691579040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258295 +,,37359930,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37359930&format=geojson,0.08824,,95.0,",ci37359930,",0.75,ml,,ci,30.0,"4km SE of Loma Linda, CA",0.18,9,",ci,",reviewed,1537320081690,"M 0.8 - 4km SE of Loma Linda, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537368458978,https://earthquake.usgs.gov/earthquakes/eventpage/ci37359930 +,,20258292,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258292&format=geojson,,,,",ak20258292,",1.4,ml,,ak,,"61km N of College, Alaska",0.7,30,",ak,",automatic,1537319990154,"M 1.4 - 61km N of College, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537320273243,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258292 +,,37359914,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37359914&format=geojson,0.1426,,59.0,",ci37359914,",1.46,ml,,ci,38.0,"30km SE of Twentynine Palms, CA",0.17,33,",ci,",reviewed,1537319311650,"M 1.5 - 30km SE of Twentynine Palms, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537368102280,https://earthquake.usgs.gov/earthquakes/eventpage/ci37359914 +,,70251098,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ismpkansas70251098&format=geojson,0.1326,,235.0,",ismpkansas70251098,",1.61,ml,,ismpkansas,10.0,"16km WSW of Conway Springs, Kansas",0.05,40,",ismpkansas,",reviewed,1537319098360,"M 1.6 - 16km WSW of Conway Springs, Kansas",0,earthquake,",geoserve,origin,phase-data,",-360.0,1537481152380,https://earthquake.usgs.gov/earthquakes/eventpage/ismpkansas70251098 +,,2000hgxx,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hgxx&format=geojson,0.227,,134.0,",us2000hgxx,",4.5,mb,,us,,"11km E of Corinto, Nicaragua",0.81,312,",us,",reviewed,1537318768620,"M 4.5 - 11km E of Corinto, Nicaragua",0,earthquake,",geoserve,origin,phase-data,",-360.0,1538690712040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hgxx +,,20258281,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258281&format=geojson,,,,",ak20258281,",1.2,ml,,ak,,"24km ENE of Talkeetna, Alaska",0.39,22,",ak,",automatic,1537318112442,"M 1.2 - 24km ENE of Talkeetna, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537318326677,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258281 +,,20258280,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258280&format=geojson,,,,",ak20258280,",1.3,ml,,ak,,"63km W of Talkeetna, Alaska",0.44,26,",ak,",automatic,1537318006494,"M 1.3 - 63km W of Talkeetna, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537318225860,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258280 +,,00657931,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657931&format=geojson,0.253,,149.29,",nn00657931,",0.8,ml,,nn,6.0,"21km ENE of Yerington, Nevada",0.1613,10,",nn,",reviewed,1537317968525,"M 0.8 - 21km ENE of Yerington, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537818869865,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657931 +,,2000hgxn,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hgxn&format=geojson,2.495,,174.0,",ak20258267,us2000hgxn,",4.0,ml,,us,,"269km SE of Kodiak, Alaska",1.12,246,",ak,us,",reviewed,1537317652790,"M 4.0 - 269km SE of Kodiak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1538690186040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hgxn +,,20258266,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258266&format=geojson,,,,",ak20258266,",2.6,ml,,ak,,"154km ESE of Kodiak, Alaska",1.31,104,",ak,",automatic,1537317537371,"M 2.6 - 154km ESE of Kodiak, Alaska",0,earthquake,",geoserve,origin,",-600.0,1537317914037,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258266 +,,20258260,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258260&format=geojson,,,,",ak20258260,",1.4,ml,,ak,,"14km NE of Fritz Creek, Alaska",0.69,30,",ak,",automatic,1537317052667,"M 1.4 - 14km NE of Fritz Creek, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537317621932,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258260 +,,20258258,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258258&format=geojson,,,,",ak20258258,",1.1,ml,,ak,,"63km ENE of Cantwell, Alaska",0.3,19,",ak,",automatic,1537316564737,"M 1.1 - 63km ENE of Cantwell, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537316766817,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258258 +,,61420427,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61420427&format=geojson,0.1518,,199.0,",uw61420427,",1.78,ml,,uw,13.0,"12km WNW of Ahtanum, Washington",0.55,49,",uw,",reviewed,1537316492180,"M 1.8 Explosion - 12km WNW of Ahtanum, Washington",0,explosion,",geoserve,origin,phase-data,",-480.0,1537318262120,https://earthquake.usgs.gov/earthquakes/eventpage/uw61420427 +,,00657268,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657268&format=geojson,0.274,,195.83,",nn00657268,",0.9,ml,,nn,9.0,"10km E of Bridgeport, California",0.1078,12,",nn,",reviewed,1537316420952,"M 0.9 - 10km E of Bridgeport, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537382782242,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657268 +,,2000hgwu,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hgwu&format=geojson,1.94,,89.0,",us2000hgwu,",4.3,mb,,us,,"214km NW of Saumlaki, Indonesia",0.91,284,",us,",reviewed,1537316258460,"M 4.3 - 214km NW of Saumlaki, Indonesia",0,earthquake,",geoserve,origin,phase-data,",540.0,1538626445040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hgwu +,,37359890,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37359890&format=geojson,0.1514,,48.0,",ci37359890,",1.06,ml,,ci,45.0,"17km SSW of Oasis, CA",0.19,17,",ci,",reviewed,1537316218920,"M 1.1 - 17km SSW of Oasis, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537367102950,https://earthquake.usgs.gov/earthquakes/eventpage/ci37359890 +,2.0,73087001,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087001&format=geojson,0.06085,1.0,97.0,",nc73087001,",2.36,md,,nc,63.0,"10km SE of Pinnacles, CA",0.06,86,",nc,",reviewed,1537315810900,"M 2.4 - 10km SE of Pinnacles, CA",0,earthquake,",dyfi,focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537324143412,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087001 +,,37359866,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37359866&format=geojson,0.03554,,42.0,",ci37359866,",0.77,ml,,ci,39.0,"4km SE of Anza, CA",0.15,9,",ci,",reviewed,1537315632550,"M 0.8 - 4km SE of Anza, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537366037594,https://earthquake.usgs.gov/earthquakes/eventpage/ci37359866 +,,20258030,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258030&format=geojson,,,,",ak20258030,",1.9,ml,,ak,,"75km NNW of Talkeetna, Alaska",0.43,56,",ak,",automatic,1537315382366,"M 1.9 - 75km NNW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537316098508,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258030 +,,61781281,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61781281&format=geojson,0.05013,,316.0,",av61781281,",0.15,ml,,av,4.0,"40km W of Tanaga Volcano, Alaska",0.16,0,",av,",reviewed,1537315361870,"M 0.2 - 40km W of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537394721260,https://earthquake.usgs.gov/earthquakes/eventpage/av61781281 +,2.7,2000hgwp,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hgwp&format=geojson,1.195,1.0,146.0,",us2000hgwp,",3.9,mwr,,us,,"27km ESE of Kitaibaraki, Japan",1.38,234,",us,",reviewed,1537315296630,"M 3.9 - 27km ESE of Kitaibaraki, Japan",0,earthquake,",dyfi,geoserve,moment-tensor,origin,phase-data,",540.0,1538624469951,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hgwp +,,61781276,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61781276&format=geojson,0.03009,,307.0,",av61781276,",0.85,ml,,av,5.0,"43km W of Tanaga Volcano, Alaska",0.27,11,",av,",reviewed,1537315148180,"M 0.9 - 43km W of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537390573860,https://earthquake.usgs.gov/earthquakes/eventpage/av61781276 +,,20258028,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258028&format=geojson,,,,",ak20258028,",1.0,ml,,ak,,"63km E of Cape Yakataga, Alaska",0.72,15,",ak,",automatic,1537315069447,"M 1.0 - 63km E of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537315373801,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258028 +,,70599052,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70599052&format=geojson,0.00864,,38.0,",hv70599052,",1.81,md,,hv,20.0,"5km SW of Volcano, Hawaii",0.11,50,",hv,",automatic,1537314981000,"M 1.8 - 5km SW of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537315152910,https://earthquake.usgs.gov/earthquakes/eventpage/hv70599052 +,,2000hgwb,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hgwb&format=geojson,0.263,,75.0,",us2000hgwb,",3.9,mwr,,us,,"37km SW of Ovalle, Chile",0.64,234,",us,",reviewed,1537314610390,"M 3.9 - 37km SW of Ovalle, Chile",0,earthquake,",geoserve,moment-tensor,origin,phase-data,",-240.0,1538622933040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hgwb +,,37359842,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37359842&format=geojson,0.1078,,64.0,",ci37359842,",1.08,ml,,ci,37.0,"12km N of Ocotillo Wells, CA",0.2,18,",ci,",reviewed,1537314261660,"M 1.1 - 12km N of Ocotillo Wells, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537315653776,https://earthquake.usgs.gov/earthquakes/eventpage/ci37359842 +,,2000hgwg,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hgwg&format=geojson,3.534,,79.0,",us2000hgwg,",4.3,mb,,us,,"270km N of Ndoi Island, Fiji",1.04,284,",us,",reviewed,1537314251070,"M 4.3 - 270km N of Ndoi Island, Fiji",0,earthquake,",geoserve,origin,phase-data,",-720.0,1538622470040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hgwg +,,61420407,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61420407&format=geojson,0.2218,,159.0,",uw61420407,",1.71,ml,,uw,13.0,"11km NNE of Castle Rock, Washington",0.37,45,",uw,",reviewed,1537314248790,"M 1.7 Explosion - 11km NNE of Castle Rock, Washington",0,explosion,",geoserve,origin,phase-data,",-480.0,1537319281680,https://earthquake.usgs.gov/earthquakes/eventpage/uw61420407 +,,2000hgwf,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hgwf&format=geojson,5.604,,82.0,",us2000hgwf,",4.8,mb,,us,,"43km NNW of Visokoi Island, South Georgia and the South Sandwich Islands",0.72,354,",us,",reviewed,1537314248620,"M 4.8 - 43km NNW of Visokoi Island, South Georgia and the South Sandwich Islands",0,earthquake,",geoserve,origin,phase-data,",-120.0,1538622826040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hgwf +,,00657213,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657213&format=geojson,0.337,,109.71,",nn00657213,",1.0,ml,,nn,12.0,"41km ESE of Big Pine, California",0.1905,15,",nn,",reviewed,1537314224556,"M 1.0 - 41km ESE of Big Pine, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537322731938,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657213 +,,2000hgw5,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hgw5&format=geojson,6.014,,57.0,",us2000hgw5,",4.6,mb,,us,,"15km E of Pamandzi, Mayotte",0.9,326,",us,",reviewed,1537313828940,"M 4.6 - 15km E of Pamandzi, Mayotte",0,earthquake,",geoserve,origin,phase-data,",180.0,1538621631040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hgw5 +,,00657217,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657217&format=geojson,0.119,,118.83,",nn00657217,",0.6,ml,,nn,9.0,"13km S of Verdi, Nevada",0.2077,6,",nn,",reviewed,1537313634876,"M 0.6 - 13km S of Verdi, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537322735795,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657217 +,,73086996,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73086996&format=geojson,0.01234,,127.0,",nc73086996,",0.86,md,,nc,7.0,"2km WSW of Anderson Springs, CA",0.15,11,",nc,",automatic,1537313562690,"M 0.9 - 2km WSW of Anderson Springs, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537313660306,https://earthquake.usgs.gov/earthquakes/eventpage/nc73086996 +,,37359810,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37359810&format=geojson,0.112,,111.0,",ci37359810,",1.37,ml,,ci,16.0,"6km NNW of Boron, CA",0.12,29,",ci,",reviewed,1537312732490,"M 1.4 Quarry Blast - 6km NNW of Boron, CA",0,quarry blast,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537315395532,https://earthquake.usgs.gov/earthquakes/eventpage/ci37359810 +,,37359802,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37359802&format=geojson,0.00634,,36.0,",ci37359802,",0.95,ml,,ci,39.0,"10km NE of Aguanga, CA",0.17,14,",ci,",reviewed,1537312650040,"M 1.0 - 10km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537314181100,https://earthquake.usgs.gov/earthquakes/eventpage/ci37359802 +,2.0,00657216,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657216&format=geojson,0.062,1.0,101.8,",nn00657216,",0.0,ml,,nn,6.0,"30km E of Hawthorne, Nevada",0.1135,0,",nn,",reviewed,1537312573617,"M 0.0 - 30km E of Hawthorne, Nevada",0,earthquake,",dyfi,geoserve,origin,phase-data,",-480.0,1537322733686,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657216 +,,20258011,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258011&format=geojson,,,,",ak20258011,",1.2,ml,,ak,,"56km E of Cape Yakataga, Alaska",0.85,22,",ak,",automatic,1537312477835,"M 1.2 - 56km E of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537313092305,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258011 +,,20258006,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20258006&format=geojson,,,,",ak20258006,us2000hgv8,",2.6,ml,,ak,,"47km SW of Homer, Alaska",0.56,104,",ak,us,",automatic,1537312428014,"M 2.6 - 47km SW of Homer, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537313438040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20258006 +,,20257999,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257999&format=geojson,,,,",ak20257999,us2000hgv7,",3.0,ml,,ak,,"65km SSW of Kaktovik, Alaska",0.71,138,",ak,us,",automatic,1537312215267,"M 3.0 - 65km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537313294009,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257999 +,,20257994,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257994&format=geojson,,,,",ak20257994,",1.2,ml,,ak,,"79km WSW of Anchor Point, Alaska",0.77,22,",ak,",automatic,1537312139507,"M 1.2 - 79km WSW of Anchor Point, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537312558233,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257994 +,,61781241,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61781241&format=geojson,0.02275,,129.0,",av61781241,",-0.8,ml,,av,5.0,"41km ENE of Adak, Alaska",0.14,0,",av,",reviewed,1537311907500,"M -0.8 - 41km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537390561120,https://earthquake.usgs.gov/earthquakes/eventpage/av61781241 +,,37359786,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37359786&format=geojson,0.101,,71.0,",ci37359786,",1.11,ml,,ci,35.0,"3km ESE of Loma Linda, CA",0.15,19,",ci,",reviewed,1537310676330,"M 1.1 - 3km ESE of Loma Linda, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537315255923,https://earthquake.usgs.gov/earthquakes/eventpage/ci37359786 +,,20257756,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257756&format=geojson,,,,",ak20257756,",1.6,ml,,ak,,"136km ENE of Anaktuvuk Pass, Alaska",1.16,39,",ak,",automatic,1537310642022,"M 1.6 - 136km ENE of Anaktuvuk Pass, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537310940416,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257756 +,,20257755,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257755&format=geojson,,,,",ak20257755,",1.0,ml,,ak,,"80km NNW of Yakutat, Alaska",0.77,15,",ak,",automatic,1537310289003,"M 1.0 - 80km NNW of Yakutat, Alaska",0,earthquake,",geoserve,origin,",-480.0,1537310467957,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257755 +,,73086991,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73086991&format=geojson,0.03443,,118.0,",nc73086991,",1.29,md,,nc,36.0,"21km NW of Parkfield, CA",0.06,26,",nc,",reviewed,1537310205400,"M 1.3 - 21km NW of Parkfield, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537321505126,https://earthquake.usgs.gov/earthquakes/eventpage/nc73086991 +,,37359770,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37359770&format=geojson,0.1441,,111.0,",ci37359770,",1.4,ml,,ci,18.0,"18km SSE of Bodfish, CA",0.14,30,",ci,",reviewed,1537309932120,"M 1.4 - 18km SSE of Bodfish, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537379257702,https://earthquake.usgs.gov/earthquakes/eventpage/ci37359770 +,,37359762,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37359762&format=geojson,0.04201,,127.0,",ci37359762,",0.7,ml,,ci,16.0,"19km ENE of Thousand Palms, CA",0.09,8,",ci,",reviewed,1537309799280,"M 0.7 - 19km ENE of Thousand Palms, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537314877090,https://earthquake.usgs.gov/earthquakes/eventpage/ci37359762 +,,73086986,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73086986&format=geojson,0.01531,,68.0,",nc73086986,",1.23,md,,nc,43.0,"2km NNW of The Geysers, CA",0.08,23,",nc,",reviewed,1537309761640,"M 1.2 - 2km NNW of The Geysers, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537323243309,https://earthquake.usgs.gov/earthquakes/eventpage/nc73086986 +,,37359746,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37359746&format=geojson,0.09463,,87.0,",ci37359746,",0.89,ml,,ci,13.0,"34km ENE of Coso Junction, CA",0.09,12,",ci,",reviewed,1537309609690,"M 0.9 - 34km ENE of Coso Junction, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537314678676,https://earthquake.usgs.gov/earthquakes/eventpage/ci37359746 +,,37359738,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37359738&format=geojson,0.02946,,114.0,",ci37359738,",0.64,ml,,ci,9.0,"5km WNW of Devore, CA",0.07,6,",ci,",reviewed,1537309575300,"M 0.6 - 5km WNW of Devore, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537310111099,https://earthquake.usgs.gov/earthquakes/eventpage/ci37359738 +,,37359730,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37359730&format=geojson,0.03928,,128.0,",ci37359730,",0.83,ml,,ci,20.0,"19km ENE of Thousand Palms, CA",0.14,11,",ci,",reviewed,1537309499620,"M 0.8 - 19km ENE of Thousand Palms, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537314165253,https://earthquake.usgs.gov/earthquakes/eventpage/ci37359730 +,,20257749,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257749&format=geojson,,,,",ak20257749,",1.3,ml,,ak,,"80km NNW of Yakutat, Alaska",0.79,26,",ak,",automatic,1537309181434,"M 1.3 - 80km NNW of Yakutat, Alaska",0,earthquake,",geoserve,origin,",-480.0,1537309524140,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257749 +,,20257747,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257747&format=geojson,,,,",ak20257747,",1.3,ml,,ak,,"67km ENE of Cantwell, Alaska",0.5,26,",ak,",automatic,1537309085968,"M 1.3 - 67km ENE of Cantwell, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537309423472,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257747 +,,20257739,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257739&format=geojson,,,,",ak20257739,",2.2,ml,,ak,,"59km WSW of Talkeetna, Alaska",0.4,74,",ak,",automatic,1537308874754,"M 2.2 - 59km WSW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537309221645,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257739 +,,20257737,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257737&format=geojson,,,,",ak20257737,",1.1,ml,,ak,,"71km WSW of Anchor Point, Alaska",0.12,19,",ak,",automatic,1537308844138,"M 1.1 - 71km WSW of Anchor Point, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537308990105,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257737 +,,2000hgu9,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hgu9&format=geojson,1.311,,82.0,",us2000hgu9,",4.2,mb,,us,,"21km WSW of Hawera, New Zealand",1.01,271,",us,",reviewed,1537308685130,"M 4.2 - 21km WSW of Hawera, New Zealand",0,earthquake,",geoserve,origin,phase-data,",720.0,1538890089040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hgu9 +,,73086981,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73086981&format=geojson,0.02943,,89.0,",nc73086981,",0.98,md,,nc,16.0,"3km SSW of Crockett, CA",0.09,15,",nc,",reviewed,1537308298570,"M 1.0 - 3km SSW of Crockett, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537313641973,https://earthquake.usgs.gov/earthquakes/eventpage/nc73086981 +,,20257734,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257734&format=geojson,,,,",ak20257734,",1.6,ml,,ak,,"138km NW of Talkeetna, Alaska",0.66,39,",ak,",automatic,1537308245857,"M 1.6 - 138km NW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537308437749,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257734 +,,20257730,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257730&format=geojson,,,,",ak20257730,",2.2,ml,,ak,,"50km SW of Kaktovik, Alaska",0.55,74,",ak,",automatic,1537307325269,"M 2.2 - 50km SW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537307614275,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257730 +,,00657198,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657198&format=geojson,0.783,,208.67,",nn00657198,",1.6,ml,,nn,6.0,"43km NNE of Lovelock, Nevada",0.358,39,",nn,",reviewed,1537307189862,"M 1.6 Explosion - 43km NNE of Lovelock, Nevada",0,explosion,",geoserve,origin,phase-data,",-480.0,1537312328957,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657198 +,,20257728,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257728&format=geojson,,,,",ak20257728,",1.3,ml,,ak,,"48km NNE of Yakutat, Alaska",0.83,26,",ak,",automatic,1537306973273,"M 1.3 - 48km NNE of Yakutat, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537307242539,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257728 +,,37359698,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37359698&format=geojson,0.03158,,31.0,",ci37359698,",1.83,ml,,ci,67.0,"1km S of Big Bear Lake, CA",0.12,52,",ci,",reviewed,1537306828710,"M 1.8 - 1km S of Big Bear Lake, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537335776368,https://earthquake.usgs.gov/earthquakes/eventpage/ci37359698 +,3.1,2000hh0s,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hh0s&format=geojson,0.403,1.0,212.0,",us2000hh0s,",1.6,ml,,us,,"3km SW of Bagnoli, Italy",0.78,40,",us,",reviewed,1537306603040,"M 1.6 - 3km SW of Bagnoli, Italy",0,earthquake,",dyfi,geoserve,impact-text,origin,phase-data,",60.0,1537394842839,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hh0s +,2.0,37359658,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37359658&format=geojson,0.02971,2.0,22.0,",ci37359658,",2.45,ml,,ci,99.0,"1km SSW of Big Bear Lake, CA",0.13,93,",ci,",reviewed,1537306388950,"M 2.5 - 1km SSW of Big Bear Lake, CA",0,earthquake,",dyfi,focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537314466275,https://earthquake.usgs.gov/earthquakes/eventpage/ci37359658 +,,00657221,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657221&format=geojson,0.058,,271.14,",nn00657221,",0.3,ml,,nn,3.0,"37km SSE of Hawthorne, Nevada",0.0261,1,",nn,",reviewed,1537305776657,"M 0.3 - 37km SSE of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537322738828,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657221 +,2.7,00657185,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657185&format=geojson,0.18,1.0,219.71,",nn00657185,",1.6,ml,,nn,14.0,"76km NNE of Tonopah, Nevada",0.5106,40,",nn,",reviewed,1537305509147,"M 1.6 Explosion - 76km NNE of Tonopah, Nevada",0,explosion,",dyfi,geoserve,origin,phase-data,",-480.0,1537306663881,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657185 +,,37359634,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37359634&format=geojson,0.01567,,88.0,",nn00657176,ci37359634,",2.12,ml,,ci,12.0,"20km SW of Primm, NV",0.22,69,",nn,ci,",reviewed,1537305378310,"M 2.1 Quarry Blast - 20km SW of Primm, NV",0,quarry blast,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537322714292,https://earthquake.usgs.gov/earthquakes/eventpage/ci37359634 +,,20257719,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257719&format=geojson,,,,",ak20257719,",1.3,ml,,ak,,"64km ENE of Cape Yakataga, Alaska",0.83,26,",ak,",automatic,1537305289220,"M 1.3 - 64km ENE of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537305625573,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257719 +,,61420342,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61420342&format=geojson,1.123,,268.0,",uw61420342,",1.93,ml,,uw,7.0,"1km SSW of Princeton, Canada",0.31,57,",uw,",reviewed,1537304852250,"M 1.9 Explosion - 1km SSW of Princeton, Canada",0,explosion,",geoserve,origin,phase-data,",-480.0,1537319032860,https://earthquake.usgs.gov/earthquakes/eventpage/uw61420342 +,,20257716,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257716&format=geojson,,,,",ak20257716,",1.6,ml,,ak,,"85km WSW of Cantwell, Alaska",0.58,39,",ak,",automatic,1537304832610,"M 1.6 - 85km WSW of Cantwell, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537305011735,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257716 +,,61420337,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61420337&format=geojson,0.01537,,209.0,",uw61420337,",-0.14,mh,,uw,4.0,"37km NE of Amboy, Washington",0.02,0,",uw,",reviewed,1537304405410,"M -0.1 - 37km NE of Amboy, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537305555870,https://earthquake.usgs.gov/earthquakes/eventpage/uw61420337 +,,2000hiu0,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hiu0&format=geojson,0.086,,68.0,",us2000hiu0,",2.5,mb_lg,,us,,"35km W of Raton, New Mexico",0.22,96,",us,",reviewed,1537304402660,"M 2.5 - 35km W of Raton, New Mexico",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537659778040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hiu0 +,,2000hgsw,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hgsw&format=geojson,1.63,,63.0,",us2000hgsw,",5.0,mb,,us,,"181km NE of Raoul Island, New Zealand",0.97,385,",us,",reviewed,1537304303130,"M 5.0 - 181km NE of Raoul Island, New Zealand",0,earthquake,",geoserve,origin,phase-data,",-720.0,1539035734040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hgsw +,,80310479,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80310479&format=geojson,0.137,,106.0,",mb80310479,",0.24,md,,mb,8.0,"16km SE of Lincoln, Montana",0.07,1,",mb,",reviewed,1537303911100,"M 0.2 - 16km SE of Lincoln, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537451437770,https://earthquake.usgs.gov/earthquakes/eventpage/mb80310479 +,,37359578,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37359578&format=geojson,0.06762,,103.0,",ci37359578,",1.4,ml,,ci,17.0,"2km SE of Home Gardens, CA",0.18,30,",ci,",reviewed,1537303578150,"M 1.4 Quarry Blast - 2km SE of Home Gardens, CA",0,quarry blast,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537306573903,https://earthquake.usgs.gov/earthquakes/eventpage/ci37359578 +,2.0,00657220,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657220&format=geojson,0.062,1.0,167.07,",nn00657220,",0.0,ml,,nn,4.0,"30km E of Hawthorne, Nevada",0.0068,0,",nn,",reviewed,1537302728054,"M 0.0 - 30km E of Hawthorne, Nevada",0,earthquake,",dyfi,geoserve,origin,phase-data,",-480.0,1537322737330,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657220 +,,2018261025,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018261025&format=geojson,0.5486,,221.0,",pr2018261025,",3.03,md,,pr,6.0,"66km SE of Punta Cana, Dominican Republic",0.34,141,",pr,",reviewed,1537301654340,"M 3.0 - 66km SE of Punta Cana, Dominican Republic",0,earthquake,",geoserve,origin,phase-data,",-300.0,1537314181261,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018261025 +,,37359538,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37359538&format=geojson,0.04582,,44.0,",ci37359538,",0.77,ml,,ci,36.0,"1km ESE of Home Gardens, CA",0.2,9,",ci,",reviewed,1537301573440,"M 0.8 Quarry Blast - 1km ESE of Home Gardens, CA",0,quarry blast,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537303154253,https://earthquake.usgs.gov/earthquakes/eventpage/ci37359538 +,,00657172,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657172&format=geojson,0.073,,102.71,",nn00657172,",1.1,ml,,nn,15.0,"30km E of Hawthorne, Nevada",0.1592,19,",nn,",reviewed,1537300769793,"M 1.1 - 30km E of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537322710444,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657172 +,,20257704,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257704&format=geojson,,,,",ak20257704,",2.2,ml,,ak,,"71km SSW of Kaktovik, Alaska",1.07,74,",ak,",automatic,1537300446575,"M 2.2 - 71km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537300801547,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257704 +,,20257663,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257663&format=geojson,,,,",ak20257663,",1.3,ml,,ak,,"34km WSW of Y, Alaska",0.93,26,",ak,",automatic,1537299988011,"M 1.3 - 34km WSW of Y, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537300258368,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257663 +,,73086956,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73086956&format=geojson,0.07059,,194.0,",nc73086956,",1.25,md,,nc,14.0,"5km ENE of Vallejo, CA",0.13,24,",nc,",reviewed,1537299939780,"M 1.3 Quarry Blast - 5km ENE of Vallejo, CA",0,quarry blast,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537309674770,https://earthquake.usgs.gov/earthquakes/eventpage/nc73086956 +,,60296922,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60296922&format=geojson,0.09977,,134.0,",uu60296922,",1.77,ml,,uu,9.0,"6km ESE of East Carbon City, Utah",0.06,48,",uu,",reviewed,1537299525550,"M 1.8 - 6km ESE of East Carbon City, Utah",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537306778230,https://earthquake.usgs.gov/earthquakes/eventpage/uu60296922 +,,20257660,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257660&format=geojson,,,,",ak20257660,",1.4,ml,,ak,,"72km S of Cantwell, Alaska",0.68,30,",ak,",automatic,1537299157882,"M 1.4 - 72km S of Cantwell, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537299434297,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257660 +,,2000hjtb,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hjtb&format=geojson,3.987,,105.0,",us2000hjtb,",4.3,mb,,us,,"284km NNE of Ndoi Island, Fiji",0.69,284,",us,",reviewed,1537299014960,"M 4.3 - 284km NNE of Ndoi Island, Fiji",0,earthquake,",geoserve,origin,phase-data,",-720.0,1539035509040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hjtb +,,61781141,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61781141&format=geojson,0.06761,,135.0,",av61781141,",0.15,ml,,av,6.0,"21km W of Dutch Harbor, Alaska",0.17,0,",av,",reviewed,1537298979700,"M 0.2 - 21km W of Dutch Harbor, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537389140940,https://earthquake.usgs.gov/earthquakes/eventpage/av61781141 +,,60240721,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nm60240721&format=geojson,0.02983,,67.0,",nm60240721,",1.63,md,,nm,13.0,"3km ENE of Ridgely, Tennessee",0.05,41,",nm,",reviewed,1537298141020,"M 1.6 - 3km ENE of Ridgely, Tennessee",0,earthquake,",geoserve,origin,phase-data,",-360.0,1537361265790,https://earthquake.usgs.gov/earthquakes/eventpage/nm60240721 +,,20257643,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257643&format=geojson,,,,",ak20257643,",1.4,ml,,ak,,"54km NNE of Talkeetna, Alaska",0.83,30,",ak,",automatic,1537297797895,"M 1.4 - 54km NNE of Talkeetna, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537298077282,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257643 +,,73086951,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73086951&format=geojson,0.05394,,235.0,",nc73086951,",1.28,md,,nc,6.0,"3km SSW of Cupertino, CA",0.01,25,",nc,",reviewed,1537297686230,"M 1.3 - 3km SSW of Cupertino, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537319044879,https://earthquake.usgs.gov/earthquakes/eventpage/nc73086951 +,,2000hghe,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hghe&format=geojson,1.293,,103.0,",us2000hghe,",4.5,mb,,us,,"143km S of Shemya Island, Alaska",0.61,312,",us,",reviewed,1537297631910,"M 4.5 - 143km S of Shemya Island, Alaska",0,earthquake,",geoserve,origin,phase-data,",720.0,1539033646040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hghe +,,20257636,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257636&format=geojson,,,,",ak20257636,",2.1,ml,,ak,,"63km SW of Kaktovik, Alaska",0.77,68,",ak,",automatic,1537297582833,"M 2.1 - 63km SW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537297815666,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257636 +,,20257634,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257634&format=geojson,,,,",ak20257634,",0.7,ml,,ak,,"66km NNW of Nikiski, Alaska",0.52,8,",ak,",automatic,1537297487383,"M 0.7 - 66km NNW of Nikiski, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537297815431,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257634 +,,61420292,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61420292&format=geojson,0.1462,,120.0,",uw61420292,",0.55,md,,uw,5.0,"2km E of Parkwood, Washington",0.05,5,",uw,",reviewed,1537297480620,"M 0.6 - 2km E of Parkwood, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537303400930,https://earthquake.usgs.gov/earthquakes/eventpage/uw61420292 +,,37359466,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37359466&format=geojson,0.04417,,89.0,",ci37359466,",1.48,ml,,ci,17.0,"4km ENE of Rancho San Diego, CA",0.12,34,",ci,",reviewed,1537297209980,"M 1.5 Quarry Blast - 4km ENE of Rancho San Diego, CA",0,quarry blast,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537299107175,https://earthquake.usgs.gov/earthquakes/eventpage/ci37359466 +,,70598632,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70598632&format=geojson,0.02567,,106.0,",hv70598632,us2000hgh3,",2.47,ml,,hv,37.0,"25km E of Honaunau-Napoopoo, Hawaii",0.13,94,",hv,us,",reviewed,1537296681870,"M 2.5 - 25km E of Honaunau-Napoopoo, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1539032972040,https://earthquake.usgs.gov/earthquakes/eventpage/hv70598632 +,2.0,00657164,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657164&format=geojson,0.274,1.0,113.7,",nn00657164,",1.5,ml,,nn,10.0,"54km ENE of Fallon, Nevada",0.1264,35,",nn,",reviewed,1537296455336,"M 1.5 - 54km ENE of Fallon, Nevada",0,earthquake,",dyfi,geoserve,origin,phase-data,",-480.0,1537322708367,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657164 +,2.0,2000hhbv,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hhbv&format=geojson,1.867,2.0,55.0,",us2000hhbv,",4.3,mb,,us,,"7km WSW of Karangsubagan, Indonesia",1.01,285,",us,",reviewed,1537296305750,"M 4.3 - 7km WSW of Karangsubagan, Indonesia",0,earthquake,",dyfi,geoserve,origin,phase-data,",480.0,1539032686597,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hhbv +,,2018261023,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018261023&format=geojson,0.5651,,316.0,",pr2018261023,",2.64,md,,pr,4.0,"23km NNW of San Antonio, Puerto Rico",0.42,107,",pr,",reviewed,1537294906090,"M 2.6 - 23km NNW of San Antonio, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1537311251329,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018261023 +,,00657156,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657156&format=geojson,0.04,,29.14,",nn00657156,",1.0,ml,,nn,41.0,"47km E of Beatty, Nevada",0.1171,15,",nn,",reviewed,1537294852886,"M 1.0 - 47km E of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537322705902,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657156 +,,37359378,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37359378&format=geojson,0.007345,,36.0,",ci37359378,",0.72,ml,,ci,27.0,"10km NE of Aguanga, CA",0.11,8,",ci,",reviewed,1537294779190,"M 0.7 - 10km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537296197720,https://earthquake.usgs.gov/earthquakes/eventpage/ci37359378 +,,37359242,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37359242&format=geojson,0.05556,,62.0,",ci37359242,",1.14,ml,,ci,30.0,"20km N of Yucca Valley, CA",0.12,20,",ci,",reviewed,1537294509910,"M 1.1 - 20km N of Yucca Valley, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537298909720,https://earthquake.usgs.gov/earthquakes/eventpage/ci37359242 +,,73086936,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73086936&format=geojson,0.02508,,106.0,",nc73086936,",1.3,md,,nc,18.0,"8km ENE of Pinnacles, CA",0.09,26,",nc,",reviewed,1537294504050,"M 1.3 - 8km ENE of Pinnacles, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537312023030,https://earthquake.usgs.gov/earthquakes/eventpage/nc73086936 +,,73086941,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73086941&format=geojson,0.01309,,60.0,",nc73086941,",0.27,md,,nc,21.0,"4km ENE of Mammoth Lakes, CA",0.06,1,",nc,",reviewed,1537294445650,"M 0.3 - 4km ENE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537399077698,https://earthquake.usgs.gov/earthquakes/eventpage/nc73086941 +,,20257619,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257619&format=geojson,,,,",ak20257619,av61781086,",2.0,ml,,ak,,"102km NNW of Larsen Bay, Alaska",0.73,62,",ak,av,",automatic,1537294367942,"M 2.0 - 102km NNW of Larsen Bay, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537388816330,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257619 +,,20257615,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257615&format=geojson,,,,",ak20257615,",1.0,ml,,ak,,"20km SW of Talkeetna, Alaska",0.28,15,",ak,",automatic,1537294208908,"M 1.0 - 20km SW of Talkeetna, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537294475557,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257615 +,,2000hjta,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hjta&format=geojson,2.193,,73.0,",us2000hjta,",4.5,mb,,us,,"9km W of Fochville, South Africa",0.71,312,",us,",reviewed,1537294153680,"M 4.5 - 9km W of Fochville, South Africa",0,earthquake,",geoserve,origin,phase-data,",120.0,1539032361040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hjta +,,60240716,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nm60240716&format=geojson,0.03507,,106.0,",nm60240716,",0.94,md,,nm,7.0,"6km NNW of Ridgely, Tennessee",0.02,14,",nm,",reviewed,1537293900230,"M 0.9 - 6km NNW of Ridgely, Tennessee",0,earthquake,",geoserve,origin,phase-data,",-360.0,1537453138160,https://earthquake.usgs.gov/earthquakes/eventpage/nm60240716 +,,61781061,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61781061&format=geojson,0.02494,,212.0,",av61781061,",-0.01,ml,,av,5.0,"93km SE of King Salmon, Alaska",0.12,0,",av,",reviewed,1537293882240,"M -0.0 - 93km SE of King Salmon, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537387990650,https://earthquake.usgs.gov/earthquakes/eventpage/av61781061 +,,38064895,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38064895&format=geojson,0.05816,,31.0,",ci38064895,",1.39,ml,,ci,51.0,"10km S of Idyllwild, CA",0.18,30,",ci,",reviewed,1537293769080,"M 1.4 - 10km S of Idyllwild, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537297759600,https://earthquake.usgs.gov/earthquakes/eventpage/ci38064895 +,,38064887,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38064887&format=geojson,0.1429,,94.0,",ci38064887,",1.26,ml,,ci,9.0,"4km ENE of Tehachapi, CA",0.17,24,",ci,",reviewed,1537293259850,"M 1.3 Quarry Blast - 4km ENE of Tehachapi, CA",0,quarry blast,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537298637235,https://earthquake.usgs.gov/earthquakes/eventpage/ci38064887 +,,20257613,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257613&format=geojson,,,,",ak20257613,",1.8,ml,,ak,,"86km WNW of Arctic Village, Alaska",0.82,50,",ak,",automatic,1537293245368,"M 1.8 - 86km WNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537293431110,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257613 +,,38064871,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38064871&format=geojson,0.08364,,32.0,",ci38064871,",1.37,ml,,ci,45.0,"5km NNE of Yucca Valley, CA",0.13,29,",ci,",reviewed,1537293072710,"M 1.4 - 5km NNE of Yucca Valley, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537298481260,https://earthquake.usgs.gov/earthquakes/eventpage/ci38064871 +,,20257608,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257608&format=geojson,,,,",ak20257608,",1.9,ml,,ak,,"87km WNW of Arctic Village, Alaska",0.62,56,",ak,",automatic,1537292374496,"M 1.9 - 87km WNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537292788371,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257608 +,,38064855,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38064855&format=geojson,0.4526,,196.0,",ci38064855,",1.67,ml,,ci,25.0,"39km WSW of Encinitas, CA",0.16,43,",ci,",reviewed,1537292305480,"M 1.7 - 39km WSW of Encinitas, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537300375291,https://earthquake.usgs.gov/earthquakes/eventpage/ci38064855 +,,20257607,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257607&format=geojson,,,,",ak20257607,av61781046,",1.8,ml,,ak,,"94km ESE of Old Iliamna, Alaska",0.1,50,",ak,av,",reviewed,1537292264016,"M 1.8 - 94km ESE of Old Iliamna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537387635500,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257607 +,,38064847,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38064847&format=geojson,0.02737,,36.0,",ci38064847,",1.53,ml,,ci,53.0,"1km SSW of Big Bear Lake, CA",0.12,36,",ci,",reviewed,1537291644370,"M 1.5 - 1km SSW of Big Bear Lake, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537299397860,https://earthquake.usgs.gov/earthquakes/eventpage/ci38064847 +,,2018261020,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018261020&format=geojson,0.6091,,273.0,",pr2018261020,us2000hgv2,",2.41,md,,pr,15.0,"66km N of Tierras Nuevas Poniente, Puerto Rico",0.38,89,",pr,us,",reviewed,1537291432070,"M 2.4 - 66km N of Tierras Nuevas Poniente, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1539031504040,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018261020 +,,20257594,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257594&format=geojson,,,,",ak20257594,",1.4,ml,,ak,,"49km W of Redoubt Volcano, Alaska",0.77,30,",ak,",automatic,1537291391862,"M 1.4 - 49km W of Redoubt Volcano, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537291692870,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257594 +,,38064839,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38064839&format=geojson,0.02893,,21.0,",ci38064839,",2.41,ml,,ci,95.0,"1km SSW of Big Bear Lake, CA",0.13,89,",ci,",reviewed,1537291350560,"M 2.4 - 1km SSW of Big Bear Lake, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537299462890,https://earthquake.usgs.gov/earthquakes/eventpage/ci38064839 +,,20257593,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257593&format=geojson,,,,",ak20257593,",2.1,ml,,ak,,"74km SW of Kaktovik, Alaska",0.85,68,",ak,",automatic,1537291317333,"M 2.1 - 74km SW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537292004593,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257593 +,,38064823,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38064823&format=geojson,0.02845,,36.0,",ci38064823,",0.42,ml,,ci,26.0,"9km ENE of Aguanga, CA",0.13,3,",ci,",reviewed,1537291240730,"M 0.4 - 9km ENE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537298621134,https://earthquake.usgs.gov/earthquakes/eventpage/ci38064823 +,,2018261018,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018261018&format=geojson,0.6014,,296.0,",pr2018261018,",2.59,md,,pr,4.0,"65km N of Brenas, Puerto Rico",0.38,103,",pr,",reviewed,1537291137590,"M 2.6 - 65km N of Brenas, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1537311999640,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018261018 +,,38064815,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38064815&format=geojson,0.004663,,141.0,",ci38064815,",0.28,ml,,ci,21.0,"10km NE of Aguanga, CA",0.09,1,",ci,",reviewed,1537290732280,"M 0.3 - 10km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537298248103,https://earthquake.usgs.gov/earthquakes/eventpage/ci38064815 +,,20257591,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257591&format=geojson,,,,",ak20257591,",0.9,ml,,ak,,"29km NE of North Pole, Alaska",0.83,12,",ak,",automatic,1537290603587,"M 0.9 - 29km NE of North Pole, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537290858993,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257591 +,,2018261019,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018261019&format=geojson,0.9161,,319.0,",pr2018261019,",2.78,md,,pr,3.0,"57km N of Tierras Nuevas Poniente, Puerto Rico",0.32,119,",pr,",reviewed,1537290115970,"M 2.8 - 57km N of Tierras Nuevas Poniente, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1537311146394,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018261019 +,,2000hgfj,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hgfj&format=geojson,2.315,,141.0,",us2000hgfj,",4.7,mb,,us,,"96km E of Hasaki, Japan",0.54,340,",us,",reviewed,1537289668660,"M 4.7 - 96km E of Hasaki, Japan",0,earthquake,",geoserve,origin,phase-data,",540.0,1537976170040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hgfj +,,2018261017,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018261017&format=geojson,0.6311,,294.0,",pr2018261017,",2.61,md,,pr,10.0,"70km N of Tierras Nuevas Poniente, Puerto Rico",0.27,105,",pr,",reviewed,1537289266870,"M 2.6 - 70km N of Tierras Nuevas Poniente, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1537311064362,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018261017 +,,70803694,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70803694&format=geojson,0.06712,,136.0,",av70803694,",0.65,ml,,av,9.0,"21km W of Unalaska, Alaska",0.15,6,",av,",reviewed,1537289156610,"M 0.7 - 21km W of Unalaska, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537386901830,https://earthquake.usgs.gov/earthquakes/eventpage/av70803694 +,,70803689,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70803689&format=geojson,0.0656,,132.0,",av70803689,",1.32,ml,,av,9.0,"21km W of Unalaska, Alaska",0.17,27,",av,",reviewed,1537289136270,"M 1.3 - 21km W of Unalaska, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537386678380,https://earthquake.usgs.gov/earthquakes/eventpage/av70803689 +,,38064759,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38064759&format=geojson,0.03849,,63.0,",ci38064759,",0.3,ml,,ci,20.0,"6km NW of Anza, CA",0.14,1,",ci,",reviewed,1537288927290,"M 0.3 - 6km NW of Anza, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537297798042,https://earthquake.usgs.gov/earthquakes/eventpage/ci38064759 +,,2000hjt8,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hjt8&format=geojson,11.782,,199.0,",us2000hjt8,",4.4,mb,,us,,"103km W of Kuripan, Indonesia",0.47,298,",us,",reviewed,1537288723310,"M 4.4 - 103km W of Kuripan, Indonesia",0,earthquake,",geoserve,origin,phase-data,",420.0,1537975860040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hjt8 +,,20257585,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257585&format=geojson,,,,",ak20257585,",1.6,ml,,ak,,"48km N of Valdez, Alaska",0.77,39,",ak,",automatic,1537288713104,"M 1.6 - 48km N of Valdez, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537289001300,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257585 +,,00657210,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657210&format=geojson,0.063,,165.59,",nn00657210,",0.3,ml,,nn,5.0,"35km ESE of Hawthorne, Nevada",0.0608,1,",nn,",reviewed,1537288694787,"M 0.3 - 35km ESE of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537322729595,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657210 +,,70598387,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70598387&format=geojson,0.03167,,126.0,",hv70598387,",2.25,ml,,hv,22.0,"20km WNW of Volcano, Hawaii",0.11,78,",hv,",reviewed,1537288382170,"M 2.3 - 20km WNW of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537983778290,https://earthquake.usgs.gov/earthquakes/eventpage/hv70598387 +,,2018261021,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018261021&format=geojson,0.6169,,282.0,",pr2018261021,",2.74,md,,pr,10.0,"68km N of Brenas, Puerto Rico",0.39,116,",pr,",reviewed,1537288277870,"M 2.7 - 68km N of Brenas, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1537311299881,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018261021 +,,38064735,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38064735&format=geojson,0.2409,,209.0,",ci38064735,",2.19,ml,,ci,13.0,"15km SSW of Estacion Coahuila, B.C., MX",0.19,74,",ci,",reviewed,1537288267240,"M 2.2 - 15km SSW of Estacion Coahuila, B.C., MX",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537289697315,https://earthquake.usgs.gov/earthquakes/eventpage/ci38064735 +,,38064727,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38064727&format=geojson,0.005689,,76.0,",ci38064727,",0.3,ml,,ci,8.0,"22km E of Little Lake, CA",0.08,1,",ci,",reviewed,1537288218020,"M 0.3 - 22km E of Little Lake, CA",0,earthquake,",nearby-cities,origin,phase-data,",,1537289955301,https://earthquake.usgs.gov/earthquakes/eventpage/ci38064727 +,,2018261022,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018261022&format=geojson,0.6128,,306.0,",pr2018261022,",2.73,md,,pr,8.0,"67km N of Brenas, Puerto Rico",0.22,115,",pr,",reviewed,1537287984540,"M 2.7 - 67km N of Brenas, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1537312742719,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018261022 +,3.1,2000hgf5,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hgf5&format=geojson,0.846,7.0,108.0,",us2000hgf5,",5.1,mww,,us,,"23km ENE of Ishinomaki, Japan",0.71,402,",us,",reviewed,1537287709100,"M 5.1 - 23km ENE of Ishinomaki, Japan",0,earthquake,",dyfi,geoserve,moment-tensor,origin,phase-data,",540.0,1537974828415,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hgf5 +,,2018261024,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018261024&format=geojson,1.367,,332.0,",pr2018261024,us2000hgv9,",3.39,md,,pr,11.0,"70km NNW of Road Town, British Virgin Islands",0.46,177,",pr,us,",reviewed,1537287506100,"M 3.4 - 70km NNW of Road Town, British Virgin Islands",0,earthquake,",geoserve,origin,phase-data,",-240.0,1537973854040,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018261024 +,,61780996,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61780996&format=geojson,0.02946,,137.0,",av61780996,",-1.04,ml,,av,5.0,"43km ENE of Adak, Alaska",0.29,0,",av,",reviewed,1537286786040,"M -1.0 - 43km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537387188550,https://earthquake.usgs.gov/earthquakes/eventpage/av61780996 +,,38064687,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38064687&format=geojson,0.02619,,96.0,",ci38064687,",0.31,ml,,ci,20.0,"9km NE of Aguanga, CA",0.08,1,",ci,",reviewed,1537286074860,"M 0.3 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537370347456,https://earthquake.usgs.gov/earthquakes/eventpage/ci38064687 +,,20257573,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257573&format=geojson,,,,",ak20257573,us2000hgeq,",2.7,ml,,ak,,"69km S of Kaktovik, Alaska",0.85,112,",ak,us,",automatic,1537285658872,"M 2.7 - 69km S of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1538419905040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257573 +,,00657209,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657209&format=geojson,0.296,,154.12,",nn00657209,",0.8,ml,,nn,9.0,"10km SSW of Gabbs, Nevada",0.1383,10,",nn,",reviewed,1537285368255,"M 0.8 - 10km SSW of Gabbs, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537322728215,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657209 +,,2018261016,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018261016&format=geojson,1.24,,342.0,",pr2018261016,",2.71,md,,pr,3.0,"113km N of Dorado, Puerto Rico",0.22,113,",pr,",reviewed,1537284962120,"M 2.7 - 113km N of Dorado, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1537306062546,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018261016 +,,2000hjte,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hjte&format=geojson,3.132,,83.0,",us2000hjte,",4.0,mb,,us,,"14km NE of Shamakhi, Azerbaijan",0.59,246,",us,",reviewed,1537284809120,"M 4.0 - 14km NE of Shamakhi, Azerbaijan",0,earthquake,",geoserve,origin,phase-data,",240.0,1537973148040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hjte +,,20257568,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257568&format=geojson,,,,",ak20257568,",1.2,ml,,ak,,"58km WNW of Willow, Alaska",0.55,22,",ak,",automatic,1537284777931,"M 1.2 - 58km WNW of Willow, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537285157846,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257568 +,,00657208,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657208&format=geojson,0.284,,230.59,",nn00657208,",0.6,ml,,nn,5.0,"10km SSW of Gabbs, Nevada",0.0711,6,",nn,",reviewed,1537284526051,"M 0.6 - 10km SSW of Gabbs, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537322726572,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657208 +,,61780971,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61780971&format=geojson,0.06359,,118.0,",av61780971,",0.33,ml,,av,6.0,"20km W of Dutch Harbor, Alaska",0.17,2,",av,",reviewed,1537284469330,"M 0.3 - 20km W of Dutch Harbor, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537386078920,https://earthquake.usgs.gov/earthquakes/eventpage/av61780971 +,2.7,70598287,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70598287&format=geojson,0.119,2.0,58.0,",hv70598287,us2000hgei,",2.82,ml,,hv,54.0,"6km SSW of Mountain View, Hawaii",0.1,123,",hv,us,",reviewed,1537284444630,"M 2.8 - 6km SSW of Mountain View, Hawaii",0,earthquake,",dyfi,geoserve,origin,phase-data,",-600.0,1537307223040,https://earthquake.usgs.gov/earthquakes/eventpage/hv70598287 +,,20257565,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257565&format=geojson,,,,",ak20257565,",2.0,ml,,ak,,"126km NNW of Arctic Village, Alaska",0.4,62,",ak,",automatic,1537283814938,"M 2.0 - 126km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537284044600,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257565 +,,00657207,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657207&format=geojson,0.291,,217.59,",nn00657207,",0.9,ml,,nn,9.0,"10km SSW of Gabbs, Nevada",0.0936,12,",nn,",reviewed,1537283610645,"M 0.9 - 10km SSW of Gabbs, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537322725411,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657207 +,,00657124,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657124&format=geojson,0.293,,65.71,",nn00657124,",2.4,ml,,nn,16.0,"10km SSW of Gabbs, Nevada",0.1731,89,",nn,",reviewed,1537283375256,"M 2.4 - 10km SSW of Gabbs, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537322703365,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657124 +,,70598272,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70598272&format=geojson,0.1643,,342.0,",hv70598272,",2.33,ml,,hv,8.0,"15km SSE of Fern Acres, Hawaii",0.31,84,",hv,",automatic,1537283336170,"M 2.3 - 15km SSE of Fern Acres, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537283679440,https://earthquake.usgs.gov/earthquakes/eventpage/hv70598272 +,,20257560,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257560&format=geojson,,,,",ak20257560,",0.8,ml,,ak,,"18km SW of Deltana, Alaska",0.36,10,",ak,",automatic,1537282994801,"M 0.8 - 18km SW of Deltana, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537283192483,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257560 +,,38064623,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38064623&format=geojson,0.01034,,44.0,",ci38064623,",0.79,ml,,ci,29.0,"10km NE of Aguanga, CA",0.12,10,",ci,",reviewed,1537282912800,"M 0.8 - 10km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537292271210,https://earthquake.usgs.gov/earthquakes/eventpage/ci38064623 +,,20257529,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257529&format=geojson,,,,",ak20257529,",1.5,ml,,ak,,"63km NE of Yakutat, Alaska",0.6,35,",ak,",automatic,1537282825430,"M 1.5 - 63km NE of Yakutat, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537283091876,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257529 +,,00657206,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657206&format=geojson,0.189,,312.08,",nn00657206,",0.5,ml,,nn,5.0,"52km SSE of Hawthorne, Nevada",0.1097,4,",nn,",reviewed,1537282541382,"M 0.5 - 52km SSE of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537322723588,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657206 +,,73086901,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73086901&format=geojson,0.008768,,72.0,",nc73086901,",0.78,md,,nc,28.0,"3km NW of The Geysers, CA",0.03,9,",nc,",reviewed,1537282346190,"M 0.8 - 3km NW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537308412455,https://earthquake.usgs.gov/earthquakes/eventpage/nc73086901 +,,38064607,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38064607&format=geojson,0.02373,,57.0,",ci38064607,",0.42,ml,,ci,25.0,"9km NE of Aguanga, CA",0.12,3,",ci,",reviewed,1537282229920,"M 0.4 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537292605782,https://earthquake.usgs.gov/earthquakes/eventpage/ci38064607 +,,2000hge4,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hge4&format=geojson,2.346,,190.0,",us2000hge4,",3.8,ml,,us,,"253km SE of Kodiak, Alaska",0.45,222,",us,",reviewed,1537282148770,"M 3.8 - 253km SE of Kodiak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537906722040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hge4 +,,60296907,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60296907&format=geojson,0.2542,,130.0,",uu60296907,",1.63,ml,,uu,15.0,"12km ENE of Soda Springs, Idaho",0.28,41,",uu,",reviewed,1537280365600,"M 1.6 - 12km ENE of Soda Springs, Idaho",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537289805970,https://earthquake.usgs.gov/earthquakes/eventpage/uu60296907 +,,2018261013,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018261013&format=geojson,0.0538,,135.0,",pr2018261013,",1.92,md,,pr,7.0,"3km NE of Mayaguez, Puerto Rico",0.24,57,",pr,",reviewed,1537280212740,"M 1.9 - 3km NE of Mayaguez, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1537292481759,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018261013 +,,2000hjt6,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hjt6&format=geojson,1.936,,133.0,",us2000hjt6,",4.0,mb,,us,,"123km NE of Bitung, Indonesia",0.39,246,",us,",reviewed,1537280181100,"M 4.0 - 123km NE of Bitung, Indonesia",0,earthquake,",geoserve,origin,phase-data,",480.0,1537905765040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hjt6 +,,38064599,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38064599&format=geojson,0.05313,,74.0,",ci38064599,",0.52,ml,,ci,16.0,"6km S of Palomar Observatory, CA",0.13,4,",ci,",reviewed,1537280088070,"M 0.5 - 6km S of Palomar Observatory, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537300791093,https://earthquake.usgs.gov/earthquakes/eventpage/ci38064599 +,,38064583,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38064583&format=geojson,0.03176,,33.0,",ci38064583,",0.67,ml,,ci,34.0,"8km ENE of Aguanga, CA",0.18,7,",ci,",reviewed,1537279921060,"M 0.7 - 8km ENE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537291866084,https://earthquake.usgs.gov/earthquakes/eventpage/ci38064583 +,,20257501,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257501&format=geojson,,,,",ak20257501,",2.2,ml,,ak,,"38km ENE of Y, Alaska",0.55,74,",ak,",automatic,1537279901695,"M 2.2 - 38km ENE of Y, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537280304823,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257501 +,,00657205,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657205&format=geojson,0.309,,279.23,",nn00657205,",0.8,ml,,nn,5.0,"21km WSW of Hawthorne, Nevada",0.1417,10,",nn,",reviewed,1537279070152,"M 0.8 - 21km WSW of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537322722175,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657205 +,,20257495,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257495&format=geojson,,,,",ak20257495,us2000hgdq,",2.7,ml,,ak,,"67km SSW of Kaktovik, Alaska",0.74,112,",ak,us,",automatic,1537278759053,"M 2.7 - 67km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537903784040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257495 +,,2000hgdm,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hgdm&format=geojson,,,34.0,",us2000hgdm,",2.4,ml,,us,,"15km NE of Enid, Oklahoma",0.15,89,",us,",reviewed,1537278549600,"M 2.4 - 15km NE of Enid, Oklahoma",0,earthquake,",geoserve,origin,phase-data,",-360.0,1537294220040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hgdm +,,61780906,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61780906&format=geojson,0.03695,,216.0,",av61780906,",-0.07,ml,,av,9.0,"92km SE of King Salmon, Alaska",0.11,0,",av,",reviewed,1537278548890,"M -0.1 - 92km SE of King Salmon, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537390635120,https://earthquake.usgs.gov/earthquakes/eventpage/av61780906 +,,20257493,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257493&format=geojson,,,,",ak20257493,",1.1,ml,,ak,,"106km W of Willow, Alaska",0.3,19,",ak,",reviewed,1537278518808,"M 1.1 - 106km W of Willow, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537303504087,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257493 +,,20257489,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257489&format=geojson,,,,",ak20257489,",1.8,ml,,ak,,"124km NNW of Arctic Village, Alaska",0.78,50,",ak,",automatic,1537278116194,"M 1.8 - 124km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537279230791,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257489 +,,61780891,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61780891&format=geojson,0.04535,,243.0,",av61780891,",-0.07,ml,,av,7.0,"94km SE of King Salmon, Alaska",0.07,0,",av,",reviewed,1537278008080,"M -0.1 - 94km SE of King Salmon, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537385589730,https://earthquake.usgs.gov/earthquakes/eventpage/av61780891 +,,20257482,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257482&format=geojson,,,,",ak20257482,us2000hgdp,",2.5,ml,,ak,,"60km SSW of Kaktovik, Alaska",0.79,96,",ak,us,",automatic,1537277685558,"M 2.5 - 60km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537902083040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257482 +,,38064567,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38064567&format=geojson,0.02832,,106.0,",ci38064567,",-0.11,ml,,ci,12.0,"8km NE of Aguanga, CA",0.06,0,",ci,",reviewed,1537277575680,"M -0.1 - 8km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537287925398,https://earthquake.usgs.gov/earthquakes/eventpage/ci38064567 +,,2018261014,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018261014&format=geojson,0.197,,185.0,",pr2018261014,",1.9,md,,pr,3.0,"3km SSE of Maricao, Puerto Rico",0.26,56,",pr,",reviewed,1537277505610,"M 1.9 - 3km SSE of Maricao, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1537293582477,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018261014 +,,20257470,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257470&format=geojson,,,,",ak20257470,",1.2,ml,,ak,,"49km NNW of Valdez, Alaska",1.06,22,",ak,",automatic,1537277485249,"M 1.2 - 49km NNW of Valdez, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537278748373,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257470 +,,20257467,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257467&format=geojson,,,,",ak20257467,us2000hgdc,",3.0,ml,,ak,,"67km SSW of Kaktovik, Alaska",0.65,138,",ak,us,",automatic,1537277438178,"M 3.0 - 67km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537901508040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257467 +,,38064559,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38064559&format=geojson,0.02638,,39.0,",ci38064559,",0.53,ml,,ci,21.0,"9km NE of Aguanga, CA",0.17,4,",ci,",reviewed,1537277373280,"M 0.5 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537280141937,https://earthquake.usgs.gov/earthquakes/eventpage/ci38064559 +,,38064551,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38064551&format=geojson,0.2484,,76.0,",ci38064551,",1.49,ml,,ci,23.0,"22km N of Kernville, CA",0.15,34,",ci,",reviewed,1537277062970,"M 1.5 - 22km N of Kernville, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537288753515,https://earthquake.usgs.gov/earthquakes/eventpage/ci38064551 +,,2018261015,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018261015&format=geojson,0.8026,,314.0,",pr2018261015,",2.98,md,,pr,6.0,"94km NW of San Antonio, Puerto Rico",0.28,137,",pr,",reviewed,1537276457330,"M 3.0 - 94km NW of San Antonio, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-300.0,1537296413146,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018261015 +,,20257457,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257457&format=geojson,,,,",ak20257457,",1.2,ml,,ak,,"31km WSW of Willow, Alaska",0.73,22,",ak,",automatic,1537275606111,"M 1.2 - 31km WSW of Willow, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537278396470,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257457 +,,20257458,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257458&format=geojson,,,,",ak20257458,",2.2,ml,,ak,,"56km SW of Kaktovik, Alaska",0.99,74,",ak,",automatic,1537275576614,"M 2.2 - 56km SW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537278396233,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257458 +,,20257454,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257454&format=geojson,,,,",ak20257454,",1.3,ml,,ak,,"50km NNE of Yakutat, Alaska",0.45,26,",ak,",automatic,1537275572712,"M 1.3 - 50km NNE of Yakutat, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537278395990,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257454 +,,61780831,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61780831&format=geojson,0.02664,,285.0,",av61780831,",0.87,ml,,av,5.0,"41km W of Tanaga Volcano, Alaska",0.22,12,",av,",reviewed,1537275408990,"M 0.9 - 41km W of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537319442260,https://earthquake.usgs.gov/earthquakes/eventpage/av61780831 +,,61780826,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61780826&format=geojson,0.06747,,315.0,",av61780826,",-0.26,ml,,av,5.0,"41km NE of Adak, Alaska",0.29,0,",av,",reviewed,1537275293890,"M -0.3 - 41km NE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537384636170,https://earthquake.usgs.gov/earthquakes/eventpage/av61780826 +,,20257362,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257362&format=geojson,,,,",ak20257362,",2.1,ml,,ak,,"87km W of Gustavus, Alaska",0.66,68,",ak,",automatic,1537274467843,"M 2.1 - 87km W of Gustavus, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537275023693,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257362 +green,2.2,20257361,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257361&format=geojson,,1.0,,",ak20257361,at00pf94kc,us2000hgcj,",5.1,ml,5.96,ak,,"64km SSW of Kaktovik, Alaska",0.67,400,",ak,at,us,",reviewed,1537274456960,"M 5.1 - 64km SSW of Kaktovik, Alaska",1,earthquake,",dyfi,geoserve,ground-failure,impact-link,losspager,moment-tensor,origin,phase-data,shakemap,",-540.0,1537394669040,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257361 +,,73086886,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73086886&format=geojson,0.2018,,276.0,",nc73086886,nn00657097,",1.61,md,,nc,23.0,"25km ESE of Yosemite Valley, CA",0.07,40,",nc,nn,",reviewed,1537274393130,"M 1.6 - 25km ESE of Yosemite Valley, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537322695235,https://earthquake.usgs.gov/earthquakes/eventpage/nc73086886 +,,20257357,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257357&format=geojson,,,,",ak20257357,",1.4,ml,,ak,,"13km ESE of Talkeetna, Alaska",0.72,30,",ak,",automatic,1537274322433,"M 1.4 - 13km ESE of Talkeetna, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537276108867,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257357 +green,,2000hgcm,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hgcm&format=geojson,4.475,,47.0,",us2000hgcm,",5.5,mww,1.66,us,,"51km ENE of Ndoi Island, Fiji",0.92,465,",us,",reviewed,1537274315590,"M 5.5 - 51km ENE of Ndoi Island, Fiji",0,earthquake,",geoserve,losspager,moment-tensor,origin,phase-data,shakemap,",-720.0,1537287472040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hgcm +,,20257354,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257354&format=geojson,,,,",ak20257354,",1.6,ml,,ak,,"79km N of Kobuk, Alaska",0.75,39,",ak,",automatic,1537274132764,"M 1.6 - 79km N of Kobuk, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537274389833,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257354 +,,38064503,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38064503&format=geojson,0.0679,,44.0,",ci38064503,",1.03,ml,,ci,38.0,"9km NNW of Anza, CA",0.15,16,",ci,",reviewed,1537273996100,"M 1.0 - 9km NNW of Anza, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537276348840,https://earthquake.usgs.gov/earthquakes/eventpage/ci38064503 +,,20257351,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257351&format=geojson,,,,",ak20257351,",1.3,ml,,ak,,"13km ENE of Y, Alaska",0.41,26,",ak,",automatic,1537273788875,"M 1.3 - 13km ENE of Y, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537274389604,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257351 +,,00657096,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657096&format=geojson,0.322,,225.26,",nn00657096,",0.8,ml,,nn,18.0,"54km N of Fort Irwin, California",0.2372,10,",nn,",reviewed,1537273277563,"M 0.8 - 54km N of Fort Irwin, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537322692326,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657096 +,,20257348,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257348&format=geojson,,,,",ak20257348,",1.4,ml,,ak,,"79km ENE of Cantwell, Alaska",0.46,30,",ak,",automatic,1537273256504,"M 1.4 - 79km ENE of Cantwell, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537273516805,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257348 +,,00657073,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657073&format=geojson,0.052,,62.42,",nn00657073,",0.3,ml,,nn,28.0,"45km ESE of Beatty, Nevada",0.1124,1,",nn,",reviewed,1537272512104,"M 0.3 - 45km ESE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537322690226,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657073 +,,38064455,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38064455&format=geojson,0.2458,,99.0,",ci38064455,",1.31,ml,,ci,24.0,"22km N of Kernville, CA",0.16,26,",ci,",reviewed,1537272435230,"M 1.3 - 22km N of Kernville, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537297293993,https://earthquake.usgs.gov/earthquakes/eventpage/ci38064455 +,,80310419,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80310419&format=geojson,0.149,,194.0,",mb80310419,",0.09,ml,,mb,5.0,"22km NW of Dillon, Montana",0.04,0,",mb,",reviewed,1537272236600,"M 0.1 - 22km NW of Dillon, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537284188260,https://earthquake.usgs.gov/earthquakes/eventpage/mb80310419 +green,7.3,2000hgcc,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hgcc&format=geojson,2.914,5.0,26.0,",us2000hgcc,",5.8,mww,6.87,us,,"48km ESE of Gizo, Solomon Islands",1.02,521,",us,",reviewed,1537271872040,"M 5.8 - 48km ESE of Gizo, Solomon Islands",0,earthquake,",dyfi,geoserve,ground-failure,losspager,moment-tensor,origin,phase-data,shakemap,",660.0,1539042848843,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hgcc +,,20257333,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257333&format=geojson,,,,",ak20257333,",1.3,ml,,ak,,"123km W of Cantwell, Alaska",0.67,26,",ak,",automatic,1537271463524,"M 1.3 - 123km W of Cantwell, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537271721741,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257333 +,,37196540,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci37196540&format=geojson,0.02645,,65.0,",ci37196540,",0.74,ml,,ci,26.0,"3km NW of Palomar Observatory, CA",0.19,8,",ci,",reviewed,1537271026530,"M 0.7 - 3km NW of Palomar Observatory, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537295082723,https://earthquake.usgs.gov/earthquakes/eventpage/ci37196540 +,,38064447,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38064447&format=geojson,0.02726,,36.0,",ci38064447,",0.71,ml,,ci,39.0,"3km NNW of Palomar Observatory, CA",0.15,8,",ci,",reviewed,1537271025490,"M 0.7 - 3km NNW of Palomar Observatory, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537294570979,https://earthquake.usgs.gov/earthquakes/eventpage/ci38064447 +,,61420222,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61420222&format=geojson,0.003384,,115.0,",uw61420222,",0.13,ml,,uw,7.0,"37km NNE of Amboy, Washington",0.09,0,",uw,",reviewed,1537270696580,"M 0.1 - 37km NNE of Amboy, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537290348410,https://earthquake.usgs.gov/earthquakes/eventpage/uw61420222 +,,20257331,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257331&format=geojson,,,,",ak20257331,",1.0,ml,,ak,,"34km SSW of Cohoe, Alaska",0.32,15,",ak,",automatic,1537269966728,"M 1.0 - 34km SSW of Cohoe, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537270298235,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257331 +,,38064431,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38064431&format=geojson,0.05536,,139.0,",ci38064431,",0.32,ml,,ci,10.0,"13km SSE of Anza, CA",0.06,2,",ci,",reviewed,1537269730010,"M 0.3 - 13km SSE of Anza, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537276313637,https://earthquake.usgs.gov/earthquakes/eventpage/ci38064431 +,,20257326,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257326&format=geojson,,,,",ak20257326,",1.6,ml,,ak,,"41km NE of Y, Alaska",0.85,39,",ak,",automatic,1537269659611,"M 1.6 - 41km NE of Y, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537269916791,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257326 +,,20257313,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257313&format=geojson,,,,",ak20257313,",1.6,ml,,ak,,"85km E of Old Iliamna, Alaska",0.5,39,",ak,",automatic,1537268319790,"M 1.6 - 85km E of Old Iliamna, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537268603333,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257313 +,,2000hgc3,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hgc3&format=geojson,13.097,,45.0,",us2000hgc3,",4.9,mb,,us,,Southwest Indian Ridge,0.85,369,",us,",reviewed,1537268270010,M 4.9 - Southwest Indian Ridge,0,earthquake,",geoserve,origin,phase-data,",180.0,1537270129040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hgc3 +,,20257311,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257311&format=geojson,,,,",ak20257311,",1.3,ml,,ak,,"115km ESE of Kotzebue, Alaska",0.53,26,",ak,",automatic,1537268110399,"M 1.3 - 115km ESE of Kotzebue, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537268402425,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257311 +,,20257308,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257308&format=geojson,,,,",ak20257308,",1.6,ml,,ak,,"123km NNW of Arctic Village, Alaska",0.6,39,",ak,",automatic,1537266977663,"M 1.6 - 123km NNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537267209146,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257308 +,,20257302,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257302&format=geojson,,,,",ak20257302,",2.0,ml,,ak,,"155km WNW of Haines Junction, Canada",0.66,62,",ak,",automatic,1537266672661,"M 2.0 - 155km WNW of Haines Junction, Canada",0,earthquake,",geoserve,origin,",-480.0,1537266928210,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257302 +,,73086881,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73086881&format=geojson,0.008744,,102.0,",nc73086881,",0.16,md,,nc,7.0,"4km NE of Mammoth Lakes, CA",0.01,0,",nc,",reviewed,1537266423670,"M 0.2 - 4km NE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537287462236,https://earthquake.usgs.gov/earthquakes/eventpage/nc73086881 +,,38064423,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38064423&format=geojson,0.02144,,118.0,",ci38064423,",0.24,ml,,ci,12.0,"9km NE of Aguanga, CA",0.06,1,",ci,",reviewed,1537265579060,"M 0.2 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537276360789,https://earthquake.usgs.gov/earthquakes/eventpage/ci38064423 +,,61780646,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61780646&format=geojson,0.03847,,191.0,",av61780646,",0.43,ml,,av,4.0,"72km NNE of Chignik Lake, Alaska",0.3,3,",av,",reviewed,1537265360400,"M 0.4 - 72km NNE of Chignik Lake, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537318589080,https://earthquake.usgs.gov/earthquakes/eventpage/av61780646 +,,20257294,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257294&format=geojson,,,,",ak20257294,",1.6,ml,,ak,,"121km WNW of Arctic Village, Alaska",0.59,39,",ak,",automatic,1537265279566,"M 1.6 - 121km WNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537265554697,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257294 +,,00657071,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657071&format=geojson,0.024,,202.09,",nn00657071,",0.8,ml,,nn,7.0,"14km SSE of Big Pine, California",0.2351,10,",nn,",reviewed,1537265187586,"M 0.8 - 14km SSE of Big Pine, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537322687675,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657071 +,,61780621,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61780621&format=geojson,0.01191,,164.0,",av61780621,",1.03,ml,,av,6.0,"77km NNE of Chignik Lake, Alaska",0.15,16,",av,",reviewed,1537265028280,"M 1.0 - 77km NNE of Chignik Lake, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537318043920,https://earthquake.usgs.gov/earthquakes/eventpage/av61780621 +,,70803594,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av70803594&format=geojson,0.03101,,242.0,",av70803594,",1.27,ml,,av,6.0,"78km NNE of Chignik Lake, Alaska",0.14,25,",av,",reviewed,1537264857620,"M 1.3 - 78km NNE of Chignik Lake, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537317849450,https://earthquake.usgs.gov/earthquakes/eventpage/av70803594 +,,20257291,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257291&format=geojson,,,,",ak20257291,",1.6,ml,,ak,,"5km N of Meadow Lakes, Alaska",0.77,39,",ak,",automatic,1537264848639,"M 1.6 - 5km N of Meadow Lakes, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537265113228,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257291 +,,61780601,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61780601&format=geojson,0.1004,,331.0,",av61780601,",0.6,ml,,av,5.0,"33km W of Tanaga Volcano, Alaska",0.11,6,",av,",reviewed,1537264574140,"M 0.6 - 33km W of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537314930610,https://earthquake.usgs.gov/earthquakes/eventpage/av61780601 +,,2018261012,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018261012&format=geojson,0.5837,,291.0,",pr2018261012,",2.88,md,,pr,6.0,"62km NNW of San Antonio, Puerto Rico",0.61,128,",pr,",reviewed,1537264481470,"M 2.9 - 62km NNW of San Antonio, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1537275460993,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018261012 +,,73086876,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73086876&format=geojson,0.009801,,88.0,",nc73086876,",0.51,md,,nc,30.0,"6km WNW of The Geysers, CA",0.04,4,",nc,",reviewed,1537264397570,"M 0.5 - 6km WNW of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537308170470,https://earthquake.usgs.gov/earthquakes/eventpage/nc73086876 +,,20257290,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257290&format=geojson,,,,",ak20257290,",0.8,ml,,ak,,"34km SSW of Tanaga Volcano, Alaska",0.66,10,",ak,",reviewed,1537264337001,"M 0.8 - 34km SSW of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537300902130,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257290 +,,61780581,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61780581&format=geojson,0.06838,,128.0,",av61780581,",1.03,ml,,av,13.0,"21km W of Dutch Harbor, Alaska",0.14,16,",av,",reviewed,1537263815210,"M 1.0 - 21km W of Dutch Harbor, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537315727490,https://earthquake.usgs.gov/earthquakes/eventpage/av61780581 +,,20257281,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257281&format=geojson,,,,",ak20257281,",1.1,ml,,ak,,"66km WNW of Valdez, Alaska",0.5,19,",ak,",automatic,1537263595105,"M 1.1 - 66km WNW of Valdez, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537263769578,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257281 +,,38064415,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38064415&format=geojson,0.01023,,107.0,",ci38064415,",0.4,ml,,ci,16.0,"2km E of Julian, CA",0.18,2,",ci,",reviewed,1537263469220,"M 0.4 - 2km E of Julian, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537276393847,https://earthquake.usgs.gov/earthquakes/eventpage/ci38064415 +,,60296887,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60296887&format=geojson,0.1491,,201.0,",uu60296887,",1.32,ml,,uu,10.0,"22km WSW of Afton, Wyoming",0.25,27,",uu,",reviewed,1537263004970,"M 1.3 - 22km WSW of Afton, Wyoming",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537299945040,https://earthquake.usgs.gov/earthquakes/eventpage/uu60296887 +,,61780551,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61780551&format=geojson,0.06961,,195.0,",av61780551,",0.73,ml,,av,13.0,"106km NNW of Larsen Bay, Alaska",0.17,8,",av,",reviewed,1537262975370,"M 0.7 - 106km NNW of Larsen Bay, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537315189270,https://earthquake.usgs.gov/earthquakes/eventpage/av61780551 +,,2000hgb0,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hgb0&format=geojson,2.746,,38.0,",us2000hgb0,",5.2,mb,,us,,"126km N of Dili, East Timor",1.17,416,",us,",reviewed,1537262729590,"M 5.2 - 126km N of Dili, East Timor",1,earthquake,",geoserve,origin,phase-data,",480.0,1537264531040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hgb0 +,,2000hgax,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hgax&format=geojson,0.839,,83.0,",us2000hgax,",5.2,mb,,us,,"90km S of Raoul Island, New Zealand",1.03,416,",us,",reviewed,1537262656830,"M 5.2 - 90km S of Raoul Island, New Zealand",0,earthquake,",geoserve,origin,phase-data,",-720.0,1537263853040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hgax +,,2000hgat,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hgat&format=geojson,0.188,,29.0,",us2000hgat,uu60296882,",3.3,ml,,us,,"23km SW of Afton, Wyoming",1.33,168,",us,uu,",reviewed,1537262550490,"M 3.3 - 23km SW of Afton, Wyoming",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537291522222,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hgat +,,73086871,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73086871&format=geojson,0.0334,,244.0,",nc73086871,",0.03,md,,nc,8.0,"12km SE of Mammoth Lakes, CA",0.04,0,",nc,",reviewed,1537262513120,"M 0.0 - 12km SE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537287252105,https://earthquake.usgs.gov/earthquakes/eventpage/nc73086871 +,,20257276,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257276&format=geojson,,,,",ak20257276,",1.5,ml,,ak,,"131km WNW of Arctic Village, Alaska",0.76,35,",ak,",automatic,1537262409347,"M 1.5 - 131km WNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537262706915,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257276 +,,38064407,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38064407&format=geojson,0.02564,,66.0,",ci38064407,",0.18,ml,,ci,24.0,"9km NE of Aguanga, CA",0.12,0,",ci,",reviewed,1537262299510,"M 0.2 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537289088178,https://earthquake.usgs.gov/earthquakes/eventpage/ci38064407 +,,60296877,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60296877&format=geojson,0.07395,,150.0,",uu60296877,",0.54,ml,,uu,5.0,"14km NNE of Old Faithful Geyser, Wyoming",0.08,4,",uu,",reviewed,1537262295920,"M 0.5 - 14km NNE of Old Faithful Geyser, Wyoming",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537281361800,https://earthquake.usgs.gov/earthquakes/eventpage/uu60296877 +,,00657204,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657204&format=geojson,0.1,,160.0,",nn00657204,",0.0,ml,,nn,6.0,"61km SSW of Goldfield, Nevada",0.1587,0,",nn,",reviewed,1537262186381,"M 0.0 - 61km SSW of Goldfield, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537322720779,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657204 +,,73087211,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73087211&format=geojson,0.1104,,135.0,",nc73087211,",0.85,md,,nc,7.0,"9km NE of Shingletown, CA",0.06,11,",nc,",reviewed,1537262176290,"M 0.9 - 9km NE of Shingletown, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537389420656,https://earthquake.usgs.gov/earthquakes/eventpage/nc73087211 +,,2018261011,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018261011&format=geojson,0.1845,,265.0,",pr2018261011,",1.94,md,,pr,6.0,"5km N of Arecibo, Puerto Rico",0.72,58,",pr,",reviewed,1537261887500,"M 1.9 - 5km N of Arecibo, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1537274873994,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018261011 +,,60296872,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60296872&format=geojson,0.06436,,116.0,",uu60296872,",0.86,ml,,uu,13.0,"15km NNE of Old Faithful Geyser, Wyoming",0.19,11,",uu,",reviewed,1537261698700,"M 0.9 - 15km NNE of Old Faithful Geyser, Wyoming",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537280620740,https://earthquake.usgs.gov/earthquakes/eventpage/uu60296872 +,,20257266,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257266&format=geojson,,,,",ak20257266,",2.9,ml,,ak,,"107km NW of Arctic Village, Alaska",0.65,129,",ak,",automatic,1537261636398,"M 2.9 - 107km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537262385705,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257266 +,,61780501,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61780501&format=geojson,0.06489,,130.0,",av61780501,",0.77,ml,,av,6.0,"21km W of Unalaska, Alaska",0.17,9,",av,",reviewed,1537261509730,"M 0.8 - 21km W of Unalaska, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537316550070,https://earthquake.usgs.gov/earthquakes/eventpage/av61780501 +,,20257262,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257262&format=geojson,,,,",ak20257262,",1.1,ml,,ak,,"33km SW of Cantwell, Alaska",0.38,19,",ak,",automatic,1537260668409,"M 1.1 - 33km SW of Cantwell, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537260871256,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257262 +,,20257260,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257260&format=geojson,,,,",ak20257260,",1.2,ml,,ak,,"43km NW of Ester, Alaska",0.49,22,",ak,",automatic,1537260320638,"M 1.2 - 43km NW of Ester, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537260590376,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257260 +,,00657067,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657067&format=geojson,0.053,,78.56,",nn00657067,",0.2,ml,,nn,27.0,"48km ESE of Beatty, Nevada",0.0944,1,",nn,",reviewed,1537259346028,"M 0.2 - 48km ESE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537322685377,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657067 +,,00657063,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657063&format=geojson,0.053,,77.9,",nn00657063,",0.2,ml,,nn,25.0,"48km ESE of Beatty, Nevada",0.135,1,",nn,",reviewed,1537259298775,"M 0.2 - 48km ESE of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537322676798,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657063 +,,73086856,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73086856&format=geojson,0.0586,,119.0,",nc73086856,",0.86,md,,nc,15.0,"9km NNE of Pinnacles, CA",0.1,11,",nc,",reviewed,1537258989730,"M 0.9 - 9km NNE of Pinnacles, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537307689372,https://earthquake.usgs.gov/earthquakes/eventpage/nc73086856 +,,2018261010,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018261010&format=geojson,1.7871,,349.0,",pr2018261010,us2000hgcr,",3.07,md,,pr,3.0,"124km NNW of Charlotte Amalie, U.S. Virgin Islands",0.22,145,",pr,us,",reviewed,1537258900850,"M 3.1 - 124km NNW of Charlotte Amalie, U.S. Virgin Islands",0,earthquake,",geoserve,origin,phase-data,",-240.0,1538220942040,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018261010 +,,60064423,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nm60064423&format=geojson,0.02808,,98.0,",nm60064423,",1.16,md,,nm,6.0,"3km ENE of Ridgely, Tennessee",0.02,21,",nm,",reviewed,1537258841590,"M 1.2 - 3km ENE of Ridgely, Tennessee",0,earthquake,",geoserve,origin,phase-data,",-360.0,1537274817240,https://earthquake.usgs.gov/earthquakes/eventpage/nm60064423 +,,73086851,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73086851&format=geojson,0.01681,,165.0,",nc73086851,",0.3,md,,nc,8.0,"13km E of Mammoth Lakes, CA",0.03,1,",nc,",reviewed,1537258837390,"M 0.3 - 13km E of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537287101090,https://earthquake.usgs.gov/earthquakes/eventpage/nc73086851 +,,20257255,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257255&format=geojson,,,,",ak20257255,",1.7,ml,,ak,,"28km SW of Atka, Alaska",0.14,44,",ak,",reviewed,1537258703214,"M 1.7 - 28km SW of Atka, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537300258599,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257255 +,,38064399,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38064399&format=geojson,0.1064,,109.0,",ci38064399,",0.91,ml,,ci,13.0,"10km ESE of Tehachapi, CA",0.18,13,",ci,",reviewed,1537258562360,"M 0.9 - 10km ESE of Tehachapi, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537276411305,https://earthquake.usgs.gov/earthquakes/eventpage/ci38064399 +,3.4,2000hgaa,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hgaa&format=geojson,1.367,85.0,115.0,",us2000hgaa,",4.6,mb,,us,,"3km ESE of Sugito, Japan",0.85,354,",us,",reviewed,1537258271290,"M 4.6 - 3km ESE of Sugito, Japan",0,earthquake,",dyfi,geoserve,origin,phase-data,",540.0,1538220844777,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hgaa +,,00657203,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657203&format=geojson,0.035,,217.55,",nn00657203,",0.0,ml,,nn,9.0,"51km S of Beatty, Nevada",0.2056,0,",nn,",reviewed,1537257953781,"M 0.0 - 51km S of Beatty, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537322719296,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657203 +,,73086846,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73086846&format=geojson,0.002718,,85.0,",nc73086846,",0.43,md,,nc,16.0,"4km NE of Mammoth Lakes, CA",0.03,3,",nc,",reviewed,1537257874000,"M 0.4 - 4km NE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537286138994,https://earthquake.usgs.gov/earthquakes/eventpage/nc73086846 +,,38064391,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38064391&format=geojson,0.1256,,87.0,",ci38064391,",1.23,ml,,ci,23.0,"25km ENE of Pine Valley, CA",0.23,23,",ci,",reviewed,1537257830720,"M 1.2 - 25km ENE of Pine Valley, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537276477230,https://earthquake.usgs.gov/earthquakes/eventpage/ci38064391 +,,61780431,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61780431&format=geojson,0.0243,,132.0,",av61780431,",-0.11,ml,,av,5.0,"42km ENE of Adak, Alaska",0.07,0,",av,",reviewed,1537257741590,"M -0.1 - 42km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537312542790,https://earthquake.usgs.gov/earthquakes/eventpage/av61780431 +,,38064383,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38064383&format=geojson,0.06121,,104.0,",ci38064383,",0.52,ml,,ci,16.0,"17km ESE of Anza, CA",0.19,4,",ci,",reviewed,1537257387710,"M 0.5 - 17km ESE of Anza, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537276444199,https://earthquake.usgs.gov/earthquakes/eventpage/ci38064383 +,,20257250,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257250&format=geojson,,,,",ak20257250,",0.9,ml,,ak,,"45km ENE of Cape Yakataga, Alaska",0.45,12,",ak,",automatic,1537257131752,"M 0.9 - 45km ENE of Cape Yakataga, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537257352443,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257250 +,,73086841,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73086841&format=geojson,0.009942,,74.0,",nc73086841,",0.3,md,,nc,18.0,"4km NE of Mammoth Lakes, CA",0.04,1,",nc,",reviewed,1537257115590,"M 0.3 - 4km NE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537286530421,https://earthquake.usgs.gov/earthquakes/eventpage/nc73086841 +,,38064367,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38064367&format=geojson,0.01849,,31.0,",ci38064367,",0.69,ml,,ci,32.0,"9km NE of Aguanga, CA",0.15,7,",ci,",reviewed,1537256446160,"M 0.7 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537276543410,https://earthquake.usgs.gov/earthquakes/eventpage/ci38064367 +,,38064359,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38064359&format=geojson,0.00636,,48.0,",ci38064359,",0.28,ml,,ci,18.0,"10km NE of Aguanga, CA",0.14,1,",ci,",reviewed,1537256101390,"M 0.3 - 10km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537276547600,https://earthquake.usgs.gov/earthquakes/eventpage/ci38064359 +,,20257223,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257223&format=geojson,,,,",ak20257223,",0.9,ml,,ak,,"68km S of Deltana, Alaska",0.52,12,",ak,",automatic,1537256077708,"M 0.9 - 68km S of Deltana, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537256379909,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257223 +,,2000hg9g,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hg9g&format=geojson,0.567,,83.0,",us2000hg9g,",4.7,mb,,us,,"18km NE of Reuleuet, Indonesia",0.58,340,",us,",reviewed,1537256021950,"M 4.7 - 18km NE of Reuleuet, Indonesia",0,earthquake,",geoserve,origin,phase-data,",420.0,1538205383040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hg9g +,,2000hg9e,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hg9e&format=geojson,5.249,,98.0,",us2000hg9e,",4.7,mb,,us,,South of Tonga,1.34,340,",us,",reviewed,1537255688140,M 4.7 - South of Tonga,0,earthquake,",geoserve,origin,phase-data,",-720.0,1538205175040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hg9e +green,,2000hg93,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hg93&format=geojson,8.749,,22.0,",us2000hg93,",6.0,mww,0.0,us,,Southwest Indian Ridge,1.04,554,",us,",reviewed,1537255661330,M 6.0 - Southwest Indian Ridge,0,earthquake,",geoserve,losspager,moment-tensor,origin,phase-data,shakemap,",180.0,1538206958458,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hg93 +,3.1,2000hg94,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hg94&format=geojson,2.114,3.0,68.0,",us2000hg94,",4.7,mb,,us,,"2km ESE of Lokokrangan, Indonesia",1.28,341,",us,",reviewed,1537255636260,"M 4.7 - 2km ESE of Lokokrangan, Indonesia",0,earthquake,",dyfi,geoserve,origin,phase-data,",480.0,1538204926314,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hg94 +,,2000hg99,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hg99&format=geojson,5.359,,92.0,",us2000hg99,",5.1,mb,,us,,South of Tonga,0.89,400,",us,",reviewed,1537255481060,M 5.1 - South of Tonga,0,earthquake,",geoserve,origin,phase-data,",-720.0,1538204240040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hg99 +,,38064351,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38064351&format=geojson,0.05565,,83.0,",ci38064351,",0.77,ml,,ci,31.0,"9km NE of Indio, CA",0.14,9,",ci,",reviewed,1537255339630,"M 0.8 - 9km NE of Indio, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537463615210,https://earthquake.usgs.gov/earthquakes/eventpage/ci38064351 +,,20257222,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257222&format=geojson,,,,",ak20257222,",1.0,ml,,ak,,"21km ENE of Talkeetna, Alaska",0.78,15,",ak,",automatic,1537255227320,"M 1.0 - 21km ENE of Talkeetna, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537255427382,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257222 +,,38064343,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38064343&format=geojson,0.08108,,113.0,",ci38064343,",0.53,ml,,ci,23.0,"17km N of Borrego Springs, CA",0.11,4,",ci,",reviewed,1537254850700,"M 0.5 - 17km N of Borrego Springs, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537306074920,https://earthquake.usgs.gov/earthquakes/eventpage/ci38064343 +,,20257217,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257217&format=geojson,,,,",ak20257217,",1.4,ml,,ak,,"27km WNW of Anchorage, Alaska",0.68,30,",ak,",automatic,1537254530035,"M 1.4 - 27km WNW of Anchorage, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537255056353,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257217 +,,20257213,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257213&format=geojson,,,,",ak20257213,",1.6,ml,,ak,,"93km S of Old Iliamna, Alaska",0.53,39,",ak,",automatic,1537254333752,"M 1.6 - 93km S of Old Iliamna, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537254604610,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257213 +,,80310434,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80310434&format=geojson,0.087,,75.0,",mb80310434,",0.41,md,,mb,17.0,"28km S of Ronan, Montana",0.11,3,",mb,",reviewed,1537254166160,"M 0.4 - 28km S of Ronan, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537284923400,https://earthquake.usgs.gov/earthquakes/eventpage/mb80310434 +,,00657032,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657032&format=geojson,0.11,,145.38,",nn00657032,",0.7,ml,,nn,9.0,"26km WSW of Hawthorne, Nevada",0.1562,8,",nn,",reviewed,1537254124129,"M 0.7 - 26km WSW of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537322667985,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657032 +,,2000hg8v,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hg8v&format=geojson,1.148,,69.0,",mb80310369,us2000hg8v,",2.5,ml,,us,,"32km ENE of Challis, Idaho",0.55,96,",mb,us,",reviewed,1537254005710,"M 2.5 - 32km ENE of Challis, Idaho",0,earthquake,",geoserve,origin,phase-data,",-420.0,1538204098040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hg8v +,,38064335,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38064335&format=geojson,0.07312,,59.0,",ci38064335,",0.73,ml,,ci,29.0,"6km SW of Aguanga, CA",0.19,8,",ci,",reviewed,1537253708410,"M 0.7 - 6km SW of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537276513442,https://earthquake.usgs.gov/earthquakes/eventpage/ci38064335 +,,20257210,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257210&format=geojson,,,,",ak20257210,",1.0,ml,,ak,,"49km E of Lazy Mountain, Alaska",0.76,15,",ak,",automatic,1537253541259,"M 1.0 - 49km E of Lazy Mountain, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537253782383,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257210 +,,38064327,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38064327&format=geojson,0.01982,,35.0,",ci38064327,",1.1,ml,,ci,47.0,"8km NE of Aguanga, CA",0.2,19,",ci,",reviewed,1537253216010,"M 1.1 - 8km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537276554620,https://earthquake.usgs.gov/earthquakes/eventpage/ci38064327 +,,38064319,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38064319&format=geojson,0.03242,,105.0,",ci38064319,",0.02,ml,,ci,18.0,"8km ENE of Aguanga, CA",0.1,0,",ci,",reviewed,1537253048480,"M 0.0 - 8km ENE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537289141109,https://earthquake.usgs.gov/earthquakes/eventpage/ci38064319 +,,38064311,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38064311&format=geojson,0.1045,,90.0,",ci38064311,",1.01,ml,,ci,47.0,"12km NNE of Ocotillo Wells, CA",0.2,16,",ci,",reviewed,1537252870940,"M 1.0 - 12km NNE of Ocotillo Wells, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537288947930,https://earthquake.usgs.gov/earthquakes/eventpage/ci38064311 +,,20257205,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257205&format=geojson,,,,",ak20257205,",1.6,ml,,ak,,"36km ENE of Sterling, Alaska",0.73,39,",ak,",automatic,1537252766720,"M 1.6 - 36km ENE of Sterling, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537253130534,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257205 +,,80310359,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80310359&format=geojson,0.312,,110.0,",mb80310359,",2.3,ml,,mb,12.0,"36km ENE of Challis, Idaho",0.26,81,",mb,",reviewed,1537252245430,"M 2.3 - 36km ENE of Challis, Idaho",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537279740500,https://earthquake.usgs.gov/earthquakes/eventpage/mb80310359 +,,61780311,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61780311&format=geojson,0.07314,,329.0,",av61780311,",1.02,ml,,av,5.0,"39km W of Tanaga Volcano, Alaska",0.27,16,",av,",reviewed,1537251738480,"M 1.0 - 39km W of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537306681420,https://earthquake.usgs.gov/earthquakes/eventpage/av61780311 +,,38064303,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38064303&format=geojson,0.08682,,50.0,",ci38064303,",0.36,ml,,ci,18.0,"9km ENE of Aguanga, CA",0.16,2,",ci,",reviewed,1537251527060,"M 0.4 - 9km ENE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537276534638,https://earthquake.usgs.gov/earthquakes/eventpage/ci38064303 +,,73086836,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73086836&format=geojson,0.0609,,87.0,",nc73086836,",1.47,md,,nc,18.0,"3km NE of Pinnacles, CA",0.08,33,",nc,",reviewed,1537251504100,"M 1.5 - 3km NE of Pinnacles, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537299002534,https://earthquake.usgs.gov/earthquakes/eventpage/nc73086836 +,,61780301,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61780301&format=geojson,0.05389,,317.0,",av61780301,",0.66,ml,,av,5.0,"39km W of Tanaga Volcano, Alaska",0.26,7,",av,",reviewed,1537251473340,"M 0.7 - 39km W of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537390675150,https://earthquake.usgs.gov/earthquakes/eventpage/av61780301 +,,20257194,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257194&format=geojson,,,,",ak20257194,",1.3,ml,,ak,,"62km S of Manley Hot Springs, Alaska",0.63,26,",ak,",automatic,1537251469213,"M 1.3 - 62km S of Manley Hot Springs, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537251836900,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257194 +,,20257193,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257193&format=geojson,,,,",ak20257193,",1.0,ml,,ak,,"60km S of Manley Hot Springs, Alaska",0.67,15,",ak,",automatic,1537251395633,"M 1.0 - 60km S of Manley Hot Springs, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537251736196,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257193 +,,00657202,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657202&format=geojson,0.041,,169.41,",nn00657202,",0.0,ml,,nn,5.0,"60km E of Big Pine, California",0.1338,0,",nn,",reviewed,1537251199915,"M 0.0 - 60km E of Big Pine, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537322717691,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657202 +,,20257186,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257186&format=geojson,,,,",ak20257186,",1.1,ml,,ak,,"42km NNW of Valdez, Alaska",0.88,19,",ak,",automatic,1537251084568,"M 1.1 - 42km NNW of Valdez, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537251434598,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257186 +,,20257187,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257187&format=geojson,,,,",ak20257187,",1.2,ml,,ak,,"66km S of Deltana, Alaska",0.57,22,",ak,",automatic,1537251079147,"M 1.2 - 66km S of Deltana, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537251535038,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257187 +,,20257176,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257176&format=geojson,,,,",ak20257176,",1.0,ml,,ak,,"40km SE of Tanaga Volcano, Alaska",0.49,15,",ak,",reviewed,1537250358889,"M 1.0 - 40km SE of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537299232729,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257176 +,,20257168,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257168&format=geojson,,,,",ak20257168,",0.9,ml,,ak,,"20km N of North Nenana, Alaska",0.73,12,",ak,",automatic,1537250075072,"M 0.9 - 20km N of North Nenana, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537250231021,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257168 +,,20257167,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257167&format=geojson,,,,",ak20257167,",1.1,ml,,ak,,"51km NNE of Yakutat, Alaska",0.66,19,",ak,",automatic,1537250066858,"M 1.1 - 51km NNE of Yakutat, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537250230808,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257167 +,,61780261,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61780261&format=geojson,0.02526,,136.0,",av61780261,",-0.69,ml,,av,5.0,"42km ENE of Adak, Alaska",0.18,0,",av,",reviewed,1537249710450,"M -0.7 - 42km ENE of Adak, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537306317460,https://earthquake.usgs.gov/earthquakes/eventpage/av61780261 +,,20257164,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257164&format=geojson,,,,",ak20257164,",1.6,ml,,ak,,"50km NNE of Yakutat, Alaska",0.64,39,",ak,",automatic,1537249469448,"M 1.6 - 50km NNE of Yakutat, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537249649266,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257164 +,,2018261009,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018261009&format=geojson,0.4386,,206.0,",pr2018261009,",2.84,md,,pr,10.0,"65km WSW of Rincon, Puerto Rico",0.41,124,",pr,",reviewed,1537249284220,"M 2.8 - 65km WSW of Rincon, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-300.0,1537259349841,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018261009 +,,20257161,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257161&format=geojson,,,,",ak20257161,",2.0,ml,,ak,,"75km SSW of Kaktovik, Alaska",0.76,62,",ak,",automatic,1537249205615,"M 2.0 - 75km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537249518751,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257161 +,,00657199,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657199&format=geojson,0.113,,165.2,",nn00657199,",0.4,ml,,nn,8.0,"20km NE of Spanish Springs, Nevada",0.1768,2,",nn,",reviewed,1537248995607,"M 0.4 - 20km NE of Spanish Springs, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537322716214,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657199 +,,20257159,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257159&format=geojson,,,,",ak20257159,",1.4,ml,,ak,,"68km W of Valdez, Alaska",0.53,30,",ak,",automatic,1537248832224,"M 1.4 - 68km W of Valdez, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537249027453,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257159 +,,2018261008,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018261008&format=geojson,0.7609,,256.0,",pr2018261008,",2.96,md,,pr,12.0,"78km NE of Punta Cana, Dominican Republic",0.77,135,",pr,",reviewed,1537248803880,"M 3.0 - 78km NE of Punta Cana, Dominican Republic",0,earthquake,",geoserve,origin,phase-data,",-300.0,1537258367990,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018261008 +,,38064287,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38064287&format=geojson,0.04588,,53.0,",ci38064287,",1.14,ml,,ci,29.0,"3km NNW of La Verne, CA",0.19,20,",ci,",reviewed,1537248539650,"M 1.1 - 3km NNW of La Verne, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537276548364,https://earthquake.usgs.gov/earthquakes/eventpage/ci38064287 +,,20257149,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257149&format=geojson,,,,",ak20257149,",1.9,ml,,ak,,"64km SSW of Kaktovik, Alaska",0.74,56,",ak,",automatic,1537248045836,"M 1.9 - 64km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537248806738,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257149 +,,38064279,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38064279&format=geojson,0.09825,,65.0,",ci38064279,",0.93,ml,,ci,16.0,"9km SE of Tehachapi, CA",0.2,13,",ci,",reviewed,1537247551860,"M 0.9 - 9km SE of Tehachapi, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537276565592,https://earthquake.usgs.gov/earthquakes/eventpage/ci38064279 +,,61780226,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61780226&format=geojson,0.008484,,153.0,",av61780226,",0.11,ml,,av,5.0,"94km ESE of Old Iliamna, Alaska",0.12,0,",av,",reviewed,1537247485920,"M 0.1 - 94km ESE of Old Iliamna, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537302873620,https://earthquake.usgs.gov/earthquakes/eventpage/av61780226 +,,73086831,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73086831&format=geojson,0.01593,,65.0,",nc73086831,",0.89,md,,nc,23.0,"2km N of The Geysers, CA",0.06,12,",nc,",reviewed,1537247473760,"M 0.9 - 2km N of The Geysers, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537307298531,https://earthquake.usgs.gov/earthquakes/eventpage/nc73086831 +,,00657031,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657031&format=geojson,0.025,,148.08,",nn00657031,",0.8,ml,,nn,5.0,"28km ESE of Hawthorne, Nevada",0.1299,10,",nn,",reviewed,1537247268525,"M 0.8 - 28km ESE of Hawthorne, Nevada",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537322665893,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657031 +,,2000hg83,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hg83&format=geojson,0.719,,149.0,",us2000hg83,",4.5,mb,,us,,"53km SSW of Tympakion, Greece",1.21,312,",us,",reviewed,1537247058910,"M 4.5 - 53km SSW of Tympakion, Greece",0,earthquake,",geoserve,origin,phase-data,",120.0,1537248391040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hg83 +,,2000hg82,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hg82&format=geojson,0.738,,114.0,",us2000hg82,",4.4,mb,,us,,"55km SSW of Tympakion, Greece",1.3,298,",us,",reviewed,1537246824060,"M 4.4 - 55km SSW of Tympakion, Greece",0,earthquake,",geoserve,origin,phase-data,",120.0,1537248077040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hg82 +,,38064255,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38064255&format=geojson,0.07255,,93.0,",ci38064255,",0.66,ml,,ci,24.0,"9km N of Anza, CA",0.12,7,",ci,",reviewed,1537246744590,"M 0.7 - 9km N of Anza, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537276623150,https://earthquake.usgs.gov/earthquakes/eventpage/ci38064255 +,,20257140,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257140&format=geojson,,,,",ak20257140,",2.7,ml,,ak,,"68km SSW of Kaktovik, Alaska",0.79,112,",ak,",automatic,1537246499995,"M 2.7 - 68km SSW of Kaktovik, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537247012362,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257140 +,,20257137,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257137&format=geojson,,,,",ak20257137,",1.4,ml,,ak,,"57km NE of Ruby, Alaska",0.42,30,",ak,",automatic,1537246087832,"M 1.4 - 57km NE of Ruby, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537246279905,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257137 +,,20257135,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257135&format=geojson,,,,",ak20257135,",1.6,ml,,ak,,"97km WNW of Arctic Village, Alaska",0.98,39,",ak,",automatic,1537245643216,"M 1.6 - 97km WNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537245878801,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257135 +,,38064247,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38064247&format=geojson,0.07514,,109.0,",ci38064247,",0.46,ml,,ci,16.0,"10km NE of Aguanga, CA",0.07,3,",ci,",reviewed,1537245605360,"M 0.5 - 10km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537276626160,https://earthquake.usgs.gov/earthquakes/eventpage/ci38064247 +,,61420192,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uw61420192&format=geojson,0.02997,,132.0,",uw61420192,",-0.02,ml,,uw,7.0,"28km S of Morton, Washington",0.08,0,",uw,",reviewed,1537245303560,"M -0.0 - 28km S of Morton, Washington",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537290853300,https://earthquake.usgs.gov/earthquakes/eventpage/uw61420192 +,,60296852,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=uu60296852&format=geojson,0.4367,,236.0,",uu60296852,",1.26,md,,uu,6.0,"15km SSE of Parowan, Utah",0.21,24,",uu,",reviewed,1537245016420,"M 1.3 - 15km SSE of Parowan, Utah",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537281579940,https://earthquake.usgs.gov/earthquakes/eventpage/uu60296852 +,,38064231,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38064231&format=geojson,0.09524,,157.0,",ci38064231,",1.05,ml,,ci,40.0,"12km S of Salton City, CA",0.18,17,",ci,",reviewed,1537244919320,"M 1.1 - 12km S of Salton City, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537287518366,https://earthquake.usgs.gov/earthquakes/eventpage/ci38064231 +,,20257132,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257132&format=geojson,,,,",ak20257132,",1.8,ml,,ak,,"84km WNW of Arctic Village, Alaska",0.75,50,",ak,",automatic,1537244823156,"M 1.8 - 84km WNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537245537909,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257132 +,,20257127,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257127&format=geojson,,,,",ak20257127,",1.5,ml,,ak,,"75km ESE of Old Iliamna, Alaska",0.66,35,",ak,",automatic,1537244716788,"M 1.5 - 75km ESE of Old Iliamna, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537245046612,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257127 +,,20257632,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257632&format=geojson,,,,",ak20257632,",0.2,ml,,ak,,"43km ENE of Cantwell, Alaska",0.64,1,",ak,",reviewed,1537244711115,"M 0.2 - 43km ENE of Cantwell, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537297101911,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257632 +,,80310424,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=mb80310424&format=geojson,0.252,,228.0,",mb80310424,",-0.32,md,,mb,5.0,"30km ENE of Seeley Lake, Montana",0.05,0,",mb,",reviewed,1537244570780,"M -0.3 - 30km ENE of Seeley Lake, Montana",0,earthquake,",geoserve,origin,phase-data,",-420.0,1537284434200,https://earthquake.usgs.gov/earthquakes/eventpage/mb80310424 +,,20257124,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257124&format=geojson,,,,",ak20257124,",1.1,ml,,ak,,"58km NE of Healy, Alaska",0.62,19,",ak,",automatic,1537244565516,"M 1.1 - 58km NE of Healy, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537244815613,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257124 +,,38064223,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38064223&format=geojson,0.03063,,55.0,",ci38064223,",0.64,ml,,ci,24.0,"11km SW of Anza, CA",0.13,6,",ci,",reviewed,1537244128050,"M 0.6 - 11km SW of Anza, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537276616266,https://earthquake.usgs.gov/earthquakes/eventpage/ci38064223 +,,2018261007,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018261007&format=geojson,1.5255,,343.0,",pr2018261007,",3.36,md,,pr,10.0,"49km NNE of Road Town, British Virgin Islands",0.33,174,",pr,",reviewed,1537243961540,"M 3.4 - 49km NNE of Road Town, British Virgin Islands",0,earthquake,",geoserve,origin,phase-data,",-240.0,1537257035189,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018261007 +,,2018261006,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018261006&format=geojson,1.4212,,345.0,",pr2018261006,",2.34,md,,pr,5.0,"57km N of Road Town, British Virgin Islands",0.1,84,",pr,",reviewed,1537243821560,"M 2.3 - 57km N of Road Town, British Virgin Islands",0,earthquake,",geoserve,origin,phase-data,",-240.0,1537255744695,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018261006 +,,20257122,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257122&format=geojson,,,,",ak20257122,",0.9,ml,,ak,,"49km NNE of Yakutat, Alaska",0.73,12,",ak,",automatic,1537243793175,"M 0.9 - 49km NNE of Yakutat, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537244253954,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257122 +,,38064199,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38064199&format=geojson,0.01962,,38.0,",ci38064199,",0.88,ml,,ci,35.0,"2km WNW of Lake Henshaw, CA",0.14,12,",ci,",reviewed,1537243691700,"M 0.9 - 2km WNW of Lake Henshaw, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537276691820,https://earthquake.usgs.gov/earthquakes/eventpage/ci38064199 +,,38064207,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38064207&format=geojson,0.1552,,89.0,",ci38064207,",2.57,ml,,ci,21.0,"9km WNW of Alberto Oviedo Mota, B.C., MX",0.18,102,",ci,",reviewed,1537243527230,"M 2.6 - 9km WNW of Alberto Oviedo Mota, B.C., MX",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537299812243,https://earthquake.usgs.gov/earthquakes/eventpage/ci38064207 +,,20257113,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257113&format=geojson,,,,",ak20257113,",3.0,ml,,ak,,"50km NNE of Yakutat, Alaska",0.8,138,",ak,",automatic,1537243481592,"M 3.0 - 50km NNE of Yakutat, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537244093374,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257113 +,,20257108,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257108&format=geojson,,,,",ak20257108,",1.4,ml,,ak,,"50km NNE of Yakutat, Alaska",0.64,30,",ak,",automatic,1537243304205,"M 1.4 - 50km NNE of Yakutat, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537243661457,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257108 +,,38064183,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38064183&format=geojson,0.0212,,32.0,",ci38064183,",0.51,ml,,ci,27.0,"9km NE of Aguanga, CA",0.14,4,",ci,",reviewed,1537243194550,"M 0.5 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537276694710,https://earthquake.usgs.gov/earthquakes/eventpage/ci38064183 +,,20257096,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257096&format=geojson,,,,",ak20257096,",1.5,ml,,ak,,"51km NNE of Yakutat, Alaska",0.69,35,",ak,",reviewed,1537243013948,"M 1.5 - 51km NNE of Yakutat, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537296689495,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257096 +,,38064175,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38064175&format=geojson,0.03136,,37.0,",ci38064175,",0.5,ml,,ci,19.0,"11km SW of Anza, CA",0.12,4,",ci,",reviewed,1537242954130,"M 0.5 - 11km SW of Anza, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537276653170,https://earthquake.usgs.gov/earthquakes/eventpage/ci38064175 +,,38064167,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38064167&format=geojson,0.02162,,139.0,",ci38064167,",0.11,ml,,ci,17.0,"9km NE of Aguanga, CA",0.07,0,",ci,",reviewed,1537242779290,"M 0.1 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537289342091,https://earthquake.usgs.gov/earthquakes/eventpage/ci38064167 +,,20257088,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257088&format=geojson,,,,",ak20257088,",1.2,ml,,ak,,"19km WSW of Salcha, Alaska",0.61,22,",ak,",automatic,1537242722546,"M 1.2 - 19km WSW of Salcha, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537243209684,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257088 +,,2000hg7v,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hg7v&format=geojson,3.284,,182.0,",us2000hg7v,",4.4,mb,,us,,"261km ESE of Lambasa, Fiji",0.6,298,",us,",reviewed,1537242488100,"M 4.4 - 261km ESE of Lambasa, Fiji",0,earthquake,",geoserve,origin,phase-data,",-720.0,1537245389040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hg7v +,,20257079,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257079&format=geojson,,,,",ak20257079,",1.5,ml,,ak,,"140km ENE of Anaktuvuk Pass, Alaska",0.95,35,",ak,",automatic,1537242287929,"M 1.5 - 140km ENE of Anaktuvuk Pass, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537242506969,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257079 +,,20257078,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257078&format=geojson,,,,",ak20257078,",1.5,ml,,ak,,"57km ESE of Tanaga Volcano, Alaska",0.53,35,",ak,",reviewed,1537242165507,"M 1.5 - 57km ESE of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537296437937,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257078 +,,38064159,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38064159&format=geojson,0.0208,,34.0,",ci38064159,",0.62,ml,,ci,31.0,"9km NE of Aguanga, CA",0.15,6,",ci,",reviewed,1537242020710,"M 0.6 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537276760640,https://earthquake.usgs.gov/earthquakes/eventpage/ci38064159 +,,38064151,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38064151&format=geojson,0.01766,,130.0,",ci38064151,",0.67,ml,,ci,14.0,"6km N of Little Lake, CA",0.06,7,",ci,",reviewed,1537241265130,"M 0.7 - 6km N of Little Lake, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537289446556,https://earthquake.usgs.gov/earthquakes/eventpage/ci38064151 +,,2018261005,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018261005&format=geojson,0.317,,317.0,",pr2018261005,",2.3,md,,pr,5.0,"26km SE of El Negro, Puerto Rico",0.28,81,",pr,",reviewed,1537240755910,"M 2.3 - 26km SE of El Negro, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1537255052512,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018261005 +,,20257074,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257074&format=geojson,,,,",ak20257074,",1.1,ml,,ak,,"63km NNW of Ruby, Alaska",0.58,19,",ak,",automatic,1537240350653,"M 1.1 - 63km NNW of Ruby, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537240752766,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257074 +,,61780091,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61780091&format=geojson,0.05095,,312.0,",av61780091,",0.25,ml,,av,5.0,"48km W of Tanaga Volcano, Alaska",0.08,1,",av,",reviewed,1537240264410,"M 0.3 - 48km W of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537390689350,https://earthquake.usgs.gov/earthquakes/eventpage/av61780091 +,,38064135,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38064135&format=geojson,0.09981,,45.0,",ci38064135,",0.85,ml,,ci,34.0,"9km WNW of Garnet, CA",0.11,11,",ci,",reviewed,1537239941780,"M 0.9 - 9km WNW of Garnet, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537290225486,https://earthquake.usgs.gov/earthquakes/eventpage/ci38064135 +,,20257064,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257064&format=geojson,,,,",ak20257064,",1.0,ml,,ak,,"26km SSE of Redoubt Volcano, Alaska",0.27,15,",ak,",reviewed,1537239845754,"M 1.0 - 26km SSE of Redoubt Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537296206295,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257064 +,,20257058,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257058&format=geojson,,,,",ak20257058,",1.3,ml,,ak,,"50km NNE of Yakutat, Alaska",0.71,26,",ak,",automatic,1537239622327,"M 1.3 - 50km NNE of Yakutat, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537239849810,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257058 +,,38064127,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38064127&format=geojson,0.08225,,68.0,",ci38064127,",0.44,ml,,ci,18.0,"9km NE of Aguanga, CA",0.11,3,",ci,",reviewed,1537239554730,"M 0.4 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537276764130,https://earthquake.usgs.gov/earthquakes/eventpage/ci38064127 +,,20257057,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257057&format=geojson,,,,",ak20257057,av61780076,",0.7,ml,,ak,,"98km ESE of King Salmon, Alaska",0.38,8,",ak,av,",reviewed,1537239518441,"M 0.7 - 98km ESE of King Salmon, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537300743660,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257057 +,,38064119,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38064119&format=geojson,0.02324,,106.0,",ci38064119,",0.22,ml,,ci,17.0,"9km NE of Aguanga, CA",0.12,1,",ci,",reviewed,1537239490400,"M 0.2 - 9km NE of Aguanga, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537290818871,https://earthquake.usgs.gov/earthquakes/eventpage/ci38064119 +,,2018261002,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018261002&format=geojson,0.2006,,300.0,",pr2018261002,",2.01,md,,pr,4.0,"11km WNW of Puerto Real, Puerto Rico",0.3,62,",pr,",reviewed,1537239300770,"M 2.0 - 11km WNW of Puerto Real, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1537247654955,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018261002 +,,2000hg7a,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hg7a&format=geojson,1.041,,114.0,",us2000hg7a,",4.2,mb,,us,,"2km NE of Kato Achaia, Greece",0.84,271,",us,",reviewed,1537238925690,"M 4.2 - 2km NE of Kato Achaia, Greece",0,earthquake,",geoserve,origin,phase-data,",120.0,1537239779040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hg7a +,,00657027,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nn00657027&format=geojson,0.061,,95.29,",nn00657027,",1.1,ml,,nn,14.0,"23km WNW of Bridgeport, California",0.1888,19,",nn,",reviewed,1537238595731,"M 1.1 - 23km WNW of Bridgeport, California",0,earthquake,",geoserve,origin,phase-data,",-480.0,1537322665481,https://earthquake.usgs.gov/earthquakes/eventpage/nn00657027 +,,38064095,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38064095&format=geojson,0.04484,,49.0,",ci38064095,",0.47,ml,,ci,25.0,"8km WSW of Anza, CA",0.09,3,",ci,",reviewed,1537238523640,"M 0.5 - 8km WSW of Anza, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537547622882,https://earthquake.usgs.gov/earthquakes/eventpage/ci38064095 +,,70597617,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=hv70597617&format=geojson,0.01165,,40.0,",hv70597617,",1.83,md,,hv,20.0,"4km WSW of Volcano, Hawaii",0.1,52,",hv,",automatic,1537238078840,"M 1.8 - 4km WSW of Volcano, Hawaii",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537238258000,https://earthquake.usgs.gov/earthquakes/eventpage/hv70597617 +,,20257052,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257052&format=geojson,,,,",ak20257052,",1.0,ml,,ak,,"16km SSE of Redoubt Volcano, Alaska",0.56,15,",ak,",reviewed,1537237935120,"M 1.0 - 16km SSE of Redoubt Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537295853923,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257052 +,,73086816,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73086816&format=geojson,0.009613,,52.0,",nc73086816,",1.42,md,,nc,39.0,"6km NW of The Geysers, CA",0.06,31,",nc,",reviewed,1537236549440,"M 1.4 - 6km NW of The Geysers, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537313343176,https://earthquake.usgs.gov/earthquakes/eventpage/nc73086816 +,,20257049,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257049&format=geojson,,,,",ak20257049,",1.3,ml,,ak,,"78km WNW of Arctic Village, Alaska",0.67,26,",ak,",reviewed,1537236466605,"M 1.3 - 78km WNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537295471492,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257049 +,2.0,2000hg6v,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hg6v&format=geojson,3.078,1.0,68.0,",us2000hg6v,",5.1,mb,,us,,"34km NW of Finschhafen, Papua New Guinea",0.89,400,",us,",reviewed,1537236235470,"M 5.1 - 34km NW of Finschhafen, Papua New Guinea",1,earthquake,",dyfi,geoserve,origin,phase-data,",600.0,1537240358829,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hg6v +,,61780021,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=av61780021&format=geojson,0.04097,,299.0,",av61780021,",-0.27,ml,,av,5.0,"49km W of Tanaga Volcano, Alaska",0.31,0,",av,",reviewed,1537235444640,"M -0.3 - 49km W of Tanaga Volcano, Alaska",0,earthquake,",geoserve,origin,phase-data,",-600.0,1537390716340,https://earthquake.usgs.gov/earthquakes/eventpage/av61780021 +,,2018261004,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018261004&format=geojson,0.7525,,338.0,",pr2018261004,",2.86,md,,pr,6.0,"80km NW of San Antonio, Puerto Rico",0.29,126,",pr,",reviewed,1537234997910,"M 2.9 - 80km NW of San Antonio, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-300.0,1537252643155,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018261004 +,,2018261003,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018261003&format=geojson,0.6519,,335.0,",pr2018261003,",2.44,md,,pr,5.0,"69km NW of San Antonio, Puerto Rico",0.39,92,",pr,",reviewed,1537234935040,"M 2.4 - 69km NW of San Antonio, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1537249852888,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018261003 +,,20257044,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257044&format=geojson,,,,",ak20257044,",2.1,ml,,ak,,"70km NW of Nikolski, Alaska",0.67,68,",ak,",reviewed,1537234649752,"M 2.1 - 70km NW of Nikolski, Alaska",0,earthquake,",geoserve,origin,phase-data,",-660.0,1537295159684,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257044 +,2.7,2000hg6g,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hg6g&format=geojson,0.651,1.0,63.0,",us2000hg6g,",4.8,mb,,us,,"11km ESE of Rotorua, New Zealand",0.94,355,",us,",reviewed,1537234582260,"M 4.8 - 11km ESE of Rotorua, New Zealand",0,earthquake,",dyfi,geoserve,origin,phase-data,",720.0,1537236760850,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hg6g +,,20257039,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257039&format=geojson,,,,",ak20257039,",1.1,ml,,ak,,"59km NNE of Sutton-Alpine, Alaska",0.56,19,",ak,",automatic,1537233698073,"M 1.1 - 59km NNE of Sutton-Alpine, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537234527258,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257039 +,2.7,73086796,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73086796&format=geojson,0.5748,6.0,268.0,",nc73086796,",3.27,ml,2.04,nc,29.0,"68km W of Petrolia, CA",0.2,166,",nc,",reviewed,1537233245200,"M 3.3 - 68km W of Petrolia, CA",0,earthquake,",dyfi,geoserve,nearby-cities,origin,phase-data,scitech-link,shakemap,",-480.0,1537430857362,https://earthquake.usgs.gov/earthquakes/eventpage/nc73086796 +,,20257031,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257031&format=geojson,,,,",ak20257031,",2.5,ml,,ak,,"134km NW of Arctic Village, Alaska",0.91,96,",ak,",automatic,1537233039227,"M 2.5 - 134km NW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537233354029,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257031 +,,20257028,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257028&format=geojson,,,,",ak20257028,",1.5,ml,,ak,,"88km ESE of Whittier, Alaska",1.12,35,",ak,",automatic,1537232989781,"M 1.5 - 88km ESE of Whittier, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537233353793,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257028 +,,20257026,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257026&format=geojson,,,,",ak20257026,",2.0,ml,,ak,,"132km WNW of Arctic Village, Alaska",0.71,62,",ak,",automatic,1537232951978,"M 2.0 - 132km WNW of Arctic Village, Alaska",0,earthquake,",geoserve,origin,",-540.0,1537233252966,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257026 +,,2018261001,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018261001&format=geojson,0.7854,,238.0,",pr2018261001,",2.74,md,,pr,3.0,"36km NNW of San Antonio, Puerto Rico",0.06,116,",pr,",reviewed,1537232857340,"M 2.7 - 36km NNW of San Antonio, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1537247592270,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018261001 +,2.0,38064031,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38064031&format=geojson,0.122,1.0,193.0,",ci38064031,",3.08,ml,,ci,26.0,"5km SW of Delta, B.C., MX",0.35,146,",ci,",reviewed,1537232823500,"M 3.1 - 5km SW of Delta, B.C., MX",0,earthquake,",dyfi,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537280984499,https://earthquake.usgs.gov/earthquakes/eventpage/ci38064031 +,,38064023,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38064023&format=geojson,0.1156,,142.0,",ci38064023,",2.64,ml,,ci,20.0,"4km SW of Delta, B.C., MX",0.26,107,",ci,",reviewed,1537232796810,"M 2.6 - 4km SW of Delta, B.C., MX",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537281340288,https://earthquake.usgs.gov/earthquakes/eventpage/ci38064023 +,,20257023,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ak20257023&format=geojson,,,,",ak20257023,",1.1,ml,,ak,,"11km E of Healy, Alaska",0.55,19,",ak,",reviewed,1537232056478,"M 1.1 - 11km E of Healy, Alaska",0,earthquake,",geoserve,origin,phase-data,",-540.0,1537294676737,https://earthquake.usgs.gov/earthquakes/eventpage/ak20257023 +,,2000hg5w,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hg5w&format=geojson,1.663,,40.0,",us2000hg5w,",4.4,mb,,us,,"58km W of San Antonio de los Cobres, Argentina",0.81,298,",us,",reviewed,1537231966170,"M 4.4 - 58km W of San Antonio de los Cobres, Argentina",0,earthquake,",geoserve,origin,phase-data,",-180.0,1538871593040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hg5w +,,38064007,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38064007&format=geojson,0.04743,,113.0,",ci38064007,",2.81,ml,,ci,29.0,"8km NW of Delta, B.C., MX",0.36,121,",ci,",reviewed,1537231284810,"M 2.8 - 8km NW of Delta, B.C., MX",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537234531589,https://earthquake.usgs.gov/earthquakes/eventpage/ci38064007 +,,2000hjsq,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=us2000hjsq&format=geojson,1.296,,61.0,",us2000hjsq,",4.3,mb,,us,,"19km NE of Cateel, Philippines",0.84,284,",us,",reviewed,1537231275500,"M 4.3 - 19km NE of Cateel, Philippines",0,earthquake,",geoserve,origin,phase-data,",480.0,1538890521040,https://earthquake.usgs.gov/earthquakes/eventpage/us2000hjsq +,,73086786,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73086786&format=geojson,0.01039,,130.0,",nc73086786,",0.4,md,,nc,12.0,"8km ENE of Mammoth Lakes, CA",0.05,2,",nc,",reviewed,1537231090700,"M 0.4 - 8km ENE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537232594741,https://earthquake.usgs.gov/earthquakes/eventpage/nc73086786 +,,73086781,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73086781&format=geojson,0.01208,,75.0,",nc73086781,",0.6,md,,nc,9.0,"4km ENE of Mammoth Lakes, CA",0.03,6,",nc,",reviewed,1537230828440,"M 0.6 - 4km ENE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537232444493,https://earthquake.usgs.gov/earthquakes/eventpage/nc73086781 +,,38063991,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38063991&format=geojson,0.02305,,48.0,",ci38063991,",1.06,ml,,ci,27.0,"2km W of Julian, CA",0.2,17,",ci,",reviewed,1537230357100,"M 1.1 - 2km W of Julian, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537276765017,https://earthquake.usgs.gov/earthquakes/eventpage/ci38063991 +,,38063983,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38063983&format=geojson,0.04272,,56.0,",ci38063983,",0.51,ml,,ci,25.0,"4km WNW of Julian, CA",0.15,4,",ci,",reviewed,1537230344890,"M 0.5 - 4km WNW of Julian, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537290279205,https://earthquake.usgs.gov/earthquakes/eventpage/ci38063983 +,,38063975,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38063975&format=geojson,0.03652,,26.0,",ci38063975,",1.82,ml,,ci,51.0,"4km W of Julian, CA",0.23,51,",ci,",reviewed,1537230230260,"M 1.8 - 4km W of Julian, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537276829920,https://earthquake.usgs.gov/earthquakes/eventpage/ci38063975 +,,73086771,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=nc73086771&format=geojson,0.01806,,185.0,",nc73086771,",0.62,md,,nc,13.0,"9km ENE of Mammoth Lakes, CA",0.03,6,",nc,",reviewed,1537230228060,"M 0.6 - 9km ENE of Mammoth Lakes, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,",-480.0,1537285598315,https://earthquake.usgs.gov/earthquakes/eventpage/nc73086771 +,,38063967,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38063967&format=geojson,0.03041,,50.0,",ci38063967,",1.0,ml,,ci,28.0,"3km W of Julian, CA",0.21,15,",ci,",reviewed,1537230135130,"M 1.0 - 3km W of Julian, CA",0,earthquake,",geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537276800970,https://earthquake.usgs.gov/earthquakes/eventpage/ci38063967 +,,2018261000,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=pr2018261000&format=geojson,0.4526,,276.0,",pr2018261000,",2.4,md,,pr,9.0,"35km NNE of Hatillo, Puerto Rico",0.41,89,",pr,",reviewed,1537229908180,"M 2.4 - 35km NNE of Hatillo, Puerto Rico",0,earthquake,",geoserve,origin,phase-data,",-240.0,1537243777410,https://earthquake.usgs.gov/earthquakes/eventpage/pr2018261000 +,,38063959,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38063959&format=geojson,0.01865,,61.0,",ci38063959,",1.1,ml,,ci,27.0,"9km NE of Aguanga, CA",0.1,19,",ci,",reviewed,1537229545350,"M 1.1 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537230211640,https://earthquake.usgs.gov/earthquakes/eventpage/ci38063959 +,,38063935,https://earthquake.usgs.gov/fdsnws/event/1/query?eventid=ci38063935&format=geojson,0.01698,,39.0,",ci38063935,",0.66,ml,,ci,24.0,"9km NE of Aguanga, CA",0.1,7,",ci,",reviewed,1537228864470,"M 0.7 - 9km NE of Aguanga, CA",0,earthquake,",focal-mechanism,geoserve,nearby-cities,origin,phase-data,scitech-link,",-480.0,1537305830770,https://earthquake.usgs.gov/earthquakes/eventpage/ci38063935 diff --git a/PythonAI/JupyterLab/data/long_data.csv b/PythonAI/JupyterLab/data/long_data.csv new file mode 100644 index 0000000..76897a6 --- /dev/null +++ b/PythonAI/JupyterLab/data/long_data.csv @@ -0,0 +1,94 @@ +attributes,datatype,date,station,value +",,H,0700",TMAX,2018-10-01T00:00:00,GHCND:USC00280907,21.1 +",,H,0700",TMIN,2018-10-01T00:00:00,GHCND:USC00280907,8.9 +",,H,0700",TOBS,2018-10-01T00:00:00,GHCND:USC00280907,13.9 +",,H,0700",TMAX,2018-10-02T00:00:00,GHCND:USC00280907,23.9 +",,H,0700",TMIN,2018-10-02T00:00:00,GHCND:USC00280907,13.9 +",,H,0700",TOBS,2018-10-02T00:00:00,GHCND:USC00280907,17.2 +",,H,0700",TMAX,2018-10-03T00:00:00,GHCND:USC00280907,25.0 +",,H,0700",TMIN,2018-10-03T00:00:00,GHCND:USC00280907,15.6 +",,H,0700",TOBS,2018-10-03T00:00:00,GHCND:USC00280907,16.1 +",,H,0700",TMAX,2018-10-04T00:00:00,GHCND:USC00280907,22.8 +",,H,0700",TMIN,2018-10-04T00:00:00,GHCND:USC00280907,11.7 +",,H,0700",TOBS,2018-10-04T00:00:00,GHCND:USC00280907,11.7 +",,H,0700",TMAX,2018-10-05T00:00:00,GHCND:USC00280907,23.3 +",,H,0700",TMIN,2018-10-05T00:00:00,GHCND:USC00280907,11.7 +",,H,0700",TOBS,2018-10-05T00:00:00,GHCND:USC00280907,18.9 +",,H,0700",TMAX,2018-10-06T00:00:00,GHCND:USC00280907,20.0 +",,H,0700",TMIN,2018-10-06T00:00:00,GHCND:USC00280907,13.3 +",,H,0700",TOBS,2018-10-06T00:00:00,GHCND:USC00280907,16.1 +",,H,0700",TMAX,2018-10-07T00:00:00,GHCND:USC00280907,20.0 +",,H,0700",TMIN,2018-10-07T00:00:00,GHCND:USC00280907,16.1 +",,H,0700",TOBS,2018-10-07T00:00:00,GHCND:USC00280907,20.0 +",,H,0700",TMAX,2018-10-08T00:00:00,GHCND:USC00280907,26.7 +",,H,0700",TMIN,2018-10-08T00:00:00,GHCND:USC00280907,17.8 +",,H,0700",TOBS,2018-10-08T00:00:00,GHCND:USC00280907,17.8 +",,H,0700",TMAX,2018-10-09T00:00:00,GHCND:USC00280907,18.9 +",,H,0700",TMIN,2018-10-09T00:00:00,GHCND:USC00280907,17.2 +",,H,0700",TOBS,2018-10-09T00:00:00,GHCND:USC00280907,17.8 +",,H,0700",TMAX,2018-10-10T00:00:00,GHCND:USC00280907,24.4 +",,H,0700",TMIN,2018-10-10T00:00:00,GHCND:USC00280907,17.2 +",,H,0700",TOBS,2018-10-10T00:00:00,GHCND:USC00280907,18.3 +",,H,0700",TMAX,2018-10-11T00:00:00,GHCND:USC00280907,26.1 +",,H,0700",TMIN,2018-10-11T00:00:00,GHCND:USC00280907,17.8 +",,H,0700",TOBS,2018-10-11T00:00:00,GHCND:USC00280907,21.7 +",,H,0700",TMAX,2018-10-12T00:00:00,GHCND:USC00280907,22.8 +",,H,0700",TMIN,2018-10-12T00:00:00,GHCND:USC00280907,14.4 +",,H,0700",TOBS,2018-10-12T00:00:00,GHCND:USC00280907,15.6 +",,H,0700",TMAX,2018-10-13T00:00:00,GHCND:USC00280907,15.6 +",,H,0700",TMIN,2018-10-13T00:00:00,GHCND:USC00280907,7.2 +",,H,0700",TOBS,2018-10-13T00:00:00,GHCND:USC00280907,8.3 +",,H,0700",TMAX,2018-10-14T00:00:00,GHCND:USC00280907,13.3 +",,H,0700",TMIN,2018-10-14T00:00:00,GHCND:USC00280907,5.6 +",,H,0700",TOBS,2018-10-14T00:00:00,GHCND:USC00280907,6.7 +",,H,0700",TMAX,2018-10-15T00:00:00,GHCND:USC00280907,13.3 +",,H,0700",TMIN,2018-10-15T00:00:00,GHCND:USC00280907,6.7 +",,H,0700",TOBS,2018-10-15T00:00:00,GHCND:USC00280907,10.0 +",,H,0700",TMAX,2018-10-16T00:00:00,GHCND:USC00280907,18.9 +",,H,0700",TMIN,2018-10-16T00:00:00,GHCND:USC00280907,7.8 +",,H,0700",TOBS,2018-10-16T00:00:00,GHCND:USC00280907,7.8 +",,H,0700",TMAX,2018-10-17T00:00:00,GHCND:USC00280907,13.3 +",,H,0700",TMIN,2018-10-17T00:00:00,GHCND:USC00280907,3.3 +",,H,0700",TOBS,2018-10-17T00:00:00,GHCND:USC00280907,5.0 +",,H,0700",TMAX,2018-10-18T00:00:00,GHCND:USC00280907,16.1 +",,H,0700",TMIN,2018-10-18T00:00:00,GHCND:USC00280907,4.4 +",,H,0700",TOBS,2018-10-18T00:00:00,GHCND:USC00280907,5.0 +",,H,0700",TMAX,2018-10-19T00:00:00,GHCND:USC00280907,10.0 +",,H,0700",TMIN,2018-10-19T00:00:00,GHCND:USC00280907,-1.1 +",,H,0700",TOBS,2018-10-19T00:00:00,GHCND:USC00280907,0.0 +",,H,0700",TMAX,2018-10-20T00:00:00,GHCND:USC00280907,15.0 +",,H,0700",TMIN,2018-10-20T00:00:00,GHCND:USC00280907,-0.6 +",,H,0700",TOBS,2018-10-20T00:00:00,GHCND:USC00280907,10.6 +",,H,0700",TMAX,2018-10-21T00:00:00,GHCND:USC00280907,16.7 +",,H,0700",TMIN,2018-10-21T00:00:00,GHCND:USC00280907,7.8 +",,H,0700",TOBS,2018-10-21T00:00:00,GHCND:USC00280907,7.8 +",,H,0700",TMAX,2018-10-22T00:00:00,GHCND:USC00280907,7.8 +",,H,0700",TMIN,2018-10-22T00:00:00,GHCND:USC00280907,-1.1 +",,H,0700",TOBS,2018-10-22T00:00:00,GHCND:USC00280907,-1.1 +",,H,0700",TMAX,2018-10-23T00:00:00,GHCND:USC00280907,15.6 +",,H,0700",TMIN,2018-10-23T00:00:00,GHCND:USC00280907,-1.1 +",,H,0700",TOBS,2018-10-23T00:00:00,GHCND:USC00280907,10.0 +",,H,0700",TMAX,2018-10-24T00:00:00,GHCND:USC00280907,16.7 +",,H,0700",TMIN,2018-10-24T00:00:00,GHCND:USC00280907,4.4 +",,H,0700",TOBS,2018-10-24T00:00:00,GHCND:USC00280907,6.7 +",,H,0700",TMAX,2018-10-25T00:00:00,GHCND:USC00280907,11.7 +",,H,0700",TMIN,2018-10-25T00:00:00,GHCND:USC00280907,2.8 +",,H,0700",TOBS,2018-10-25T00:00:00,GHCND:USC00280907,2.8 +",,H,0700",TMAX,2018-10-26T00:00:00,GHCND:USC00280907,9.4 +",,H,0700",TMIN,2018-10-26T00:00:00,GHCND:USC00280907,-0.6 +",,H,0700",TOBS,2018-10-26T00:00:00,GHCND:USC00280907,-0.6 +",,H,0700",TMAX,2018-10-27T00:00:00,GHCND:USC00280907,8.9 +",,H,0700",TMIN,2018-10-27T00:00:00,GHCND:USC00280907,-0.6 +",,H,0700",TOBS,2018-10-27T00:00:00,GHCND:USC00280907,6.1 +",,H,0700",TMAX,2018-10-28T00:00:00,GHCND:USC00280907,8.3 +",,H,0700",TMIN,2018-10-28T00:00:00,GHCND:USC00280907,5.0 +",,H,0700",TOBS,2018-10-28T00:00:00,GHCND:USC00280907,7.2 +",,H,0700",TMAX,2018-10-29T00:00:00,GHCND:USC00280907,10.6 +",,H,0700",TMIN,2018-10-29T00:00:00,GHCND:USC00280907,6.7 +",,H,0700",TOBS,2018-10-29T00:00:00,GHCND:USC00280907,8.3 +",,H,0700",TMAX,2018-10-30T00:00:00,GHCND:USC00280907,13.3 +",,H,0700",TMIN,2018-10-30T00:00:00,GHCND:USC00280907,2.2 +",,H,0700",TOBS,2018-10-30T00:00:00,GHCND:USC00280907,5.0 +",,H,0700",TMAX,2018-10-31T00:00:00,GHCND:USC00280907,12.2 +",,H,0700",TMIN,2018-10-31T00:00:00,GHCND:USC00280907,0.0 +",,H,0700",TOBS,2018-10-31T00:00:00,GHCND:USC00280907,0.0 diff --git a/PythonAI/JupyterLab/data/nyc_temperatures.csv b/PythonAI/JupyterLab/data/nyc_temperatures.csv new file mode 100644 index 0000000..9db5521 --- /dev/null +++ b/PythonAI/JupyterLab/data/nyc_temperatures.csv @@ -0,0 +1,94 @@ +date,datatype,station,attributes,value +2018-10-01T00:00:00,TAVG,GHCND:USW00014732,"H,,S,",21.2 +2018-10-01T00:00:00,TMAX,GHCND:USW00014732,",,W,2400",25.6 +2018-10-01T00:00:00,TMIN,GHCND:USW00014732,",,W,2400",18.3 +2018-10-02T00:00:00,TAVG,GHCND:USW00014732,"H,,S,",22.7 +2018-10-02T00:00:00,TMAX,GHCND:USW00014732,",,W,2400",26.1 +2018-10-02T00:00:00,TMIN,GHCND:USW00014732,",,W,2400",19.4 +2018-10-03T00:00:00,TAVG,GHCND:USW00014732,"H,,S,",21.8 +2018-10-03T00:00:00,TMAX,GHCND:USW00014732,",,W,2400",25.0 +2018-10-03T00:00:00,TMIN,GHCND:USW00014732,",,W,2400",18.9 +2018-10-04T00:00:00,TAVG,GHCND:USW00014732,"H,,S,",21.3 +2018-10-04T00:00:00,TMAX,GHCND:USW00014732,",,W,2400",26.1 +2018-10-04T00:00:00,TMIN,GHCND:USW00014732,",,W,2400",17.8 +2018-10-05T00:00:00,TAVG,GHCND:USW00014732,"H,,S,",20.3 +2018-10-05T00:00:00,TMAX,GHCND:USW00014732,",,W,2400",22.8 +2018-10-05T00:00:00,TMIN,GHCND:USW00014732,",,W,2400",16.1 +2018-10-06T00:00:00,TAVG,GHCND:USW00014732,"H,,S,",18.7 +2018-10-06T00:00:00,TMAX,GHCND:USW00014732,",,W,2400",21.1 +2018-10-06T00:00:00,TMIN,GHCND:USW00014732,",,W,2400",17.8 +2018-10-07T00:00:00,TAVG,GHCND:USW00014732,"H,,S,",22.8 +2018-10-07T00:00:00,TMAX,GHCND:USW00014732,",,W,2400",27.8 +2018-10-07T00:00:00,TMIN,GHCND:USW00014732,",,W,2400",21.1 +2018-10-08T00:00:00,TAVG,GHCND:USW00014732,"H,,S,",20.9 +2018-10-08T00:00:00,TMAX,GHCND:USW00014732,",,W,2400",22.8 +2018-10-08T00:00:00,TMIN,GHCND:USW00014732,",,W,2400",18.3 +2018-10-09T00:00:00,TAVG,GHCND:USW00014732,"H,,S,",21.8 +2018-10-09T00:00:00,TMAX,GHCND:USW00014732,",,W,2400",25.6 +2018-10-09T00:00:00,TMIN,GHCND:USW00014732,",,W,2400",19.4 +2018-10-10T00:00:00,TAVG,GHCND:USW00014732,"H,,S,",23.8 +2018-10-10T00:00:00,TMAX,GHCND:USW00014732,",,W,2400",27.8 +2018-10-10T00:00:00,TMIN,GHCND:USW00014732,",,W,2400",21.7 +2018-10-11T00:00:00,TAVG,GHCND:USW00014732,"H,,S,",23.4 +2018-10-11T00:00:00,TMAX,GHCND:USW00014732,",,W,2400",26.7 +2018-10-11T00:00:00,TMIN,GHCND:USW00014732,",,W,2400",21.7 +2018-10-12T00:00:00,TAVG,GHCND:USW00014732,"H,,S,",18.3 +2018-10-12T00:00:00,TMAX,GHCND:USW00014732,",,W,2400",22.2 +2018-10-12T00:00:00,TMIN,GHCND:USW00014732,",,W,2400",12.2 +2018-10-13T00:00:00,TAVG,GHCND:USW00014732,"H,,S,",12.2 +2018-10-13T00:00:00,TMAX,GHCND:USW00014732,",,W,2400",15.0 +2018-10-13T00:00:00,TMIN,GHCND:USW00014732,",,W,2400",9.4 +2018-10-14T00:00:00,TAVG,GHCND:USW00014732,"H,,S,",12.9 +2018-10-14T00:00:00,TMAX,GHCND:USW00014732,",,W,2400",15.6 +2018-10-14T00:00:00,TMIN,GHCND:USW00014732,",,W,2400",10.6 +2018-10-15T00:00:00,TAVG,GHCND:USW00014732,"H,,S,",15.8 +2018-10-15T00:00:00,TMAX,GHCND:USW00014732,",,W,2400",21.1 +2018-10-15T00:00:00,TMIN,GHCND:USW00014732,",,W,2400",12.8 +2018-10-16T00:00:00,TAVG,GHCND:USW00014732,"H,,S,",14.3 +2018-10-16T00:00:00,TMAX,GHCND:USW00014732,",,W,2400",16.7 +2018-10-16T00:00:00,TMIN,GHCND:USW00014732,",,W,2400",9.4 +2018-10-17T00:00:00,TAVG,GHCND:USW00014732,"H,,S,",13.2 +2018-10-17T00:00:00,TMAX,GHCND:USW00014732,",,W,2400",17.8 +2018-10-17T00:00:00,TMIN,GHCND:USW00014732,",,W,2400",8.9 +2018-10-18T00:00:00,TAVG,GHCND:USW00014732,"H,,S,",9.6 +2018-10-18T00:00:00,TMAX,GHCND:USW00014732,",,W,2400",11.7 +2018-10-18T00:00:00,TMIN,GHCND:USW00014732,",,W,2400",6.7 +2018-10-19T00:00:00,TAVG,GHCND:USW00014732,"H,,S,",11.3 +2018-10-19T00:00:00,TMAX,GHCND:USW00014732,",,W,2400",17.2 +2018-10-19T00:00:00,TMIN,GHCND:USW00014732,",,W,2400",7.2 +2018-10-20T00:00:00,TAVG,GHCND:USW00014732,"H,,S,",15.0 +2018-10-20T00:00:00,TMAX,GHCND:USW00014732,",,W,2400",18.3 +2018-10-20T00:00:00,TMIN,GHCND:USW00014732,",,W,2400",12.2 +2018-10-21T00:00:00,TAVG,GHCND:USW00014732,"H,,S,",10.7 +2018-10-21T00:00:00,TMAX,GHCND:USW00014732,",,W,2400",12.2 +2018-10-21T00:00:00,TMIN,GHCND:USW00014732,",,W,2400",6.1 +2018-10-22T00:00:00,TAVG,GHCND:USW00014732,"H,,S,",8.3 +2018-10-22T00:00:00,TMAX,GHCND:USW00014732,",,W,2400",11.1 +2018-10-22T00:00:00,TMIN,GHCND:USW00014732,",,W,2400",5.6 +2018-10-23T00:00:00,TAVG,GHCND:USW00014732,"H,,S,",12.6 +2018-10-23T00:00:00,TMAX,GHCND:USW00014732,",,W,2400",19.4 +2018-10-23T00:00:00,TMIN,GHCND:USW00014732,",,W,2400",8.3 +2018-10-24T00:00:00,TAVG,GHCND:USW00014732,"H,,S,",11.0 +2018-10-24T00:00:00,TMAX,GHCND:USW00014732,",,W,2400",13.3 +2018-10-24T00:00:00,TMIN,GHCND:USW00014732,",,W,2400",7.8 +2018-10-25T00:00:00,TAVG,GHCND:USW00014732,"H,,S,",8.8 +2018-10-25T00:00:00,TMAX,GHCND:USW00014732,",,W,2400",11.1 +2018-10-25T00:00:00,TMIN,GHCND:USW00014732,",,W,2400",6.1 +2018-10-26T00:00:00,TAVG,GHCND:USW00014732,"H,,S,",7.3 +2018-10-26T00:00:00,TMAX,GHCND:USW00014732,",,W,2400",10.0 +2018-10-26T00:00:00,TMIN,GHCND:USW00014732,",,W,2400",5.6 +2018-10-27T00:00:00,TAVG,GHCND:USW00014732,"H,,S,",9.4 +2018-10-27T00:00:00,TMAX,GHCND:USW00014732,",,W,2400",11.7 +2018-10-27T00:00:00,TMIN,GHCND:USW00014732,",,W,2400",7.2 +2018-10-28T00:00:00,TAVG,GHCND:USW00014732,"H,,S,",10.2 +2018-10-28T00:00:00,TMAX,GHCND:USW00014732,",,W,2400",12.2 +2018-10-28T00:00:00,TMIN,GHCND:USW00014732,",,W,2400",8.3 +2018-10-29T00:00:00,TAVG,GHCND:USW00014732,"H,,S,",11.8 +2018-10-29T00:00:00,TMAX,GHCND:USW00014732,",,W,2400",14.4 +2018-10-29T00:00:00,TMIN,GHCND:USW00014732,",,W,2400",9.4 +2018-10-30T00:00:00,TAVG,GHCND:USW00014732,"H,,S,",10.2 +2018-10-30T00:00:00,TMAX,GHCND:USW00014732,",,W,2400",13.9 +2018-10-30T00:00:00,TMIN,GHCND:USW00014732,",,W,2400",7.2 +2018-10-31T00:00:00,TAVG,GHCND:USW00014732,"H,,S,",12.6 +2018-10-31T00:00:00,TMAX,GHCND:USW00014732,",,W,2400",17.8 +2018-10-31T00:00:00,TMIN,GHCND:USW00014732,",,W,2400",7.2 diff --git a/PythonAI/JupyterLab/data/sp500.csv b/PythonAI/JupyterLab/data/sp500.csv new file mode 100644 index 0000000..b6ed6bc --- /dev/null +++ b/PythonAI/JupyterLab/data/sp500.csv @@ -0,0 +1,503 @@ +date,high,low,open,close,volume,adj_close +2017-01-03,2263.8798828125,2245.1298828125,2251.570068359375,2257.830078125,3770530000,2257.830078125 +2017-01-04,2272.820068359375,2261.60009765625,2261.60009765625,2270.75,3764890000,2270.75 +2017-01-05,2271.5,2260.449951171875,2268.179931640625,2269.0,3761820000,2269.0 +2017-01-06,2282.10009765625,2264.06005859375,2271.139892578125,2276.97998046875,3339890000,2276.97998046875 +2017-01-09,2275.489990234375,2268.89990234375,2273.590087890625,2268.89990234375,3217610000,2268.89990234375 +2017-01-10,2279.27001953125,2265.27001953125,2269.719970703125,2268.89990234375,3638790000,2268.89990234375 +2017-01-11,2275.320068359375,2260.830078125,2268.60009765625,2275.320068359375,3620410000,2275.320068359375 +2017-01-12,2271.780029296875,2254.25,2271.139892578125,2270.43994140625,3462130000,2270.43994140625 +2017-01-13,2278.679931640625,2271.510009765625,2272.739990234375,2274.639892578125,3081270000,2274.639892578125 +2017-01-17,2272.080078125,2262.81005859375,2269.139892578125,2267.889892578125,3584990000,2267.889892578125 +2017-01-18,2272.010009765625,2263.35009765625,2269.139892578125,2271.889892578125,3315250000,2271.889892578125 +2017-01-19,2274.330078125,2258.409912109375,2271.89990234375,2263.68994140625,3165970000,2263.68994140625 +2017-01-20,2276.9599609375,2265.010009765625,2269.9599609375,2271.31005859375,3524970000,2271.31005859375 +2017-01-23,2271.780029296875,2257.02001953125,2267.780029296875,2265.199951171875,3152710000,2265.199951171875 +2017-01-24,2284.6298828125,2266.679931640625,2267.8798828125,2280.070068359375,3810960000,2280.070068359375 +2017-01-25,2299.550048828125,2288.8798828125,2288.8798828125,2298.3701171875,3846020000,2298.3701171875 +2017-01-26,2300.989990234375,2294.080078125,2298.6298828125,2296.679931640625,3610360000,2296.679931640625 +2017-01-27,2299.02001953125,2291.6201171875,2299.02001953125,2294.68994140625,3135890000,2294.68994140625 +2017-01-30,2286.010009765625,2268.0400390625,2286.010009765625,2280.89990234375,3591270000,2280.89990234375 +2017-01-31,2279.090087890625,2267.2099609375,2274.02001953125,2278.8701171875,4087450000,2278.8701171875 +2017-02-01,2289.139892578125,2272.43994140625,2285.590087890625,2279.550048828125,3916610000,2279.550048828125 +2017-02-02,2283.969970703125,2271.64990234375,2276.68994140625,2280.85009765625,3807710000,2280.85009765625 +2017-02-03,2298.31005859375,2287.8798828125,2288.5400390625,2297.419921875,3597970000,2297.419921875 +2017-02-06,2296.179931640625,2288.570068359375,2294.280029296875,2292.56005859375,3109050000,2292.56005859375 +2017-02-07,2299.39990234375,2290.159912109375,2295.8701171875,2293.080078125,3448690000,2293.080078125 +2017-02-08,2295.909912109375,2285.3798828125,2289.550048828125,2294.669921875,3609740000,2294.669921875 +2017-02-09,2311.080078125,2296.610107421875,2296.699951171875,2307.8701171875,3677940000,2307.8701171875 +2017-02-10,2319.22998046875,2311.10009765625,2312.27001953125,2316.10009765625,3475020000,2316.10009765625 +2017-02-13,2331.580078125,2321.419921875,2321.719970703125,2328.25,3349730000,2328.25 +2017-02-14,2337.580078125,2322.169921875,2326.1201171875,2337.580078125,3520910000,2337.580078125 +2017-02-15,2351.300048828125,2334.81005859375,2335.580078125,2349.25,3775590000,2349.25 +2017-02-16,2351.31005859375,2338.8701171875,2349.639892578125,2347.219970703125,3672370000,2347.219970703125 +2017-02-17,2351.159912109375,2339.580078125,2343.010009765625,2351.159912109375,3513060000,2351.159912109375 +2017-02-21,2366.7099609375,2354.909912109375,2354.909912109375,2365.3798828125,3579780000,2365.3798828125 +2017-02-22,2365.1298828125,2358.340087890625,2361.110107421875,2362.820068359375,3468670000,2362.820068359375 +2017-02-23,2368.260009765625,2355.090087890625,2367.5,2363.81005859375,4015260000,2363.81005859375 +2017-02-24,2367.340087890625,2352.8701171875,2355.72998046875,2367.340087890625,3831570000,2367.340087890625 +2017-02-27,2371.5400390625,2361.8701171875,2365.22998046875,2369.75,3582610000,2369.75 +2017-02-28,2367.7900390625,2358.9599609375,2366.080078125,2363.639892578125,4210140000,2363.639892578125 +2017-03-01,2400.97998046875,2380.1298828125,2380.1298828125,2395.9599609375,4345180000,2395.9599609375 +2017-03-02,2394.75,2380.169921875,2394.75,2381.919921875,3821320000,2381.919921875 +2017-03-03,2383.889892578125,2375.389892578125,2380.919921875,2383.1201171875,3555260000,2383.1201171875 +2017-03-06,2378.800048828125,2367.97998046875,2375.22998046875,2375.31005859375,3232700000,2375.31005859375 +2017-03-07,2375.1201171875,2365.510009765625,2370.739990234375,2368.389892578125,3518390000,2368.389892578125 +2017-03-08,2373.090087890625,2361.010009765625,2369.81005859375,2362.97998046875,3812100000,2362.97998046875 +2017-03-09,2369.080078125,2354.5400390625,2363.489990234375,2364.8701171875,3716340000,2364.8701171875 +2017-03-10,2376.860107421875,2363.0400390625,2372.52001953125,2372.60009765625,3432950000,2372.60009765625 +2017-03-13,2374.419921875,2368.52001953125,2371.56005859375,2373.469970703125,3133900000,2373.469970703125 +2017-03-14,2368.550048828125,2358.179931640625,2368.550048828125,2365.449951171875,3172630000,2365.449951171875 +2017-03-15,2390.010009765625,2368.93994140625,2370.340087890625,2385.260009765625,3906840000,2385.260009765625 +2017-03-16,2388.10009765625,2377.179931640625,2387.7099609375,2381.3798828125,3365660000,2381.3798828125 +2017-03-17,2385.7099609375,2377.639892578125,2383.7099609375,2378.25,5178040000,2378.25 +2017-03-20,2379.550048828125,2369.659912109375,2378.239990234375,2373.469970703125,3054930000,2373.469970703125 +2017-03-21,2381.929931640625,2341.89990234375,2379.320068359375,2344.02001953125,4265590000,2344.02001953125 +2017-03-22,2351.81005859375,2336.449951171875,2343.0,2348.449951171875,3572730000,2348.449951171875 +2017-03-23,2358.919921875,2342.1298828125,2345.969970703125,2345.9599609375,3260600000,2345.9599609375 +2017-03-24,2356.219970703125,2335.739990234375,2350.419921875,2343.97998046875,2975130000,2343.97998046875 +2017-03-27,2344.89990234375,2322.25,2329.110107421875,2341.590087890625,3240230000,2341.590087890625 +2017-03-28,2363.780029296875,2337.6298828125,2339.7900390625,2358.570068359375,3367780000,2358.570068359375 +2017-03-29,2363.360107421875,2352.93994140625,2356.5400390625,2361.1298828125,3106940000,2361.1298828125 +2017-03-30,2370.419921875,2358.580078125,2361.31005859375,2368.06005859375,3158420000,2368.06005859375 +2017-03-31,2370.35009765625,2362.60009765625,2364.820068359375,2362.719970703125,3354110000,2362.719970703125 +2017-04-03,2365.8701171875,2344.72998046875,2362.340087890625,2358.840087890625,3416400000,2358.840087890625 +2017-04-04,2360.530029296875,2350.719970703125,2354.760009765625,2360.159912109375,3206240000,2360.159912109375 +2017-04-05,2378.360107421875,2350.52001953125,2366.590087890625,2352.949951171875,3770520000,2352.949951171875 +2017-04-06,2364.159912109375,2348.89990234375,2353.7900390625,2357.489990234375,3201920000,2357.489990234375 +2017-04-07,2363.760009765625,2350.739990234375,2356.590087890625,2355.5400390625,3053150000,2355.5400390625 +2017-04-10,2366.3701171875,2351.5,2357.159912109375,2357.159912109375,2785410000,2357.159912109375 +2017-04-11,2355.219970703125,2337.25,2353.919921875,2353.780029296875,3117420000,2353.780029296875 +2017-04-12,2352.719970703125,2341.179931640625,2352.14990234375,2344.929931640625,3196950000,2344.929931640625 +2017-04-13,2348.260009765625,2328.949951171875,2341.97998046875,2328.949951171875,3143890000,2328.949951171875 +2017-04-17,2349.139892578125,2332.510009765625,2332.6201171875,2349.010009765625,2824710000,2349.010009765625 +2017-04-18,2348.35009765625,2334.5400390625,2342.530029296875,2342.18994140625,3269840000,2342.18994140625 +2017-04-19,2352.6298828125,2335.050048828125,2346.7900390625,2338.169921875,3519900000,2338.169921875 +2017-04-20,2361.3701171875,2340.909912109375,2342.68994140625,2355.840087890625,3647420000,2355.840087890625 +2017-04-21,2356.179931640625,2344.510009765625,2354.739990234375,2348.68994140625,3503360000,2348.68994140625 +2017-04-24,2376.97998046875,2369.18994140625,2370.330078125,2374.14990234375,3690650000,2374.14990234375 +2017-04-25,2392.47998046875,2381.14990234375,2381.510009765625,2388.610107421875,3995240000,2388.610107421875 +2017-04-26,2398.159912109375,2386.780029296875,2388.97998046875,2387.449951171875,4105920000,2387.449951171875 +2017-04-27,2392.10009765625,2382.679931640625,2389.699951171875,2388.77001953125,4098460000,2388.77001953125 +2017-04-28,2393.679931640625,2382.360107421875,2393.679931640625,2384.199951171875,3718270000,2384.199951171875 +2017-05-01,2394.489990234375,2384.830078125,2388.5,2388.330078125,3199240000,2388.330078125 +2017-05-02,2392.929931640625,2385.820068359375,2391.050048828125,2391.169921875,3813680000,2391.169921875 +2017-05-03,2389.820068359375,2379.75,2386.5,2388.1298828125,3893990000,2388.1298828125 +2017-05-04,2391.429931640625,2380.35009765625,2389.7900390625,2389.52001953125,4362540000,2389.52001953125 +2017-05-05,2399.2900390625,2389.3798828125,2392.3701171875,2399.2900390625,3540140000,2399.2900390625 +2017-05-08,2401.360107421875,2393.919921875,2399.93994140625,2399.3798828125,3429440000,2399.3798828125 +2017-05-09,2403.8701171875,2392.43994140625,2401.580078125,2396.919921875,3653590000,2396.919921875 +2017-05-10,2399.739990234375,2392.7900390625,2396.7900390625,2399.6298828125,3643530000,2399.6298828125 +2017-05-11,2395.719970703125,2381.739990234375,2394.840087890625,2394.43994140625,3727420000,2394.43994140625 +2017-05-12,2392.43994140625,2387.18994140625,2392.43994140625,2390.89990234375,3305630000,2390.89990234375 +2017-05-15,2404.050048828125,2393.93994140625,2393.97998046875,2402.320068359375,3473600000,2402.320068359375 +2017-05-16,2405.77001953125,2396.050048828125,2404.550048828125,2400.669921875,3420790000,2400.669921875 +2017-05-17,2384.8701171875,2356.2099609375,2382.949951171875,2357.030029296875,4163000000,2357.030029296875 +2017-05-18,2375.739990234375,2352.719970703125,2354.68994140625,2365.719970703125,4319420000,2365.719970703125 +2017-05-19,2389.06005859375,2370.429931640625,2371.3701171875,2381.72998046875,3825160000,2381.72998046875 +2017-05-22,2395.4599609375,2386.919921875,2387.2099609375,2394.02001953125,3172830000,2394.02001953125 +2017-05-23,2400.85009765625,2393.8798828125,2397.0400390625,2398.419921875,3213570000,2398.419921875 +2017-05-24,2405.580078125,2397.989990234375,2401.409912109375,2404.389892578125,3389900000,2404.389892578125 +2017-05-25,2418.7099609375,2408.010009765625,2409.5400390625,2415.070068359375,3535390000,2415.070068359375 +2017-05-26,2416.679931640625,2412.199951171875,2414.5,2415.820068359375,2805040000,2415.820068359375 +2017-05-30,2415.260009765625,2409.429931640625,2411.669921875,2412.909912109375,3203160000,2412.909912109375 +2017-05-31,2415.989990234375,2403.590087890625,2415.6298828125,2411.800048828125,4516110000,2411.800048828125 +2017-06-01,2430.06005859375,2413.5400390625,2415.64990234375,2430.06005859375,3857140000,2430.06005859375 +2017-06-02,2440.22998046875,2427.7099609375,2431.280029296875,2439.070068359375,3461680000,2439.070068359375 +2017-06-05,2439.550048828125,2434.320068359375,2437.830078125,2436.10009765625,2912600000,2436.10009765625 +2017-06-06,2436.2099609375,2428.1201171875,2431.919921875,2429.330078125,3357840000,2429.330078125 +2017-06-07,2435.280029296875,2424.75,2432.030029296875,2433.139892578125,3572300000,2433.139892578125 +2017-06-08,2439.27001953125,2427.93994140625,2434.27001953125,2433.7900390625,3728860000,2433.7900390625 +2017-06-09,2446.199951171875,2415.699951171875,2436.389892578125,2431.77001953125,4027340000,2431.77001953125 +2017-06-12,2430.3798828125,2419.969970703125,2425.8798828125,2429.389892578125,4027750000,2429.389892578125 +2017-06-13,2441.489990234375,2431.280029296875,2434.14990234375,2440.35009765625,3275500000,2440.35009765625 +2017-06-14,2443.75,2428.340087890625,2443.75,2437.919921875,3555590000,2437.919921875 +2017-06-15,2433.949951171875,2418.530029296875,2424.139892578125,2432.4599609375,3353050000,2432.4599609375 +2017-06-16,2433.14990234375,2422.8798828125,2431.239990234375,2433.14990234375,5284720000,2433.14990234375 +2017-06-19,2453.820068359375,2441.7900390625,2442.550048828125,2453.4599609375,3264700000,2453.4599609375 +2017-06-20,2450.659912109375,2436.60009765625,2450.659912109375,2437.030029296875,3416510000,2437.030029296875 +2017-06-21,2442.22998046875,2430.739990234375,2439.31005859375,2435.610107421875,3594820000,2435.610107421875 +2017-06-22,2441.6201171875,2433.27001953125,2437.39990234375,2434.5,3468210000,2434.5 +2017-06-23,2441.39990234375,2431.110107421875,2434.64990234375,2438.300048828125,5278330000,2438.300048828125 +2017-06-26,2450.419921875,2437.030029296875,2443.320068359375,2439.070068359375,3238970000,2439.070068359375 +2017-06-27,2440.14990234375,2419.3798828125,2436.340087890625,2419.3798828125,3563910000,2419.3798828125 +2017-06-28,2442.969970703125,2428.02001953125,2428.699951171875,2440.68994140625,3500800000,2440.68994140625 +2017-06-29,2442.72998046875,2405.699951171875,2442.3798828125,2419.699951171875,3900280000,2419.699951171875 +2017-06-30,2432.7099609375,2421.64990234375,2429.199951171875,2423.409912109375,3361590000,2423.409912109375 +2017-07-03,2439.169921875,2428.68994140625,2431.389892578125,2429.010009765625,1962290000,2429.010009765625 +2017-07-05,2434.89990234375,2422.050048828125,2430.780029296875,2432.5400390625,3367220000,2432.5400390625 +2017-07-06,2424.280029296875,2407.699951171875,2423.43994140625,2409.75,3364520000,2409.75 +2017-07-07,2426.919921875,2413.52001953125,2413.52001953125,2425.179931640625,2901330000,2425.179931640625 +2017-07-10,2432.0,2422.27001953125,2424.510009765625,2427.429931640625,2999130000,2427.429931640625 +2017-07-11,2429.300048828125,2412.7900390625,2427.35009765625,2425.530029296875,3106750000,2425.530029296875 +2017-07-12,2445.760009765625,2435.75,2435.75,2443.25,3171620000,2443.25 +2017-07-13,2449.320068359375,2441.68994140625,2444.989990234375,2447.830078125,3067670000,2447.830078125 +2017-07-14,2463.5400390625,2446.68994140625,2449.159912109375,2459.27001953125,2736640000,2459.27001953125 +2017-07-17,2462.820068359375,2457.159912109375,2459.5,2459.139892578125,2793170000,2459.139892578125 +2017-07-18,2460.919921875,2450.340087890625,2455.8798828125,2460.610107421875,2962130000,2460.610107421875 +2017-07-19,2473.830078125,2463.85009765625,2463.85009765625,2473.830078125,3059760000,2473.830078125 +2017-07-20,2477.6201171875,2468.429931640625,2475.56005859375,2473.449951171875,3182780000,2473.449951171875 +2017-07-21,2472.5400390625,2465.06005859375,2467.39990234375,2472.5400390625,3059570000,2472.5400390625 +2017-07-24,2473.10009765625,2466.320068359375,2472.0400390625,2469.909912109375,3010240000,2469.909912109375 +2017-07-25,2481.239990234375,2474.909912109375,2477.8798828125,2477.1298828125,4108060000,2477.1298828125 +2017-07-26,2481.68994140625,2474.93994140625,2479.969970703125,2477.830078125,3557020000,2477.830078125 +2017-07-27,2484.0400390625,2459.929931640625,2482.760009765625,2475.419921875,3995520000,2475.419921875 +2017-07-28,2473.530029296875,2464.659912109375,2469.1201171875,2472.10009765625,3294770000,2472.10009765625 +2017-07-31,2477.9599609375,2468.530029296875,2475.93994140625,2470.300048828125,3469210000,2470.300048828125 +2017-08-01,2478.510009765625,2471.139892578125,2477.10009765625,2476.35009765625,3460860000,2476.35009765625 +2017-08-02,2480.3798828125,2466.47998046875,2480.3798828125,2477.570068359375,3478580000,2477.570068359375 +2017-08-03,2476.030029296875,2468.85009765625,2476.030029296875,2472.159912109375,3645020000,2472.159912109375 +2017-08-04,2480.0,2472.080078125,2476.8798828125,2476.830078125,3235140000,2476.830078125 +2017-08-07,2480.949951171875,2475.8798828125,2477.139892578125,2480.909912109375,2931780000,2480.909912109375 +2017-08-08,2490.8701171875,2470.320068359375,2478.35009765625,2474.919921875,3344640000,2474.919921875 +2017-08-09,2474.409912109375,2462.080078125,2465.35009765625,2474.02001953125,3308060000,2474.02001953125 +2017-08-10,2465.3798828125,2437.75,2465.3798828125,2438.2099609375,3621070000,2438.2099609375 +2017-08-11,2448.090087890625,2437.85009765625,2441.0400390625,2441.320068359375,3159930000,2441.320068359375 +2017-08-14,2468.219970703125,2454.9599609375,2454.9599609375,2465.840087890625,2822550000,2465.840087890625 +2017-08-15,2468.89990234375,2461.610107421875,2468.659912109375,2464.610107421875,2913100000,2464.610107421875 +2017-08-16,2474.929931640625,2463.860107421875,2468.6298828125,2468.110107421875,2953650000,2468.110107421875 +2017-08-17,2465.02001953125,2430.010009765625,2462.949951171875,2430.010009765625,3142620000,2430.010009765625 +2017-08-18,2440.27001953125,2420.68994140625,2427.639892578125,2425.550048828125,3415680000,2425.550048828125 +2017-08-21,2430.580078125,2417.35009765625,2425.5,2428.3701171875,2788150000,2428.3701171875 +2017-08-22,2454.77001953125,2433.669921875,2433.75,2452.510009765625,2777490000,2452.510009765625 +2017-08-23,2448.909912109375,2441.419921875,2444.8798828125,2444.0400390625,2785290000,2444.0400390625 +2017-08-24,2450.389892578125,2436.18994140625,2447.909912109375,2438.969970703125,2846590000,2438.969970703125 +2017-08-25,2453.9599609375,2442.219970703125,2444.719970703125,2443.050048828125,2588780000,2443.050048828125 +2017-08-28,2449.1201171875,2439.030029296875,2447.35009765625,2444.239990234375,2677700000,2444.239990234375 +2017-08-29,2449.18994140625,2428.199951171875,2431.93994140625,2446.300048828125,2737580000,2446.300048828125 +2017-08-30,2460.31005859375,2443.77001953125,2446.06005859375,2457.590087890625,2633660000,2457.590087890625 +2017-08-31,2475.010009765625,2462.64990234375,2462.64990234375,2471.64990234375,3348110000,2471.64990234375 +2017-09-01,2480.3798828125,2473.85009765625,2474.419921875,2476.550048828125,2710730000,2476.550048828125 +2017-09-05,2471.969970703125,2446.550048828125,2470.35009765625,2457.85009765625,3490260000,2457.85009765625 +2017-09-06,2469.639892578125,2459.199951171875,2463.830078125,2465.5400390625,3374410000,2465.5400390625 +2017-09-07,2468.6201171875,2460.2900390625,2468.06005859375,2465.10009765625,3353930000,2465.10009765625 +2017-09-08,2467.110107421875,2459.39990234375,2462.25,2461.429931640625,3302490000,2461.429931640625 +2017-09-11,2488.949951171875,2474.52001953125,2474.52001953125,2488.110107421875,3291760000,2488.110107421875 +2017-09-12,2496.77001953125,2490.3701171875,2491.93994140625,2496.47998046875,3230920000,2496.47998046875 +2017-09-13,2498.3701171875,2492.139892578125,2493.889892578125,2498.3701171875,3368050000,2498.3701171875 +2017-09-14,2498.429931640625,2491.35009765625,2494.56005859375,2495.6201171875,3414460000,2495.6201171875 +2017-09-15,2500.22998046875,2493.159912109375,2495.669921875,2500.22998046875,4853170000,2500.22998046875 +2017-09-18,2508.320068359375,2499.919921875,2502.510009765625,2503.8701171875,3194300000,2503.8701171875 +2017-09-19,2507.840087890625,2503.18994140625,2506.2900390625,2506.64990234375,3249100000,2506.64990234375 +2017-09-20,2508.85009765625,2496.669921875,2506.840087890625,2508.239990234375,3530010000,2508.239990234375 +2017-09-21,2507.159912109375,2499.0,2507.159912109375,2500.60009765625,2930860000,2500.60009765625 +2017-09-22,2503.469970703125,2496.5400390625,2497.260009765625,2502.219970703125,2865960000,2502.219970703125 +2017-09-25,2502.5400390625,2488.030029296875,2499.389892578125,2496.659912109375,3297890000,2496.659912109375 +2017-09-26,2503.510009765625,2495.1201171875,2501.0400390625,2496.840087890625,3043110000,2496.840087890625 +2017-09-27,2511.75,2495.909912109375,2503.300048828125,2507.0400390625,3456030000,2507.0400390625 +2017-09-28,2510.81005859375,2502.929931640625,2503.409912109375,2510.06005859375,3168620000,2510.06005859375 +2017-09-29,2519.43994140625,2507.989990234375,2509.9599609375,2519.360107421875,3211920000,2519.360107421875 +2017-10-02,2529.22998046875,2520.39990234375,2521.199951171875,2529.1201171875,3199730000,2529.1201171875 +2017-10-03,2535.1298828125,2528.85009765625,2530.340087890625,2534.580078125,3068850000,2534.580078125 +2017-10-04,2540.530029296875,2531.800048828125,2533.47998046875,2537.739990234375,3017120000,2537.739990234375 +2017-10-05,2552.510009765625,2540.02001953125,2540.860107421875,2552.070068359375,3045120000,2552.070068359375 +2017-10-06,2549.409912109375,2543.7900390625,2547.43994140625,2549.330078125,2884570000,2549.330078125 +2017-10-09,2551.820068359375,2541.60009765625,2551.389892578125,2544.72998046875,2483970000,2544.72998046875 +2017-10-10,2555.22998046875,2544.860107421875,2549.989990234375,2550.639892578125,2960500000,2550.639892578125 +2017-10-11,2555.239990234375,2547.949951171875,2550.6201171875,2555.239990234375,2976090000,2555.239990234375 +2017-10-12,2555.330078125,2548.31005859375,2552.8798828125,2550.929931640625,3151510000,2550.929931640625 +2017-10-13,2557.64990234375,2552.090087890625,2555.659912109375,2553.169921875,3149440000,2553.169921875 +2017-10-16,2559.469970703125,2552.639892578125,2555.570068359375,2557.639892578125,2916020000,2557.639892578125 +2017-10-17,2559.7099609375,2554.68994140625,2557.169921875,2559.360107421875,2889390000,2559.360107421875 +2017-10-18,2564.110107421875,2559.669921875,2562.8701171875,2561.260009765625,2998090000,2561.260009765625 +2017-10-19,2562.360107421875,2547.919921875,2553.389892578125,2562.10009765625,2990710000,2562.10009765625 +2017-10-20,2575.43994140625,2567.56005859375,2567.56005859375,2575.2099609375,3384650000,2575.2099609375 +2017-10-23,2578.2900390625,2564.330078125,2578.080078125,2564.97998046875,3211710000,2564.97998046875 +2017-10-24,2572.179931640625,2565.580078125,2568.659912109375,2569.1298828125,3427330000,2569.1298828125 +2017-10-25,2567.39990234375,2544.0,2566.52001953125,2557.14990234375,3874510000,2557.14990234375 +2017-10-26,2567.070068359375,2559.800048828125,2560.080078125,2560.39990234375,3869050000,2560.39990234375 +2017-10-27,2582.97998046875,2565.93994140625,2570.260009765625,2581.070068359375,3887110000,2581.070068359375 +2017-10-30,2580.030029296875,2568.25,2577.75,2572.830078125,3658870000,2572.830078125 +2017-10-31,2578.2900390625,2572.14990234375,2575.989990234375,2575.260009765625,3827230000,2575.260009765625 +2017-11-01,2588.39990234375,2574.919921875,2583.2099609375,2579.360107421875,3813180000,2579.360107421875 +2017-11-02,2581.110107421875,2566.169921875,2579.4599609375,2579.85009765625,4048270000,2579.85009765625 +2017-11-03,2588.419921875,2576.77001953125,2581.929931640625,2587.840087890625,3567710000,2587.840087890625 +2017-11-06,2593.3798828125,2585.659912109375,2587.469970703125,2591.1298828125,3539080000,2591.1298828125 +2017-11-07,2597.02001953125,2584.35009765625,2592.110107421875,2590.639892578125,3809650000,2590.639892578125 +2017-11-08,2595.469970703125,2585.02001953125,2588.7099609375,2594.3798828125,3899360000,2594.3798828125 +2017-11-09,2586.5,2566.330078125,2584.0,2584.6201171875,3831610000,2584.6201171875 +2017-11-10,2583.81005859375,2575.570068359375,2580.179931640625,2582.300048828125,3486910000,2582.300048828125 +2017-11-13,2587.659912109375,2574.47998046875,2576.530029296875,2584.840087890625,3402930000,2584.840087890625 +2017-11-14,2579.659912109375,2566.56005859375,2577.75,2578.8701171875,3641760000,2578.8701171875 +2017-11-15,2572.840087890625,2557.449951171875,2569.449951171875,2564.6201171875,3558890000,2564.6201171875 +2017-11-16,2590.090087890625,2572.949951171875,2572.949951171875,2585.639892578125,3312710000,2585.639892578125 +2017-11-17,2583.9599609375,2577.6201171875,2582.93994140625,2578.85009765625,3300160000,2578.85009765625 +2017-11-20,2584.639892578125,2578.239990234375,2579.489990234375,2582.139892578125,3003540000,2582.139892578125 +2017-11-21,2601.18994140625,2589.169921875,2589.169921875,2599.030029296875,3332720000,2599.030029296875 +2017-11-22,2600.93994140625,2595.22998046875,2600.31005859375,2597.080078125,2762950000,2597.080078125 +2017-11-24,2604.2099609375,2600.419921875,2600.419921875,2602.419921875,1349780000,2602.419921875 +2017-11-27,2606.409912109375,2598.8701171875,2602.659912109375,2601.419921875,3006860000,2601.419921875 +2017-11-28,2627.68994140625,2605.43994140625,2605.93994140625,2627.0400390625,3488420000,2627.0400390625 +2017-11-29,2634.889892578125,2620.320068359375,2627.820068359375,2626.070068359375,4078280000,2626.070068359375 +2017-11-30,2657.739990234375,2633.929931640625,2633.929931640625,2647.580078125,4938490000,2647.580078125 +2017-12-01,2650.6201171875,2605.52001953125,2645.10009765625,2642.219970703125,3942320000,2642.219970703125 +2017-12-04,2665.18994140625,2639.030029296875,2657.18994140625,2639.43994140625,4023150000,2639.43994140625 +2017-12-05,2648.719970703125,2627.72998046875,2639.780029296875,2629.570068359375,3539040000,2629.570068359375 +2017-12-06,2634.409912109375,2624.75,2626.239990234375,2629.27001953125,3229000000,2629.27001953125 +2017-12-07,2640.989990234375,2626.530029296875,2628.3798828125,2636.97998046875,3292400000,2636.97998046875 +2017-12-08,2651.64990234375,2644.10009765625,2646.2099609375,2651.5,3106150000,2651.5 +2017-12-11,2660.330078125,2651.469970703125,2652.18994140625,2659.989990234375,3091950000,2659.989990234375 +2017-12-12,2669.719970703125,2659.780029296875,2661.72998046875,2664.110107421875,3555680000,2664.110107421875 +2017-12-13,2671.8798828125,2662.85009765625,2667.590087890625,2662.85009765625,3542370000,2662.85009765625 +2017-12-14,2668.090087890625,2652.010009765625,2665.8701171875,2652.010009765625,3430030000,2652.010009765625 +2017-12-15,2679.6298828125,2659.139892578125,2660.6298828125,2675.81005859375,5723920000,2675.81005859375 +2017-12-18,2694.969970703125,2685.919921875,2685.919921875,2690.159912109375,3724660000,2690.159912109375 +2017-12-19,2694.43994140625,2680.739990234375,2692.7099609375,2681.469970703125,3368590000,2681.469970703125 +2017-12-20,2691.010009765625,2676.110107421875,2688.179931640625,2679.25,3241030000,2679.25 +2017-12-21,2692.639892578125,2682.39990234375,2683.02001953125,2684.570068359375,3273390000,2684.570068359375 +2017-12-22,2685.35009765625,2678.1298828125,2684.219970703125,2683.340087890625,2399830000,2683.340087890625 +2017-12-26,2682.739990234375,2677.9599609375,2679.090087890625,2680.5,1968780000,2680.5 +2017-12-27,2685.639892578125,2678.909912109375,2682.10009765625,2682.6201171875,2202080000,2682.6201171875 +2017-12-28,2687.659912109375,2682.68994140625,2686.10009765625,2687.5400390625,2153330000,2687.5400390625 +2017-12-29,2692.1201171875,2673.610107421875,2689.14990234375,2673.610107421875,2443490000,2673.610107421875 +2018-01-02,2695.889892578125,2682.360107421875,2683.72998046875,2695.81005859375,3367250000,2695.81005859375 +2018-01-03,2714.3701171875,2697.77001953125,2697.85009765625,2713.06005859375,3538660000,2713.06005859375 +2018-01-04,2729.2900390625,2719.070068359375,2719.31005859375,2723.989990234375,3695260000,2723.989990234375 +2018-01-05,2743.449951171875,2727.919921875,2731.330078125,2743.14990234375,3236620000,2743.14990234375 +2018-01-08,2748.510009765625,2737.60009765625,2742.669921875,2747.7099609375,3242650000,2747.7099609375 +2018-01-09,2759.139892578125,2747.860107421875,2751.14990234375,2751.2900390625,3453480000,2751.2900390625 +2018-01-10,2750.800048828125,2736.06005859375,2745.550048828125,2748.22998046875,3576350000,2748.22998046875 +2018-01-11,2767.56005859375,2752.780029296875,2752.969970703125,2767.56005859375,3641320000,2767.56005859375 +2018-01-12,2787.85009765625,2769.639892578125,2770.179931640625,2786.239990234375,3573970000,2786.239990234375 +2018-01-16,2807.5400390625,2768.639892578125,2798.9599609375,2776.419921875,4325970000,2776.419921875 +2018-01-17,2807.0400390625,2778.3798828125,2784.989990234375,2802.56005859375,3778050000,2802.56005859375 +2018-01-18,2805.830078125,2792.56005859375,2802.39990234375,2798.030029296875,3681470000,2798.030029296875 +2018-01-19,2810.330078125,2798.080078125,2802.60009765625,2810.300048828125,3639430000,2810.300048828125 +2018-01-22,2833.030029296875,2808.1201171875,2809.159912109375,2832.969970703125,3471780000,2832.969970703125 +2018-01-23,2842.239990234375,2830.590087890625,2835.050048828125,2839.1298828125,3519650000,2839.1298828125 +2018-01-24,2852.969970703125,2824.81005859375,2845.419921875,2837.5400390625,4014070000,2837.5400390625 +2018-01-25,2848.56005859375,2830.93994140625,2846.239990234375,2839.25,3835150000,2839.25 +2018-01-26,2872.8701171875,2846.179931640625,2847.47998046875,2872.8701171875,3443230000,2872.8701171875 +2018-01-29,2870.6201171875,2851.47998046875,2867.22998046875,2853.530029296875,3573830000,2853.530029296875 +2018-01-30,2837.75,2818.27001953125,2832.739990234375,2822.429931640625,3990650000,2822.429931640625 +2018-01-31,2839.260009765625,2813.0400390625,2832.409912109375,2823.81005859375,4261280000,2823.81005859375 +2018-02-01,2835.9599609375,2812.699951171875,2816.449951171875,2821.97998046875,3938450000,2821.97998046875 +2018-02-02,2808.919921875,2759.969970703125,2808.919921875,2762.1298828125,4301130000,2762.1298828125 +2018-02-05,2763.389892578125,2638.169921875,2741.06005859375,2648.93994140625,5283460000,2648.93994140625 +2018-02-06,2701.0400390625,2593.070068359375,2614.780029296875,2695.139892578125,5891660000,2695.139892578125 +2018-02-07,2727.669921875,2681.330078125,2690.949951171875,2681.659912109375,4626570000,2681.659912109375 +2018-02-08,2685.27001953125,2580.56005859375,2685.010009765625,2581.0,5305440000,2581.0 +2018-02-09,2638.669921875,2532.68994140625,2601.780029296875,2619.550048828125,5680070000,2619.550048828125 +2018-02-12,2672.610107421875,2622.449951171875,2636.75,2656.0,4055790000,2656.0 +2018-02-13,2668.840087890625,2637.080078125,2646.27001953125,2662.93994140625,3472870000,2662.93994140625 +2018-02-14,2702.10009765625,2648.8701171875,2651.2099609375,2698.6298828125,4003740000,2698.6298828125 +2018-02-15,2731.510009765625,2689.820068359375,2713.4599609375,2731.199951171875,3684910000,2731.199951171875 +2018-02-16,2754.419921875,2725.110107421875,2727.139892578125,2732.219970703125,3637460000,2732.219970703125 +2018-02-20,2737.60009765625,2706.760009765625,2722.989990234375,2716.260009765625,3627610000,2716.260009765625 +2018-02-21,2747.75,2701.2900390625,2720.530029296875,2701.330078125,3779400000,2701.330078125 +2018-02-22,2731.260009765625,2697.77001953125,2710.419921875,2703.9599609375,3701270000,2703.9599609375 +2018-02-23,2747.760009765625,2713.739990234375,2715.800048828125,2747.300048828125,3189190000,2747.300048828125 +2018-02-26,2780.639892578125,2753.780029296875,2757.3701171875,2779.60009765625,3424650000,2779.60009765625 +2018-02-27,2789.14990234375,2744.219970703125,2780.449951171875,2744.280029296875,3745080000,2744.280029296875 +2018-02-28,2761.52001953125,2713.5400390625,2753.780029296875,2713.830078125,4230660000,2713.830078125 +2018-03-01,2730.889892578125,2659.64990234375,2715.219970703125,2677.669921875,4503970000,2677.669921875 +2018-03-02,2696.25,2647.320068359375,2658.889892578125,2691.25,3882450000,2691.25 +2018-03-05,2728.090087890625,2675.75,2681.06005859375,2720.93994140625,3710810000,2720.93994140625 +2018-03-06,2732.080078125,2711.260009765625,2730.179931640625,2728.1201171875,3370690000,2728.1201171875 +2018-03-07,2730.60009765625,2701.739990234375,2710.179931640625,2726.800048828125,3393270000,2726.800048828125 +2018-03-08,2740.449951171875,2722.64990234375,2732.75,2738.969970703125,3212320000,2738.969970703125 +2018-03-09,2786.570068359375,2751.5400390625,2752.909912109375,2786.570068359375,3364100000,2786.570068359375 +2018-03-12,2796.97998046875,2779.260009765625,2790.5400390625,2783.02001953125,3185020000,2783.02001953125 +2018-03-13,2801.89990234375,2758.679931640625,2792.31005859375,2765.31005859375,3301650000,2765.31005859375 +2018-03-14,2777.110107421875,2744.3798828125,2774.06005859375,2749.47998046875,3391360000,2749.47998046875 +2018-03-15,2763.030029296875,2741.469970703125,2754.27001953125,2747.330078125,3500330000,2747.330078125 +2018-03-16,2761.85009765625,2749.969970703125,2750.570068359375,2752.010009765625,5372340000,2752.010009765625 +2018-03-19,2741.3798828125,2694.590087890625,2741.3798828125,2712.919921875,3302130000,2712.919921875 +2018-03-20,2724.219970703125,2710.050048828125,2715.050048828125,2716.93994140625,3261030000,2716.93994140625 +2018-03-21,2739.139892578125,2709.7900390625,2714.989990234375,2711.929931640625,3415510000,2711.929931640625 +2018-03-22,2695.679931640625,2641.590087890625,2691.360107421875,2643.68994140625,3739800000,2643.68994140625 +2018-03-23,2657.669921875,2585.889892578125,2646.7099609375,2588.260009765625,3815080000,2588.260009765625 +2018-03-26,2661.360107421875,2601.81005859375,2619.35009765625,2658.550048828125,3511100000,2658.550048828125 +2018-03-27,2674.780029296875,2596.1201171875,2667.570068359375,2612.6201171875,3706350000,2612.6201171875 +2018-03-28,2632.64990234375,2593.06005859375,2611.300048828125,2605.0,3864500000,2605.0 +2018-03-29,2659.070068359375,2609.719970703125,2614.409912109375,2640.8701171875,3565990000,2640.8701171875 +2018-04-02,2638.300048828125,2553.800048828125,2633.449951171875,2581.8798828125,3598520000,2581.8798828125 +2018-04-03,2619.139892578125,2575.489990234375,2592.169921875,2614.449951171875,3392810000,2614.449951171875 +2018-04-04,2649.860107421875,2573.610107421875,2584.0400390625,2644.68994140625,3350340000,2644.68994140625 +2018-04-05,2672.080078125,2649.580078125,2657.360107421875,2662.840087890625,3178970000,2662.840087890625 +2018-04-06,2656.8798828125,2586.27001953125,2645.820068359375,2604.469970703125,3299700000,2604.469970703125 +2018-04-09,2653.550048828125,2610.7900390625,2617.179931640625,2613.159912109375,3062960000,2613.159912109375 +2018-04-10,2665.449951171875,2635.780029296875,2638.409912109375,2656.8701171875,3543930000,2656.8701171875 +2018-04-11,2661.429931640625,2639.25,2643.889892578125,2642.18994140625,3020760000,2642.18994140625 +2018-04-12,2674.719970703125,2653.830078125,2653.830078125,2663.989990234375,3021320000,2663.989990234375 +2018-04-13,2680.260009765625,2645.050048828125,2676.89990234375,2656.300048828125,2960910000,2656.300048828125 +2018-04-16,2686.489990234375,2665.159912109375,2670.10009765625,2677.840087890625,3019700000,2677.840087890625 +2018-04-17,2713.340087890625,2692.050048828125,2692.739990234375,2706.389892578125,3234360000,2706.389892578125 +2018-04-18,2717.489990234375,2703.6298828125,2710.110107421875,2708.639892578125,3383410000,2708.639892578125 +2018-04-19,2702.840087890625,2681.89990234375,2701.159912109375,2693.1298828125,3349370000,2693.1298828125 +2018-04-20,2693.93994140625,2660.610107421875,2692.56005859375,2670.139892578125,3388590000,2670.139892578125 +2018-04-23,2682.860107421875,2657.989990234375,2675.39990234375,2670.2900390625,3017480000,2670.2900390625 +2018-04-24,2683.550048828125,2617.320068359375,2680.800048828125,2634.56005859375,3706740000,2634.56005859375 +2018-04-25,2645.300048828125,2612.669921875,2634.919921875,2639.39990234375,3499440000,2639.39990234375 +2018-04-26,2676.47998046875,2647.159912109375,2651.64990234375,2666.93994140625,3665720000,2666.93994140625 +2018-04-27,2677.35009765625,2659.010009765625,2675.469970703125,2669.909912109375,3219030000,2669.909912109375 +2018-04-30,2682.8701171875,2648.0400390625,2682.510009765625,2648.050048828125,3734530000,2648.050048828125 +2018-05-01,2655.27001953125,2625.409912109375,2642.9599609375,2654.800048828125,3559850000,2654.800048828125 +2018-05-02,2660.8701171875,2631.699951171875,2654.239990234375,2635.669921875,4010770000,2635.669921875 +2018-05-03,2637.139892578125,2594.6201171875,2628.080078125,2629.72998046875,3851470000,2629.72998046875 +2018-05-04,2670.929931640625,2615.320068359375,2621.449951171875,2663.419921875,3327220000,2663.419921875 +2018-05-07,2683.35009765625,2664.699951171875,2680.340087890625,2672.6298828125,3237960000,2672.6298828125 +2018-05-08,2676.340087890625,2655.199951171875,2670.260009765625,2671.919921875,3717570000,2671.919921875 +2018-05-09,2701.27001953125,2674.139892578125,2678.1201171875,2697.7900390625,3909500000,2697.7900390625 +2018-05-10,2726.110107421875,2704.5400390625,2705.02001953125,2723.070068359375,3333050000,2723.070068359375 +2018-05-11,2732.860107421875,2717.449951171875,2722.699951171875,2727.719970703125,2862700000,2727.719970703125 +2018-05-14,2742.10009765625,2725.469970703125,2738.469970703125,2730.1298828125,2972660000,2730.1298828125 +2018-05-15,2718.590087890625,2701.909912109375,2718.590087890625,2711.449951171875,3290680000,2711.449951171875 +2018-05-16,2727.760009765625,2712.169921875,2712.6201171875,2722.4599609375,3202670000,2722.4599609375 +2018-05-17,2731.9599609375,2711.360107421875,2719.7099609375,2720.1298828125,3475400000,2720.1298828125 +2018-05-18,2719.5,2709.179931640625,2717.35009765625,2712.969970703125,3368690000,2712.969970703125 +2018-05-21,2739.18994140625,2725.699951171875,2735.389892578125,2733.010009765625,3019890000,2733.010009765625 +2018-05-22,2742.239990234375,2721.8798828125,2738.340087890625,2724.43994140625,3366310000,2724.43994140625 +2018-05-23,2733.330078125,2709.5400390625,2713.97998046875,2733.2900390625,3326290000,2733.2900390625 +2018-05-24,2731.969970703125,2707.3798828125,2730.93994140625,2727.760009765625,3256030000,2727.760009765625 +2018-05-25,2727.360107421875,2714.989990234375,2723.60009765625,2721.330078125,2995260000,2721.330078125 +2018-05-29,2710.669921875,2676.81005859375,2705.110107421875,2689.860107421875,3736890000,2689.860107421875 +2018-05-30,2729.340087890625,2702.429931640625,2702.429931640625,2724.010009765625,3561050000,2724.010009765625 +2018-05-31,2722.5,2700.679931640625,2720.97998046875,2705.27001953125,4235370000,2705.27001953125 +2018-06-01,2736.929931640625,2718.699951171875,2718.699951171875,2734.6201171875,3684130000,2734.6201171875 +2018-06-04,2749.159912109375,2740.5400390625,2741.669921875,2746.8701171875,3376510000,2746.8701171875 +2018-06-05,2752.610107421875,2739.510009765625,2748.4599609375,2748.800048828125,3517790000,2748.800048828125 +2018-06-06,2772.389892578125,2748.4599609375,2753.25,2772.35009765625,3651640000,2772.35009765625 +2018-06-07,2779.89990234375,2760.159912109375,2774.840087890625,2770.3701171875,3711330000,2770.3701171875 +2018-06-08,2779.389892578125,2763.590087890625,2765.840087890625,2779.030029296875,3123210000,2779.030029296875 +2018-06-11,2790.2099609375,2780.169921875,2780.179931640625,2782.0,3232330000,2782.0 +2018-06-12,2789.800048828125,2778.780029296875,2785.60009765625,2786.85009765625,3401010000,2786.85009765625 +2018-06-13,2791.469970703125,2774.64990234375,2787.93994140625,2775.6298828125,3779230000,2775.6298828125 +2018-06-14,2789.06005859375,2776.52001953125,2783.2099609375,2782.489990234375,3526890000,2782.489990234375 +2018-06-15,2782.81005859375,2761.72998046875,2777.780029296875,2779.659912109375,5428790000,2779.659912109375 +2018-06-18,2774.989990234375,2757.1201171875,2765.7900390625,2773.75,3287150000,2773.75 +2018-06-19,2765.050048828125,2743.18994140625,2752.010009765625,2762.590087890625,3661470000,2762.590087890625 +2018-06-20,2774.860107421875,2763.909912109375,2769.72998046875,2767.320068359375,3327600000,2767.320068359375 +2018-06-21,2769.280029296875,2744.389892578125,2769.280029296875,2749.760009765625,3300060000,2749.760009765625 +2018-06-22,2764.169921875,2752.679931640625,2760.7900390625,2754.8798828125,5450550000,2754.8798828125 +2018-06-25,2742.93994140625,2698.669921875,2742.93994140625,2717.070068359375,3655080000,2717.070068359375 +2018-06-26,2732.909912109375,2715.60009765625,2722.1201171875,2723.06005859375,3555090000,2723.06005859375 +2018-06-27,2746.090087890625,2699.3798828125,2728.449951171875,2699.6298828125,3776090000,2699.6298828125 +2018-06-28,2724.340087890625,2691.989990234375,2698.68994140625,2716.31005859375,3428140000,2716.31005859375 +2018-06-29,2743.260009765625,2718.030029296875,2727.1298828125,2718.3701171875,3565620000,2718.3701171875 +2018-07-02,2727.260009765625,2698.949951171875,2704.949951171875,2726.7099609375,3073650000,2726.7099609375 +2018-07-03,2736.580078125,2711.159912109375,2733.27001953125,2713.219970703125,1911470000,2713.219970703125 +2018-07-05,2737.830078125,2716.02001953125,2724.18994140625,2736.610107421875,2953420000,2736.610107421875 +2018-07-06,2764.409912109375,2733.52001953125,2737.679931640625,2759.820068359375,2554780000,2759.820068359375 +2018-07-09,2784.64990234375,2770.72998046875,2775.6201171875,2784.169921875,3050040000,2784.169921875 +2018-07-10,2795.580078125,2786.239990234375,2788.56005859375,2793.840087890625,3063850000,2793.840087890625 +2018-07-11,2785.909912109375,2770.77001953125,2779.820068359375,2774.02001953125,2964740000,2774.02001953125 +2018-07-12,2799.219970703125,2781.530029296875,2783.139892578125,2798.2900390625,2821690000,2798.2900390625 +2018-07-13,2804.530029296875,2791.68994140625,2796.929931640625,2801.31005859375,2614000000,2801.31005859375 +2018-07-16,2801.18994140625,2793.389892578125,2797.360107421875,2798.429931640625,2812230000,2798.429931640625 +2018-07-17,2814.18994140625,2789.239990234375,2789.340087890625,2809.550048828125,3050730000,2809.550048828125 +2018-07-18,2816.760009765625,2805.889892578125,2811.35009765625,2815.6201171875,3089780000,2815.6201171875 +2018-07-19,2812.050048828125,2799.77001953125,2809.3701171875,2804.489990234375,3266700000,2804.489990234375 +2018-07-20,2809.699951171875,2800.010009765625,2804.550048828125,2801.830078125,3230210000,2801.830078125 +2018-07-23,2808.610107421875,2795.139892578125,2799.169921875,2806.97998046875,2907430000,2806.97998046875 +2018-07-24,2829.989990234375,2811.1201171875,2820.679931640625,2820.39990234375,3417530000,2820.39990234375 +2018-07-25,2848.030029296875,2817.72998046875,2817.72998046875,2846.070068359375,3553010000,2846.070068359375 +2018-07-26,2845.570068359375,2835.260009765625,2835.489990234375,2837.43994140625,3653330000,2837.43994140625 +2018-07-27,2843.169921875,2808.340087890625,2842.35009765625,2818.820068359375,3415710000,2818.820068359375 +2018-07-30,2821.739990234375,2798.110107421875,2819.0,2802.60009765625,3245770000,2802.60009765625 +2018-07-31,2824.4599609375,2808.06005859375,2809.72998046875,2816.2900390625,3892100000,2816.2900390625 +2018-08-01,2825.830078125,2805.85009765625,2821.169921875,2813.360107421875,3496990000,2813.360107421875 +2018-08-02,2829.909912109375,2796.340087890625,2800.47998046875,2827.219970703125,3467380000,2827.219970703125 +2018-08-03,2840.3798828125,2827.3701171875,2829.6201171875,2840.35009765625,3030390000,2840.35009765625 +2018-08-06,2853.2900390625,2835.97998046875,2840.2900390625,2850.39990234375,2874540000,2850.39990234375 +2018-08-07,2863.429931640625,2855.919921875,2855.919921875,2858.449951171875,3162770000,2858.449951171875 +2018-08-08,2862.43994140625,2853.090087890625,2856.7900390625,2857.699951171875,2972200000,2857.699951171875 +2018-08-09,2862.47998046875,2851.97998046875,2857.18994140625,2853.580078125,3047050000,2853.580078125 +2018-08-10,2842.199951171875,2825.81005859375,2838.89990234375,2833.280029296875,3256040000,2833.280029296875 +2018-08-13,2843.39990234375,2819.8798828125,2835.4599609375,2821.929931640625,3158450000,2821.929931640625 +2018-08-14,2843.110107421875,2826.580078125,2827.8798828125,2839.9599609375,2976970000,2839.9599609375 +2018-08-15,2827.949951171875,2802.489990234375,2827.949951171875,2818.3701171875,3645070000,2818.3701171875 +2018-08-16,2850.489990234375,2831.43994140625,2831.43994140625,2840.68994140625,3219880000,2840.68994140625 +2018-08-17,2855.6298828125,2833.72998046875,2838.320068359375,2850.1298828125,3024100000,2850.1298828125 +2018-08-20,2859.760009765625,2850.6201171875,2853.929931640625,2857.050048828125,2748020000,2857.050048828125 +2018-08-21,2873.22998046875,2861.320068359375,2861.510009765625,2862.9599609375,3147140000,2862.9599609375 +2018-08-22,2867.5400390625,2856.050048828125,2860.989990234375,2861.820068359375,2689560000,2861.820068359375 +2018-08-23,2868.780029296875,2854.030029296875,2860.2900390625,2856.97998046875,2713910000,2856.97998046875 +2018-08-24,2876.159912109375,2862.35009765625,2862.35009765625,2874.68994140625,2596190000,2874.68994140625 +2018-08-27,2898.25,2884.68994140625,2884.68994140625,2896.739990234375,2854080000,2896.739990234375 +2018-08-28,2903.77001953125,2893.5,2901.449951171875,2897.52001953125,2683190000,2897.52001953125 +2018-08-29,2916.5,2898.39990234375,2900.6201171875,2914.0400390625,2791860000,2914.0400390625 +2018-08-30,2912.4599609375,2895.219970703125,2908.93994140625,2901.1298828125,2802180000,2901.1298828125 +2018-08-31,2906.320068359375,2891.72998046875,2898.3701171875,2901.52001953125,2880260000,2901.52001953125 +2018-09-04,2900.179931640625,2885.1298828125,2896.9599609375,2896.719970703125,3077060000,2896.719970703125 +2018-09-05,2894.2099609375,2876.919921875,2891.590087890625,2888.60009765625,3241250000,2888.60009765625 +2018-09-06,2892.050048828125,2867.2900390625,2888.639892578125,2878.050048828125,3139590000,2878.050048828125 +2018-09-07,2883.81005859375,2864.1201171875,2868.260009765625,2871.679931640625,2946270000,2871.679931640625 +2018-09-10,2886.929931640625,2875.93994140625,2881.389892578125,2877.1298828125,2731400000,2877.1298828125 +2018-09-11,2892.52001953125,2866.780029296875,2871.570068359375,2887.889892578125,2899660000,2887.889892578125 +2018-09-12,2894.64990234375,2879.199951171875,2888.2900390625,2888.919921875,3264930000,2888.919921875 +2018-09-13,2906.760009765625,2896.389892578125,2896.85009765625,2904.179931640625,3254930000,2904.179931640625 +2018-09-14,2908.300048828125,2895.77001953125,2906.3798828125,2904.97998046875,3149800000,2904.97998046875 +2018-09-17,2904.64990234375,2886.159912109375,2903.830078125,2888.800048828125,2947760000,2888.800048828125 +2018-09-18,2911.169921875,2890.429931640625,2890.739990234375,2904.31005859375,3074610000,2904.31005859375 +2018-09-19,2912.360107421875,2903.820068359375,2906.60009765625,2907.949951171875,3280020000,2907.949951171875 +2018-09-20,2934.800048828125,2919.72998046875,2919.72998046875,2930.75,3337730000,2930.75 +2018-09-21,2940.909912109375,2927.110107421875,2936.760009765625,2929.669921875,5607610000,2929.669921875 +2018-09-24,2923.7900390625,2912.6298828125,2921.830078125,2919.3701171875,3372210000,2919.3701171875 +2018-09-25,2923.949951171875,2913.699951171875,2921.75,2915.56005859375,3285480000,2915.56005859375 +2018-09-26,2931.14990234375,2903.280029296875,2916.97998046875,2905.969970703125,3388620000,2905.969970703125 +2018-09-27,2927.219970703125,2909.27001953125,2911.64990234375,2914.0,3060850000,2914.0 +2018-09-28,2920.530029296875,2907.5,2910.030029296875,2913.97998046875,3432300000,2913.97998046875 +2018-10-01,2937.06005859375,2917.909912109375,2926.2900390625,2924.590087890625,3364190000,2924.590087890625 +2018-10-02,2931.419921875,2919.3701171875,2923.800048828125,2923.429931640625,3401880000,2923.429931640625 +2018-10-03,2939.860107421875,2921.360107421875,2931.68994140625,2925.510009765625,3598710000,2925.510009765625 +2018-10-04,2919.780029296875,2883.919921875,2919.35009765625,2901.610107421875,3496860000,2901.610107421875 +2018-10-05,2909.639892578125,2869.2900390625,2902.5400390625,2885.570068359375,3328980000,2885.570068359375 +2018-10-08,2889.449951171875,2862.080078125,2877.530029296875,2884.429931640625,3330320000,2884.429931640625 +2018-10-09,2894.830078125,2874.27001953125,2882.510009765625,2880.340087890625,3520500000,2880.340087890625 +2018-10-10,2874.02001953125,2784.860107421875,2873.89990234375,2785.679931640625,4501250000,2785.679931640625 +2018-10-11,2795.139892578125,2710.510009765625,2776.8701171875,2728.3701171875,4890630000,2728.3701171875 +2018-10-12,2775.77001953125,2729.43994140625,2770.5400390625,2767.1298828125,3966040000,2767.1298828125 +2018-10-15,2775.989990234375,2749.030029296875,2763.830078125,2750.7900390625,3300140000,2750.7900390625 +2018-10-16,2813.4599609375,2766.909912109375,2767.050048828125,2809.919921875,3428340000,2809.919921875 +2018-10-17,2816.93994140625,2781.81005859375,2811.669921875,2809.2099609375,3321710000,2809.2099609375 +2018-10-18,2806.0400390625,2755.179931640625,2802.0,2768.780029296875,3616440000,2768.780029296875 +2018-10-19,2797.77001953125,2760.27001953125,2775.659912109375,2767.780029296875,3566490000,2767.780029296875 +2018-10-22,2778.93994140625,2749.219970703125,2773.93994140625,2755.8798828125,3307140000,2755.8798828125 +2018-10-23,2753.590087890625,2691.429931640625,2721.030029296875,2740.68994140625,4348580000,2740.68994140625 +2018-10-24,2742.590087890625,2651.889892578125,2737.8701171875,2656.10009765625,4709310000,2656.10009765625 +2018-10-25,2722.699951171875,2667.840087890625,2674.8798828125,2705.570068359375,4634770000,2705.570068359375 +2018-10-26,2692.3798828125,2628.159912109375,2667.860107421875,2658.68994140625,4803150000,2658.68994140625 +2018-10-29,2706.85009765625,2603.5400390625,2682.64990234375,2641.25,4673700000,2641.25 +2018-10-30,2685.429931640625,2635.340087890625,2640.679931640625,2682.6298828125,5106380000,2682.6298828125 +2018-10-31,2736.68994140625,2705.60009765625,2705.60009765625,2711.739990234375,5112420000,2711.739990234375 +2018-11-01,2741.669921875,2708.85009765625,2717.580078125,2740.3701171875,4708420000,2740.3701171875 +2018-11-02,2756.550048828125,2700.43994140625,2745.449951171875,2723.06005859375,4237930000,2723.06005859375 +2018-11-05,2744.27001953125,2717.93994140625,2726.3701171875,2738.31005859375,3623320000,2738.31005859375 +2018-11-06,2756.820068359375,2737.080078125,2738.39990234375,2755.449951171875,3510860000,2755.449951171875 +2018-11-07,2815.14990234375,2774.1298828125,2774.1298828125,2813.889892578125,3914750000,2813.889892578125 +2018-11-08,2814.75,2794.989990234375,2806.3798828125,2806.830078125,3630490000,2806.830078125 +2018-11-09,2794.10009765625,2764.239990234375,2794.10009765625,2781.010009765625,4019090000,2781.010009765625 +2018-11-12,2775.989990234375,2722.0,2773.929931640625,2726.219970703125,3670930000,2726.219970703125 +2018-11-13,2754.60009765625,2714.97998046875,2730.050048828125,2722.179931640625,4091440000,2722.179931640625 +2018-11-14,2746.800048828125,2685.75,2737.89990234375,2701.580078125,4402370000,2701.580078125 +2018-11-15,2735.3798828125,2670.75,2693.52001953125,2730.199951171875,4179140000,2730.199951171875 +2018-11-16,2746.75,2712.159912109375,2718.5400390625,2736.27001953125,3975180000,2736.27001953125 +2018-11-19,2733.159912109375,2681.090087890625,2730.739990234375,2690.72998046875,3772900000,2690.72998046875 +2018-11-20,2669.43994140625,2631.52001953125,2654.60009765625,2641.889892578125,4357900000,2641.889892578125 +2018-11-21,2670.72998046875,2649.820068359375,2657.739990234375,2649.929931640625,3233550000,2649.929931640625 +2018-11-23,2647.550048828125,2631.090087890625,2633.360107421875,2632.56005859375,1651650000,2632.56005859375 +2018-11-26,2674.35009765625,2649.969970703125,2649.969970703125,2673.449951171875,3443950000,2673.449951171875 +2018-11-27,2682.530029296875,2655.889892578125,2663.75,2682.169921875,3485220000,2682.169921875 +2018-11-28,2744.0,2684.3798828125,2691.449951171875,2743.7900390625,3951670000,2743.7900390625 +2018-11-29,2753.75,2722.93994140625,2736.969970703125,2737.800048828125,3560770000,2737.800048828125 +2018-11-30,2760.8798828125,2732.760009765625,2737.760009765625,2760.169921875,4658580000,2760.169921875 +2018-12-03,2800.179931640625,2773.3798828125,2790.5,2790.3701171875,4186060000,2790.3701171875 +2018-12-04,2785.929931640625,2697.179931640625,2782.429931640625,2700.06005859375,4499840000,2700.06005859375 +2018-12-06,2696.14990234375,2621.530029296875,2663.510009765625,2695.949951171875,5141470000,2695.949951171875 +2018-12-07,2708.5400390625,2623.139892578125,2691.260009765625,2633.080078125,4216690000,2633.080078125 +2018-12-10,2647.510009765625,2583.22998046875,2630.860107421875,2637.719970703125,4151030000,2637.719970703125 +2018-12-11,2674.35009765625,2621.300048828125,2664.43994140625,2636.780029296875,3905870000,2636.780029296875 +2018-12-12,2685.43994140625,2650.260009765625,2658.22998046875,2651.070068359375,3958890000,2651.070068359375 +2018-12-13,2670.18994140625,2637.27001953125,2658.699951171875,2650.5400390625,3927720000,2650.5400390625 +2018-12-14,2635.070068359375,2593.840087890625,2629.679931640625,2599.949951171875,4035020000,2599.949951171875 +2018-12-17,2601.1298828125,2530.5400390625,2590.75,2545.93994140625,4616350000,2545.93994140625 +2018-12-18,2573.989990234375,2528.7099609375,2559.89990234375,2546.159912109375,4470880000,2546.159912109375 +2018-12-19,2585.2900390625,2488.9599609375,2547.050048828125,2506.9599609375,5127940000,2506.9599609375 +2018-12-20,2509.6298828125,2441.179931640625,2496.77001953125,2467.419921875,5585780000,2467.419921875 +2018-12-21,2504.409912109375,2408.550048828125,2465.3798828125,2416.6201171875,7609010000,2416.6201171875 +2018-12-24,2410.340087890625,2351.10009765625,2400.56005859375,2351.10009765625,2613930000,2351.10009765625 +2018-12-26,2467.760009765625,2346.580078125,2363.1201171875,2467.699951171875,4233990000,2467.699951171875 +2018-12-27,2489.10009765625,2397.93994140625,2442.5,2488.830078125,4096610000,2488.830078125 +2018-12-28,2520.27001953125,2472.889892578125,2498.77001953125,2485.739990234375,3702620000,2485.739990234375 +2018-12-31,2509.239990234375,2482.820068359375,2498.93994140625,2506.85009765625,3442870000,2506.85009765625 diff --git a/PythonAI/JupyterLab/data/wide_data.csv b/PythonAI/JupyterLab/data/wide_data.csv new file mode 100644 index 0000000..feab128 --- /dev/null +++ b/PythonAI/JupyterLab/data/wide_data.csv @@ -0,0 +1,32 @@ +date,TMAX,TMIN,TOBS +2018-10-01,21.1,8.9,13.9 +2018-10-02,23.9,13.9,17.2 +2018-10-03,25.0,15.6,16.1 +2018-10-04,22.8,11.7,11.7 +2018-10-05,23.3,11.7,18.9 +2018-10-06,20.0,13.3,16.1 +2018-10-07,20.0,16.1,20.0 +2018-10-08,26.7,17.8,17.8 +2018-10-09,18.9,17.2,17.8 +2018-10-10,24.4,17.2,18.3 +2018-10-11,26.1,17.8,21.7 +2018-10-12,22.8,14.4,15.6 +2018-10-13,15.6,7.2,8.3 +2018-10-14,13.3,5.6,6.7 +2018-10-15,13.3,6.7,10.0 +2018-10-16,18.9,7.8,7.8 +2018-10-17,13.3,3.3,5.0 +2018-10-18,16.1,4.4,5.0 +2018-10-19,10.0,-1.1,0.0 +2018-10-20,15.0,-0.6,10.6 +2018-10-21,16.7,7.8,7.8 +2018-10-22,7.8,-1.1,-1.1 +2018-10-23,15.6,-1.1,10.0 +2018-10-24,16.7,4.4,6.7 +2018-10-25,11.7,2.8,2.8 +2018-10-26,9.4,-0.6,-0.6 +2018-10-27,8.9,-0.6,6.1 +2018-10-28,8.3,5.0,7.2 +2018-10-29,10.6,6.7,8.3 +2018-10-30,13.3,2.2,5.0 +2018-10-31,12.2,0.0,0.0 diff --git a/PythonAI/readme.md b/PythonAI/readme.md index 714bd5c..e5bceea 100644 --- a/PythonAI/readme.md +++ b/PythonAI/readme.md @@ -59,7 +59,16 @@ Pamdas jest głównie używany do analizy danych, przygotowanie danych do machin ##### Import danych do Pandas pd.read_csv(), read_sql(), read_excel() itp itd, bardo dużo formatów - +## 26.03 +### Czyszczenie i przygotowywanie danych +Tak na prawdę, ten proces zajmuje najwięcej czasu programowania, bo najważniejsze jest to aby ML miał na wejściu dobre dane. + +knime.com - programowanie za pomocą klocków +można wyeksportować jako Jupyter Notebook działający kod + +#### Dane długie i szerokie + - dane 'long' - dane powtarzalne, np data (bo może być dużo wierszy z tą samą datą) + - dane 'wide' - dane któ©e mają dużo kolumn