From 9fd0d6563ee9b2b223fa3b1c7ee8e764248f9812 Mon Sep 17 00:00:00 2001 From: g-weatherill Date: Fri, 12 Feb 2021 10:38:44 +0100 Subject: [PATCH 1/9] Updates git ignore --- .gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitignore b/.gitignore index 485dee6..d254339 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,5 @@ .idea +.swp +.py[cod] +.DS_Store +__pycache__ -- GitLab From d4652715dc4b8f15647949f755a5956862149646 Mon Sep 17 00:00:00 2001 From: Peter Evans Date: Wed, 24 Mar 2021 23:40:02 +0100 Subject: [PATCH 2/9] import_fdsnws_eq: Get the XML, dump some YAML Prepares a dictionary with the interesting things found by reading the QuakeML file served for a given event. - If no focal mechanism is present, return None in those components of the dictionary; YAML serialises these as 'null'. - Parse FM XML object for all six nodal plane angles. - Catch float conversion problems by omitting output of these. - Check event id looks okay. - If called from command line, report outfile name. --- shakyground2/import_fdsnws_eq.py | 204 +++++++++++++++++++++++++++++++ 1 file changed, 204 insertions(+) create mode 100644 shakyground2/import_fdsnws_eq.py diff --git a/shakyground2/import_fdsnws_eq.py b/shakyground2/import_fdsnws_eq.py new file mode 100644 index 0000000..4c9b5e8 --- /dev/null +++ b/shakyground2/import_fdsnws_eq.py @@ -0,0 +1,204 @@ +# +# Grab an event's XML file from GEOFON and convert it +# to what we need. +# +# Author: Peter L. Evans +# +# Copyright (C) 2018 Helmholtz-Zentrum Potsdam - Deutsches GeoForschungsZentrum GFZ +# +# This software is free software and comes with ABSOLUTELY NO WARRANTY. +# +# ---------------------------------------------------------------------- + +""" +Can run standalone: + + >>> python import_fdsnws_eq.py gfz2021ekhv + +""" + +import datetime +import sys +import urllib.request as ul +from xml.etree import ElementTree as ET +import yaml + + +FDSNWS_ENDPOINT = "http://geofon.gfz-potsdam.de/fdsnws/event/1/" +QUAKEML_NS = {"ns": "http://quakeml.org/xmlns/bed/1.2"} + + +def fetch_fm(root, ns, preferredfmID): + """ + Extract interesting properties from the focal mechanism with + the given publicID. + + root - ElementTree root element. + ns - string, its namespace. + preferredfmID - string, the focal mechanism to hunt for. + + """ + for fm in root[0][0].findall("ns:focalMechanism", ns): + if fm.attrib["publicID"] != preferredfmID: + continue + + # We've found our guy! + + np = fm.find("ns:nodalPlanes", ns) + # Expect there's only one ! + + d = [None, None] + for k in range(2): + plane = np.find("ns:nodalPlane" + str(k + 1), ns) + d[k] = dict() + for child in plane: + v = child.find("ns:value", ns).text + tag = child.tag + tag = tag[tag.index("}") + 1 :] + try: + d[k][tag] = float(v) + except ValueError: + pass + return d + + +def fetch_magnitude(root, ns, preferredmagnitudeID): + for m in root[0][0].findall("ns:magnitude", ns): + if m.attrib["publicID"] != preferredmagnitudeID: + continue + + child = m.find("ns:mag", ns) + if not child: + return None + v = child.find("ns:value", ns).text + try: + mag = float(v) + except ValueError: + mag = None + return mag + + +def fetch_origin(root, ns, preferredoriginID): + """ + Extract interesting properties from the origin with given publicID. + + root - ElementTree root element. + ns - string, its namespace. + preferredoriginID - string, the origin to hunt for. + """ + for o in root[0][0].findall("ns:origin", ns): + if o.attrib["publicID"] != preferredoriginID: + continue + + d = dict() + for child in o: + tag = child.tag + tag = tag[tag.index("}") + 1 :] + + if tag in ("depth", "latitude", "longitude", "time"): + v = child.find("ns:value", ns).text + if tag == "time": + d[tag] = v + else: + try: + d[tag] = float(v) + except ValueError: + pass + return d + + +def fetch_quakeml(evid): + """ + Query fdsnws-event web service, and prepare a dictionary with the + interesting things found by reading the QuakeML file served for a given event. + + If there is no focal mechanism, return None where that would otherwise go. + + evid - string, the event ID to query for. + """ + url = ( + FDSNWS_ENDPOINT + + "query?" + + "&".join( + ( + "includeallmagnitudes=true", + "includefocalmechanism=true", + "eventid={}".format(evid), + ) + ) + ) + + # print(url) + req = ul.Request(url) + u = ul.urlopen(req) + buf = u.read().decode("utf8") + + print("Got", len(buf), "char(s).") + with open("tmp.xml", "w") as fid: + fid.write(str(buf)) + + root = ET.fromstring(buf) + ns = QUAKEML_NS + + preferredoriginID = root[0][0].find("ns:preferredOriginID", ns).text + preferredmagID = root[0][0].find("ns:preferredMagnitudeID", ns).text + try: + preferredfmID = root[0][0].find("ns:preferredFocalMechanismID", ns).text + except AttributeError: + preferredfmID = None + + origin = fetch_origin(root, ns, preferredoriginID) + + (d, t) = origin.pop("time").split("T", 2) + # There's little point in forcing these into datetimes, + # since writing to YAML requires they be converted back + # to strings. :( + + # d = datetime.date(2020, 1, 1) + # t = datetime.time(12, 0, 30, 123000) + + if preferredfmID: + focalmech = fetch_fm(root, ns, preferredfmID) + else: + focalmech = None + + # Should this be event's preferred magnitude, + # or the preferred focal mechanism's ? + # Probably they are the same thing... + mag = fetch_magnitude(root, ns, preferredmagID) + + return { + "id": evid, + "date": str(d), + "time": str(t), + "origin": origin, + "magnitude": mag, + "focalmechanism": focalmech, + "preferred_origin_id": preferredoriginID, + "preferred_magnitude_id": preferredmagID, + "preferred_focalmechanism_id": preferredfmID, + } + + +if __name__ == "__main__": + try: + evid = sys.argv[1] + except IndexError: + print("Usage:", sys.argv[0], "EVENTID") + print( + """ +where EVENTID is a GEOFON event ID. These are listed at +http://geofon.gfz-potsdam.de/eqinfo/list.php +""" + ) + sys.exit(1) + + if not evid.startswith("gfz20"): + print("GEOFON event IDs are generally of the form 'gfz20xxnnnn'. Are you sure?") + sys.exit(1) + + ev_info = fetch_quakeml(evid) + outfile = evid + ".yaml" + with open(outfile, "w") as fid: + fid.write(yaml.safe_dump(ev_info, default_flow_style=False)) + print("Wrote to", outfile) -- GitLab From c4365e8492d1eb4293840f7e919d7131ce21c1f7 Mon Sep 17 00:00:00 2001 From: Peter Evans Date: Thu, 25 Mar 2021 08:55:46 +0100 Subject: [PATCH 3/9] import_fdsnws_eq: Local file parsing and test code - Allow operating on a local QuakeML event file. - Add unit tests for this. --- shakyground2/import_fdsnws_eq.py | 59 +++++++++++++++++++++++++------- tests/data/gfz2021ekhv.xml | 1 + tests/test_quakexml.py | 57 ++++++++++++++++++++++++++++++ 3 files changed, 105 insertions(+), 12 deletions(-) create mode 100644 tests/data/gfz2021ekhv.xml create mode 100644 tests/test_quakexml.py diff --git a/shakyground2/import_fdsnws_eq.py b/shakyground2/import_fdsnws_eq.py index 4c9b5e8..ace3b2d 100644 --- a/shakyground2/import_fdsnws_eq.py +++ b/shakyground2/import_fdsnws_eq.py @@ -4,7 +4,7 @@ # # Author: Peter L. Evans # -# Copyright (C) 2018 Helmholtz-Zentrum Potsdam - Deutsches GeoForschungsZentrum GFZ +# Copyright (C) 2021 Helmholtz-Zentrum Potsdam - Deutsches GeoForschungsZentrum GFZ # # This software is free software and comes with ABSOLUTELY NO WARRANTY. # @@ -18,6 +18,7 @@ Can run standalone: """ import datetime +import os import sys import urllib.request as ul from xml.etree import ElementTree as ET @@ -33,9 +34,9 @@ def fetch_fm(root, ns, preferredfmID): Extract interesting properties from the focal mechanism with the given publicID. - root - ElementTree root element. - ns - string, its namespace. - preferredfmID - string, the focal mechanism to hunt for. + root: ElementTree root element. + ns (string): string, its namespace. + preferredfmID (string): the focal mechanism to hunt for. """ for fm in root[0][0].findall("ns:focalMechanism", ns): @@ -82,9 +83,9 @@ def fetch_origin(root, ns, preferredoriginID): """ Extract interesting properties from the origin with given publicID. - root - ElementTree root element. - ns - string, its namespace. - preferredoriginID - string, the origin to hunt for. + root: ElementTree root element. + ns (string): the XML object's namespace. + preferredoriginID (string): the origin to hunt for. """ for o in root[0][0].findall("ns:origin", ns): if o.attrib["publicID"] != preferredoriginID: @@ -107,14 +108,13 @@ def fetch_origin(root, ns, preferredoriginID): return d -def fetch_quakeml(evid): +def fetch_quakeml_ws(evid): """ - Query fdsnws-event web service, and prepare a dictionary with the - interesting things found by reading the QuakeML file served for a given event. + Query fdsnws-event web service, and return string + to fetch_quakeml() for parsing. - If there is no focal mechanism, return None where that would otherwise go. + evid (string): the event ID to query for. - evid - string, the event ID to query for. """ url = ( FDSNWS_ENDPOINT @@ -136,10 +136,45 @@ def fetch_quakeml(evid): print("Got", len(buf), "char(s).") with open("tmp.xml", "w") as fid: fid.write(str(buf)) + return buf + + +def fetch_quakeml(path): + """ + Prepare a dictionary holding the interesting things found by + reading the QuakeML file served for a given event. + + If there is no focal mechanism, return None where that would otherwise go. + + path (string): Either a local file name, or a GEOFON event ID + such as 'gfz2044sqpr'. + + """ + if os.path.exists(path): + with open(path) as fid: + buf = fid.read() + elif path.startswith("gfz") and len(path) == len("gfz2044sqpr"): + buf = fetch_quakeml_ws(path) + else: + raise IOError("Not a local path or a GEOFON event ID") root = ET.fromstring(buf) ns = QUAKEML_NS + event = root[0][0] + # .find("ns:event", ns) + if not event: + print("Couldn't get an event!") + return None + if "{" + ns["ns"] + "}event" != event.tag: + print("Got a", event.tag, "but expected an event") + return None + try: + # e.g. "smi:org.gfz-potsdam.de/geofon/gfz2021ekhv" + evid = event.attrib["publicID"].split("/")[-1] + except AttributeError: + print("Oops") + preferredoriginID = root[0][0].find("ns:preferredOriginID", ns).text preferredmagID = root[0][0].find("ns:preferredMagnitudeID", ns).text try: diff --git a/tests/data/gfz2021ekhv.xml b/tests/data/gfz2021ekhv.xml new file mode 100644 index 0000000..989e217 --- /dev/null +++ b/tests/data/gfz2021ekhv.xml @@ -0,0 +1 @@ +Off E. Coast of N. Island, N.Z.region nameGFZ2021-03-04T13:33:25.96342Z7.705753735e+191.744746227e+19-7.84343467e+196.098688444e+19-1.125507602e+192.367758042e+19-1.275457308e+190.93600977450.81729414130.1827058587GFZ2021-03-04T15:29:24.368901Zsmi:org.gfz-potsdam.de/geofon/Origin/20210304152924.369602.1998993smi:org.gfz-potsdam.de/geofon/Magnitude/20210304152924.369708.1998994smi:org.gfz-potsdam.de/geofon/saul_/gemini-premsmi:org.gfz-potsdam.de/geofon/BP_200s-600s307.177228877.29754332158.586775242.1057512269.1356842213.6104104263.297946124.036887887.311853502e+19355.77250325.529375306-8.046967561e+1997.8975685765.255882317.351140591e+1826.472750830.0639902255GFZ2021-03-04T15:29:24.368901Zsmi:org.gfz-potsdam.de/geofon/Origin/20210304151039.157235.246693310626.47275083GFZ2021-03-04T15:29:24.368901Z7.191210084Mwsmi:org.gfz-potsdam.de/geofon/MT179.36047361.763208609-37.376113891.97801631556418656118601.59272408823.19470215114.48722081.9876948677.20787048manualGFZ2021-03-04T15:56:27.282369Z34801.784525773.602023743.9510824381.956121.41514397horizontal uncertaintysmi:org.gfz-potsdam.de/geofon/LOCSATsmi:org.gfz-potsdam.de/geofon/iasp91confirmedsmi:org.gfz-potsdam.de/geofon/Origin/20210304155627.269946.2475276smi:org.gfz-potsdam.de/geofon/Magnitude/20210304152924.369708.1998994smi:org.gfz-potsdam.de/geofon/FocalMechanism/20210304152924.36933.1998992earthquake diff --git a/tests/test_quakexml.py b/tests/test_quakexml.py new file mode 100644 index 0000000..093ea9b --- /dev/null +++ b/tests/test_quakexml.py @@ -0,0 +1,57 @@ +# +# Author: Peter L. Evans +# +# Copyright (C) 2021 Helmholtz-Zentrum Potsdam - Deutsches GeoForschungsZentrum GFZ +# +# This software is free software and comes with ABSOLUTELY NO WARRANTY. +# +# ---------------------------------------------------------------------- +import os +import unittest +from shakyground2.import_fdsnws_eq import fetch_quakeml + + +class QuakeMLReadTestCase(unittest.TestCase): + """Test on digesting QuakeML from GEOFON. + + Beyond the basic test (read in QuakeML, export YAML), this would + also test the tricker input files: no focal mech available, focal + mech missing, multiple FMs, bad or incomplete XML, non-existent or + unreadable input files, and so on. + + """ + + outfile = "data/testoutput.yaml" + + def test_read_good_file(self): + infile = "data/gfz2021ekhv.xml" + result = fetch_quakeml(infile) + self.assertTrue(isinstance(result, dict)) + self.assertEqual(result["id"], "gfz2021ekhv") + + def test_read_good_eventid(self): + """ + Might fail if the GEOFON fdsnws-event webservice is unavailable. + """ + evid = "gfz2021ekhv" + result = fetch_quakeml(evid) + self.assertTrue(isinstance(result, dict)) + + def test_read_no_eventid(self): + """ + The function is given a string which isn't a file and isn't an + event id other. So raise an error. + """ + infile = "/no/such/file" + with self.assertRaises(IOError): + result = fetch_quakeml(infile) + + def tearDown(self): + try: + os.unlink(self.outfile) + except FileNotFoundError: + pass + + +if __name__ == "__main__": + unittest.main() -- GitLab From f9701830348267d2d7b6e25c65f76843ab0569eb Mon Sep 17 00:00:00 2001 From: Peter Evans Date: Thu, 25 Mar 2021 10:47:01 +0100 Subject: [PATCH 4/9] import_fdsnws_eq: Return depths in km, not metres --- shakyground2/import_fdsnws_eq.py | 3 +++ tests/test_quakexml.py | 5 +++++ 2 files changed, 8 insertions(+) diff --git a/shakyground2/import_fdsnws_eq.py b/shakyground2/import_fdsnws_eq.py index ace3b2d..ec88ae5 100644 --- a/shakyground2/import_fdsnws_eq.py +++ b/shakyground2/import_fdsnws_eq.py @@ -105,6 +105,9 @@ def fetch_origin(root, ns, preferredoriginID): d[tag] = float(v) except ValueError: pass + + # QuakeML depths are in metres. + d["depth"] = d["depth"] / 1000.0 return d diff --git a/tests/test_quakexml.py b/tests/test_quakexml.py index 093ea9b..2fe669a 100644 --- a/tests/test_quakexml.py +++ b/tests/test_quakexml.py @@ -24,10 +24,15 @@ class QuakeMLReadTestCase(unittest.TestCase): outfile = "data/testoutput.yaml" def test_read_good_file(self): + """ + This GEOFON event has a focal mechanism, and a depth of 34 km. + Check that a value in km, not metres, is produced. + """ infile = "data/gfz2021ekhv.xml" result = fetch_quakeml(infile) self.assertTrue(isinstance(result, dict)) self.assertEqual(result["id"], "gfz2021ekhv") + self.assertLess(result["origin"]["depth"], 100.0) def test_read_good_eventid(self): """ -- GitLab From 60a370bec29505442672213d80d7498998b9b191 Mon Sep 17 00:00:00 2001 From: Graeme Weatherill Date: Thu, 8 Apr 2021 21:24:48 +0000 Subject: [PATCH 5/9] Implements classes to handle Regionalization and assignment of ground motion models --- setup.py | 1 + shakyground2/regionalization.py | 327 ++++++++++++++++++ .../regionalization_files/eshm20_all.geojson | 54 +++ .../eshm20_gmm_mapping.json | 1 + .../germany_gsim_mapping.json | 1 + .../regionalization_files/germany_v4.geojson | 6 + .../global_stable_mapping.json | 1 + .../global_volcanic_mapping.json | 1 + .../regionalization_files/stable.geojson | 17 + .../regionalization_files/volcanic.geojson | 50 +++ shakyground2/shakemap.py | 42 +-- shakyground2/synthetic_rupture_generator.py | 16 +- shakyground2/valid.py | 68 +++- tests/data/dummy_regionalization1.json | 8 + tests/data/dummy_regionalization2.json | 7 + tests/data/gsim_mapping_test1.json | 1 + tests/data/gsim_mapping_test2.json | 1 + tests/regionalization_test.py | 320 +++++++++++++++++ tests/shakemap_test.py | 23 +- tests/valid_test.py | 232 ++++++++++++- 20 files changed, 1134 insertions(+), 43 deletions(-) create mode 100644 shakyground2/regionalization.py create mode 100644 shakyground2/regionalization_files/eshm20_all.geojson create mode 100644 shakyground2/regionalization_files/eshm20_gmm_mapping.json create mode 100644 shakyground2/regionalization_files/germany_gsim_mapping.json create mode 100644 shakyground2/regionalization_files/germany_v4.geojson create mode 100644 shakyground2/regionalization_files/global_stable_mapping.json create mode 100644 shakyground2/regionalization_files/global_volcanic_mapping.json create mode 100644 shakyground2/regionalization_files/stable.geojson create mode 100644 shakyground2/regionalization_files/volcanic.geojson create mode 100644 tests/data/dummy_regionalization1.json create mode 100644 tests/data/dummy_regionalization2.json create mode 100644 tests/data/gsim_mapping_test1.json create mode 100644 tests/data/gsim_mapping_test2.json create mode 100644 tests/regionalization_test.py diff --git a/setup.py b/setup.py index 939583f..2255505 100644 --- a/setup.py +++ b/setup.py @@ -13,6 +13,7 @@ setup( install_requires=[ "openquake.engine", "geopandas", + "Rtree", ], packages=find_packages(), python_requires=">=3.7", diff --git a/shakyground2/regionalization.py b/shakyground2/regionalization.py new file mode 100644 index 0000000..bd5bfbd --- /dev/null +++ b/shakyground2/regionalization.py @@ -0,0 +1,327 @@ +""" +Classes to manage the regionalisation of ground motion models and the selection of the +ground motion model set to be used for a given earthquake +""" +from __future__ import annotations +import os +import json +import rtree +import numpy as np +import pandas as pd +import geopandas as gpd +from typing import Union, Dict, Tuple, Optional, List +from pyproj import Transformer +from shapely import geometry +from openquake.hazardlib.gsim import get_available_gsims +from shakyground2 import valid +from shakyground2.earthquake import Earthquake + + +# For point in polygon tests need to transform geodetic coordinates into Cartesian. For this +# we use the World Equidistance Cylindrical Projection (EPSG 4087) +transformer_world_equidistant = Transformer.from_crs("EPSG:4326", "EPSG:4087", always_xy=True) + +# Full GMPE set +GSIM_LIST = get_available_gsims() + + +# Default Regionalisation for shallow and deep regions +DEFAULT_REGIONALIZATION = { + "default shallow": [ + ("ASK14", GSIM_LIST["AbrahamsonEtAl2014"](), 0.25), + ("BSSA14", GSIM_LIST["BooreEtAl2014"](), 0.25), + ("CB14", GSIM_LIST["CampbellBozorgnia2014"](), 0.25), + ("CY14", GSIM_LIST["ChiouYoungs2014"](), 0.25), + ], + "default deep": [ + ("BCHydroSlabLow", GSIM_LIST["AbrahamsonEtAl2015SSlabLow"](), 0.2), + ("BCHydroSlab", GSIM_LIST["AbrahamsonEtAl2015SSlab"](), 0.6), + ("BCHydroSlabHigh", GSIM_LIST["AbrahamsonEtAl2015SSlabHigh"](), 0.2), + ], +} + + +class Regionalization(object): + """ + A regionalisation is defined as a set of polyogns, each of which is associated with a + set of ground motion models and their respective weights. This class manages each + regionalisations and, in particular, the identification of the appropriate ground + motion model set given the location of an earthquake. + + A regionalisation is a three dimensional problem the regionalisations must be associated + with an upper and a lower depth. + + The geometry of the regionalisation is assumed to be input as a set of polygons with + coordinates given in terms of the of the WGS84 global geodetic coordinate system + + Attributes: + name: A unique name describing the regionalisation + regions: The regionalisation information as a geopandas GeoDataFrame containing the + columns [id, REGION, UPPER DEPTH, LOWER DEPTH, geometry] + gsims: Dictionary of ground motion models per region in the regionalisation and the + corresponding weights + cartesian_regions: The regionalisation reprojected into a Cartesian framework, as an + instance of :class:`geopandas.GeoDataFrame` + tree: For efficient selection of the region to which the earthquake belongs, an rtree + spatial index is used. Maps the polygons to a corresponding rtree.index.Index + object + """ + + def __init__(self, name: str, regions: gpd.GeoDataFrame, gsim_mapping: Dict = {}): + """ + Instantiates the Regionalization from a complete set of regions and ground motion + model mapping + + Args: + name: A unique name describing the regionalisation + regions: The regionalisation information as a geopandas GeoDataFrame containing the + columns [id, REGION, UPPER DEPTH, LOWER DEPTH, geometry] + gsim_mapping: Dictionary of ground motion models per region in the regionalisation + and the corresponding weights + """ + self.name = name + self.regions, self.gsims = valid.regionalization(regions, gsim_mapping) + self.cartesian_regions = regions.to_crs({"init": "epsg:4087"}) + # Setup the rtree + self.tree = rtree.index.Index() + for i, geom in enumerate(self.cartesian_regions.geometry): + self.tree.insert(i, geom.bounds) + + def __repr__(self): + # Returns a simple summary of the regionalization characteristics + return "{:s} ({:g} Polygons - BBOX [{:.4f}, {:.4f}, {:.4f}, {:.4f}])".format( + self.name, + len(self), + self.bounds[0], + self.bounds[1], + self.bounds[2], + self.bounds[3], + ) + + def __len__(self): + # Returns the number of regions in the regionalisation + return self.regions.shape[0] + + def __getitem__(self, key: Union[int, str]) -> Union[pd.Series, gpd.GeoSeries]: + """ + Returns the column of the regions GeoDataFrame if called with a string, or the + specific row if called with an integer, otherwise raises a TypeError + + Args: + key: Either the Region attribute (column) from the dataframe or an integer to + retrieve a specific region (row) + + Returns: + Column or row from the dataframe + """ + if isinstance(key, int): + return self.regions.iloc[key, :] + elif isinstance(key, str): + return self.regions[key] + else: + raise TypeError("Unrecognised data type %s used for indexing" % type(key)) + + def __contains__(self, earthquake: Earthquake): + """ + Determines if an earthquake object is within the bounds of the + region set + + Args: + earthquake: An earthquake represented by the + :class:`shakyground2.earthquake.Earthquake` + Returns: + True (if the earthquake is within the bounding box of the regionalisation) or + False otherwise + """ + llon, llat, ulon, ulat = self.bounds + return ( + (earthquake.lon >= llon) + & (earthquake.lon <= ulon) + & (earthquake.lat >= llat) + & (earthquake.lat <= ulat) + ) + + def __call__(self, earthquake: Earthquake) -> Tuple[Optional[str], Optional[Dict]]: + """ + Returns the tectonic region and corresponding set of ground motion models and weights + to be used for the earthquake depending on the region in which the earthquake falls + + Args: + earthquake: An earthquake represented by the + :class:`shakyground2.earthquake.Earthquake` + Returns: + region: The name of the region to which the earthquake belongs, or None if the + earthquake is not within the regionalization + gmm: The ground motion model set (with weights) of the region to which the + earthquake belongs, or None if the earthquake is within the regionalization + """ + if earthquake not in self: + return None, None + # Transform event long, lat into cartesian x, y and store as shapely Point object + eqx, eqy = transformer_world_equidistant.transform(earthquake.lon, earthquake.lat) + eqxy = geometry.Point(eqx, eqy) + for idx in self.tree.intersection(eqxy.bounds): + depth_idx = (earthquake.depth >= self.regions["UPPER DEPTH"][idx]) and ( + earthquake.depth <= self.regions["LOWER DEPTH"][idx] + ) + if depth_idx and self.cartesian_regions.geometry[idx].contains(eqxy): + # Earthquake within the depth range and within the zone + region = self[idx].REGION + return region, self.gsims[region] + # In theory this can only happen if the earthquake is within the + # bounding box of the region but outside of the depth range + return None, None + + @property + def bounds(self) -> np.ndarray: + # Bounding box of the entire regionalisation + return self.regions.total_bounds + + @classmethod + def from_json(cls, name: str, geojson_file: str, gsim_mapping_file: str) -> Regionalization: + """ + Construct the Regionalization from a json representation of the regionalization + and the ground motion model mapping + + Args: + name: Name of regionalization + geojson_file: Path to the geojson file containing the region geometries and + related attributes + gsim_mapping_file: Path to the json file containing the ground motion model + mappings + """ + dframe = gpd.GeoDataFrame.from_file(geojson_file, driver="GeoJSON") + # If a mapping file is provided then load one in + with open(gsim_mapping_file, "r") as f: + gsim_mapping = json.load(f) + return cls(name, dframe, gsim_mapping) + + +class RegionalizationSet(object): + """ + A Regionalization defines a set of geographical regions and their associated set of + ground motion models and weights. But comprehensive partition of a target region (which + may correspond to the entire globe) may require multiple regionalizations to be defined. + One such example might be that a particular regionalization is required for a country that + may define different region types or different ground motion model sets from that which + may be defined elsewhere. The RegionalizationSet represents a set of regionalizations, + the order of which defines the priority in which they are applied. + + As an example: + + Consider three regionalizations: A) Regions within a country, ii) Regions within a + Countinent to which country A belongs, C) A set of regions spanning the globe. + + If the regionalizations are input in the order A B C, then an earthquake falling within + country A will be subject to the regionalization of A rather than B or C even though it + falls within the domain covered by all three. If the order were reversed (C B A) then the + global regionalization would be applied to the earthquake even if it fell within the + domains covered by A and B. + + If the earthquake does not fall within the domain of any of the regions in the set then + a "default" regionalisation is applied, which depends on whether the earthquake is + "shallow" (depth <= 40 km) or "deep" (> 40 km). + + For the "shallow" regionalization the four primary NGA West 2 ground motion models are + adopted with equal weighting (Abrahamson et al., 2014; Boore et al., 2014; + Campbell & Bozorgnia, 2014; Chiou & Youngs, 2014) + + For the "deep" regionalisation the subduction inslab ground motion model of + Abrahamson et al. (2016) is adopted, with the additional epistemic uncertainty factors. + + Attributes: + regionalizations: A set of regionalizations as a list of :class:`Regionalization` + """ + + def __init__(self, regionalizations): + self.regionalizations = regionalizations + + @classmethod + def from_json( + cls, names: List, regionalization_files: List, gsim_mapping_files: List + ) -> RegionalizationSet: + + # Check if any file is missing before parsing the regionalizations + assert len(names) == len(regionalization_files) == len(gsim_mapping_files) + # Before importing model, check that all files are present + for regionalization_file, gsim_mapping_file in zip( + regionalization_files, gsim_mapping_files + ): + if not os.path.exists(regionalization_file): + raise IOError("Regionalization file %s not found" % regionalization_file) + if not os.path.exists(gsim_mapping_file): + raise IOError("GSIM mapping file %s not found" % gsim_mapping_file) + # Load in the regionalizations + regionalizations = [] + for name, regionalization_file, mapping_file in zip( + names, regionalization_files, gsim_mapping_files + ): + regionalizations.append( + Regionalization.from_json(name, regionalization_file, mapping_file) + ) + return cls(regionalizations) + + def __len__(self): + return len(self.regionalizations) + + def __iter__(self): + for regionalization in self.regionalizations: + yield regionalization + + def __call__(self, earthquake: Earthquake): + """ + Returns the tectonic region and corresponding set of ground motion models and weights + to be used for the earthquake depending on the region in which the earthquake falls. + If no region is defined then a default region type and ground motion model set is + assigned depending on whether the earthquake is "shallow" (< 40 km) or "deep" (> 40 km) + + Args: + earthquake: An earthquake represented by the + :class:`shakyground2.earthquake.Earthquake` + Returns: + region: The name of the region to which the earthquake belongs, or None if the + earthquake is not within the regionalization + gmm: The ground motion model set (with weights) of the region to which the + earthquake belongs, or None if the earthquake is within the regionalization + """ + for regionalization in self: + region, gmms = regionalization(earthquake) + if region and gmms: + return region, gmms + # If earthquake is not assigned to any zone then use the default ground motion model + # set, depending on whether the earthquake depth is shallow or deep + if earthquake.depth > 40.0: + default_reg = "default deep" + else: + default_reg = "default shallow" + return default_reg, DEFAULT_REGIONALIZATION[default_reg] + + +# Path to data file directory +REGIONALIZATION_DIRECTORY = os.path.join(os.path.dirname(__file__), "regionalization_files") + + +# Path to default regionalization data files +DEFAULT_GLOBAL_REGIONALIZATION_REGIONS = [ + os.path.join(REGIONALIZATION_DIRECTORY, "germany_v4.geojson"), # Germany + os.path.join(REGIONALIZATION_DIRECTORY, "eshm20_all.geojson"), # ESHM20 + os.path.join(REGIONALIZATION_DIRECTORY, "volcanic.geojson"), # Global volcanic zones + os.path.join(REGIONALIZATION_DIRECTORY, "stable.geojson"), # Global stable regions +] + + +# Corresponding default GSIM mapping files +DEFAULT_GLOBAL_GSIM_MAPPING = [ + os.path.join(REGIONALIZATION_DIRECTORY, "germany_gsim_mapping.json"), + os.path.join(REGIONALIZATION_DIRECTORY, "eshm20_gmm_mapping.json"), + os.path.join(REGIONALIZATION_DIRECTORY, "global_volcanic_mapping.json"), + os.path.join(REGIONALIZATION_DIRECTORY, "global_stable_mapping.json"), +] + + +# Default global regionalization +DEFAULT_GLOBAL_REGIONALIZATION = RegionalizationSet.from_json( + ["Germany", "ESHM20", "Global Volcanic", "Global Stable"], # Name set + DEFAULT_GLOBAL_REGIONALIZATION_REGIONS, # Geographical region set + DEFAULT_GLOBAL_GSIM_MAPPING, # GSIM mapping set +) diff --git a/shakyground2/regionalization_files/eshm20_all.geojson b/shakyground2/regionalization_files/eshm20_all.geojson new file mode 100644 index 0000000..9fafe7a --- /dev/null +++ b/shakyground2/regionalization_files/eshm20_all.geojson @@ -0,0 +1,54 @@ +{ +"type": "FeatureCollection", +"features": [ +{ "type": "Feature", "properties": { "id": "ESHM-CR-1", "REGION": "ESHM20 Craton", "UPPER DEPTH": 0.0, "LOWER DEPTH": 40.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.0, 69.414 ], [ 40.006497, 48.899847 ], [ 34.251281, 48.090722 ], [ 31.542371, 48.419134 ], [ 28.480099656148919, 48.223825500272675 ], [ 27.15948976703497, 48.682610138971384 ], [ 26.1140069381531, 49.162961332539766 ], [ 25.021359470374314, 49.704831803347354 ], [ 23.779357312755252, 50.290973238396184 ], [ 22.685703, 50.809607 ], [ 21.017241, 51.452949 ], [ 19.296271, 52.039658 ], [ 17.142614, 53.293004 ], [ 15.347328, 53.992419 ], [ 14.402997, 54.777526 ], [ 14.434329, 55.217937 ], [ 13.570064, 55.681039 ], [ 13.628303, 56.087628 ], [ 12.781573, 56.410726 ], [ 11.588241, 57.777666 ], [ 10.922426, 58.987605 ], [ 10.827439, 59.365374 ], [ 10.831719, 59.823197 ], [ 10.908433, 60.204655 ], [ 11.541774, 61.132451 ], [ 13.453294, 62.12974 ], [ 14.828407, 63.026055 ], [ 15.586844, 63.853999 ], [ 16.216037, 64.389925 ], [ 16.80044, 65.048932 ], [ 16.896443, 65.627447 ], [ 17.351332, 66.242239 ], [ 17.689775, 66.617596 ], [ 18.123843, 67.198051 ], [ 18.820256, 67.788541 ], [ 19.583663, 68.370582 ], [ 20.459669, 68.790662 ], [ 21.116973, 69.073404 ], [ 22.205242, 69.411419 ], [ 23.423372, 69.704516 ], [ 24.441065, 69.919496 ], [ 25.845666, 70.0961 ], [ 27.315165, 70.214077 ], [ 28.675291, 70.138218 ], [ 29.908802, 69.97594 ], [ 31.593515, 69.782662 ], [ 32.848035, 69.712432 ], [ 35.0, 69.414 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ESHM-Iceland-1", "REGION": "ESHM20 Iceland", "UPPER DEPTH": 0.0, "LOWER DEPTH": 40.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -18.4566, 68.6934 ], [ -17.4201, 68.5934 ], [ -17.8281, 68.2165 ], [ -18.2397, 67.4255 ], [ -15.2876, 67.7066 ], [ -14.3508, 67.503 ], [ -13.443336342934089, 67.126604171884523 ], [ -13.142, 66.9795 ], [ -11.9808, 66.3132 ], [ -11.3431, 65.4388 ], [ -11.3312, 64.8082 ], [ -11.9856, 64.2728 ], [ -15.9593, 63.1069 ], [ -20.2468, 62.6874 ], [ -21.375, 62.8975 ], [ -23.7953, 62.5645 ], [ -24.6245, 62.8878 ], [ -25.0441, 63.0533 ], [ -26.4529, 63.7666 ], [ -27.1087, 64.4477 ], [ -27.0961, 65.8853 ], [ -25.6977, 66.6715 ], [ -24.4366, 67.2188 ], [ -22.4521, 67.4911 ], [ -21.068, 67.5993 ], [ -19.8951, 67.6635 ], [ -18.9837, 67.6829 ], [ -18.8242, 68.1803 ], [ -18.4566, 68.6934 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ESHM-Vrancea-1", "REGION": "ESHM20 Vrancea", "UPPER DEPTH": 60.0, "LOWER DEPTH": 200.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.882133909419, 47.1000000000003 ], [ 27.7, 47.3 ], [ 27.982133909419002, 46.700000000000301 ], [ 27.882133909419, 45.6000000000003 ], [ 27.282133909418999, 44.700000000000301 ], [ 26.282133909418999, 44.1000000000003 ], [ 25.482133909419002, 43.800000000000203 ], [ 24.2, 44.5 ], [ 25.8, 45.4 ], [ 26.7, 46.2 ], [ 26.882133909419, 47.1000000000003 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ESHM-CL1-1", "REGION": "ESHM20 Cluster 1", "UPPER DEPTH": 0.0, "LOWER DEPTH": 40.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.784875, 43.91177 ], [ 13.49697, 43.964946 ], [ 13.075781, 44.139882 ], [ 12.863815, 44.155126 ], [ 12.627341, 44.401727 ], [ 12.353811, 44.54144 ], [ 12.189285, 44.627047 ], [ 12.096155, 44.78674 ], [ 11.856759, 44.897992 ], [ 11.642967, 44.994629 ], [ 11.408338, 45.008227 ], [ 11.149631, 45.021621 ], [ 10.870267, 45.015124 ], [ 10.625112, 45.118542 ], [ 10.856278, 45.133003 ], [ 11.185499, 45.230084 ], [ 11.480868, 45.340814 ], [ 11.623307, 45.525636 ], [ 11.938539, 45.727156 ], [ 12.182925, 45.736099 ], [ 12.393867, 45.834628 ], [ 12.814171, 46.063012 ], [ 13.532187, 45.36442 ], [ 13.642852218517506, 44.9510075365666 ], [ 13.54283065671885, 44.500942949764031 ], [ 13.483092, 44.304567 ], [ 13.608047, 44.168717 ], [ 13.807975, 43.991003 ], [ 13.926185, 43.88567 ], [ 13.784875, 43.91177 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ESHM-CL2-2", "REGION": "ESHM20 Cluster 2", "UPPER DEPTH": 0.0, "LOWER DEPTH": 40.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.52178, 42.211221 ], [ 14.553066, 42.301168 ], [ 14.619549, 42.359829 ], [ 14.744693, 42.391115 ], [ 14.93632, 42.434134 ], [ 15.124035, 42.441955 ], [ 15.311751, 42.461509 ], [ 15.354769, 42.590564 ], [ 15.685075, 42.438786 ], [ 15.929431, 42.344375 ], [ 16.315403, 42.252742 ], [ 16.829919, 41.99266 ], [ 17.178831, 41.922436 ], [ 17.803503, 42.135871 ], [ 18.120475, 42.167044 ], [ 18.499628, 42.068025 ], [ 18.820987, 41.858052 ], [ 18.912244, 41.578359 ], [ 18.888317, 41.26611 ], [ 18.905476, 40.996398 ], [ 18.977828, 40.730656 ], [ 19.085018, 40.490266 ], [ 19.290145, 40.168458 ], [ 19.081746, 39.902805 ], [ 19.074184, 39.743501 ], [ 19.383258, 39.43488 ], [ 19.59158, 39.238139 ], [ 19.774321, 39.059822 ], [ 19.943957, 38.881232 ], [ 20.075035, 38.729282 ], [ 20.193767, 38.615216 ], [ 20.382096, 38.474469 ], [ 20.178272, 38.295969 ], [ 20.021, 38.14641 ], [ 19.797837, 37.967739 ], [ 19.662842, 37.828857 ], [ 19.507819, 38.09159 ], [ 19.270399, 38.314507 ], [ 19.077838, 38.466133 ], [ 18.928557, 38.583322 ], [ 18.750546, 38.705004 ], [ 18.398434, 38.929199 ], [ 18.008258, 39.385339 ], [ 17.863833, 39.560961 ], [ 17.69883, 39.721463 ], [ 17.185905, 40.028057 ], [ 16.980061, 40.184208 ], [ 16.510314, 40.391907 ], [ 16.257962, 40.510533 ], [ 15.981135, 40.519689 ], [ 15.698542, 40.91174 ], [ 15.117614, 41.347032 ], [ 14.456692, 41.728641 ], [ 14.490494, 41.882718 ], [ 14.510048, 42.023505 ], [ 14.513959, 42.133006 ], [ 14.52178, 42.211221 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ESHM-CL2-3", "REGION": "ESHM20 Cluster 2", "UPPER DEPTH": 0.0, "LOWER DEPTH": 40.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.957566, 39.137517 ], [ 26.967967, 38.80451 ], [ 27.15, 38.390572 ], [ 27.481211, 38.011563 ], [ 27.762192, 37.575908 ], [ 27.341471, 37.38596 ], [ 26.995635, 37.252556 ], [ 26.674691, 37.151172 ], [ 26.277217, 37.048337 ], [ 25.848828, 36.937504 ], [ 25.415022, 36.856091 ], [ 25.085867, 36.810664 ], [ 24.879769, 36.802356 ], [ 24.6861, 36.822323 ], [ 24.484221, 36.860453 ], [ 24.284904, 36.919194 ], [ 24.076557, 36.996299 ], [ 23.928171, 37.09427 ], [ 23.841282, 37.237 ], [ 23.763468, 37.400386 ], [ 23.658483, 37.646321 ], [ 23.516795, 37.892414 ], [ 23.93946, 37.896167 ], [ 24.270668, 37.905947 ], [ 24.53092, 37.974826 ], [ 24.809492, 38.104365 ], [ 25.455035, 38.461174 ], [ 25.917141, 38.725759 ], [ 26.175032, 38.874278 ], [ 26.383354, 39.057101 ], [ 26.584892, 39.29299 ], [ 26.957496, 39.528521 ], [ 26.947021, 39.292138 ], [ 26.957566, 39.137517 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ESHM-CL3-4", "REGION": "ESHM20 Cluster 3", "UPPER DEPTH": 0.0, "LOWER DEPTH": 40.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.83669, 38.23371 ], [ 21.967889, 38.141069 ], [ 22.314825, 38.036298 ], [ 22.645491, 37.96761 ], [ 22.828853, 37.786123 ], [ 22.930569, 37.628941 ], [ 23.063826, 37.318156 ], [ 23.202935, 36.993724 ], [ 23.363956, 36.7393 ], [ 23.457163, 36.609927 ], [ 23.547637, 36.508361 ], [ 23.645795, 36.401197 ], [ 23.785373, 36.311974 ], [ 23.931826, 36.2354 ], [ 24.104323, 36.173908 ], [ 24.49218, 36.077606 ], [ 24.860394, 36.020718 ], [ 25.19828, 36.017019 ], [ 25.53184, 36.05604 ], [ 25.901916, 36.123224 ], [ 26.250748, 36.213441 ], [ 26.658608, 36.310408 ], [ 27.066928, 36.407485 ], [ 27.400472, 36.520333 ], [ 27.690533, 36.61847 ], [ 28.120515, 36.780693 ], [ 28.480992, 36.916693 ], [ 28.730164, 36.967678 ], [ 28.718136, 36.612557 ], [ 28.6, 36.5828 ], [ 28.45, 36.476412 ], [ 28.193491, 36.2 ], [ 27.9, 35.938146 ], [ 27.55, 35.688287 ], [ 27.262501, 35.45 ], [ 26.85, 35.161756 ], [ 26.636201, 35.053626 ], [ 26.462319, 34.99957 ], [ 26.258956, 34.947584 ], [ 25.818863, 34.919242 ], [ 25.364386, 34.839293 ], [ 24.804858, 34.833326 ], [ 24.340819, 34.968461 ], [ 23.557331, 35.208405 ], [ 23.325979, 35.400729 ], [ 23.120993, 35.581633 ], [ 22.8739, 35.893884 ], [ 22.561448, 36.164871 ], [ 22.280076, 36.3917 ], [ 22.03132, 36.737835 ], [ 21.792038, 37.040774 ], [ 21.578794, 37.222056 ], [ 21.13163, 37.389278 ], [ 21.303218, 37.577571 ], [ 21.43321, 37.689253 ], [ 21.83669, 38.23371 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ESHM-CL3-5", "REGION": "ESHM20 Cluster 3", "UPPER DEPTH": 0.0, "LOWER DEPTH": 40.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.645491, 37.96761 ], [ 22.913236, 37.92073 ], [ 23.228281, 37.895316 ], [ 23.516795, 37.892414 ], [ 23.658483, 37.646321 ], [ 23.763468, 37.400386 ], [ 23.841282, 37.237 ], [ 23.928171, 37.09427 ], [ 24.076557, 36.996299 ], [ 24.284904, 36.919194 ], [ 24.484221, 36.860453 ], [ 24.6861, 36.822323 ], [ 24.879769, 36.802356 ], [ 25.085867, 36.810664 ], [ 25.415022, 36.856091 ], [ 25.848828, 36.937504 ], [ 26.277217, 37.048337 ], [ 26.674691, 37.151172 ], [ 26.995635, 37.252556 ], [ 27.341471, 37.38596 ], [ 27.762192, 37.575908 ], [ 28.034689, 37.424971 ], [ 28.491936, 37.205863 ], [ 28.642818, 37.09765 ], [ 28.730164, 36.967678 ], [ 28.480992, 36.916693 ], [ 28.120515, 36.780693 ], [ 27.690533, 36.61847 ], [ 27.400472, 36.520333 ], [ 27.066928, 36.407485 ], [ 26.658608, 36.310408 ], [ 26.250748, 36.213441 ], [ 25.901916, 36.123224 ], [ 25.53184, 36.05604 ], [ 25.19828, 36.017019 ], [ 24.860394, 36.020718 ], [ 24.49218, 36.077606 ], [ 24.104323, 36.173908 ], [ 23.931826, 36.2354 ], [ 23.785373, 36.311974 ], [ 23.645795, 36.401197 ], [ 23.547637, 36.508361 ], [ 23.457163, 36.609927 ], [ 23.363956, 36.7393 ], [ 23.202935, 36.993724 ], [ 23.063826, 37.318156 ], [ 22.930569, 37.628941 ], [ 22.828853, 37.786123 ], [ 22.645491, 37.96761 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ESHM-CL4-6", "REGION": "ESHM20 Cluster 4", "UPPER DEPTH": 0.0, "LOWER DEPTH": 40.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.912244, 41.578359 ], [ 19.796763, 41.730476 ], [ 19.910962, 41.547396 ], [ 20.093951, 41.226816 ], [ 20.43109, 41.003578 ], [ 20.630382, 40.168286 ], [ 20.62719, 39.821521 ], [ 20.971547, 39.482949 ], [ 20.623002, 39.255759 ], [ 20.529713, 38.770236 ], [ 20.382096, 38.474469 ], [ 20.193767, 38.615216 ], [ 20.075035, 38.729282 ], [ 19.943957, 38.881232 ], [ 19.774321, 39.059822 ], [ 19.59158, 39.238139 ], [ 19.383258, 39.43488 ], [ 19.074184, 39.743501 ], [ 19.081746, 39.902805 ], [ 19.290145, 40.168458 ], [ 19.085018, 40.490266 ], [ 18.977828, 40.730656 ], [ 18.905476, 40.996398 ], [ 18.888317, 41.26611 ], [ 18.912244, 41.578359 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ESHM-CL2-7", "REGION": "ESHM20 Cluster 2", "UPPER DEPTH": 0.0, "LOWER DEPTH": 40.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.103492, 37.77124 ], [ -3.196304, 38.083423 ], [ -2.183891, 38.734615 ], [ -1.163389, 38.911569 ], [ -0.230069, 39.082232 ], [ 0.009339, 39.012176 ], [ 0.20446, 38.925461 ], [ 0.454322, 38.787319 ], [ 0.564473, 38.624674 ], [ 0.502075, 38.473867 ], [ 0.292661, 38.314606 ], [ -0.008705, 38.16251 ], [ -0.230506, 37.8908 ], [ -0.382209, 37.553208 ], [ -0.700246, 37.410758 ], [ -0.976337, 37.308406 ], [ -1.180165, 37.157468 ], [ -1.267306, 36.941343 ], [ -1.28602, 36.733024 ], [ -1.144021, 36.593205 ], [ -0.928016, 36.50049 ], [ -0.696899, 36.436844 ], [ -0.254788, 36.573768 ], [ -0.843714, 35.91233 ], [ -2.140271, 35.112899 ], [ -2.757526, 34.923588 ], [ -3.186582, 34.590796 ], [ -3.599844, 34.313272 ], [ -4.394842, 33.997197 ], [ -5.265455, 33.926258 ], [ -6.0819, 34.002534 ], [ -5.952893, 34.341154 ], [ -6.202446, 34.789276 ], [ -6.363448, 35.272281 ], [ -6.449315, 35.610384 ], [ -6.497616, 35.948488 ], [ -6.438582, 36.232924 ], [ -6.329239, 36.644711 ], [ -6.132679, 36.952065 ], [ -5.652201, 37.364606 ], [ -5.066304, 37.603036 ], [ -4.847613304391796, 37.654877863921065 ], [ -4.53711276498703, 37.723303837464279 ], [ -4.103492, 37.77124 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ESHM-CL2-8", "REGION": "ESHM20 Cluster 2", "UPPER DEPTH": 0.0, "LOWER DEPTH": 40.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.073716227581622, 38.216246554715369 ], [ 15.3, 38.317662 ], [ 15.433334, 38.4 ], [ 15.652932, 38.6 ], [ 15.779989, 38.8 ], [ 15.819822, 38.925815 ], [ 15.857361, 39.098887 ], [ 15.834096, 39.168214 ], [ 16.172406, 39.069884 ], [ 16.777873, 38.922101 ], [ 16.729628750692687, 38.729589293643997 ], [ 16.651834202627064, 38.569019338718931 ], [ 16.590709914861222, 38.421151484874642 ], [ 16.268418215732222, 38.146359618592058 ], [ 16.062818338701653, 37.949443444417881 ], [ 15.740526639572655, 37.80031131040969 ], [ 15.476794, 37.723982 ], [ 15.373807, 37.86564 ], [ 15.073716227581622, 38.216246554715369 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ESHM-CL2-9", "REGION": "ESHM20 Cluster 2", "UPPER DEPTH": 0.0, "LOWER DEPTH": 40.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.257962, 40.510533 ], [ 16.510314, 40.391907 ], [ 16.980061, 40.184208 ], [ 17.185905, 40.028057 ], [ 17.69883, 39.721463 ], [ 17.863833, 39.560961 ], [ 18.008258, 39.385339 ], [ 18.398434, 38.929199 ], [ 18.0423, 38.965621 ], [ 17.767105, 38.961574 ], [ 17.552614, 38.937292 ], [ 17.24909, 38.933245 ], [ 17.054835, 38.937292 ], [ 16.777873, 38.922101 ], [ 16.865054, 39.182118 ], [ 16.785374, 39.428041 ], [ 16.563414, 39.635521 ], [ 16.29477, 39.862363 ], [ 16.141203, 40.157397 ], [ 15.981135, 40.519689 ], [ 16.257962, 40.510533 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ESHM-CL4-10", "REGION": "ESHM20 Cluster 4", "UPPER DEPTH": 0.0, "LOWER DEPTH": 40.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.021359470374314, 49.704831803347354 ], [ 26.1140069381531, 49.162961332539766 ], [ 27.15948976703497, 48.682610138971384 ], [ 28.480099656148919, 48.223825500272675 ], [ 28.307162646860196, 46.989033151291338 ], [ 27.59769, 45.789243 ], [ 27.147483, 45.245657 ], [ 26.309615, 44.878868 ], [ 25.438906, 44.580488 ], [ 24.416384, 44.48092 ], [ 23.189799326543664, 44.201192468564287 ], [ 22.109311492230461, 43.864491895452559 ], [ 21.660115, 44.117266 ], [ 20.571567, 44.551052 ], [ 19.811278, 44.775623 ], [ 19.247072, 45.014306 ], [ 18.344046, 45.460427 ], [ 20.705795011305522, 46.504261588096064 ], [ 21.617644696646117, 47.122918432497748 ], [ 22.560937474584648, 47.782024097210318 ], [ 23.457065613626256, 48.328458816357646 ], [ 24.211699835977079, 48.838067008429206 ], [ 25.021359470374314, 49.704831803347354 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ESHM-CL2-11", "REGION": "ESHM20 Cluster 2", "UPPER DEPTH": 0.0, "LOWER DEPTH": 40.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.689976, 45.348237 ], [ 37.967569, 45.238712 ], [ 38.266584, 45.109277 ], [ 38.634534, 44.98125 ], [ 38.989487, 44.835239 ], [ 39.327253, 44.683626 ], [ 39.799546, 44.528182 ], [ 40.242692, 44.450538 ], [ 40.497908, 44.477451 ], [ 40.826944, 44.435903 ], [ 41.090665, 44.444371 ], [ 41.314877, 44.423294 ], [ 41.691253, 44.333713 ], [ 41.930873, 44.27709 ], [ 42.170045, 44.248596 ], [ 42.496295, 44.173501 ], [ 42.765796, 44.07488 ], [ 43.056867, 43.895228 ], [ 43.246721, 43.882001 ], [ 43.629894, 43.694123 ], [ 43.934609, 43.592144 ], [ 44.23413, 43.592527 ], [ 44.550359, 43.614647 ], [ 44.873891, 43.618491 ], [ 45.384254, 43.575884 ], [ 45.639509, 43.554915 ], [ 46.0, 43.440593 ], [ 46.0, 43.0 ], [ 46.0, 42.0 ], [ 46.0, 41.0 ], [ 46.0, 40.962171 ], [ 45.466654, 41.173726 ], [ 45.003665, 41.307468 ], [ 44.322976, 41.569732 ], [ 43.840173, 41.733065 ], [ 43.476838, 41.87559 ], [ 42.859616, 42.09903 ], [ 42.089596, 42.148721 ], [ 41.708494, 42.378321 ], [ 41.242255, 42.510253 ], [ 40.773951, 42.640181 ], [ 40.281108, 42.837595 ], [ 39.746333, 43.10606 ], [ 39.424905, 43.314159 ], [ 39.009385, 43.537964 ], [ 38.573551, 43.814641 ], [ 38.215748, 44.002544 ], [ 37.85377, 44.21423 ], [ 37.437953, 44.36758 ], [ 37.071324, 44.491687 ], [ 36.668077, 44.467725 ], [ 36.222723, 44.515188 ], [ 35.732913, 44.513295 ], [ 35.255105, 44.409745 ], [ 34.843275, 44.238181 ], [ 34.426096, 44.019419 ], [ 33.736098, 44.029488 ], [ 33.216211, 44.240052 ], [ 32.65319, 44.600746 ], [ 32.375146, 44.908868 ], [ 32.337216, 45.333269 ], [ 32.576339, 45.605215 ], [ 32.959757, 45.757431 ], [ 33.454092, 45.856377 ], [ 33.947761, 45.82249 ], [ 34.352602, 45.750399 ], [ 34.788607, 45.704032 ], [ 35.271319, 45.618766 ], [ 35.687971, 45.558033 ], [ 36.08317, 45.55204 ], [ 36.614356, 45.543986 ], [ 37.062849, 45.537185 ], [ 37.423812, 45.477609 ], [ 37.689976, 45.348237 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ESHM-CL1-12", "REGION": "ESHM20 Cluster 1", "UPPER DEPTH": 0.0, "LOWER DEPTH": 40.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.436447, 46.790886 ], [ 11.99523, 46.714351 ], [ 12.764011, 46.599452 ], [ 12.229066, 46.456069 ], [ 11.924294, 46.426112 ], [ 11.562713, 46.382113 ], [ 11.09794, 46.247252 ], [ 10.693928, 46.07437 ], [ 10.353833, 45.959846 ], [ 9.763485, 45.899398 ], [ 9.267559, 45.894837 ], [ 8.595009, 45.761116 ], [ 7.909243, 45.48925 ], [ 7.762298, 45.402625 ], [ 7.63313, 45.310859 ], [ 7.502986971856365, 45.191861906231459 ], [ 7.26288, 45.014555 ], [ 7.012627, 44.862886 ], [ 6.97471, 45.067639 ], [ 6.99746, 45.242058 ], [ 7.126378, 45.393727 ], [ 7.376632, 45.606063 ], [ 7.626885, 45.780482 ], [ 7.839222, 45.916984 ], [ 8.081891, 46.023152 ], [ 8.354895, 46.098986 ], [ 8.727238, 46.207599 ], [ 9.160926, 46.390552 ], [ 9.650427, 46.481809 ], [ 10.289104, 46.489443 ], [ 10.841473, 46.568112 ], [ 11.15607, 46.652074 ], [ 11.436447, 46.790886 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ESHM-CL4-13", "REGION": "ESHM20 Cluster 4", "UPPER DEPTH": 0.0, "LOWER DEPTH": 40.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.908631, 40.239109 ], [ 31.26671, 40.22873 ], [ 31.61233, 40.240175 ], [ 32.527268, 40.422278 ], [ 34.320071, 40.705205 ], [ 35.373984, 40.567314 ], [ 35.98043, 40.422558 ], [ 36.840207, 40.183506 ], [ 38.558255, 39.597426 ], [ 39.072238, 39.483665 ], [ 39.95775, 39.187377 ], [ 38.635474, 38.728213 ], [ 37.763529, 38.385967 ], [ 37.404029, 38.225567 ], [ 36.79806, 37.901796 ], [ 36.540277, 37.801825 ], [ 36.462636, 37.76538 ], [ 36.425475, 37.742726 ], [ 36.390801, 37.717716 ], [ 36.358851, 37.690521 ], [ 36.329842, 37.661327 ], [ 36.303973, 37.630334 ], [ 36.281421, 37.597753 ], [ 36.262339, 37.563807 ], [ 35.936943, 36.891339 ], [ 35.9144, 36.833292 ], [ 35.903633, 36.785703 ], [ 35.757555, 36.81129 ], [ 35.304213, 36.948131 ], [ 34.617013, 36.896851 ], [ 33.994629, 36.732743 ], [ 33.596232, 36.525869 ], [ 33.216661, 36.476323 ], [ 32.727503, 36.548557 ], [ 32.205301, 36.722487 ], [ 31.795816, 36.89917 ], [ 31.375477, 37.019931 ], [ 31.024637, 37.045696 ], [ 30.862968, 37.036214 ], [ 30.707602048579272, 37.734597826348697 ], [ 30.801747430375144, 39.303780713046706 ], [ 30.856441414085179, 39.860062700500755 ], [ 30.908631, 40.239109 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ESHM-CL2-14", "REGION": "ESHM20 Cluster 2", "UPPER DEPTH": 0.0, "LOWER DEPTH": 40.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.705795011305522, 46.504261588096064 ], [ 18.344046, 45.460427 ], [ 17.346262, 45.943613 ], [ 16.667557, 46.306894 ], [ 16.335205140190332, 46.574553563097894 ], [ 16.217293542948017, 46.817169380356141 ], [ 16.295901274442894, 47.18172147401318 ], [ 16.421673644834698, 47.474761017799509 ], [ 16.655698, 47.86968 ], [ 16.638559, 48.007345 ], [ 16.529759275640149, 48.206802344659621 ], [ 16.313588014029239, 48.311470483225278 ], [ 16.215328349660638, 48.31669826522333 ], [ 15.959853222302288, 48.235607446416815 ], [ 15.690621741932329, 48.192393715234722 ], [ 15.439077001148723, 48.153076854223215 ], [ 14.811953, 48.101493 ], [ 14.442254, 48.080368 ], [ 14.160748, 48.057906 ], [ 13.929588, 48.010202 ], [ 13.665602, 48.014575 ], [ 13.389265, 48.008633 ], [ 12.917726, 47.945333 ], [ 12.643811, 47.874371 ], [ 12.314199, 47.867104 ], [ 11.913216, 47.840479 ], [ 11.390382, 47.817299 ], [ 10.824448, 47.770292 ], [ 10.414105, 47.724137 ], [ 10.039361, 47.634049 ], [ 9.816531, 47.59103 ], [ 9.351171, 47.697495 ], [ 8.932265, 47.789479 ], [ 8.597704, 47.816366 ], [ 8.33916, 47.686442 ], [ 8.002012, 47.614235 ], [ 8.009908, 48.044276 ], [ 8.219449, 48.462361 ], [ 8.577389, 48.868935 ], [ 8.936864, 49.247498 ], [ 9.071808, 49.709128 ], [ 9.174881, 50.037506 ], [ 9.06915, 50.527922 ], [ 8.685412, 50.711507 ], [ 7.846789, 50.809063 ], [ 7.199609, 51.170336 ], [ 6.833103, 51.665358 ], [ 6.353614, 51.916421 ], [ 5.816621, 52.152409 ], [ 5.124261, 52.346129 ], [ 4.528502, 52.587034 ], [ 4.180992, 52.929818 ], [ 4.015397, 53.435216 ], [ 4.015397, 53.435216 ], [ 3.901614, 53.899977 ], [ 4.164358, 55.327569 ], [ 4.087357, 56.206273 ], [ 2.842117, 56.901205 ], [ 1.970666, 57.927943 ], [ 4.488825, 57.767848 ], [ 5.815918, 57.637275 ], [ 6.615871, 57.544554 ], [ 7.776165, 57.505866 ], [ 8.696233, 57.48583 ], [ 9.473167, 57.248438 ], [ 10.748917, 56.64097 ], [ 11.603521, 56.300455 ], [ 12.760337, 55.981224 ], [ 13.570064, 55.681039 ], [ 14.434329, 55.217937 ], [ 14.402997, 54.777526 ], [ 15.347328, 53.992419 ], [ 17.142614, 53.293004 ], [ 19.296271, 52.039658 ], [ 21.017241, 51.452949 ], [ 22.685703, 50.809607 ], [ 23.779357312755252, 50.290973238396184 ], [ 25.021359470374314, 49.704831803347354 ], [ 24.211699835977079, 48.838067008429206 ], [ 23.457065613626256, 48.328458816357646 ], [ 22.560937474584648, 47.782024097210318 ], [ 21.617644696646117, 47.122918432497748 ], [ 20.705795011305522, 46.504261588096064 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ESHM-CL3-15", "REGION": "ESHM20 Cluster 3", "UPPER DEPTH": 0.0, "LOWER DEPTH": 40.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.589179, 38.298343 ], [ 24.809492, 38.104365 ], [ 24.53092, 37.974826 ], [ 24.270668, 37.905947 ], [ 23.93946, 37.896167 ], [ 23.516795, 37.892414 ], [ 23.228281, 37.895316 ], [ 22.913236, 37.92073 ], [ 22.645491, 37.96761 ], [ 22.314825, 38.036298 ], [ 21.967889, 38.141069 ], [ 21.83669, 38.23371 ], [ 21.576024, 38.400945 ], [ 21.272273, 38.561582 ], [ 21.230195, 38.754338 ], [ 21.138926, 38.919838 ], [ 20.930421, 39.081875 ], [ 20.819267, 39.171006 ], [ 20.623002, 39.255759 ], [ 20.971547, 39.482949 ], [ 21.207476, 39.548676 ], [ 21.565889, 39.547996 ], [ 22.0, 39.51469 ], [ 22.39584, 39.48432 ], [ 23.019802, 39.456378 ], [ 23.262471, 39.336106 ], [ 23.381909, 39.185936 ], [ 23.50223, 39.083627 ], [ 23.577432, 39.042015 ], [ 23.89035, 38.868866 ], [ 24.30369, 38.820993 ], [ 24.615957, 38.741901 ], [ 24.589179, 38.298343 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ESHM-CL3-16", "REGION": "ESHM20 Cluster 3", "UPPER DEPTH": 0.0, "LOWER DEPTH": 40.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.816969, 43.761824 ], [ 9.88328, 43.707534 ], [ 9.952721, 43.655292 ], [ 10.010624, 43.613113 ], [ 9.964014, 43.397806 ], [ 9.868078, 43.208274 ], [ 9.788131, 42.846682 ], [ 9.839411, 42.410798 ], [ 9.840906, 42.006495 ], [ 9.76954, 41.829992 ], [ 9.812111, 41.610269 ], [ 9.937697, 41.380492 ], [ 10.140902, 40.852679 ], [ 10.213572, 40.577471 ], [ 10.24277, 40.427541 ], [ 10.252086, 40.058356 ], [ 10.308073, 39.779369 ], [ 10.266465, 39.568829 ], [ 10.218366, 39.370833 ], [ 10.19371, 39.166061 ], [ 10.148446, 38.993369 ], [ 10.02775, 38.837947 ], [ 9.903709, 38.617957 ], [ 9.430379, 38.423498 ], [ 8.852395, 38.20089 ], [ 8.812458, 38.174044 ], [ 8.676106, 38.281734 ], [ 8.29425, 38.415734 ], [ 8.014672, 38.696686 ], [ 7.594218, 39.119206 ], [ 7.546376, 39.444027 ], [ 7.488138, 39.83943 ], [ 7.624508, 40.219872 ], [ 7.806346, 40.727158 ], [ 7.972631, 41.047171 ], [ 8.062395, 41.270873 ], [ 8.224341, 41.478359 ], [ 8.294656, 42.024709 ], [ 8.460385, 42.427928 ], [ 8.63687, 42.784307 ], [ 8.801304, 42.957781 ], [ 9.014693, 43.071281 ], [ 9.103365, 43.229262 ], [ 9.142794, 43.423814 ], [ 9.185222, 43.602957 ], [ 9.142794, 43.70855 ], [ 9.030515, 43.812081 ], [ 8.867018, 43.84255 ], [ 8.753899, 43.901306 ], [ 8.826062, 44.070538 ], [ 8.755929, 44.274538 ], [ 8.89053, 44.301785 ], [ 9.08637, 44.275652 ], [ 9.211615, 44.206049 ], [ 9.348901, 44.176514 ], [ 9.465235, 44.116066 ], [ 9.568625, 44.051555 ], [ 9.645328, 43.965727 ], [ 9.713116, 43.88692 ], [ 9.763012, 43.817773 ], [ 9.816969, 43.761824 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ESHM-CL2-17", "REGION": "ESHM20 Cluster 2", "UPPER DEPTH": 0.0, "LOWER DEPTH": 40.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.596232, 36.525869 ], [ 33.994629, 36.732743 ], [ 34.617013, 36.896851 ], [ 35.304213, 36.948131 ], [ 35.757555, 36.81129 ], [ 35.903633, 36.785703 ], [ 35.826769, 36.317655 ], [ 35.822653, 36.280795 ], [ 35.822043, 36.255755 ], [ 35.823881, 36.223226 ], [ 35.846732, 36.0 ], [ 35.894313, 35.753943 ], [ 35.869724, 35.372497 ], [ 35.715488, 35.013432 ], [ 35.419738, 34.750192 ], [ 35.111988, 34.61325 ], [ 34.655542, 34.466067 ], [ 34.393862, 34.390149 ], [ 34.126437, 34.305161 ], [ 33.910641, 34.254528 ], [ 33.65491, 34.188629 ], [ 33.378264, 34.20236 ], [ 33.185723, 34.290614 ], [ 32.945167, 34.254265 ], [ 32.761608, 34.214989 ], [ 32.602092, 34.190055 ], [ 32.443244, 34.186476 ], [ 32.256815, 34.238314 ], [ 32.074278, 34.311757 ], [ 32.307295, 34.560862 ], [ 33.055069, 35.764297 ], [ 32.946081, 35.88402 ], [ 33.596232, 36.525869 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ESHM-CL4-18", "REGION": "ESHM20 Cluster 4", "UPPER DEPTH": 0.0, "LOWER DEPTH": 40.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.966561, 35.906124 ], [ 29.873982, 35.921372 ], [ 29.741632, 35.94317 ], [ 29.524921, 35.955905 ], [ 29.221929, 35.882098 ], [ 29.00429, 36.086846 ], [ 28.836066, 36.286841 ], [ 28.718136, 36.612557 ], [ 28.8, 36.633178 ], [ 29.025932, 36.712929 ], [ 29.248179, 36.7 ], [ 29.438584, 36.698538 ], [ 29.595219, 36.707462 ], [ 29.920252, 36.725981 ], [ 30.160287, 36.788839 ], [ 30.480805, 36.968647 ], [ 30.862968, 37.036214 ], [ 31.024637, 37.045696 ], [ 31.375477, 37.019931 ], [ 31.795816, 36.89917 ], [ 32.205301, 36.722487 ], [ 32.727503, 36.548557 ], [ 33.216661, 36.476323 ], [ 33.596232, 36.525869 ], [ 32.946081, 35.88402 ], [ 32.678642, 35.703795 ], [ 32.024665, 34.671953 ], [ 31.708173, 34.828544 ], [ 31.24792, 35.118034 ], [ 30.791539, 35.359998 ], [ 30.41941, 35.619857 ], [ 30.15431, 35.820553 ], [ 29.966561, 35.906124 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ESHM-CL1-19", "REGION": "ESHM20 Cluster 1", "UPPER DEPTH": 0.0, "LOWER DEPTH": 40.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.167945, 35.58614 ], [ 36.496702, 35.87285 ], [ 36.736254, 36.048438 ], [ 36.959364, 36.248639 ], [ 36.978719, 36.059574 ], [ 36.966643, 35.723582 ], [ 36.931143, 35.256782 ], [ 36.93076, 35.25213 ], [ 36.85966, 34.44853 ], [ 36.855518, 34.416912 ], [ 36.847315, 34.38039 ], [ 36.835544, 34.34456 ], [ 36.820285, 34.309668 ], [ 36.801642, 34.275952 ], [ 36.773726, 34.235746 ], [ 36.473752, 33.850978 ], [ 36.241288, 33.549554 ], [ 36.179632, 33.171861 ], [ 36.103482, 32.699928 ], [ 36.002946, 31.953063 ], [ 36.002267, 31.948253 ], [ 36.00015, 31.935426 ], [ 35.99403, 31.907742 ], [ 35.833486, 31.290067 ], [ 35.666908, 30.611798 ], [ 35.664676, 30.603143 ], [ 35.474876, 29.900643 ], [ 35.468643, 29.879879 ], [ 35.455049, 29.844506 ], [ 35.438017, 29.810195 ], [ 35.417666, 29.777181 ], [ 35.394132, 29.745689 ], [ 35.377146, 29.726656 ], [ 35.248588, 29.341636 ], [ 35.074399, 28.814282 ], [ 34.901904, 28.286719 ], [ 34.780892, 27.912579 ], [ 34.578239, 27.771416 ], [ 34.1327, 27.568912 ], [ 33.801799, 27.70998 ], [ 33.782628, 27.758858 ], [ 33.772772, 27.794924 ], [ 33.766223, 27.831608 ], [ 33.763026, 27.868658 ], [ 33.763202, 27.905822 ], [ 33.766751, 27.942846 ], [ 33.773648, 27.979477 ], [ 33.782791, 28.012245 ], [ 33.953891, 28.541245 ], [ 33.954304, 28.542517 ], [ 34.127204, 29.071317 ], [ 34.127599, 29.072519 ], [ 34.302199, 29.601119 ], [ 34.302628, 29.602409 ], [ 34.419232, 29.951627 ], [ 34.416644, 29.972914 ], [ 34.415804, 30.010072 ], [ 34.418627, 30.047161 ], [ 34.425093, 30.083927 ], [ 34.428924, 30.099357 ], [ 34.617557, 30.797539 ], [ 34.783692, 31.474002 ], [ 34.78497, 31.479058 ], [ 34.94033, 32.076789 ], [ 35.04681, 32.805371 ], [ 35.194925, 33.770685 ], [ 35.200338, 33.797695 ], [ 35.210799, 33.833809 ], [ 35.224782, 33.869076 ], [ 35.242189, 33.903254 ], [ 35.275927, 33.953888 ], [ 35.575374, 34.342154 ], [ 35.776299, 34.666171 ], [ 35.715488, 35.013432 ], [ 35.869724, 35.372497 ], [ 36.167945, 35.58614 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ESHM-CL1-20", "REGION": "ESHM20 Cluster 1", "UPPER DEPTH": 0.0, "LOWER DEPTH": 40.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.577793, 42.386365 ], [ 19.2, 42.6 ], [ 18.876497, 42.797621 ], [ 18.6, 43.0 ], [ 18.038817, 43.397649 ], [ 17.0, 44.0 ], [ 16.071249, 44.530289 ], [ 16.0, 44.6 ], [ 15.4, 45.0 ], [ 15.145905, 45.177513 ], [ 14.658881, 45.595513 ], [ 14.4, 45.8 ], [ 14.269265, 45.919121 ], [ 13.988876, 46.140442 ], [ 13.607155, 46.3886 ], [ 13.836449, 46.443375 ], [ 14.094412, 46.415042 ], [ 14.287842208490124, 46.402295151842196 ], [ 14.511874243250526, 46.407715597305042 ], [ 15.144666481784293, 46.534941031900424 ], [ 15.466958180913291, 46.621392446633813 ], [ 15.804971426341265, 46.694228623732251 ], [ 16.056516167124876, 46.780425946106924 ], [ 16.217293542948017, 46.817169380356141 ], [ 16.335205140190332, 46.574553563097894 ], [ 16.667557, 46.306894 ], [ 17.346262, 45.943613 ], [ 18.344046, 45.460427 ], [ 19.247072, 45.014306 ], [ 19.811278, 44.775623 ], [ 20.571567, 44.551052 ], [ 21.660115, 44.117266 ], [ 22.109311492230461, 43.864491895452559 ], [ 22.466608196790776, 43.609355123082977 ], [ 21.802918, 43.352402 ], [ 21.49528, 43.192505 ], [ 20.273447, 42.79096 ], [ 19.980425, 42.529938 ], [ 19.577793, 42.386365 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ESHM-CL1-21", "REGION": "ESHM20 Cluster 1", "UPPER DEPTH": 0.0, "LOWER DEPTH": 40.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.354769, 42.590564 ], [ 14.90386, 42.952725 ], [ 14.632284, 43.182766 ], [ 14.474401, 43.402327 ], [ 14.357776, 43.552273 ], [ 14.108301, 43.786625 ], [ 13.926185, 43.88567 ], [ 13.807975, 43.991003 ], [ 13.608047, 44.168717 ], [ 13.483092, 44.304567 ], [ 13.54283065671885, 44.500942949764031 ], [ 13.642852218517506, 44.9510075365666 ], [ 13.532187, 45.36442 ], [ 12.814171, 46.063012 ], [ 13.119591, 46.143114 ], [ 13.375433459541927, 46.199964645316399 ], [ 13.501083, 46.263237 ], [ 13.607155, 46.3886 ], [ 13.988876, 46.140442 ], [ 14.269265, 45.919121 ], [ 14.4, 45.8 ], [ 14.658881, 45.595513 ], [ 15.145905, 45.177513 ], [ 15.4, 45.0 ], [ 16.0, 44.6 ], [ 16.071249, 44.530289 ], [ 17.0, 44.0 ], [ 15.354769, 42.590564 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ESHM-CL4-22", "REGION": "ESHM20 Cluster 4", "UPPER DEPTH": 0.0, "LOWER DEPTH": 40.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.0, 44.0 ], [ 18.038817, 43.397649 ], [ 18.6, 43.0 ], [ 18.876497, 42.797621 ], [ 19.2, 42.6 ], [ 19.577793, 42.386365 ], [ 19.796763, 41.730476 ], [ 18.912244, 41.578359 ], [ 18.820987, 41.858052 ], [ 18.499628, 42.068025 ], [ 18.120475, 42.167044 ], [ 17.803503, 42.135871 ], [ 17.178831, 41.922436 ], [ 16.829919, 41.99266 ], [ 16.315403, 42.252742 ], [ 15.929431, 42.344375 ], [ 15.685075, 42.438786 ], [ 15.354769, 42.590564 ], [ 17.0, 44.0 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ESHM-CL2-23", "REGION": "ESHM20 Cluster 2", "UPPER DEPTH": 0.0, "LOWER DEPTH": 40.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.11212, 39.23484 ], [ 41.390133, 38.752389 ], [ 41.340595, 38.719453 ], [ 40.963295, 38.496353 ], [ 40.939538, 38.483043 ], [ 40.89953, 38.463675 ], [ 40.857641, 38.446992 ], [ 40.814158, 38.433108 ], [ 40.75783, 38.419797 ], [ 40.347315, 38.340897 ], [ 39.634167, 38.086844 ], [ 39.622726, 38.082887 ], [ 39.092972, 37.905169 ], [ 38.617035, 37.718495 ], [ 38.307046, 37.596512 ], [ 37.980919, 37.451002 ], [ 37.401436, 37.13959 ], [ 37.332423, 37.107875 ], [ 37.239149, 37.071703 ], [ 37.02022, 36.619203 ], [ 36.959364, 36.248639 ], [ 36.736254, 36.048438 ], [ 36.496702, 35.87285 ], [ 36.167945, 35.58614 ], [ 35.869724, 35.372497 ], [ 35.894313, 35.753943 ], [ 35.846732, 36.0 ], [ 35.823881, 36.223226 ], [ 35.822043, 36.255755 ], [ 35.822653, 36.280795 ], [ 35.826769, 36.317655 ], [ 35.903633, 36.785703 ], [ 35.907211, 36.805034 ], [ 35.9144, 36.833292 ], [ 35.936943, 36.891339 ], [ 36.262339, 37.563807 ], [ 36.281421, 37.597753 ], [ 36.303973, 37.630334 ], [ 36.329842, 37.661327 ], [ 36.358851, 37.690521 ], [ 36.390801, 37.717716 ], [ 36.425475, 37.742726 ], [ 36.462636, 37.76538 ], [ 36.540277, 37.801825 ], [ 36.79806, 37.901796 ], [ 37.363964, 38.20591 ], [ 37.404029, 38.225567 ], [ 37.763529, 38.385967 ], [ 37.796262, 38.397919 ], [ 38.113696, 38.524435 ], [ 38.635474, 38.728213 ], [ 39.174926, 38.909184 ], [ 39.95775, 39.187377 ], [ 41.11212, 39.23484 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ESHM-CL1-24", "REGION": "ESHM20 Cluster 1", "UPPER DEPTH": 0.0, "LOWER DEPTH": 40.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.313588014029239, 48.311470483225278 ], [ 16.529759275640149, 48.206802344659621 ], [ 16.638559, 48.007345 ], [ 16.655698, 47.86968 ], [ 16.421673644834698, 47.474761017799509 ], [ 16.295901274442894, 47.18172147401318 ], [ 16.217293542948017, 46.817169380356141 ], [ 16.056516167124876, 46.780425946106924 ], [ 15.804971426341265, 46.694228623732251 ], [ 15.466958180913291, 46.621392446633813 ], [ 15.144666481784293, 46.534941031900424 ], [ 14.511874243250526, 46.407715597305042 ], [ 14.287842208490124, 46.402295151842196 ], [ 14.094412, 46.415042 ], [ 13.836449, 46.443375 ], [ 13.607155, 46.3886 ], [ 13.128367, 46.520539 ], [ 12.764011, 46.599452 ], [ 11.99523, 46.714351 ], [ 11.436447, 46.790886 ], [ 11.472024, 46.896966 ], [ 11.5401, 47.032271 ], [ 11.462209, 47.233658 ], [ 11.382619, 47.342189 ], [ 11.272371, 47.382081 ], [ 11.078732, 47.533928 ], [ 10.752879, 47.637572 ], [ 10.414105, 47.724137 ], [ 10.824448, 47.770292 ], [ 11.390382, 47.817299 ], [ 11.913216, 47.840479 ], [ 12.314199, 47.867104 ], [ 12.643811, 47.874371 ], [ 12.917726, 47.945333 ], [ 13.389265, 48.008633 ], [ 13.665602, 48.014575 ], [ 13.929588, 48.010202 ], [ 14.160748, 48.057906 ], [ 14.442254, 48.080368 ], [ 14.811953, 48.101493 ], [ 15.439077001148723, 48.153076854223215 ], [ 15.690621741932329, 48.192393715234722 ], [ 15.959853222302288, 48.235607446416815 ], [ 16.215328349660638, 48.31669826522333 ], [ 16.313588014029239, 48.311470483225278 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ESHM-CL5-25", "REGION": "ESHM20 Cluster 5", "UPPER DEPTH": 0.0, "LOWER DEPTH": 40.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.542371, 48.419134 ], [ 34.251281, 48.090722 ], [ 40.006497, 48.899847 ], [ 39.998, 45.344 ], [ 40.317973, 45.242527 ], [ 40.826944, 44.435903 ], [ 40.497908, 44.477451 ], [ 40.242692, 44.450538 ], [ 39.799546, 44.528182 ], [ 39.327253, 44.683626 ], [ 38.989487, 44.835239 ], [ 38.634534, 44.98125 ], [ 38.266584, 45.109277 ], [ 37.967569, 45.238712 ], [ 37.689976, 45.348237 ], [ 37.423812, 45.477609 ], [ 37.062849, 45.537185 ], [ 36.614356, 45.543986 ], [ 36.08317, 45.55204 ], [ 35.687971, 45.558033 ], [ 35.271319, 45.618766 ], [ 34.788607, 45.704032 ], [ 34.352602, 45.750399 ], [ 33.947761, 45.82249 ], [ 33.454092, 45.856377 ], [ 32.959757, 45.757431 ], [ 32.576339, 45.605215 ], [ 32.337216, 45.333269 ], [ 32.365842, 45.012971 ], [ 29.874374, 44.803712 ], [ 29.411607, 43.997001 ], [ 28.950039, 43.278163 ], [ 28.083776, 42.955353 ], [ 27.523197, 42.961 ], [ 26.949625, 42.968225 ], [ 25.988234567761289, 42.789942956443547 ], [ 24.657056, 42.973515 ], [ 23.402040201579815, 43.301220050478072 ], [ 22.466608196790776, 43.609355123082977 ], [ 22.109311492230461, 43.864491895452559 ], [ 23.189799326543664, 44.201192468564287 ], [ 24.416384, 44.48092 ], [ 25.438906, 44.580488 ], [ 26.309615, 44.878868 ], [ 27.147483, 45.245657 ], [ 27.59769, 45.789243 ], [ 28.307162646860196, 46.989033151291338 ], [ 28.480099656148919, 48.223825500272675 ], [ 31.542371, 48.419134 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ESHM-CL1-26", "REGION": "ESHM20 Cluster 1", "UPPER DEPTH": 0.0, "LOWER DEPTH": 40.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.361149, 36.905365 ], [ 20.497061, 36.852176 ], [ 20.602974, 36.851577 ], [ 20.684639, 36.867336 ], [ 20.827063, 37.02795 ], [ 20.987004, 37.241001 ], [ 21.13163, 37.389278 ], [ 21.578794, 37.222056 ], [ 21.792038, 37.040774 ], [ 22.03132, 36.737835 ], [ 22.280076, 36.3917 ], [ 22.561448, 36.164871 ], [ 22.8739, 35.893884 ], [ 23.120993, 35.581633 ], [ 23.325979, 35.400729 ], [ 23.557331, 35.208405 ], [ 24.340819, 34.968461 ], [ 24.804858, 34.833326 ], [ 25.364386, 34.839293 ], [ 25.818863, 34.919242 ], [ 26.258956, 34.947584 ], [ 26.462319, 34.99957 ], [ 26.450809, 34.881609 ], [ 26.442933, 34.800677 ], [ 26.433732, 34.705895 ], [ 26.578174, 34.540107 ], [ 26.498627, 34.35254 ], [ 26.293425, 34.104665 ], [ 26.127744, 33.946154 ], [ 25.882361, 33.798163 ], [ 25.573938, 33.692403 ], [ 25.403848, 33.662764 ], [ 25.235098, 33.753068 ], [ 25.130412, 33.800653 ], [ 24.996851, 33.860298 ], [ 24.868695, 33.893294 ], [ 24.66681, 33.917841 ], [ 24.575932, 33.928755 ], [ 24.441587, 34.047844 ], [ 24.36632, 34.091079 ], [ 24.267428, 34.240126 ], [ 24.186208, 34.249523 ], [ 23.974296, 34.282313 ], [ 23.844118, 34.245416 ], [ 23.771644, 34.24491 ], [ 23.651796, 34.206638 ], [ 23.558532, 34.139599 ], [ 23.430153, 34.110622 ], [ 23.232156, 34.097474 ], [ 23.15226, 34.114487 ], [ 22.982178, 34.149375 ], [ 22.839943, 34.163979 ], [ 22.700099, 34.195282 ], [ 22.540997, 34.236868 ], [ 22.451791, 34.262791 ], [ 22.33315, 34.300056 ], [ 22.267723, 34.349219 ], [ 22.104778, 34.44187 ], [ 22.02208, 34.518203 ], [ 21.901632, 34.546524 ], [ 21.825435, 34.596369 ], [ 21.689864, 34.668657 ], [ 21.56208, 34.722921 ], [ 21.48173, 34.824283 ], [ 21.387603, 34.901063 ], [ 21.312244, 35.011113 ], [ 21.290363, 35.101872 ], [ 21.260171, 35.173365 ], [ 21.281967, 35.282979 ], [ 21.240375, 35.385293 ], [ 21.202229, 35.465088 ], [ 21.172221, 35.562502 ], [ 21.092096, 35.76084 ], [ 21.025287, 35.849437 ], [ 20.959733, 35.969458 ], [ 20.882017, 36.13378 ], [ 20.936239, 36.292064 ], [ 20.849848, 36.441982 ], [ 20.714757, 36.598732 ], [ 20.420951, 36.678306 ], [ 20.316406, 36.769554 ], [ 20.204815, 36.962467 ], [ 20.361149, 36.905365 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ESHM-CL1-27", "REGION": "ESHM20 Cluster 1", "UPPER DEPTH": 0.0, "LOWER DEPTH": 40.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.455207, 35.851927 ], [ 15.216174, 35.346879 ], [ 15.140831, 35.483276 ], [ 14.75332, 35.867998 ], [ 14.456512, 36.064951 ], [ 14.120935, 36.280259 ], [ 13.670726, 36.558652 ], [ 13.456236, 36.665873 ], [ 13.355285, 36.657529 ], [ 13.155606, 36.823863 ], [ 13.011159, 37.006444 ], [ 12.672966, 37.31064 ], [ 12.87463, 37.389212 ], [ 13.006516, 37.373759 ], [ 13.131467, 37.352169 ], [ 13.258885, 37.201917 ], [ 13.42791, 37.066282 ], [ 13.668994, 36.952114 ], [ 13.895684499730786, 36.940290403131165 ], [ 14.112397883627871, 36.995786465970731 ], [ 14.254095096175964, 37.064545376713681 ], [ 14.348559904541361, 37.137671920285946 ], [ 14.476365233506309, 37.226215479138901 ], [ 14.662516473520473, 37.325702858622243 ], [ 14.841138, 37.363173 ], [ 15.042786, 37.414229 ], [ 15.18141, 37.449973 ], [ 15.270956, 37.527548 ], [ 15.395705, 37.289544 ], [ 15.532658, 37.153596 ], [ 15.852888, 36.842707 ], [ 15.981281, 36.653131 ], [ 15.771872, 36.539217 ], [ 15.869458, 36.175049 ], [ 16.090638, 35.949772 ], [ 16.455207, 35.851927 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ESHM-CL1-28", "REGION": "ESHM20 Cluster 1", "UPPER DEPTH": 0.0, "LOWER DEPTH": 40.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.603738, 47.275947 ], [ 8.241006, 47.153356 ], [ 8.013306, 47.061715 ], [ 7.671888, 46.943833 ], [ 7.213998, 46.843985 ], [ 6.936219, 46.721482 ], [ 6.606993, 46.541841 ], [ 6.275344, 46.273661 ], [ 6.143581, 46.166116 ], [ 5.958, 45.831639 ], [ 5.712692, 45.619644 ], [ 5.584578, 45.477054 ], [ 5.194691, 45.068439 ], [ 5.033826, 44.78771 ], [ 4.885375, 44.392906 ], [ 4.833519, 44.020893 ], [ 4.614196, 43.785054 ], [ 4.636148, 43.625749 ], [ 4.321866, 43.575933 ], [ 3.987483, 43.572277 ], [ 4.038003909130024, 44.375965566580469 ], [ 4.193593005261266, 44.724438952732804 ], [ 4.438090156324644, 45.258884556483416 ], [ 4.704814321121057, 45.796095658602304 ], [ 4.982651992783988, 46.320502635308841 ], [ 5.193808623247813, 46.611384928499604 ], [ 5.464597, 46.85193 ], [ 5.759605, 47.112754 ], [ 6.08402, 47.32258 ], [ 6.727743631970249, 47.591107555755123 ], [ 7.055930910961364, 47.599059110044948 ], [ 7.405735316113571, 47.607009456046278 ], [ 7.704444695794106, 47.60568448228701 ], [ 8.002012, 47.614235 ], [ 8.33916, 47.686442 ], [ 8.597704, 47.816366 ], [ 8.932265, 47.789479 ], [ 9.351171, 47.697495 ], [ 9.816531, 47.59103 ], [ 9.308131, 47.478948 ], [ 9.032024, 47.380626 ], [ 8.603738, 47.275947 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ESHM-CL3-29", "REGION": "ESHM20 Cluster 3", "UPPER DEPTH": 0.0, "LOWER DEPTH": 40.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.639965, 37.661124 ], [ 19.662842, 37.828857 ], [ 19.797837, 37.967739 ], [ 20.021, 38.14641 ], [ 20.178272, 38.295969 ], [ 20.382096, 38.474469 ], [ 20.529713, 38.770236 ], [ 20.623002, 39.255759 ], [ 20.819267, 39.171006 ], [ 20.930421, 39.081875 ], [ 21.138926, 38.919838 ], [ 21.230195, 38.754338 ], [ 21.272273, 38.561582 ], [ 21.576024, 38.400945 ], [ 21.83669, 38.23371 ], [ 21.43321, 37.689253 ], [ 21.303218, 37.577571 ], [ 21.13163, 37.389278 ], [ 20.987004, 37.241001 ], [ 20.827063, 37.02795 ], [ 20.684639, 36.867336 ], [ 20.602974, 36.851577 ], [ 20.497061, 36.852176 ], [ 20.361149, 36.905365 ], [ 20.204815, 36.962467 ], [ 20.033455, 37.135291 ], [ 19.88278, 37.248928 ], [ 19.756231, 37.320189 ], [ 19.665942, 37.42392 ], [ 19.653124, 37.518129 ], [ 19.639965, 37.661124 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ESHM-CL2-30", "REGION": "ESHM20 Cluster 2", "UPPER DEPTH": 0.0, "LOWER DEPTH": 40.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.833519, 44.020893 ], [ 6.026003, 44.828587 ], [ 6.118429, 44.645491 ], [ 6.199547, 44.483659 ], [ 6.267317, 44.368505 ], [ 6.51212, 44.233461 ], [ 6.701706, 44.172793 ], [ 6.868542, 44.195543 ], [ 6.959543, 44.294128 ], [ 7.065711, 44.400296 ], [ 7.470468, 44.378129 ], [ 7.937825, 44.383413 ], [ 8.280073, 44.387282 ], [ 8.755929, 44.274538 ], [ 8.826062, 44.070538 ], [ 8.753899, 43.901306 ], [ 8.671358, 43.738187 ], [ 8.573539, 43.585706 ], [ 8.410583, 43.384849 ], [ 8.211024, 43.180309 ], [ 7.983288, 43.050649 ], [ 7.737085, 42.932088 ], [ 7.438564, 42.811741 ], [ 7.21076, 42.772505 ], [ 6.941207, 42.767855 ], [ 6.665606, 42.782229 ], [ 6.413094, 42.793156 ], [ 6.149452, 42.831027 ], [ 5.847989, 42.882579 ], [ 5.621354, 42.921334 ], [ 5.342712, 43.033018 ], [ 5.113211, 43.1281 ], [ 4.952557, 43.245753 ], [ 4.818071, 43.380377 ], [ 4.73356, 43.495375 ], [ 4.636148, 43.625749 ], [ 4.614196, 43.785054 ], [ 4.725448, 43.904684 ], [ 4.833519, 44.020893 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ESHM-CL4-31", "REGION": "ESHM20 Cluster 4", "UPPER DEPTH": 0.0, "LOWER DEPTH": 40.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.389667, 38.752079 ], [ 41.390133, 38.752389 ], [ 41.11212, 39.23484 ], [ 39.95775, 39.187377 ], [ 39.598779, 39.309558 ], [ 39.072238, 39.483665 ], [ 38.558255, 39.597426 ], [ 37.779275, 39.859193 ], [ 36.840207, 40.183506 ], [ 35.98043, 40.422558 ], [ 35.373984, 40.567314 ], [ 34.320071, 40.705205 ], [ 33.523861, 40.582669 ], [ 32.527268, 40.422278 ], [ 31.61233, 40.240175 ], [ 31.26671, 40.22873 ], [ 30.908631, 40.239109 ], [ 30.542345, 40.26058 ], [ 30.181564, 40.229657 ], [ 29.854827, 40.194748 ], [ 29.506903, 40.155207 ], [ 29.12954, 40.139419 ], [ 28.774398, 40.090076 ], [ 28.46911, 40.000467 ], [ 27.971582, 39.914483 ], [ 27.534303, 39.759061 ], [ 27.196742, 39.639705 ], [ 26.957496, 39.528521 ], [ 26.584892, 39.29299 ], [ 26.383354, 39.057101 ], [ 26.175032, 38.874278 ], [ 25.917141, 38.725759 ], [ 25.455035, 38.461174 ], [ 24.809492, 38.104365 ], [ 24.589179, 38.298343 ], [ 24.615957, 38.741901 ], [ 24.30369, 38.820993 ], [ 23.89035, 38.868866 ], [ 23.577432, 39.042015 ], [ 23.50223, 39.083627 ], [ 23.381909, 39.185936 ], [ 23.262471, 39.336106 ], [ 23.019802, 39.456378 ], [ 23.131241, 39.773292 ], [ 23.236904, 39.920471 ], [ 23.346004, 40.043317 ], [ 23.540678, 40.075341 ], [ 23.805658, 40.082194 ], [ 24.073732, 40.124184 ], [ 24.2768, 40.181991 ], [ 24.575057, 40.279751 ], [ 24.862763, 40.391433 ], [ 25.131996, 40.476894 ], [ 25.445202, 40.539829 ], [ 25.840845071208395, 40.626298855898213 ], [ 26.131693677739445, 40.67997226616788 ], [ 26.420249, 40.7486 ], [ 26.843818, 40.878124 ], [ 27.212549985794013, 40.968468643925242 ], [ 27.609519029843142, 41.0396554544444 ], [ 27.986836141018557, 41.104842469005753 ], [ 28.324849386446527, 41.116687708708753 ], [ 28.713957657346171, 41.140371776535716 ], [ 29.154160953717486, 41.134451561063941 ], [ 29.448939946823277, 41.104842469005753 ], [ 29.672971981583679, 41.081145578624216 ], [ 29.959890201539981, 41.069293928188252 ], [ 30.315245, 41.046737 ], [ 30.841249, 41.054013 ], [ 31.034569, 41.06188 ], [ 31.342211, 41.115481 ], [ 32.244219, 41.295229 ], [ 32.271398, 41.300122 ], [ 33.284198, 41.463122 ], [ 34.184213, 41.601519 ], [ 34.232381, 41.60646 ], [ 34.280919, 41.608341 ], [ 34.336419, 41.606731 ], [ 34.881719, 41.571131 ], [ 34.93161, 41.566223 ], [ 34.962453, 41.561503 ], [ 35.657953, 41.440203 ], [ 35.702409, 41.431036 ], [ 36.343809, 41.277936 ], [ 36.36953, 41.271295 ], [ 37.26293, 41.022895 ], [ 37.304025, 41.010107 ], [ 38.260591, 40.679751 ], [ 38.992634, 40.433781 ], [ 39.286197, 40.350003 ], [ 39.673108, 40.21386 ], [ 39.990403, 40.113333 ], [ 40.307032, 39.999074 ], [ 40.639997, 39.845764 ], [ 41.017944, 39.674039 ], [ 41.280881, 39.556362 ], [ 41.874513, 39.376104 ], [ 42.558322, 39.168463 ], [ 42.988449, 39.037854 ], [ 43.329004, 38.934443 ], [ 43.75891, 38.816853 ], [ 44.171505, 38.703999 ], [ 44.439278, 38.606602 ], [ 44.73317, 38.499705 ], [ 44.794489, 38.365345 ], [ 44.759686, 38.203027 ], [ 44.660599, 38.070382 ], [ 44.537074, 37.961218 ], [ 44.406786, 37.929827 ], [ 44.211511, 37.950636 ], [ 43.792921, 38.068047 ], [ 43.244735, 38.248997 ], [ 42.489358, 38.463691 ], [ 41.90485, 38.617212 ], [ 41.444976, 38.737704 ], [ 41.389667, 38.752079 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ESHM-CL1-32", "REGION": "ESHM20 Cluster 1", "UPPER DEPTH": 0.0, "LOWER DEPTH": 40.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.232955, 45.51743 ], [ 6.402322, 45.716997 ], [ 6.53398, 45.863037 ], [ 6.714066, 46.065485 ], [ 6.993933, 46.265977 ], [ 7.3304, 46.457095 ], [ 7.729265, 46.52432 ], [ 8.077051, 46.644722 ], [ 8.385955, 46.826017 ], [ 8.712375, 46.907233 ], [ 9.103464, 47.005742 ], [ 9.460502, 47.109016 ], [ 9.786395, 47.263255 ], [ 10.303628, 47.365184 ], [ 10.789038, 47.426948 ], [ 11.097341, 47.427977 ], [ 11.272371, 47.382081 ], [ 11.382619, 47.342189 ], [ 11.462209, 47.233658 ], [ 11.5401, 47.032271 ], [ 11.472024, 46.896966 ], [ 11.436447, 46.790886 ], [ 11.15607, 46.652074 ], [ 10.841473, 46.568112 ], [ 10.289104, 46.489443 ], [ 9.650427, 46.481809 ], [ 9.160926, 46.390552 ], [ 8.727238, 46.207599 ], [ 8.354895, 46.098986 ], [ 8.081891, 46.023152 ], [ 7.839222, 45.916984 ], [ 7.626885, 45.780482 ], [ 7.376632, 45.606063 ], [ 7.126378, 45.393727 ], [ 6.99746, 45.242058 ], [ 6.97471, 45.067639 ], [ 7.012627, 44.862886 ], [ 7.111212, 44.642966 ], [ 7.065711, 44.400296 ], [ 6.959543, 44.294128 ], [ 6.868542, 44.195543 ], [ 6.701706, 44.172793 ], [ 6.51212, 44.233461 ], [ 6.267317, 44.368505 ], [ 6.199547, 44.483659 ], [ 6.118429, 44.645491 ], [ 6.026003, 44.828587 ], [ 5.987281, 45.0567 ], [ 6.066674, 45.291341 ], [ 6.232955, 45.51743 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ESHM-CL1-33", "REGION": "ESHM20 Cluster 1", "UPPER DEPTH": 0.0, "LOWER DEPTH": 40.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.833519, 44.020893 ], [ 4.866494, 44.257455 ], [ 4.885375, 44.392906 ], [ 4.974712, 44.630498 ], [ 5.033826, 44.78771 ], [ 5.118528, 44.935526 ], [ 5.194691, 45.068439 ], [ 5.410654, 45.303205 ], [ 5.584578, 45.477054 ], [ 5.712692, 45.619644 ], [ 5.958, 45.831639 ], [ 6.143581, 46.166116 ], [ 6.275344, 46.273661 ], [ 6.606993, 46.541841 ], [ 6.936219, 46.721482 ], [ 7.213998, 46.843985 ], [ 7.671888, 46.943833 ], [ 8.013306, 47.061715 ], [ 8.241006, 47.153356 ], [ 8.603738, 47.275947 ], [ 9.032024, 47.380626 ], [ 9.308131, 47.478948 ], [ 9.816531, 47.59103 ], [ 10.039361, 47.634049 ], [ 10.414105, 47.724137 ], [ 10.752879, 47.637572 ], [ 11.078732, 47.533928 ], [ 11.272371, 47.382081 ], [ 11.097341, 47.427977 ], [ 10.789038, 47.426948 ], [ 10.303628, 47.365184 ], [ 9.786395, 47.263255 ], [ 9.460502, 47.109016 ], [ 9.103464, 47.005742 ], [ 8.712375, 46.907233 ], [ 8.385955, 46.826017 ], [ 8.077051, 46.644722 ], [ 7.729265, 46.52432 ], [ 7.3304, 46.457095 ], [ 6.993933, 46.265977 ], [ 6.714066, 46.065485 ], [ 6.53398, 45.863037 ], [ 6.402322, 45.716997 ], [ 6.232955, 45.51743 ], [ 6.066674, 45.291341 ], [ 5.987281, 45.0567 ], [ 6.026003, 44.828587 ], [ 4.833519, 44.020893 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ESHM-CL2-34", "REGION": "ESHM20 Cluster 2", "UPPER DEPTH": 0.0, "LOWER DEPTH": 40.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.523197, 42.961 ], [ 28.083776, 42.955353 ], [ 28.268266, 42.400842 ], [ 28.536295, 41.680322 ], [ 28.645322, 41.380601 ], [ 28.713957657346171, 41.140371776535716 ], [ 27.986836141018557, 41.104842469005753 ], [ 27.609519029843142, 41.0396554544444 ], [ 27.212549985794013, 40.968468643925242 ], [ 26.843818, 40.878124 ], [ 26.420249, 40.7486 ], [ 26.131693677739445, 40.67997226616788 ], [ 25.840845071208395, 40.626298855898213 ], [ 25.445202, 40.539829 ], [ 25.131996, 40.476894 ], [ 24.862763, 40.391433 ], [ 24.575057, 40.279751 ], [ 24.2768, 40.181991 ], [ 24.073732, 40.124184 ], [ 23.805658, 40.082194 ], [ 23.540678, 40.075341 ], [ 23.346004, 40.043317 ], [ 23.236904, 39.920471 ], [ 23.131241, 39.773292 ], [ 23.019802, 39.456378 ], [ 22.39584, 39.48432 ], [ 22.0, 39.51469 ], [ 21.565889, 39.547996 ], [ 21.207476, 39.548676 ], [ 20.971547, 39.482949 ], [ 20.62719, 39.821521 ], [ 20.630382, 40.168286 ], [ 20.43109, 41.003578 ], [ 20.093951, 41.226816 ], [ 19.910962, 41.547396 ], [ 19.796763, 41.730476 ], [ 19.621805, 42.259495 ], [ 19.577793, 42.386365 ], [ 19.980425, 42.529938 ], [ 20.273447, 42.79096 ], [ 21.49528, 43.192505 ], [ 21.802918, 43.352402 ], [ 22.466608196790776, 43.609355123082977 ], [ 23.402040201579815, 43.301220050478072 ], [ 24.657056, 42.973515 ], [ 25.988234567761289, 42.789942956443547 ], [ 26.949625, 42.968225 ], [ 27.523197, 42.961 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ESHM-CL2-35", "REGION": "ESHM20 Cluster 2", "UPPER DEPTH": 0.0, "LOWER DEPTH": 40.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.937825, 44.383413 ], [ 7.470468, 44.378129 ], [ 7.065711, 44.400296 ], [ 7.111212, 44.642966 ], [ 7.012627, 44.862886 ], [ 7.26288, 45.014555 ], [ 7.502986971856365, 45.191861906231459 ], [ 7.63313, 45.310859 ], [ 7.762298, 45.402625 ], [ 7.909243, 45.48925 ], [ 8.595009, 45.761116 ], [ 9.053321179735514, 45.439987121902462 ], [ 9.218313, 45.375307 ], [ 9.592069, 45.298746 ], [ 9.912694, 45.252328 ], [ 10.163734, 45.208894 ], [ 10.446209, 45.17858 ], [ 10.625112, 45.118542 ], [ 10.870267, 45.015124 ], [ 11.149631, 45.021621 ], [ 11.408338, 45.008227 ], [ 11.642967, 44.994629 ], [ 11.856759, 44.897992 ], [ 12.096155, 44.78674 ], [ 12.189285, 44.627047 ], [ 12.353811, 44.54144 ], [ 12.627341, 44.401727 ], [ 12.863815, 44.155126 ], [ 13.075781, 44.139882 ], [ 13.49697, 43.964946 ], [ 13.784875, 43.91177 ], [ 13.926185, 43.88567 ], [ 14.108301, 43.786625 ], [ 14.357776, 43.552273 ], [ 14.474401, 43.402327 ], [ 14.632284, 43.182766 ], [ 14.90386, 42.952725 ], [ 15.354769, 42.590564 ], [ 15.311751, 42.461509 ], [ 15.124035, 42.441955 ], [ 14.93632, 42.434134 ], [ 14.744693, 42.391115 ], [ 14.619549, 42.359829 ], [ 14.553066, 42.301168 ], [ 14.52178, 42.211221 ], [ 14.513959, 42.133006 ], [ 14.510048, 42.023505 ], [ 14.490494, 41.882718 ], [ 14.456692, 41.728641 ], [ 14.287874, 41.82737 ], [ 14.108568, 42.022111 ], [ 13.912053, 42.143391 ], [ 13.80749, 42.222348 ], [ 13.743959, 42.323957 ], [ 13.616277, 42.458944 ], [ 13.502232, 42.579514 ], [ 13.228409, 42.840888 ], [ 12.853692, 43.339376 ], [ 12.512617, 43.479524 ], [ 11.977709, 43.84435 ], [ 11.687918, 43.976556 ], [ 11.306791, 44.157336 ], [ 11.02365, 44.245925 ], [ 10.73933, 44.255568 ], [ 10.439698, 44.381215 ], [ 10.17917, 44.452952 ], [ 10.004788, 44.489903 ], [ 9.699358, 44.687244 ], [ 9.665537, 44.655523 ], [ 9.579938, 44.584901 ], [ 9.263662, 44.278596 ], [ 9.211615, 44.206049 ], [ 9.08637, 44.275652 ], [ 8.89053, 44.301785 ], [ 8.755929, 44.274538 ], [ 8.280073, 44.387282 ], [ 7.937825, 44.383413 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ESHM-CL3-36", "REGION": "ESHM20 Cluster 3", "UPPER DEPTH": 0.0, "LOWER DEPTH": 40.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.211615, 44.206049 ], [ 9.263662, 44.278596 ], [ 9.579938, 44.584901 ], [ 9.665537, 44.655523 ], [ 9.699358, 44.687244 ], [ 10.004788, 44.489903 ], [ 10.17917, 44.452952 ], [ 10.439698, 44.381215 ], [ 10.73933, 44.255568 ], [ 11.02365, 44.245925 ], [ 11.306791, 44.157336 ], [ 11.687918, 43.976556 ], [ 11.977709, 43.84435 ], [ 12.512617, 43.479524 ], [ 12.853692, 43.339376 ], [ 13.228409, 42.840888 ], [ 13.502232, 42.579514 ], [ 13.616277, 42.458944 ], [ 13.743959, 42.323957 ], [ 13.80749, 42.222348 ], [ 13.912053, 42.143391 ], [ 14.108568, 42.022111 ], [ 14.287874, 41.82737 ], [ 14.364477, 41.782571 ], [ 14.068797, 41.616884 ], [ 13.796283, 41.341555 ], [ 13.773777, 41.344946 ], [ 13.499187, 41.386314 ], [ 13.076231, 41.510727 ], [ 12.866105, 41.661848 ], [ 12.686931, 41.790709 ], [ 12.510608, 42.025832 ], [ 12.40978, 42.261146 ], [ 12.310253, 42.513395 ], [ 12.2071, 42.74295 ], [ 12.135371, 42.981751 ], [ 12.009097, 43.161218 ], [ 11.839903, 43.314659 ], [ 11.618609, 43.431001 ], [ 11.43943, 43.510149 ], [ 11.150528, 43.595175 ], [ 10.859064, 43.662424 ], [ 10.557472, 43.712273 ], [ 10.369153, 43.715907 ], [ 10.109689, 43.625638 ], [ 10.010624, 43.613113 ], [ 9.952721, 43.655292 ], [ 9.88328, 43.707534 ], [ 9.816969, 43.761824 ], [ 9.763012, 43.817773 ], [ 9.713116, 43.88692 ], [ 9.645328, 43.965727 ], [ 9.568625, 44.051555 ], [ 9.465235, 44.116066 ], [ 9.348901, 44.176514 ], [ 9.211615, 44.206049 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ESHM-CL5-37", "REGION": "ESHM20 Cluster 5", "UPPER DEPTH": 0.0, "LOWER DEPTH": 40.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.746422, 43.553606 ], [ -6.105154, 43.892973 ], [ -5.835944, 44.123212 ], [ -5.445475, 44.339626 ], [ -4.72651, 44.316433 ], [ -4.139461, 44.146561 ], [ -3.560303, 43.984594 ], [ -3.017105, 43.890299 ], [ -2.458871, 43.783246 ], [ -1.718287, 43.684803 ], [ -0.892654, 43.631042 ], [ -0.15884, 43.544479 ], [ 0.719529, 43.306998 ], [ 1.387745, 43.169462 ], [ 1.915021, 43.106468 ], [ 2.262881, 43.123642 ], [ 3.004267, 43.211485 ], [ 3.331131, 43.220683 ], [ 3.280426132178539, 43.018820827179091 ], [ 3.280426132178539, 42.528362554075102 ], [ 2.981716752498004, 42.302029414759424 ], [ 2.344994127389497, 42.150686985229868 ], [ 1.77115768747689, 41.882038867902253 ], [ 1.078741, 41.781718 ], [ 0.372403, 41.729189 ], [ -0.186765, 41.973634 ], [ -0.848624, 42.214087 ], [ -1.488862, 42.350894 ], [ -2.157542, 42.477286 ], [ -2.856558, 42.597226 ], [ -3.465794, 42.687124 ], [ -3.870004, 42.653756 ], [ -4.280748, 42.743137 ], [ -4.717022, 42.885154 ], [ -5.009754, 43.072793 ], [ -5.349143, 43.342389 ], [ -5.746422, 43.553606 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ESHM-CL1-38", "REGION": "ESHM20 Cluster 1", "UPPER DEPTH": 0.0, "LOWER DEPTH": 40.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.373205, 53.321212 ], [ 4.015397, 53.435216 ], [ 4.180992, 52.929818 ], [ 4.528502, 52.587034 ], [ 5.124261, 52.346129 ], [ 5.816621, 52.152409 ], [ 6.353614, 51.916421 ], [ 6.833103, 51.665358 ], [ 7.199609, 51.170336 ], [ 7.846789, 50.809063 ], [ 8.685412, 50.711507 ], [ 9.06915, 50.527922 ], [ 9.174881, 50.037506 ], [ 9.071808, 49.709128 ], [ 8.936864, 49.247498 ], [ 8.577389, 48.868935 ], [ 8.219449, 48.462361 ], [ 8.009908, 48.044276 ], [ 8.002012, 47.614235 ], [ 7.704444695794106, 47.60568448228701 ], [ 7.405735316113571, 47.607009456046278 ], [ 7.055930910961364, 47.599059110044948 ], [ 6.727743631970249, 47.591107555755123 ], [ 6.879063515097891, 48.042418650522649 ], [ 7.138469029030989, 48.429862535083274 ], [ 7.507199, 48.875932 ], [ 7.782106, 49.192948 ], [ 8.001264, 49.484788 ], [ 7.916715, 49.800835 ], [ 7.684994, 50.073525 ], [ 7.350187, 50.309836 ], [ 7.015122, 50.492375 ], [ 6.684032, 50.609415 ], [ 6.080585, 50.777992 ], [ 5.400347, 50.993669 ], [ 4.692066, 51.11236 ], [ 3.836094, 51.243412 ], [ 3.432395, 51.429624 ], [ 3.303923, 51.82874 ], [ 3.543387, 52.308597 ], [ 3.326444, 52.967227 ], [ 3.373205, 53.321212 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ESHM-CL4-39", "REGION": "ESHM20 Cluster 4", "UPPER DEPTH": 0.0, "LOWER DEPTH": 40.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.636121894712497, 38.694901961316774 ], [ 14.73388, 38.532144 ], [ 14.866727162192728, 38.391759269385304 ], [ 15.073716227581622, 38.216246554715369 ], [ 15.373807, 37.86564 ], [ 15.476794, 37.723982 ], [ 15.18141, 37.449973 ], [ 15.042786, 37.414229 ], [ 14.841138, 37.363173 ], [ 14.662516473520473, 37.325702858622243 ], [ 14.476365233506309, 37.226215479138901 ], [ 14.348559904541361, 37.137671920285946 ], [ 14.254095096175964, 37.064545376713681 ], [ 14.112397883627871, 36.995786465970731 ], [ 13.895684499730786, 36.940290403131165 ], [ 13.668994, 36.952114 ], [ 13.42791, 37.066282 ], [ 13.258885, 37.201917 ], [ 13.131467, 37.352169 ], [ 13.006516, 37.373759 ], [ 12.87463, 37.389212 ], [ 12.672966, 37.31064 ], [ 12.086226, 37.779758 ], [ 11.708728, 37.922126 ], [ 11.383153, 38.281528 ], [ 11.077554, 38.796015 ], [ 11.540178, 38.651919 ], [ 11.995218, 38.659503 ], [ 12.410571, 38.705466 ], [ 13.133067, 38.794506 ], [ 13.692971, 38.824186 ], [ 14.212831, 38.808872 ], [ 14.636121894712497, 38.694901961316774 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ESHM-CL2-40", "REGION": "ESHM20 Cluster 2", "UPPER DEPTH": 0.0, "LOWER DEPTH": 40.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.662079, 35.026674 ], [ 14.246697, 35.027728 ], [ 13.763009, 35.111647 ], [ 13.387577, 35.18582 ], [ 12.988197, 35.360878 ], [ 12.478256, 35.526103 ], [ 12.188331, 35.768816 ], [ 11.839483, 36.257447 ], [ 11.68977, 36.446789 ], [ 11.562759, 36.554988 ], [ 11.646413, 36.79776 ], [ 11.745042, 36.998909 ], [ 12.048179, 37.073568 ], [ 12.350315, 37.161474 ], [ 12.672966, 37.31064 ], [ 13.011159, 37.006444 ], [ 13.155606, 36.823863 ], [ 13.355285, 36.657529 ], [ 13.456236, 36.665873 ], [ 13.670726, 36.558652 ], [ 14.120935, 36.280259 ], [ 14.456512, 36.064951 ], [ 14.75332, 35.867998 ], [ 15.140831, 35.483276 ], [ 15.216174, 35.346879 ], [ 15.054272, 35.170838 ], [ 14.662079, 35.026674 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ESHM-CL4-41", "REGION": "ESHM20 Cluster 4", "UPPER DEPTH": 0.0, "LOWER DEPTH": 40.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.0, 39.0 ], [ 46.0, 38.0 ], [ 46.0, 37.5835 ], [ 45.897029, 37.574138 ], [ 45.216222, 37.828646 ], [ 44.660599, 38.070382 ], [ 44.759686, 38.203027 ], [ 44.794489, 38.365345 ], [ 44.73317, 38.499705 ], [ 44.439278, 38.606602 ], [ 44.171505, 38.703999 ], [ 43.75891, 38.816853 ], [ 43.329004, 38.934443 ], [ 42.988449, 39.037854 ], [ 42.558322, 39.168463 ], [ 41.874513, 39.376104 ], [ 41.280881, 39.556362 ], [ 41.017944, 39.674039 ], [ 40.639997, 39.845764 ], [ 40.307032, 39.999074 ], [ 39.990403, 40.113333 ], [ 39.673108, 40.21386 ], [ 39.286197, 40.350003 ], [ 38.992634, 40.433781 ], [ 38.260591, 40.679751 ], [ 37.304025, 41.010107 ], [ 37.26293, 41.022895 ], [ 36.36953, 41.271295 ], [ 36.343809, 41.277936 ], [ 35.702409, 41.431036 ], [ 35.657953, 41.440203 ], [ 34.962453, 41.561503 ], [ 34.93161, 41.566223 ], [ 34.881719, 41.571131 ], [ 34.336419, 41.606731 ], [ 34.280919, 41.608341 ], [ 34.232381, 41.60646 ], [ 34.184213, 41.601519 ], [ 33.284198, 41.463122 ], [ 32.271398, 41.300122 ], [ 32.244219, 41.295229 ], [ 31.342211, 41.115481 ], [ 31.034569, 41.06188 ], [ 30.841249, 41.054013 ], [ 30.315245, 41.046737 ], [ 29.959890201539981, 41.069293928188252 ], [ 29.672971981583679, 41.081145578624216 ], [ 29.448939946823277, 41.104842469005753 ], [ 29.154160953717486, 41.134451561063941 ], [ 28.713957657346171, 41.140371776535716 ], [ 28.645322, 41.380601 ], [ 28.536295, 41.680322 ], [ 29.206485, 41.654595 ], [ 29.767704, 41.611303 ], [ 30.299005, 41.574757 ], [ 30.831861, 41.713813 ], [ 31.295969, 41.885802 ], [ 31.651723, 42.071852 ], [ 32.329184, 42.248796 ], [ 32.871719, 42.522337 ], [ 34.394569, 42.572437 ], [ 35.278819, 42.380526 ], [ 35.827334, 42.242834 ], [ 36.337598, 42.100461 ], [ 36.929024, 41.888388 ], [ 37.636368, 41.6479 ], [ 38.146789, 41.491068 ], [ 38.680165, 41.430628 ], [ 39.313309, 41.42706 ], [ 40.198955, 41.540519 ], [ 41.313755, 41.97096 ], [ 42.089596, 42.148721 ], [ 42.859616, 42.09903 ], [ 43.476838, 41.87559 ], [ 43.840173, 41.733065 ], [ 44.322976, 41.569732 ], [ 45.003665, 41.307468 ], [ 45.466654, 41.173726 ], [ 46.0, 40.962171 ], [ 46.0, 40.0 ], [ 46.0, 39.0 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ESHM-CL1-42", "REGION": "ESHM20 Cluster 1", "UPPER DEPTH": 0.0, "LOWER DEPTH": 40.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.595009, 45.761116 ], [ 9.267559, 45.894837 ], [ 9.763485, 45.899398 ], [ 10.353833, 45.959846 ], [ 10.693928, 46.07437 ], [ 11.09794, 46.247252 ], [ 11.562713, 46.382113 ], [ 11.924294, 46.426112 ], [ 12.229066, 46.456069 ], [ 12.764011, 46.599452 ], [ 13.128367, 46.520539 ], [ 13.607155, 46.3886 ], [ 13.501083, 46.263237 ], [ 13.375433459541927, 46.199964645316399 ], [ 13.119591, 46.143114 ], [ 12.814171, 46.063012 ], [ 12.393867, 45.834628 ], [ 12.182925, 45.736099 ], [ 11.938539, 45.727156 ], [ 11.623307, 45.525636 ], [ 11.480868, 45.340814 ], [ 11.185499, 45.230084 ], [ 10.856278, 45.133003 ], [ 10.625112, 45.118542 ], [ 10.446209, 45.17858 ], [ 10.163734, 45.208894 ], [ 9.912694, 45.252328 ], [ 9.592069, 45.298746 ], [ 9.218313, 45.375307 ], [ 9.053321179735514, 45.439987121902462 ], [ 8.595009, 45.761116 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ESHM-CL3-43", "REGION": "ESHM20 Cluster 3", "UPPER DEPTH": 0.0, "LOWER DEPTH": 40.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.777873, 38.922101 ], [ 16.172406, 39.069884 ], [ 15.834096, 39.168214 ], [ 15.789771, 39.300296 ], [ 15.700613, 39.419043 ], [ 15.524188, 39.589127 ], [ 15.371872, 39.750258 ], [ 15.203731, 39.928128 ], [ 15.038308, 40.091784 ], [ 14.860012, 40.268175 ], [ 14.68618, 40.560604 ], [ 14.663694, 40.697528 ], [ 14.591967, 40.864043 ], [ 14.479345, 41.039821 ], [ 14.263328, 41.225004 ], [ 14.003601, 41.310322 ], [ 13.796283, 41.341555 ], [ 14.068797, 41.616884 ], [ 14.364477, 41.782571 ], [ 14.456692, 41.728641 ], [ 15.117614, 41.347032 ], [ 15.698542, 40.91174 ], [ 15.981135, 40.519689 ], [ 16.141203, 40.157397 ], [ 16.29477, 39.862363 ], [ 16.563414, 39.635521 ], [ 16.785374, 39.428041 ], [ 16.865054, 39.182118 ], [ 16.777873, 38.922101 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ESHM-CL3-44", "REGION": "ESHM20 Cluster 3", "UPPER DEPTH": 0.0, "LOWER DEPTH": 40.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.073716227581622, 38.216246554715369 ], [ 14.866727162192728, 38.391759269385304 ], [ 14.73388, 38.532144 ], [ 14.959964, 38.693173 ], [ 15.073716227581606, 38.778339872666855 ], [ 15.190408049680039, 38.886555244973657 ], [ 15.339454, 39.039586 ], [ 15.326108, 39.119014 ], [ 15.281903, 39.216343 ], [ 15.190942, 39.320088 ], [ 14.993738, 39.509017 ], [ 14.566357, 39.719299 ], [ 14.526493, 39.72591 ], [ 14.116175, 39.793951 ], [ 13.863298, 39.864905 ], [ 13.63013, 40.00556 ], [ 13.497165, 40.165901 ], [ 13.451864, 40.320515 ], [ 13.399396, 40.47485 ], [ 13.266704, 40.622509 ], [ 13.090447, 40.748602 ], [ 12.824516, 40.889389 ], [ 12.519478, 40.951961 ], [ 12.226172, 40.983247 ], [ 11.656899, 41.424084 ], [ 11.236169, 41.796269 ], [ 10.758801, 42.030907 ], [ 10.184342, 42.160363 ], [ 9.839411, 42.410798 ], [ 9.788131, 42.846682 ], [ 9.868078, 43.208274 ], [ 9.964014, 43.397806 ], [ 10.010624, 43.613113 ], [ 10.109689, 43.625638 ], [ 10.369153, 43.715907 ], [ 10.557472, 43.712273 ], [ 10.859064, 43.662424 ], [ 11.150528, 43.595175 ], [ 11.43943, 43.510149 ], [ 11.618609, 43.431001 ], [ 11.839903, 43.314659 ], [ 12.009097, 43.161218 ], [ 12.135371, 42.981751 ], [ 12.2071, 42.74295 ], [ 12.310253, 42.513395 ], [ 12.40978, 42.261146 ], [ 12.510608, 42.025832 ], [ 12.686931, 41.790709 ], [ 12.866105, 41.661848 ], [ 13.076231, 41.510727 ], [ 13.499187, 41.386314 ], [ 13.773777, 41.344946 ], [ 14.003601, 41.310322 ], [ 14.263328, 41.225004 ], [ 14.479345, 41.039821 ], [ 14.591967, 40.864043 ], [ 14.663694, 40.697528 ], [ 14.68618, 40.560604 ], [ 14.860012, 40.268175 ], [ 15.038308, 40.091784 ], [ 15.203731, 39.928128 ], [ 15.371872, 39.750258 ], [ 15.524188, 39.589127 ], [ 15.700613, 39.419043 ], [ 15.789771, 39.300296 ], [ 15.834096, 39.168214 ], [ 15.857361, 39.098887 ], [ 15.819822, 38.925815 ], [ 15.779989, 38.8 ], [ 15.652932, 38.6 ], [ 15.433334, 38.4 ], [ 15.3, 38.317662 ], [ 15.073716227581622, 38.216246554715369 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ESHM-CL4-45", "REGION": "ESHM20 Cluster 4", "UPPER DEPTH": 0.0, "LOWER DEPTH": 40.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.707602048579272, 37.734597826348697 ], [ 30.862968, 37.036214 ], [ 30.480805, 36.968647 ], [ 30.160287, 36.788839 ], [ 29.920252, 36.725981 ], [ 29.595219, 36.707462 ], [ 29.438584, 36.698538 ], [ 29.248179, 36.7 ], [ 29.025932, 36.712929 ], [ 28.8, 36.633178 ], [ 28.718136, 36.612557 ], [ 28.730164, 36.967678 ], [ 28.642818, 37.09765 ], [ 28.491936, 37.205863 ], [ 28.034689, 37.424971 ], [ 27.762192, 37.575908 ], [ 27.481211, 38.011563 ], [ 27.15, 38.390572 ], [ 26.967967, 38.80451 ], [ 26.957566, 39.137517 ], [ 26.947021, 39.292138 ], [ 26.957496, 39.528521 ], [ 27.196742, 39.639705 ], [ 27.534303, 39.759061 ], [ 27.971582, 39.914483 ], [ 28.46911, 40.000467 ], [ 28.774398, 40.090076 ], [ 29.12954, 40.139419 ], [ 29.506903, 40.155207 ], [ 29.854827, 40.194748 ], [ 30.181564, 40.229657 ], [ 30.542345, 40.26058 ], [ 30.908631, 40.239109 ], [ 30.856441414085179, 39.860062700500755 ], [ 30.801747430375144, 39.303780713046706 ], [ 30.707602048579272, 37.734597826348697 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ESHM-SHAL-1", "REGION": "ESHM20 Shallow Default", "UPPER DEPTH": 0.0, "LOWER DEPTH": 40.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.6815, 72.3588 ], [ -1.6025, 73.3603 ], [ 5.5367, 73.7243 ], [ 13.9413, 73.5301 ], [ 16.5, 73.5 ], [ 29.9986, 72.0 ], [ 33.95, 70.98 ], [ 35.0, 69.414 ], [ 32.848035, 69.712432 ], [ 31.593515, 69.782662 ], [ 29.908802, 69.97594 ], [ 28.675291, 70.138218 ], [ 27.315165, 70.214077 ], [ 26.5554, 70.1035 ], [ 25.845666, 70.0961 ], [ 24.441065, 69.919496 ], [ 23.423372, 69.704516 ], [ 22.205242, 69.411419 ], [ 21.116973, 69.073404 ], [ 20.459669, 68.790662 ], [ 19.583663, 68.370582 ], [ 18.123843, 67.198051 ], [ 17.689775, 66.617596 ], [ 17.351332, 66.242239 ], [ 16.896443, 65.627447 ], [ 16.80044, 65.048932 ], [ 16.216037, 64.389925 ], [ 15.586844, 63.853999 ], [ 14.828407, 63.026055 ], [ 13.453294, 62.12974 ], [ 11.541774, 61.132451 ], [ 10.908433, 60.204655 ], [ 10.831719, 59.823197 ], [ 10.827439, 59.365374 ], [ 10.922426, 58.987605 ], [ 11.588241, 57.777666 ], [ 12.781573, 56.410726 ], [ 13.628303, 56.087628 ], [ 13.570064, 55.681039 ], [ 14.434329, 55.217937 ], [ 14.402997, 54.777526 ], [ 15.347328, 53.992419 ], [ 17.142614, 53.293004 ], [ 19.296271, 52.039658 ], [ 22.685703, 50.809607 ], [ 27.15948976703497, 48.682610138971384 ], [ 28.480099656148919, 48.223825500272675 ], [ 31.542371, 48.419134 ], [ 34.251281, 48.090722 ], [ 40.006497, 48.899847 ], [ 40.003222225698082, 45.889676233497731 ], [ 40.3297, 45.8263 ], [ 42.0992, 45.5506 ], [ 43.5091, 45.0261 ], [ 45.0376, 44.2895 ], [ 45.8731, 44.0883 ], [ 47.4768, 43.9731 ], [ 49.1389, 42.2993 ], [ 49.3716, 42.0664 ], [ 50.6811, 41.3955 ], [ 50.3705, 40.6802 ], [ 49.2326, 40.2495 ], [ 48.82, 39.55 ], [ 47.4454, 39.3169 ], [ 47.4143, 37.4707 ], [ 47.2772, 37.6277 ], [ 46.475, 38.1598 ], [ 46.0356, 37.6314 ], [ 45.9048, 37.1388 ], [ 45.5228, 36.8638 ], [ 44.4596, 36.2826 ], [ 42.9874, 35.7436 ], [ 42.1424, 36.3388 ], [ 41.8383, 36.2823 ], [ 40.3876, 35.6386 ], [ 39.8854, 36.3095 ], [ 39.0399, 36.4334 ], [ 38.4614, 35.6659 ], [ 37.4991, 34.783 ], [ 36.874245774364709, 34.65227820464726 ], [ 36.835544, 34.34456 ], [ 36.241288, 33.549554 ], [ 36.002946, 31.953063 ], [ 35.664676, 30.603143 ], [ 35.474876, 29.900643 ], [ 35.438017, 29.810195 ], [ 35.394132, 29.745689 ], [ 35.248588, 29.341636 ], [ 35.074399, 28.814282 ], [ 34.901904, 28.286719 ], [ 34.780892, 27.912579 ], [ 34.578239, 27.771416 ], [ 34.1327, 27.568912 ], [ 33.801799, 27.70998 ], [ 33.782791, 28.012245 ], [ 33.953891, 28.541245 ], [ 34.127204, 29.071317 ], [ 34.419232, 29.951627 ], [ 34.425093, 30.083927 ], [ 34.94033, 32.076789 ], [ 35.194925, 33.770685 ], [ 35.1269, 34.185 ], [ 33.6759, 33.8979 ], [ 32.6472, 34.0757 ], [ 31.7726, 34.3751 ], [ 28.546, 33.2261 ], [ 27.2093, 32.4738 ], [ 26.03, 32.25 ], [ 22.888, 33.1348 ], [ 20.6862, 33.4532 ], [ 19.3886, 34.0487 ], [ 19.1721, 34.734 ], [ 18.7295, 35.3605 ], [ 18.28, 35.6029 ], [ 16.3871, 34.952 ], [ 15.4824, 34.9606 ], [ 14.6621, 35.0267 ], [ 11.9437, 34.994 ], [ 10.7441, 34.8693 ], [ 8.3429, 34.9392 ], [ 7.4285, 34.8539 ], [ 4.4916, 34.6296 ], [ -2.1133, 33.3406 ], [ -4.1371, 31.2252 ], [ -5.7212, 31.1064 ], [ -8.4857, 29.8503 ], [ -9.8328, 29.5809 ], [ -14.0507, 26.775 ], [ -16.3199, 25.4538 ], [ -18.8689, 26.3708 ], [ -19.55, 27.9305 ], [ -19.0399, 29.6815 ], [ -24.3868, 33.323 ], [ -24.1278, 36.0145 ], [ -29.8435, 37.5015 ], [ -31.2134, 36.1987 ], [ -34.8949, 33.7883 ], [ -38.4326, 33.8946 ], [ -33.2113, 38.9277 ], [ -29.2709, 46.0229 ], [ -29.8839, 48.1799 ], [ -31.86, 50.29 ], [ -34.5, 52.0 ], [ -37.0, 54.0 ], [ -35.8, 56.7 ], [ -31.8203, 59.6792 ], [ -25.987984534348826, 63.520037111219821 ], [ -26.4529, 63.7666 ], [ -27.1087, 64.4477 ], [ -27.0961, 65.8853 ], [ -25.6977, 66.6715 ], [ -24.4366, 67.2188 ], [ -23.007, 67.4466 ], [ -13.6815, 72.3588 ] ] ] } } +] +} diff --git a/shakyground2/regionalization_files/eshm20_gmm_mapping.json b/shakyground2/regionalization_files/eshm20_gmm_mapping.json new file mode 100644 index 0000000..5a96668 --- /dev/null +++ b/shakyground2/regionalization_files/eshm20_gmm_mapping.json @@ -0,0 +1 @@ +{"ESHM20 Shallow Default": [{"id": "Kotha2020ESHM20DefaultVLowStressFastAtten", "model": "KothaEtAl2020ESHM20", "sigma_mu_epsilon": -2.85697, "c3_epsilon": -1.732051, "weight": 0.00188042}, {"id": "Kotha2020ESHM20DefaultVLowStressAveAtten", "model": "KothaEtAl2020ESHM20", "sigma_mu_epsilon": -2.85697, "weight": 0.00749916}, {"id": "Kotha2020ESHM20DefaultVLowStressSlowAtten", "model": "KothaEtAl2020ESHM20", "sigma_mu_epsilon": -2.85697, "c3_epsilon": 1.732051, "weight": 0.00188042}, {"id": "Kotha2020ESHM20DefaultLowStressFastAtten", "model": "KothaEtAl2020ESHM20", "sigma_mu_epsilon": -1.35563, "c3_epsilon": -1.732051, "weight": 0.03708736}, {"id": "Kotha2020ESHM20DefaultLowStressAveAtten", "model": "KothaEtAl2020ESHM20", "sigma_mu_epsilon": -1.35563, "weight": 0.14790528}, {"id": "Kotha2020ESHM20DefaultLowStressSlowAtten", "model": "KothaEtAl2020ESHM20", "sigma_mu_epsilon": -1.35563, "c3_epsilon": 1.732051, "weight": 0.03708736}, {"id": "Kotha2020ESHM20DefaultAveStressFastAtten", "model": "KothaEtAl2020ESHM20", "c3_epsilon": -1.732051, "weight": 0.08906444}, {"id": "Kotha2020ESHM20DefaultAveStressAveAtten", "model": "KothaEtAl2020ESHM20", "weight": 0.35519112}, {"id": "Kotha2020ESHM20DefaultAveStressSlowAtten", "model": "KothaEtAl2020ESHM20", "c3_epsilon": 1.732051, "weight": 0.08906444}, {"id": "Kotha2020ESHM20DefaultHighStressFastAtten", "model": "KothaEtAl2020ESHM20", "sigma_mu_epsilon": 1.35563, "c3_epsilon": -1.732051, "weight": 0.03708736}, {"id": "Kotha2020ESHM20DefaultHighStressAveAtten", "model": "KothaEtAl2020ESHM20", "sigma_mu_epsilon": 1.35563, "weight": 0.14790528}, {"id": "Kotha2020ESHM20DefaultHighStressSlowAtten", "model": "KothaEtAl2020ESHM20", "sigma_mu_epsilon": 1.35563, "c3_epsilon": 1.732051, "weight": 0.03708736}, {"id": "Kotha2020ESHM20DefaultVHighStressFastAtten", "model": "KothaEtAl2020ESHM20", "sigma_mu_epsilon": 2.85697, "c3_epsilon": -1.732051, "weight": 0.00188042}, {"id": "Kotha2020ESHM20DefaultVHighStressAveAtten", "model": "KothaEtAl2020ESHM20", "sigma_mu_epsilon": 2.85697, "weight": 0.00749916}, {"id": "Kotha2020ESHM20DefaultVHighStressSlowAtten", "model": "KothaEtAl2020ESHM20", "sigma_mu_epsilon": 2.85697, "c3_epsilon": 1.732051, "weight": 0.00188042}], "ESHM20 Cluster 1": [{"id": "Kotha2020ESHM20Cluster1VLowStressFastAtten", "model": "KothaEtAl2020ESHM20", "sigma_mu_epsilon": -2.85697, "c3": {"PGA": -0.6682929818506, "SA(0.010)": -0.6666334498436, "SA(0.025)": -0.6267310451731, "SA(0.040)": -0.5937583865933, "SA(0.050)": -0.5999770670283, "SA(0.070)": -0.6460114873317999, "SA(0.100)": -0.7466645104308, "SA(0.150)": -0.8053799751257, "SA(0.200)": -0.8051741823379, "SA(0.250)": -0.798715399265, "SA(0.300)": -0.7576836973300001, "SA(0.350)": -0.7395084938581, "SA(0.400)": -0.7318023640994, "SA(0.450)": -0.7094534796561001, "SA(0.500)": -0.6731320934547, "SA(0.600)": -0.5776361423811001, "SA(0.700)": -0.5247451511751, "SA(0.750)": -0.49406464229610003, "SA(0.800)": -0.47414599821160003, "SA(0.900)": -0.45238796629989997, "SA(1.000)": -0.4529816812249, "SA(1.200)": -0.39476128653950004, "SA(1.400)": -0.3789236425128, "SA(1.600)": -0.3603193525808, "SA(1.800)": -0.3476676796932, "SA(2.000)": -0.3353592909807, "SA(2.500)": -0.38763380449060003, "SA(3.000)": -0.40322747972490003, "SA(3.500)": -0.46220603945530003, "SA(4.000)": -0.501508224013, "SA(4.500)": -0.4789697426569, "SA(5.000)": -0.411040765415, "SA(6.000)": -0.3987157780979, "SA(7.000)": -0.36246503960599996, "SA(8.000)": -0.3583126223009}, "weight": 0.00188042}, {"id": "Kotha2020ESHM20Cluster1VLowStressAveAtten", "model": "KothaEtAl2020ESHM20", "sigma_mu_epsilon": -2.85697, "c3": {"PGA": -0.4576399, "SA(0.010)": -0.4562523, "SA(0.025)": -0.4230971, "SA(0.040)": -0.3909728, "SA(0.050)": -0.395139, "SA(0.070)": -0.4595704, "SA(0.100)": -0.5209942, "SA(0.150)": -0.5920074, "SA(0.200)": -0.5715328, "SA(0.250)": -0.5501401, "SA(0.300)": -0.5050987, "SA(0.350)": -0.4805615, "SA(0.400)": -0.4688261, "SA(0.450)": -0.4420229, "SA(0.500)": -0.42273, "SA(0.600)": -0.3726027, "SA(0.700)": -0.3264771, "SA(0.750)": -0.3121281, "SA(0.800)": -0.3088536, "SA(0.900)": -0.2934638, "SA(1.000)": -0.2833621, "SA(1.200)": -0.2530544, "SA(1.400)": -0.2242986, "SA(1.600)": -0.2045373, "SA(1.800)": -0.1820261, "SA(2.000)": -0.1642401, "SA(2.500)": -0.1585517, "SA(3.000)": -0.1929047, "SA(3.500)": -0.2061391, "SA(4.000)": -0.2159571, "SA(4.500)": -0.2299668, "SA(5.000)": -0.1907845, "SA(6.000)": -0.1862747, "SA(7.000)": -0.1333043, "SA(8.000)": -0.1102727}, "weight": 0.00749916}, {"id": "Kotha2020ESHM20Cluster1VLowStressSlowAtten", "model": "KothaEtAl2020ESHM20", "sigma_mu_epsilon": -2.85697, "c3": {"PGA": -0.2469868181494, "SA(0.010)": -0.2458711501564, "SA(0.025)": -0.21946315482690001, "SA(0.040)": -0.18818721340670003, "SA(0.050)": -0.1903009329717, "SA(0.070)": -0.2731293126682, "SA(0.100)": -0.29532388956919997, "SA(0.150)": -0.37863482487429995, "SA(0.200)": -0.33789141766209996, "SA(0.250)": -0.301564800735, "SA(0.300)": -0.25251370267, "SA(0.350)": -0.22161450614189998, "SA(0.400)": -0.20584983590060002, "SA(0.450)": -0.1745923203439, "SA(0.500)": -0.1723279065453, "SA(0.600)": -0.1675692576189, "SA(0.700)": -0.1282090488249, "SA(0.750)": -0.13019155770390003, "SA(0.800)": -0.14356120178839998, "SA(0.900)": -0.1345396337001, "SA(1.000)": -0.1137425187751, "SA(1.200)": -0.11134751346050001, "SA(1.400)": -0.0696735574872, "SA(1.600)": -0.04875524741920001, "SA(1.800)": -0.016384520306799988, "SA(2.000)": 0.006879090980699998, "SA(2.500)": 0.07053040449060002, "SA(3.000)": 0.017418079724899976, "SA(3.500)": 0.04992783945530002, "SA(4.000)": 0.06959402401300002, "SA(4.500)": 0.019036142656900013, "SA(5.000)": 0.029471765415000017, "SA(6.000)": 0.02616637809790001, "SA(7.000)": 0.09585643960600002, "SA(8.000)": 0.1377672223009}, "weight": 0.00188042}, {"id": "Kotha2020ESHM20Cluster1LowStressFastAtten", "model": "KothaEtAl2020ESHM20", "sigma_mu_epsilon": -1.35563, "c3": {"PGA": -0.6682929818506, "SA(0.010)": -0.6666334498436, "SA(0.025)": -0.6267310451731, "SA(0.040)": -0.5937583865933, "SA(0.050)": -0.5999770670283, "SA(0.070)": -0.6460114873317999, "SA(0.100)": -0.7466645104308, "SA(0.150)": -0.8053799751257, "SA(0.200)": -0.8051741823379, "SA(0.250)": -0.798715399265, "SA(0.300)": -0.7576836973300001, "SA(0.350)": -0.7395084938581, "SA(0.400)": -0.7318023640994, "SA(0.450)": -0.7094534796561001, "SA(0.500)": -0.6731320934547, "SA(0.600)": -0.5776361423811001, "SA(0.700)": -0.5247451511751, "SA(0.750)": -0.49406464229610003, "SA(0.800)": -0.47414599821160003, "SA(0.900)": -0.45238796629989997, "SA(1.000)": -0.4529816812249, "SA(1.200)": -0.39476128653950004, "SA(1.400)": -0.3789236425128, "SA(1.600)": -0.3603193525808, "SA(1.800)": -0.3476676796932, "SA(2.000)": -0.3353592909807, "SA(2.500)": -0.38763380449060003, "SA(3.000)": -0.40322747972490003, "SA(3.500)": -0.46220603945530003, "SA(4.000)": -0.501508224013, "SA(4.500)": -0.4789697426569, "SA(5.000)": -0.411040765415, "SA(6.000)": -0.3987157780979, "SA(7.000)": -0.36246503960599996, "SA(8.000)": -0.3583126223009}, "weight": 0.03708736}, {"id": "Kotha2020ESHM20Cluster1LowStressAveAtten", "model": "KothaEtAl2020ESHM20", "sigma_mu_epsilon": -1.35563, "c3": {"PGA": -0.4576399, "SA(0.010)": -0.4562523, "SA(0.025)": -0.4230971, "SA(0.040)": -0.3909728, "SA(0.050)": -0.395139, "SA(0.070)": -0.4595704, "SA(0.100)": -0.5209942, "SA(0.150)": -0.5920074, "SA(0.200)": -0.5715328, "SA(0.250)": -0.5501401, "SA(0.300)": -0.5050987, "SA(0.350)": -0.4805615, "SA(0.400)": -0.4688261, "SA(0.450)": -0.4420229, "SA(0.500)": -0.42273, "SA(0.600)": -0.3726027, "SA(0.700)": -0.3264771, "SA(0.750)": -0.3121281, "SA(0.800)": -0.3088536, "SA(0.900)": -0.2934638, "SA(1.000)": -0.2833621, "SA(1.200)": -0.2530544, "SA(1.400)": -0.2242986, "SA(1.600)": -0.2045373, "SA(1.800)": -0.1820261, "SA(2.000)": -0.1642401, "SA(2.500)": -0.1585517, "SA(3.000)": -0.1929047, "SA(3.500)": -0.2061391, "SA(4.000)": -0.2159571, "SA(4.500)": -0.2299668, "SA(5.000)": -0.1907845, "SA(6.000)": -0.1862747, "SA(7.000)": -0.1333043, "SA(8.000)": -0.1102727}, "weight": 0.14790528}, {"id": "Kotha2020ESHM20Cluster1LowStressSlowAtten", "model": "KothaEtAl2020ESHM20", "sigma_mu_epsilon": -1.35563, "c3": {"PGA": -0.2469868181494, "SA(0.010)": -0.2458711501564, "SA(0.025)": -0.21946315482690001, "SA(0.040)": -0.18818721340670003, "SA(0.050)": -0.1903009329717, "SA(0.070)": -0.2731293126682, "SA(0.100)": -0.29532388956919997, "SA(0.150)": -0.37863482487429995, "SA(0.200)": -0.33789141766209996, "SA(0.250)": -0.301564800735, "SA(0.300)": -0.25251370267, "SA(0.350)": -0.22161450614189998, "SA(0.400)": -0.20584983590060002, "SA(0.450)": -0.1745923203439, "SA(0.500)": -0.1723279065453, "SA(0.600)": -0.1675692576189, "SA(0.700)": -0.1282090488249, "SA(0.750)": -0.13019155770390003, "SA(0.800)": -0.14356120178839998, "SA(0.900)": -0.1345396337001, "SA(1.000)": -0.1137425187751, "SA(1.200)": -0.11134751346050001, "SA(1.400)": -0.0696735574872, "SA(1.600)": -0.04875524741920001, "SA(1.800)": -0.016384520306799988, "SA(2.000)": 0.006879090980699998, "SA(2.500)": 0.07053040449060002, "SA(3.000)": 0.017418079724899976, "SA(3.500)": 0.04992783945530002, "SA(4.000)": 0.06959402401300002, "SA(4.500)": 0.019036142656900013, "SA(5.000)": 0.029471765415000017, "SA(6.000)": 0.02616637809790001, "SA(7.000)": 0.09585643960600002, "SA(8.000)": 0.1377672223009}, "weight": 0.03708736}, {"id": "Kotha2020ESHM20Cluster1AveStressFastAtten", "model": "KothaEtAl2020ESHM20", "c3": {"PGA": -0.6682929818506, "SA(0.010)": -0.6666334498436, "SA(0.025)": -0.6267310451731, "SA(0.040)": -0.5937583865933, "SA(0.050)": -0.5999770670283, "SA(0.070)": -0.6460114873317999, "SA(0.100)": -0.7466645104308, "SA(0.150)": -0.8053799751257, "SA(0.200)": -0.8051741823379, "SA(0.250)": -0.798715399265, "SA(0.300)": -0.7576836973300001, "SA(0.350)": -0.7395084938581, "SA(0.400)": -0.7318023640994, "SA(0.450)": -0.7094534796561001, "SA(0.500)": -0.6731320934547, "SA(0.600)": -0.5776361423811001, "SA(0.700)": -0.5247451511751, "SA(0.750)": -0.49406464229610003, "SA(0.800)": -0.47414599821160003, "SA(0.900)": -0.45238796629989997, "SA(1.000)": -0.4529816812249, "SA(1.200)": -0.39476128653950004, "SA(1.400)": -0.3789236425128, "SA(1.600)": -0.3603193525808, "SA(1.800)": -0.3476676796932, "SA(2.000)": -0.3353592909807, "SA(2.500)": -0.38763380449060003, "SA(3.000)": -0.40322747972490003, "SA(3.500)": -0.46220603945530003, "SA(4.000)": -0.501508224013, "SA(4.500)": -0.4789697426569, "SA(5.000)": -0.411040765415, "SA(6.000)": -0.3987157780979, "SA(7.000)": -0.36246503960599996, "SA(8.000)": -0.3583126223009}, "weight": 0.08906444}, {"id": "Kotha2020ESHM20Cluster1AveStressAveAtten", "model": "KothaEtAl2020ESHM20", "c3": {"PGA": -0.4576399, "SA(0.010)": -0.4562523, "SA(0.025)": -0.4230971, "SA(0.040)": -0.3909728, "SA(0.050)": -0.395139, "SA(0.070)": -0.4595704, "SA(0.100)": -0.5209942, "SA(0.150)": -0.5920074, "SA(0.200)": -0.5715328, "SA(0.250)": -0.5501401, "SA(0.300)": -0.5050987, "SA(0.350)": -0.4805615, "SA(0.400)": -0.4688261, "SA(0.450)": -0.4420229, "SA(0.500)": -0.42273, "SA(0.600)": -0.3726027, "SA(0.700)": -0.3264771, "SA(0.750)": -0.3121281, "SA(0.800)": -0.3088536, "SA(0.900)": -0.2934638, "SA(1.000)": -0.2833621, "SA(1.200)": -0.2530544, "SA(1.400)": -0.2242986, "SA(1.600)": -0.2045373, "SA(1.800)": -0.1820261, "SA(2.000)": -0.1642401, "SA(2.500)": -0.1585517, "SA(3.000)": -0.1929047, "SA(3.500)": -0.2061391, "SA(4.000)": -0.2159571, "SA(4.500)": -0.2299668, "SA(5.000)": -0.1907845, "SA(6.000)": -0.1862747, "SA(7.000)": -0.1333043, "SA(8.000)": -0.1102727}, "weight": 0.35519112}, {"id": "Kotha2020ESHM20Cluster1AveStressSlowAtten", "model": "KothaEtAl2020ESHM20", "c3": {"PGA": -0.2469868181494, "SA(0.010)": -0.2458711501564, "SA(0.025)": -0.21946315482690001, "SA(0.040)": -0.18818721340670003, "SA(0.050)": -0.1903009329717, "SA(0.070)": -0.2731293126682, "SA(0.100)": -0.29532388956919997, "SA(0.150)": -0.37863482487429995, "SA(0.200)": -0.33789141766209996, "SA(0.250)": -0.301564800735, "SA(0.300)": -0.25251370267, "SA(0.350)": -0.22161450614189998, "SA(0.400)": -0.20584983590060002, "SA(0.450)": -0.1745923203439, "SA(0.500)": -0.1723279065453, "SA(0.600)": -0.1675692576189, "SA(0.700)": -0.1282090488249, "SA(0.750)": -0.13019155770390003, "SA(0.800)": -0.14356120178839998, "SA(0.900)": -0.1345396337001, "SA(1.000)": -0.1137425187751, "SA(1.200)": -0.11134751346050001, "SA(1.400)": -0.0696735574872, "SA(1.600)": -0.04875524741920001, "SA(1.800)": -0.016384520306799988, "SA(2.000)": 0.006879090980699998, "SA(2.500)": 0.07053040449060002, "SA(3.000)": 0.017418079724899976, "SA(3.500)": 0.04992783945530002, "SA(4.000)": 0.06959402401300002, "SA(4.500)": 0.019036142656900013, "SA(5.000)": 0.029471765415000017, "SA(6.000)": 0.02616637809790001, "SA(7.000)": 0.09585643960600002, "SA(8.000)": 0.1377672223009}, "weight": 0.08906444}, {"id": "Kotha2020ESHM20Cluster1HighStressFastAtten", "model": "KothaEtAl2020ESHM20", "sigma_mu_epsilon": 1.35563, "c3": {"PGA": -0.6682929818506, "SA(0.010)": -0.6666334498436, "SA(0.025)": -0.6267310451731, "SA(0.040)": -0.5937583865933, "SA(0.050)": -0.5999770670283, "SA(0.070)": -0.6460114873317999, "SA(0.100)": -0.7466645104308, "SA(0.150)": -0.8053799751257, "SA(0.200)": -0.8051741823379, "SA(0.250)": -0.798715399265, "SA(0.300)": -0.7576836973300001, "SA(0.350)": -0.7395084938581, "SA(0.400)": -0.7318023640994, "SA(0.450)": -0.7094534796561001, "SA(0.500)": -0.6731320934547, "SA(0.600)": -0.5776361423811001, "SA(0.700)": -0.5247451511751, "SA(0.750)": -0.49406464229610003, "SA(0.800)": -0.47414599821160003, "SA(0.900)": -0.45238796629989997, "SA(1.000)": -0.4529816812249, "SA(1.200)": -0.39476128653950004, "SA(1.400)": -0.3789236425128, "SA(1.600)": -0.3603193525808, "SA(1.800)": -0.3476676796932, "SA(2.000)": -0.3353592909807, "SA(2.500)": -0.38763380449060003, "SA(3.000)": -0.40322747972490003, "SA(3.500)": -0.46220603945530003, "SA(4.000)": -0.501508224013, "SA(4.500)": -0.4789697426569, "SA(5.000)": -0.411040765415, "SA(6.000)": -0.3987157780979, "SA(7.000)": -0.36246503960599996, "SA(8.000)": -0.3583126223009}, "weight": 0.03708736}, {"id": "Kotha2020ESHM20Cluster1HighStressAveAtten", "model": "KothaEtAl2020ESHM20", "sigma_mu_epsilon": 1.35563, "c3": {"PGA": -0.4576399, "SA(0.010)": -0.4562523, "SA(0.025)": -0.4230971, "SA(0.040)": -0.3909728, "SA(0.050)": -0.395139, "SA(0.070)": -0.4595704, "SA(0.100)": -0.5209942, "SA(0.150)": -0.5920074, "SA(0.200)": -0.5715328, "SA(0.250)": -0.5501401, "SA(0.300)": -0.5050987, "SA(0.350)": -0.4805615, "SA(0.400)": -0.4688261, "SA(0.450)": -0.4420229, "SA(0.500)": -0.42273, "SA(0.600)": -0.3726027, "SA(0.700)": -0.3264771, "SA(0.750)": -0.3121281, "SA(0.800)": -0.3088536, "SA(0.900)": -0.2934638, "SA(1.000)": -0.2833621, "SA(1.200)": -0.2530544, "SA(1.400)": -0.2242986, "SA(1.600)": -0.2045373, "SA(1.800)": -0.1820261, "SA(2.000)": -0.1642401, "SA(2.500)": -0.1585517, "SA(3.000)": -0.1929047, "SA(3.500)": -0.2061391, "SA(4.000)": -0.2159571, "SA(4.500)": -0.2299668, "SA(5.000)": -0.1907845, "SA(6.000)": -0.1862747, "SA(7.000)": -0.1333043, "SA(8.000)": -0.1102727}, "weight": 0.14790528}, {"id": "Kotha2020ESHM20Cluster1HighStressSlowAtten", "model": "KothaEtAl2020ESHM20", "sigma_mu_epsilon": 1.35563, "c3": {"PGA": -0.2469868181494, "SA(0.010)": -0.2458711501564, "SA(0.025)": -0.21946315482690001, "SA(0.040)": -0.18818721340670003, "SA(0.050)": -0.1903009329717, "SA(0.070)": -0.2731293126682, "SA(0.100)": -0.29532388956919997, "SA(0.150)": -0.37863482487429995, "SA(0.200)": -0.33789141766209996, "SA(0.250)": -0.301564800735, "SA(0.300)": -0.25251370267, "SA(0.350)": -0.22161450614189998, "SA(0.400)": -0.20584983590060002, "SA(0.450)": -0.1745923203439, "SA(0.500)": -0.1723279065453, "SA(0.600)": -0.1675692576189, "SA(0.700)": -0.1282090488249, "SA(0.750)": -0.13019155770390003, "SA(0.800)": -0.14356120178839998, "SA(0.900)": -0.1345396337001, "SA(1.000)": -0.1137425187751, "SA(1.200)": -0.11134751346050001, "SA(1.400)": -0.0696735574872, "SA(1.600)": -0.04875524741920001, "SA(1.800)": -0.016384520306799988, "SA(2.000)": 0.006879090980699998, "SA(2.500)": 0.07053040449060002, "SA(3.000)": 0.017418079724899976, "SA(3.500)": 0.04992783945530002, "SA(4.000)": 0.06959402401300002, "SA(4.500)": 0.019036142656900013, "SA(5.000)": 0.029471765415000017, "SA(6.000)": 0.02616637809790001, "SA(7.000)": 0.09585643960600002, "SA(8.000)": 0.1377672223009}, "weight": 0.03708736}, {"id": "Kotha2020ESHM20Cluster1VHighStressFastAtten", "model": "KothaEtAl2020ESHM20", "sigma_mu_epsilon": 2.85697, "c3": {"PGA": -0.6682929818506, "SA(0.010)": -0.6666334498436, "SA(0.025)": -0.6267310451731, "SA(0.040)": -0.5937583865933, "SA(0.050)": -0.5999770670283, "SA(0.070)": -0.6460114873317999, "SA(0.100)": -0.7466645104308, "SA(0.150)": -0.8053799751257, "SA(0.200)": -0.8051741823379, "SA(0.250)": -0.798715399265, "SA(0.300)": -0.7576836973300001, "SA(0.350)": -0.7395084938581, "SA(0.400)": -0.7318023640994, "SA(0.450)": -0.7094534796561001, "SA(0.500)": -0.6731320934547, "SA(0.600)": -0.5776361423811001, "SA(0.700)": -0.5247451511751, "SA(0.750)": -0.49406464229610003, "SA(0.800)": -0.47414599821160003, "SA(0.900)": -0.45238796629989997, "SA(1.000)": -0.4529816812249, "SA(1.200)": -0.39476128653950004, "SA(1.400)": -0.3789236425128, "SA(1.600)": -0.3603193525808, "SA(1.800)": -0.3476676796932, "SA(2.000)": -0.3353592909807, "SA(2.500)": -0.38763380449060003, "SA(3.000)": -0.40322747972490003, "SA(3.500)": -0.46220603945530003, "SA(4.000)": -0.501508224013, "SA(4.500)": -0.4789697426569, "SA(5.000)": -0.411040765415, "SA(6.000)": -0.3987157780979, "SA(7.000)": -0.36246503960599996, "SA(8.000)": -0.3583126223009}, "weight": 0.00188042}, {"id": "Kotha2020ESHM20Cluster1VHighStressAveAtten", "model": "KothaEtAl2020ESHM20", "sigma_mu_epsilon": 2.85697, "c3": {"PGA": -0.4576399, "SA(0.010)": -0.4562523, "SA(0.025)": -0.4230971, "SA(0.040)": -0.3909728, "SA(0.050)": -0.395139, "SA(0.070)": -0.4595704, "SA(0.100)": -0.5209942, "SA(0.150)": -0.5920074, "SA(0.200)": -0.5715328, "SA(0.250)": -0.5501401, "SA(0.300)": -0.5050987, "SA(0.350)": -0.4805615, "SA(0.400)": -0.4688261, "SA(0.450)": -0.4420229, "SA(0.500)": -0.42273, "SA(0.600)": -0.3726027, "SA(0.700)": -0.3264771, "SA(0.750)": -0.3121281, "SA(0.800)": -0.3088536, "SA(0.900)": -0.2934638, "SA(1.000)": -0.2833621, "SA(1.200)": -0.2530544, "SA(1.400)": -0.2242986, "SA(1.600)": -0.2045373, "SA(1.800)": -0.1820261, "SA(2.000)": -0.1642401, "SA(2.500)": -0.1585517, "SA(3.000)": -0.1929047, "SA(3.500)": -0.2061391, "SA(4.000)": -0.2159571, "SA(4.500)": -0.2299668, "SA(5.000)": -0.1907845, "SA(6.000)": -0.1862747, "SA(7.000)": -0.1333043, "SA(8.000)": -0.1102727}, "weight": 0.00749916}, {"id": "Kotha2020ESHM20Cluster1VHighStressSlowAtten", "model": "KothaEtAl2020ESHM20", "sigma_mu_epsilon": 2.85697, "c3": {"PGA": -0.2469868181494, "SA(0.010)": -0.2458711501564, "SA(0.025)": -0.21946315482690001, "SA(0.040)": -0.18818721340670003, "SA(0.050)": -0.1903009329717, "SA(0.070)": -0.2731293126682, "SA(0.100)": -0.29532388956919997, "SA(0.150)": -0.37863482487429995, "SA(0.200)": -0.33789141766209996, "SA(0.250)": -0.301564800735, "SA(0.300)": -0.25251370267, "SA(0.350)": -0.22161450614189998, "SA(0.400)": -0.20584983590060002, "SA(0.450)": -0.1745923203439, "SA(0.500)": -0.1723279065453, "SA(0.600)": -0.1675692576189, "SA(0.700)": -0.1282090488249, "SA(0.750)": -0.13019155770390003, "SA(0.800)": -0.14356120178839998, "SA(0.900)": -0.1345396337001, "SA(1.000)": -0.1137425187751, "SA(1.200)": -0.11134751346050001, "SA(1.400)": -0.0696735574872, "SA(1.600)": -0.04875524741920001, "SA(1.800)": -0.016384520306799988, "SA(2.000)": 0.006879090980699998, "SA(2.500)": 0.07053040449060002, "SA(3.000)": 0.017418079724899976, "SA(3.500)": 0.04992783945530002, "SA(4.000)": 0.06959402401300002, "SA(4.500)": 0.019036142656900013, "SA(5.000)": 0.029471765415000017, "SA(6.000)": 0.02616637809790001, "SA(7.000)": 0.09585643960600002, "SA(8.000)": 0.1377672223009}, "weight": 0.00188042}], "ESHM20 Cluster 2": [{"id": "Kotha2020ESHM20Cluster2VLowStressFastAtten", "model": "KothaEtAl2020ESHM20", "sigma_mu_epsilon": -2.85697, "c3": {"PGA": -0.8012031239953, "SA(0.010)": -0.8032203576398, "SA(0.025)": -0.7673851338632, "SA(0.040)": -0.7221775203798, "SA(0.050)": -0.7446368396829, "SA(0.070)": -0.8733317524436, "SA(0.100)": -0.9938398251113, "SA(0.150)": -1.0529094722338002, "SA(0.200)": -0.9766190015534, "SA(0.250)": -0.9147325939118001, "SA(0.300)": -0.8425181511778, "SA(0.350)": -0.7914597205525999, "SA(0.400)": -0.761366688225, "SA(0.450)": -0.7168129287086, "SA(0.500)": -0.6862229336777, "SA(0.600)": -0.6262077408080999, "SA(0.700)": -0.5848183892109999, "SA(0.750)": -0.5622103024555, "SA(0.800)": -0.5376558059253, "SA(0.900)": -0.4956690269905, "SA(1.000)": -0.4813813061285, "SA(1.200)": -0.4675345063602, "SA(1.400)": -0.4401487440519, "SA(1.600)": -0.4000917802956, "SA(1.800)": -0.3699504657174, "SA(2.000)": -0.34514356475880004, "SA(2.500)": -0.37878899921340003, "SA(3.000)": -0.3991535044904, "SA(3.500)": -0.4187078359643, "SA(4.000)": -0.4112022029871, "SA(4.500)": -0.4112397792106, "SA(5.000)": -0.4325344258934001, "SA(6.000)": -0.42157931427069995, "SA(7.000)": -0.3968084099943, "SA(8.000)": -0.3630706551232}, "weight": 0.00188042}, {"id": "Kotha2020ESHM20Cluster2VLowStressAveAtten", "model": "KothaEtAl2020ESHM20", "sigma_mu_epsilon": -2.85697, "c3": {"PGA": -0.6706406, "SA(0.010)": -0.6706322, "SA(0.025)": -0.6352241, "SA(0.040)": -0.5969679, "SA(0.050)": -0.6190841, "SA(0.070)": -0.7104088, "SA(0.100)": -0.8228928, "SA(0.150)": -0.8997203, "SA(0.200)": -0.8491688, "SA(0.250)": -0.7844446, "SA(0.300)": -0.7174852, "SA(0.350)": -0.6767588, "SA(0.400)": -0.6496927, "SA(0.450)": -0.6049595, "SA(0.500)": -0.5647322, "SA(0.600)": -0.4981172, "SA(0.700)": -0.4477075, "SA(0.750)": -0.4237666, "SA(0.800)": -0.4063485, "SA(0.900)": -0.3740522, "SA(1.000)": -0.3576202, "SA(1.200)": -0.3160663, "SA(1.400)": -0.270569, "SA(1.600)": -0.2350003, "SA(1.800)": -0.2113857, "SA(2.000)": -0.1854159, "SA(2.500)": -0.1739854, "SA(3.000)": -0.2031366, "SA(3.500)": -0.1963137, "SA(4.000)": -0.2004426, "SA(4.500)": -0.1843747, "SA(5.000)": -0.1711274, "SA(6.000)": -0.1572931, "SA(7.000)": -0.1094104, "SA(8.000)": -0.0780388}, "weight": 0.00749916}, {"id": "Kotha2020ESHM20Cluster2VLowStressSlowAtten", "model": "KothaEtAl2020ESHM20", "sigma_mu_epsilon": -2.85697, "c3": {"PGA": -0.5400780760047, "SA(0.010)": -0.5380440423602, "SA(0.025)": -0.5030630661368, "SA(0.040)": -0.4717582796202, "SA(0.050)": -0.49353136031710004, "SA(0.070)": -0.5474858475564, "SA(0.100)": -0.6519457748887, "SA(0.150)": -0.7465311277662, "SA(0.200)": -0.7217185984465999, "SA(0.250)": -0.6541566060882, "SA(0.300)": -0.5924522488222, "SA(0.350)": -0.5620578794474, "SA(0.400)": -0.538018711775, "SA(0.450)": -0.4931060712914, "SA(0.500)": -0.4432414663223, "SA(0.600)": -0.37002665919190003, "SA(0.700)": -0.310596610789, "SA(0.750)": -0.2853228975445, "SA(0.800)": -0.2750411940747, "SA(0.900)": -0.25243537300950003, "SA(1.000)": -0.2338590938715, "SA(1.200)": -0.16459809363980002, "SA(1.400)": -0.10098925594809999, "SA(1.600)": -0.0699088197044, "SA(1.800)": -0.05282093428260001, "SA(2.000)": -0.02568823524119998, "SA(2.500)": 0.030818199213399983, "SA(3.000)": -0.0071196955095999825, "SA(3.500)": 0.026080435964299986, "SA(4.000)": 0.010317002987100005, "SA(4.500)": 0.042490379210600004, "SA(5.000)": 0.09027962589340002, "SA(6.000)": 0.10699311427069999, "SA(7.000)": 0.17798760999429997, "SA(8.000)": 0.2069930551232}, "weight": 0.00188042}, {"id": "Kotha2020ESHM20Cluster2LowStressFastAtten", "model": "KothaEtAl2020ESHM20", "sigma_mu_epsilon": -1.35563, "c3": {"PGA": -0.8012031239953, "SA(0.010)": -0.8032203576398, "SA(0.025)": -0.7673851338632, "SA(0.040)": -0.7221775203798, "SA(0.050)": -0.7446368396829, "SA(0.070)": -0.8733317524436, "SA(0.100)": -0.9938398251113, "SA(0.150)": -1.0529094722338002, "SA(0.200)": -0.9766190015534, "SA(0.250)": -0.9147325939118001, "SA(0.300)": -0.8425181511778, "SA(0.350)": -0.7914597205525999, "SA(0.400)": -0.761366688225, "SA(0.450)": -0.7168129287086, "SA(0.500)": -0.6862229336777, "SA(0.600)": -0.6262077408080999, "SA(0.700)": -0.5848183892109999, "SA(0.750)": -0.5622103024555, "SA(0.800)": -0.5376558059253, "SA(0.900)": -0.4956690269905, "SA(1.000)": -0.4813813061285, "SA(1.200)": -0.4675345063602, "SA(1.400)": -0.4401487440519, "SA(1.600)": -0.4000917802956, "SA(1.800)": -0.3699504657174, "SA(2.000)": -0.34514356475880004, "SA(2.500)": -0.37878899921340003, "SA(3.000)": -0.3991535044904, "SA(3.500)": -0.4187078359643, "SA(4.000)": -0.4112022029871, "SA(4.500)": -0.4112397792106, "SA(5.000)": -0.4325344258934001, "SA(6.000)": -0.42157931427069995, "SA(7.000)": -0.3968084099943, "SA(8.000)": -0.3630706551232}, "weight": 0.03708736}, {"id": "Kotha2020ESHM20Cluster2LowStressAveAtten", "model": "KothaEtAl2020ESHM20", "sigma_mu_epsilon": -1.35563, "c3": {"PGA": -0.6706406, "SA(0.010)": -0.6706322, "SA(0.025)": -0.6352241, "SA(0.040)": -0.5969679, "SA(0.050)": -0.6190841, "SA(0.070)": -0.7104088, "SA(0.100)": -0.8228928, "SA(0.150)": -0.8997203, "SA(0.200)": -0.8491688, "SA(0.250)": -0.7844446, "SA(0.300)": -0.7174852, "SA(0.350)": -0.6767588, "SA(0.400)": -0.6496927, "SA(0.450)": -0.6049595, "SA(0.500)": -0.5647322, "SA(0.600)": -0.4981172, "SA(0.700)": -0.4477075, "SA(0.750)": -0.4237666, "SA(0.800)": -0.4063485, "SA(0.900)": -0.3740522, "SA(1.000)": -0.3576202, "SA(1.200)": -0.3160663, "SA(1.400)": -0.270569, "SA(1.600)": -0.2350003, "SA(1.800)": -0.2113857, "SA(2.000)": -0.1854159, "SA(2.500)": -0.1739854, "SA(3.000)": -0.2031366, "SA(3.500)": -0.1963137, "SA(4.000)": -0.2004426, "SA(4.500)": -0.1843747, "SA(5.000)": -0.1711274, "SA(6.000)": -0.1572931, "SA(7.000)": -0.1094104, "SA(8.000)": -0.0780388}, "weight": 0.14790528}, {"id": "Kotha2020ESHM20Cluster2LowStressSlowAtten", "model": "KothaEtAl2020ESHM20", "sigma_mu_epsilon": -1.35563, "c3": {"PGA": -0.5400780760047, "SA(0.010)": -0.5380440423602, "SA(0.025)": -0.5030630661368, "SA(0.040)": -0.4717582796202, "SA(0.050)": -0.49353136031710004, "SA(0.070)": -0.5474858475564, "SA(0.100)": -0.6519457748887, "SA(0.150)": -0.7465311277662, "SA(0.200)": -0.7217185984465999, "SA(0.250)": -0.6541566060882, "SA(0.300)": -0.5924522488222, "SA(0.350)": -0.5620578794474, "SA(0.400)": -0.538018711775, "SA(0.450)": -0.4931060712914, "SA(0.500)": -0.4432414663223, "SA(0.600)": -0.37002665919190003, "SA(0.700)": -0.310596610789, "SA(0.750)": -0.2853228975445, "SA(0.800)": -0.2750411940747, "SA(0.900)": -0.25243537300950003, "SA(1.000)": -0.2338590938715, "SA(1.200)": -0.16459809363980002, "SA(1.400)": -0.10098925594809999, "SA(1.600)": -0.0699088197044, "SA(1.800)": -0.05282093428260001, "SA(2.000)": -0.02568823524119998, "SA(2.500)": 0.030818199213399983, "SA(3.000)": -0.0071196955095999825, "SA(3.500)": 0.026080435964299986, "SA(4.000)": 0.010317002987100005, "SA(4.500)": 0.042490379210600004, "SA(5.000)": 0.09027962589340002, "SA(6.000)": 0.10699311427069999, "SA(7.000)": 0.17798760999429997, "SA(8.000)": 0.2069930551232}, "weight": 0.03708736}, {"id": "Kotha2020ESHM20Cluster2AveStressFastAtten", "model": "KothaEtAl2020ESHM20", "c3": {"PGA": -0.8012031239953, "SA(0.010)": -0.8032203576398, "SA(0.025)": -0.7673851338632, "SA(0.040)": -0.7221775203798, "SA(0.050)": -0.7446368396829, "SA(0.070)": -0.8733317524436, "SA(0.100)": -0.9938398251113, "SA(0.150)": -1.0529094722338002, "SA(0.200)": -0.9766190015534, "SA(0.250)": -0.9147325939118001, "SA(0.300)": -0.8425181511778, "SA(0.350)": -0.7914597205525999, "SA(0.400)": -0.761366688225, "SA(0.450)": -0.7168129287086, "SA(0.500)": -0.6862229336777, "SA(0.600)": -0.6262077408080999, "SA(0.700)": -0.5848183892109999, "SA(0.750)": -0.5622103024555, "SA(0.800)": -0.5376558059253, "SA(0.900)": -0.4956690269905, "SA(1.000)": -0.4813813061285, "SA(1.200)": -0.4675345063602, "SA(1.400)": -0.4401487440519, "SA(1.600)": -0.4000917802956, "SA(1.800)": -0.3699504657174, "SA(2.000)": -0.34514356475880004, "SA(2.500)": -0.37878899921340003, "SA(3.000)": -0.3991535044904, "SA(3.500)": -0.4187078359643, "SA(4.000)": -0.4112022029871, "SA(4.500)": -0.4112397792106, "SA(5.000)": -0.4325344258934001, "SA(6.000)": -0.42157931427069995, "SA(7.000)": -0.3968084099943, "SA(8.000)": -0.3630706551232}, "weight": 0.08906444}, {"id": "Kotha2020ESHM20Cluster2AveStressAveAtten", "model": "KothaEtAl2020ESHM20", "c3": {"PGA": -0.6706406, "SA(0.010)": -0.6706322, "SA(0.025)": -0.6352241, "SA(0.040)": -0.5969679, "SA(0.050)": -0.6190841, "SA(0.070)": -0.7104088, "SA(0.100)": -0.8228928, "SA(0.150)": -0.8997203, "SA(0.200)": -0.8491688, "SA(0.250)": -0.7844446, "SA(0.300)": -0.7174852, "SA(0.350)": -0.6767588, "SA(0.400)": -0.6496927, "SA(0.450)": -0.6049595, "SA(0.500)": -0.5647322, "SA(0.600)": -0.4981172, "SA(0.700)": -0.4477075, "SA(0.750)": -0.4237666, "SA(0.800)": -0.4063485, "SA(0.900)": -0.3740522, "SA(1.000)": -0.3576202, "SA(1.200)": -0.3160663, "SA(1.400)": -0.270569, "SA(1.600)": -0.2350003, "SA(1.800)": -0.2113857, "SA(2.000)": -0.1854159, "SA(2.500)": -0.1739854, "SA(3.000)": -0.2031366, "SA(3.500)": -0.1963137, "SA(4.000)": -0.2004426, "SA(4.500)": -0.1843747, "SA(5.000)": -0.1711274, "SA(6.000)": -0.1572931, "SA(7.000)": -0.1094104, "SA(8.000)": -0.0780388}, "weight": 0.35519112}, {"id": "Kotha2020ESHM20Cluster2AveStressSlowAtten", "model": "KothaEtAl2020ESHM20", "c3": {"PGA": -0.5400780760047, "SA(0.010)": -0.5380440423602, "SA(0.025)": -0.5030630661368, "SA(0.040)": -0.4717582796202, "SA(0.050)": -0.49353136031710004, "SA(0.070)": -0.5474858475564, "SA(0.100)": -0.6519457748887, "SA(0.150)": -0.7465311277662, "SA(0.200)": -0.7217185984465999, "SA(0.250)": -0.6541566060882, "SA(0.300)": -0.5924522488222, "SA(0.350)": -0.5620578794474, "SA(0.400)": -0.538018711775, "SA(0.450)": -0.4931060712914, "SA(0.500)": -0.4432414663223, "SA(0.600)": -0.37002665919190003, "SA(0.700)": -0.310596610789, "SA(0.750)": -0.2853228975445, "SA(0.800)": -0.2750411940747, "SA(0.900)": -0.25243537300950003, "SA(1.000)": -0.2338590938715, "SA(1.200)": -0.16459809363980002, "SA(1.400)": -0.10098925594809999, "SA(1.600)": -0.0699088197044, "SA(1.800)": -0.05282093428260001, "SA(2.000)": -0.02568823524119998, "SA(2.500)": 0.030818199213399983, "SA(3.000)": -0.0071196955095999825, "SA(3.500)": 0.026080435964299986, "SA(4.000)": 0.010317002987100005, "SA(4.500)": 0.042490379210600004, "SA(5.000)": 0.09027962589340002, "SA(6.000)": 0.10699311427069999, "SA(7.000)": 0.17798760999429997, "SA(8.000)": 0.2069930551232}, "weight": 0.08906444}, {"id": "Kotha2020ESHM20Cluster2HighStressFastAtten", "model": "KothaEtAl2020ESHM20", "sigma_mu_epsilon": 1.35563, "c3": {"PGA": -0.8012031239953, "SA(0.010)": -0.8032203576398, "SA(0.025)": -0.7673851338632, "SA(0.040)": -0.7221775203798, "SA(0.050)": -0.7446368396829, "SA(0.070)": -0.8733317524436, "SA(0.100)": -0.9938398251113, "SA(0.150)": -1.0529094722338002, "SA(0.200)": -0.9766190015534, "SA(0.250)": -0.9147325939118001, "SA(0.300)": -0.8425181511778, "SA(0.350)": -0.7914597205525999, "SA(0.400)": -0.761366688225, "SA(0.450)": -0.7168129287086, "SA(0.500)": -0.6862229336777, "SA(0.600)": -0.6262077408080999, "SA(0.700)": -0.5848183892109999, "SA(0.750)": -0.5622103024555, "SA(0.800)": -0.5376558059253, "SA(0.900)": -0.4956690269905, "SA(1.000)": -0.4813813061285, "SA(1.200)": -0.4675345063602, "SA(1.400)": -0.4401487440519, "SA(1.600)": -0.4000917802956, "SA(1.800)": -0.3699504657174, "SA(2.000)": -0.34514356475880004, "SA(2.500)": -0.37878899921340003, "SA(3.000)": -0.3991535044904, "SA(3.500)": -0.4187078359643, "SA(4.000)": -0.4112022029871, "SA(4.500)": -0.4112397792106, "SA(5.000)": -0.4325344258934001, "SA(6.000)": -0.42157931427069995, "SA(7.000)": -0.3968084099943, "SA(8.000)": -0.3630706551232}, "weight": 0.03708736}, {"id": "Kotha2020ESHM20Cluster2HighStressAveAtten", "model": "KothaEtAl2020ESHM20", "sigma_mu_epsilon": 1.35563, "c3": {"PGA": -0.6706406, "SA(0.010)": -0.6706322, "SA(0.025)": -0.6352241, "SA(0.040)": -0.5969679, "SA(0.050)": -0.6190841, "SA(0.070)": -0.7104088, "SA(0.100)": -0.8228928, "SA(0.150)": -0.8997203, "SA(0.200)": -0.8491688, "SA(0.250)": -0.7844446, "SA(0.300)": -0.7174852, "SA(0.350)": -0.6767588, "SA(0.400)": -0.6496927, "SA(0.450)": -0.6049595, "SA(0.500)": -0.5647322, "SA(0.600)": -0.4981172, "SA(0.700)": -0.4477075, "SA(0.750)": -0.4237666, "SA(0.800)": -0.4063485, "SA(0.900)": -0.3740522, "SA(1.000)": -0.3576202, "SA(1.200)": -0.3160663, "SA(1.400)": -0.270569, "SA(1.600)": -0.2350003, "SA(1.800)": -0.2113857, "SA(2.000)": -0.1854159, "SA(2.500)": -0.1739854, "SA(3.000)": -0.2031366, "SA(3.500)": -0.1963137, "SA(4.000)": -0.2004426, "SA(4.500)": -0.1843747, "SA(5.000)": -0.1711274, "SA(6.000)": -0.1572931, "SA(7.000)": -0.1094104, "SA(8.000)": -0.0780388}, "weight": 0.14790528}, {"id": "Kotha2020ESHM20Cluster2HighStressSlowAtten", "model": "KothaEtAl2020ESHM20", "sigma_mu_epsilon": 1.35563, "c3": {"PGA": -0.5400780760047, "SA(0.010)": -0.5380440423602, "SA(0.025)": -0.5030630661368, "SA(0.040)": -0.4717582796202, "SA(0.050)": -0.49353136031710004, "SA(0.070)": -0.5474858475564, "SA(0.100)": -0.6519457748887, "SA(0.150)": -0.7465311277662, "SA(0.200)": -0.7217185984465999, "SA(0.250)": -0.6541566060882, "SA(0.300)": -0.5924522488222, "SA(0.350)": -0.5620578794474, "SA(0.400)": -0.538018711775, "SA(0.450)": -0.4931060712914, "SA(0.500)": -0.4432414663223, "SA(0.600)": -0.37002665919190003, "SA(0.700)": -0.310596610789, "SA(0.750)": -0.2853228975445, "SA(0.800)": -0.2750411940747, "SA(0.900)": -0.25243537300950003, "SA(1.000)": -0.2338590938715, "SA(1.200)": -0.16459809363980002, "SA(1.400)": -0.10098925594809999, "SA(1.600)": -0.0699088197044, "SA(1.800)": -0.05282093428260001, "SA(2.000)": -0.02568823524119998, "SA(2.500)": 0.030818199213399983, "SA(3.000)": -0.0071196955095999825, "SA(3.500)": 0.026080435964299986, "SA(4.000)": 0.010317002987100005, "SA(4.500)": 0.042490379210600004, "SA(5.000)": 0.09027962589340002, "SA(6.000)": 0.10699311427069999, "SA(7.000)": 0.17798760999429997, "SA(8.000)": 0.2069930551232}, "weight": 0.03708736}, {"id": "Kotha2020ESHM20Cluster2VHighStressFastAtten", "model": "KothaEtAl2020ESHM20", "sigma_mu_epsilon": 2.85697, "c3": {"PGA": -0.8012031239953, "SA(0.010)": -0.8032203576398, "SA(0.025)": -0.7673851338632, "SA(0.040)": -0.7221775203798, "SA(0.050)": -0.7446368396829, "SA(0.070)": -0.8733317524436, "SA(0.100)": -0.9938398251113, "SA(0.150)": -1.0529094722338002, "SA(0.200)": -0.9766190015534, "SA(0.250)": -0.9147325939118001, "SA(0.300)": -0.8425181511778, "SA(0.350)": -0.7914597205525999, "SA(0.400)": -0.761366688225, "SA(0.450)": -0.7168129287086, "SA(0.500)": -0.6862229336777, "SA(0.600)": -0.6262077408080999, "SA(0.700)": -0.5848183892109999, "SA(0.750)": -0.5622103024555, "SA(0.800)": -0.5376558059253, "SA(0.900)": -0.4956690269905, "SA(1.000)": -0.4813813061285, "SA(1.200)": -0.4675345063602, "SA(1.400)": -0.4401487440519, "SA(1.600)": -0.4000917802956, "SA(1.800)": -0.3699504657174, "SA(2.000)": -0.34514356475880004, "SA(2.500)": -0.37878899921340003, "SA(3.000)": -0.3991535044904, "SA(3.500)": -0.4187078359643, "SA(4.000)": -0.4112022029871, "SA(4.500)": -0.4112397792106, "SA(5.000)": -0.4325344258934001, "SA(6.000)": -0.42157931427069995, "SA(7.000)": -0.3968084099943, "SA(8.000)": -0.3630706551232}, "weight": 0.00188042}, {"id": "Kotha2020ESHM20Cluster2VHighStressAveAtten", "model": "KothaEtAl2020ESHM20", "sigma_mu_epsilon": 2.85697, "c3": {"PGA": -0.6706406, "SA(0.010)": -0.6706322, "SA(0.025)": -0.6352241, "SA(0.040)": -0.5969679, "SA(0.050)": -0.6190841, "SA(0.070)": -0.7104088, "SA(0.100)": -0.8228928, "SA(0.150)": -0.8997203, "SA(0.200)": -0.8491688, "SA(0.250)": -0.7844446, "SA(0.300)": -0.7174852, "SA(0.350)": -0.6767588, "SA(0.400)": -0.6496927, "SA(0.450)": -0.6049595, "SA(0.500)": -0.5647322, "SA(0.600)": -0.4981172, "SA(0.700)": -0.4477075, "SA(0.750)": -0.4237666, "SA(0.800)": -0.4063485, "SA(0.900)": -0.3740522, "SA(1.000)": -0.3576202, "SA(1.200)": -0.3160663, "SA(1.400)": -0.270569, "SA(1.600)": -0.2350003, "SA(1.800)": -0.2113857, "SA(2.000)": -0.1854159, "SA(2.500)": -0.1739854, "SA(3.000)": -0.2031366, "SA(3.500)": -0.1963137, "SA(4.000)": -0.2004426, "SA(4.500)": -0.1843747, "SA(5.000)": -0.1711274, "SA(6.000)": -0.1572931, "SA(7.000)": -0.1094104, "SA(8.000)": -0.0780388}, "weight": 0.00749916}, {"id": "Kotha2020ESHM20Cluster2VHighStressSlowAtten", "model": "KothaEtAl2020ESHM20", "sigma_mu_epsilon": 2.85697, "c3": {"PGA": -0.5400780760047, "SA(0.010)": -0.5380440423602, "SA(0.025)": -0.5030630661368, "SA(0.040)": -0.4717582796202, "SA(0.050)": -0.49353136031710004, "SA(0.070)": -0.5474858475564, "SA(0.100)": -0.6519457748887, "SA(0.150)": -0.7465311277662, "SA(0.200)": -0.7217185984465999, "SA(0.250)": -0.6541566060882, "SA(0.300)": -0.5924522488222, "SA(0.350)": -0.5620578794474, "SA(0.400)": -0.538018711775, "SA(0.450)": -0.4931060712914, "SA(0.500)": -0.4432414663223, "SA(0.600)": -0.37002665919190003, "SA(0.700)": -0.310596610789, "SA(0.750)": -0.2853228975445, "SA(0.800)": -0.2750411940747, "SA(0.900)": -0.25243537300950003, "SA(1.000)": -0.2338590938715, "SA(1.200)": -0.16459809363980002, "SA(1.400)": -0.10098925594809999, "SA(1.600)": -0.0699088197044, "SA(1.800)": -0.05282093428260001, "SA(2.000)": -0.02568823524119998, "SA(2.500)": 0.030818199213399983, "SA(3.000)": -0.0071196955095999825, "SA(3.500)": 0.026080435964299986, "SA(4.000)": 0.010317002987100005, "SA(4.500)": 0.042490379210600004, "SA(5.000)": 0.09027962589340002, "SA(6.000)": 0.10699311427069999, "SA(7.000)": 0.17798760999429997, "SA(8.000)": 0.2069930551232}, "weight": 0.00188042}], "ESHM20 Cluster 3": [{"id": "Kotha2020ESHM20Cluster3VLowStressFastAtten", "model": "KothaEtAl2020ESHM20", "sigma_mu_epsilon": -2.85697, "c3": {"PGA": -1.1299766676767, "SA(0.010)": -1.1248127504008, "SA(0.025)": -1.098096277839, "SA(0.040)": -1.0642113285028, "SA(0.050)": -1.1020848804614, "SA(0.070)": -1.2432353806491, "SA(0.100)": -1.3823304296501, "SA(0.150)": -1.5324067353644, "SA(0.200)": -1.4654632284309002, "SA(0.250)": -1.4051841743456999, "SA(0.300)": -1.3053545266645998, "SA(0.350)": -1.2089415786157, "SA(0.400)": -1.1750440689102999, "SA(0.450)": -1.1174063212889, "SA(0.500)": -1.0462634762688001, "SA(0.600)": -0.9359292391094, "SA(0.700)": -0.8484971355838999, "SA(0.750)": -0.8177566782183, "SA(0.800)": -0.7525809346429, "SA(0.900)": -0.7047339168107, "SA(1.000)": -0.6758601216289, "SA(1.200)": -0.6101556717279, "SA(1.400)": -0.5258311010685001, "SA(1.600)": -0.576557786163, "SA(1.800)": -0.5295688606713, "SA(2.000)": -0.5203206701213001, "SA(2.500)": -0.4498250985587, "SA(3.000)": -0.3609581190472, "SA(3.500)": -0.3262021183871, "SA(4.000)": -0.36780191139429996, "SA(4.500)": -0.3433139332285, "SA(5.000)": -0.30157361596520005, "SA(6.000)": -0.26085984097889997, "SA(7.000)": -0.2338270997861, "SA(8.000)": -0.18396787750119997}, "weight": 0.00188042}, {"id": "Kotha2020ESHM20Cluster3VLowStressAveAtten", "model": "KothaEtAl2020ESHM20", "sigma_mu_epsilon": -2.85697, "c3": {"PGA": -0.9417171, "SA(0.010)": -0.9398976, "SA(0.025)": -0.9068969, "SA(0.040)": -0.855044, "SA(0.050)": -0.8923484, "SA(0.070)": -1.0055216, "SA(0.100)": -1.1542278, "SA(0.150)": -1.2425577, "SA(0.200)": -1.1920834, "SA(0.250)": -1.1082921, "SA(0.300)": -1.0234899, "SA(0.350)": -0.9540171, "SA(0.400)": -0.9030336, "SA(0.450)": -0.8631518, "SA(0.500)": -0.8155044, "SA(0.600)": -0.7084427, "SA(0.700)": -0.6426621, "SA(0.750)": -0.6186517, "SA(0.800)": -0.5803321, "SA(0.900)": -0.5347752, "SA(1.000)": -0.5024231, "SA(1.200)": -0.4373266, "SA(1.400)": -0.370997, "SA(1.600)": -0.3262539, "SA(1.800)": -0.293566, "SA(2.000)": -0.2636198, "SA(2.500)": -0.2307662, "SA(3.000)": -0.2322889, "SA(3.500)": -0.2100125, "SA(4.000)": -0.1992226, "SA(4.500)": -0.1812745, "SA(5.000)": -0.1382322, "SA(6.000)": -0.1275198, "SA(7.000)": -0.090013, "SA(8.000)": -0.0678491}, "weight": 0.00749916}, {"id": "Kotha2020ESHM20Cluster3VLowStressSlowAtten", "model": "KothaEtAl2020ESHM20", "sigma_mu_epsilon": -2.85697, "c3": {"PGA": -0.7534575323232999, "SA(0.010)": -0.7549824495992, "SA(0.025)": -0.715697522161, "SA(0.040)": -0.6458766714972, "SA(0.050)": -0.6826119195386, "SA(0.070)": -0.7678078193509, "SA(0.100)": -0.9261251703498998, "SA(0.150)": -0.9527086646356001, "SA(0.200)": -0.9187035715691, "SA(0.250)": -0.8114000256542999, "SA(0.300)": -0.7416252733354, "SA(0.350)": -0.6990926213843, "SA(0.400)": -0.6310231310897, "SA(0.450)": -0.6088972787111, "SA(0.500)": -0.5847453237312, "SA(0.600)": -0.4809561608906, "SA(0.700)": -0.43682706441610003, "SA(0.750)": -0.41954672178170005, "SA(0.800)": -0.40808326535710004, "SA(0.900)": -0.36481648318930004, "SA(1.000)": -0.32898607837110005, "SA(1.200)": -0.26449752827210005, "SA(1.400)": -0.2161628989315, "SA(1.600)": -0.07595001383700001, "SA(1.800)": -0.0575631393287, "SA(2.000)": -0.006918929878699964, "SA(2.500)": -0.0117073014413, "SA(3.000)": -0.1036196809528, "SA(3.500)": -0.09382288161289998, "SA(4.000)": -0.03064328860570001, "SA(4.500)": -0.019235066771499998, "SA(5.000)": 0.02510921596520002, "SA(6.000)": 0.005820240978899993, "SA(7.000)": 0.053801099786099996, "SA(8.000)": 0.048269677501199995}, "weight": 0.00188042}, {"id": "Kotha2020ESHM20Cluster3LowStressFastAtten", "model": "KothaEtAl2020ESHM20", "sigma_mu_epsilon": -1.35563, "c3": {"PGA": -1.1299766676767, "SA(0.010)": -1.1248127504008, "SA(0.025)": -1.098096277839, "SA(0.040)": -1.0642113285028, "SA(0.050)": -1.1020848804614, "SA(0.070)": -1.2432353806491, "SA(0.100)": -1.3823304296501, "SA(0.150)": -1.5324067353644, "SA(0.200)": -1.4654632284309002, "SA(0.250)": -1.4051841743456999, "SA(0.300)": -1.3053545266645998, "SA(0.350)": -1.2089415786157, "SA(0.400)": -1.1750440689102999, "SA(0.450)": -1.1174063212889, "SA(0.500)": -1.0462634762688001, "SA(0.600)": -0.9359292391094, "SA(0.700)": -0.8484971355838999, "SA(0.750)": -0.8177566782183, "SA(0.800)": -0.7525809346429, "SA(0.900)": -0.7047339168107, "SA(1.000)": -0.6758601216289, "SA(1.200)": -0.6101556717279, "SA(1.400)": -0.5258311010685001, "SA(1.600)": -0.576557786163, "SA(1.800)": -0.5295688606713, "SA(2.000)": -0.5203206701213001, "SA(2.500)": -0.4498250985587, "SA(3.000)": -0.3609581190472, "SA(3.500)": -0.3262021183871, "SA(4.000)": -0.36780191139429996, "SA(4.500)": -0.3433139332285, "SA(5.000)": -0.30157361596520005, "SA(6.000)": -0.26085984097889997, "SA(7.000)": -0.2338270997861, "SA(8.000)": -0.18396787750119997}, "weight": 0.03708736}, {"id": "Kotha2020ESHM20Cluster3LowStressAveAtten", "model": "KothaEtAl2020ESHM20", "sigma_mu_epsilon": -1.35563, "c3": {"PGA": -0.9417171, "SA(0.010)": -0.9398976, "SA(0.025)": -0.9068969, "SA(0.040)": -0.855044, "SA(0.050)": -0.8923484, "SA(0.070)": -1.0055216, "SA(0.100)": -1.1542278, "SA(0.150)": -1.2425577, "SA(0.200)": -1.1920834, "SA(0.250)": -1.1082921, "SA(0.300)": -1.0234899, "SA(0.350)": -0.9540171, "SA(0.400)": -0.9030336, "SA(0.450)": -0.8631518, "SA(0.500)": -0.8155044, "SA(0.600)": -0.7084427, "SA(0.700)": -0.6426621, "SA(0.750)": -0.6186517, "SA(0.800)": -0.5803321, "SA(0.900)": -0.5347752, "SA(1.000)": -0.5024231, "SA(1.200)": -0.4373266, "SA(1.400)": -0.370997, "SA(1.600)": -0.3262539, "SA(1.800)": -0.293566, "SA(2.000)": -0.2636198, "SA(2.500)": -0.2307662, "SA(3.000)": -0.2322889, "SA(3.500)": -0.2100125, "SA(4.000)": -0.1992226, "SA(4.500)": -0.1812745, "SA(5.000)": -0.1382322, "SA(6.000)": -0.1275198, "SA(7.000)": -0.090013, "SA(8.000)": -0.0678491}, "weight": 0.14790528}, {"id": "Kotha2020ESHM20Cluster3LowStressSlowAtten", "model": "KothaEtAl2020ESHM20", "sigma_mu_epsilon": -1.35563, "c3": {"PGA": -0.7534575323232999, "SA(0.010)": -0.7549824495992, "SA(0.025)": -0.715697522161, "SA(0.040)": -0.6458766714972, "SA(0.050)": -0.6826119195386, "SA(0.070)": -0.7678078193509, "SA(0.100)": -0.9261251703498998, "SA(0.150)": -0.9527086646356001, "SA(0.200)": -0.9187035715691, "SA(0.250)": -0.8114000256542999, "SA(0.300)": -0.7416252733354, "SA(0.350)": -0.6990926213843, "SA(0.400)": -0.6310231310897, "SA(0.450)": -0.6088972787111, "SA(0.500)": -0.5847453237312, "SA(0.600)": -0.4809561608906, "SA(0.700)": -0.43682706441610003, "SA(0.750)": -0.41954672178170005, "SA(0.800)": -0.40808326535710004, "SA(0.900)": -0.36481648318930004, "SA(1.000)": -0.32898607837110005, "SA(1.200)": -0.26449752827210005, "SA(1.400)": -0.2161628989315, "SA(1.600)": -0.07595001383700001, "SA(1.800)": -0.0575631393287, "SA(2.000)": -0.006918929878699964, "SA(2.500)": -0.0117073014413, "SA(3.000)": -0.1036196809528, "SA(3.500)": -0.09382288161289998, "SA(4.000)": -0.03064328860570001, "SA(4.500)": -0.019235066771499998, "SA(5.000)": 0.02510921596520002, "SA(6.000)": 0.005820240978899993, "SA(7.000)": 0.053801099786099996, "SA(8.000)": 0.048269677501199995}, "weight": 0.03708736}, {"id": "Kotha2020ESHM20Cluster3AveStressFastAtten", "model": "KothaEtAl2020ESHM20", "c3": {"PGA": -1.1299766676767, "SA(0.010)": -1.1248127504008, "SA(0.025)": -1.098096277839, "SA(0.040)": -1.0642113285028, "SA(0.050)": -1.1020848804614, "SA(0.070)": -1.2432353806491, "SA(0.100)": -1.3823304296501, "SA(0.150)": -1.5324067353644, "SA(0.200)": -1.4654632284309002, "SA(0.250)": -1.4051841743456999, "SA(0.300)": -1.3053545266645998, "SA(0.350)": -1.2089415786157, "SA(0.400)": -1.1750440689102999, "SA(0.450)": -1.1174063212889, "SA(0.500)": -1.0462634762688001, "SA(0.600)": -0.9359292391094, "SA(0.700)": -0.8484971355838999, "SA(0.750)": -0.8177566782183, "SA(0.800)": -0.7525809346429, "SA(0.900)": -0.7047339168107, "SA(1.000)": -0.6758601216289, "SA(1.200)": -0.6101556717279, "SA(1.400)": -0.5258311010685001, "SA(1.600)": -0.576557786163, "SA(1.800)": -0.5295688606713, "SA(2.000)": -0.5203206701213001, "SA(2.500)": -0.4498250985587, "SA(3.000)": -0.3609581190472, "SA(3.500)": -0.3262021183871, "SA(4.000)": -0.36780191139429996, "SA(4.500)": -0.3433139332285, "SA(5.000)": -0.30157361596520005, "SA(6.000)": -0.26085984097889997, "SA(7.000)": -0.2338270997861, "SA(8.000)": -0.18396787750119997}, "weight": 0.08906444}, {"id": "Kotha2020ESHM20Cluster3AveStressAveAtten", "model": "KothaEtAl2020ESHM20", "c3": {"PGA": -0.9417171, "SA(0.010)": -0.9398976, "SA(0.025)": -0.9068969, "SA(0.040)": -0.855044, "SA(0.050)": -0.8923484, "SA(0.070)": -1.0055216, "SA(0.100)": -1.1542278, "SA(0.150)": -1.2425577, "SA(0.200)": -1.1920834, "SA(0.250)": -1.1082921, "SA(0.300)": -1.0234899, "SA(0.350)": -0.9540171, "SA(0.400)": -0.9030336, "SA(0.450)": -0.8631518, "SA(0.500)": -0.8155044, "SA(0.600)": -0.7084427, "SA(0.700)": -0.6426621, "SA(0.750)": -0.6186517, "SA(0.800)": -0.5803321, "SA(0.900)": -0.5347752, "SA(1.000)": -0.5024231, "SA(1.200)": -0.4373266, "SA(1.400)": -0.370997, "SA(1.600)": -0.3262539, "SA(1.800)": -0.293566, "SA(2.000)": -0.2636198, "SA(2.500)": -0.2307662, "SA(3.000)": -0.2322889, "SA(3.500)": -0.2100125, "SA(4.000)": -0.1992226, "SA(4.500)": -0.1812745, "SA(5.000)": -0.1382322, "SA(6.000)": -0.1275198, "SA(7.000)": -0.090013, "SA(8.000)": -0.0678491}, "weight": 0.35519112}, {"id": "Kotha2020ESHM20Cluster3AveStressSlowAtten", "model": "KothaEtAl2020ESHM20", "c3": {"PGA": -0.7534575323232999, "SA(0.010)": -0.7549824495992, "SA(0.025)": -0.715697522161, "SA(0.040)": -0.6458766714972, "SA(0.050)": -0.6826119195386, "SA(0.070)": -0.7678078193509, "SA(0.100)": -0.9261251703498998, "SA(0.150)": -0.9527086646356001, "SA(0.200)": -0.9187035715691, "SA(0.250)": -0.8114000256542999, "SA(0.300)": -0.7416252733354, "SA(0.350)": -0.6990926213843, "SA(0.400)": -0.6310231310897, "SA(0.450)": -0.6088972787111, "SA(0.500)": -0.5847453237312, "SA(0.600)": -0.4809561608906, "SA(0.700)": -0.43682706441610003, "SA(0.750)": -0.41954672178170005, "SA(0.800)": -0.40808326535710004, "SA(0.900)": -0.36481648318930004, "SA(1.000)": -0.32898607837110005, "SA(1.200)": -0.26449752827210005, "SA(1.400)": -0.2161628989315, "SA(1.600)": -0.07595001383700001, "SA(1.800)": -0.0575631393287, "SA(2.000)": -0.006918929878699964, "SA(2.500)": -0.0117073014413, "SA(3.000)": -0.1036196809528, "SA(3.500)": -0.09382288161289998, "SA(4.000)": -0.03064328860570001, "SA(4.500)": -0.019235066771499998, "SA(5.000)": 0.02510921596520002, "SA(6.000)": 0.005820240978899993, "SA(7.000)": 0.053801099786099996, "SA(8.000)": 0.048269677501199995}, "weight": 0.08906444}, {"id": "Kotha2020ESHM20Cluster3HighStressFastAtten", "model": "KothaEtAl2020ESHM20", "sigma_mu_epsilon": 1.35563, "c3": {"PGA": -1.1299766676767, "SA(0.010)": -1.1248127504008, "SA(0.025)": -1.098096277839, "SA(0.040)": -1.0642113285028, "SA(0.050)": -1.1020848804614, "SA(0.070)": -1.2432353806491, "SA(0.100)": -1.3823304296501, "SA(0.150)": -1.5324067353644, "SA(0.200)": -1.4654632284309002, "SA(0.250)": -1.4051841743456999, "SA(0.300)": -1.3053545266645998, "SA(0.350)": -1.2089415786157, "SA(0.400)": -1.1750440689102999, "SA(0.450)": -1.1174063212889, "SA(0.500)": -1.0462634762688001, "SA(0.600)": -0.9359292391094, "SA(0.700)": -0.8484971355838999, "SA(0.750)": -0.8177566782183, "SA(0.800)": -0.7525809346429, "SA(0.900)": -0.7047339168107, "SA(1.000)": -0.6758601216289, "SA(1.200)": -0.6101556717279, "SA(1.400)": -0.5258311010685001, "SA(1.600)": -0.576557786163, "SA(1.800)": -0.5295688606713, "SA(2.000)": -0.5203206701213001, "SA(2.500)": -0.4498250985587, "SA(3.000)": -0.3609581190472, "SA(3.500)": -0.3262021183871, "SA(4.000)": -0.36780191139429996, "SA(4.500)": -0.3433139332285, "SA(5.000)": -0.30157361596520005, "SA(6.000)": -0.26085984097889997, "SA(7.000)": -0.2338270997861, "SA(8.000)": -0.18396787750119997}, "weight": 0.03708736}, {"id": "Kotha2020ESHM20Cluster3HighStressAveAtten", "model": "KothaEtAl2020ESHM20", "sigma_mu_epsilon": 1.35563, "c3": {"PGA": -0.9417171, "SA(0.010)": -0.9398976, "SA(0.025)": -0.9068969, "SA(0.040)": -0.855044, "SA(0.050)": -0.8923484, "SA(0.070)": -1.0055216, "SA(0.100)": -1.1542278, "SA(0.150)": -1.2425577, "SA(0.200)": -1.1920834, "SA(0.250)": -1.1082921, "SA(0.300)": -1.0234899, "SA(0.350)": -0.9540171, "SA(0.400)": -0.9030336, "SA(0.450)": -0.8631518, "SA(0.500)": -0.8155044, "SA(0.600)": -0.7084427, "SA(0.700)": -0.6426621, "SA(0.750)": -0.6186517, "SA(0.800)": -0.5803321, "SA(0.900)": -0.5347752, "SA(1.000)": -0.5024231, "SA(1.200)": -0.4373266, "SA(1.400)": -0.370997, "SA(1.600)": -0.3262539, "SA(1.800)": -0.293566, "SA(2.000)": -0.2636198, "SA(2.500)": -0.2307662, "SA(3.000)": -0.2322889, "SA(3.500)": -0.2100125, "SA(4.000)": -0.1992226, "SA(4.500)": -0.1812745, "SA(5.000)": -0.1382322, "SA(6.000)": -0.1275198, "SA(7.000)": -0.090013, "SA(8.000)": -0.0678491}, "weight": 0.14790528}, {"id": "Kotha2020ESHM20Cluster3HighStressSlowAtten", "model": "KothaEtAl2020ESHM20", "sigma_mu_epsilon": 1.35563, "c3": {"PGA": -0.7534575323232999, "SA(0.010)": -0.7549824495992, "SA(0.025)": -0.715697522161, "SA(0.040)": -0.6458766714972, "SA(0.050)": -0.6826119195386, "SA(0.070)": -0.7678078193509, "SA(0.100)": -0.9261251703498998, "SA(0.150)": -0.9527086646356001, "SA(0.200)": -0.9187035715691, "SA(0.250)": -0.8114000256542999, "SA(0.300)": -0.7416252733354, "SA(0.350)": -0.6990926213843, "SA(0.400)": -0.6310231310897, "SA(0.450)": -0.6088972787111, "SA(0.500)": -0.5847453237312, "SA(0.600)": -0.4809561608906, "SA(0.700)": -0.43682706441610003, "SA(0.750)": -0.41954672178170005, "SA(0.800)": -0.40808326535710004, "SA(0.900)": -0.36481648318930004, "SA(1.000)": -0.32898607837110005, "SA(1.200)": -0.26449752827210005, "SA(1.400)": -0.2161628989315, "SA(1.600)": -0.07595001383700001, "SA(1.800)": -0.0575631393287, "SA(2.000)": -0.006918929878699964, "SA(2.500)": -0.0117073014413, "SA(3.000)": -0.1036196809528, "SA(3.500)": -0.09382288161289998, "SA(4.000)": -0.03064328860570001, "SA(4.500)": -0.019235066771499998, "SA(5.000)": 0.02510921596520002, "SA(6.000)": 0.005820240978899993, "SA(7.000)": 0.053801099786099996, "SA(8.000)": 0.048269677501199995}, "weight": 0.03708736}, {"id": "Kotha2020ESHM20Cluster3VHighStressFastAtten", "model": "KothaEtAl2020ESHM20", "sigma_mu_epsilon": 2.85697, "c3": {"PGA": -1.1299766676767, "SA(0.010)": -1.1248127504008, "SA(0.025)": -1.098096277839, "SA(0.040)": -1.0642113285028, "SA(0.050)": -1.1020848804614, "SA(0.070)": -1.2432353806491, "SA(0.100)": -1.3823304296501, "SA(0.150)": -1.5324067353644, "SA(0.200)": -1.4654632284309002, "SA(0.250)": -1.4051841743456999, "SA(0.300)": -1.3053545266645998, "SA(0.350)": -1.2089415786157, "SA(0.400)": -1.1750440689102999, "SA(0.450)": -1.1174063212889, "SA(0.500)": -1.0462634762688001, "SA(0.600)": -0.9359292391094, "SA(0.700)": -0.8484971355838999, "SA(0.750)": -0.8177566782183, "SA(0.800)": -0.7525809346429, "SA(0.900)": -0.7047339168107, "SA(1.000)": -0.6758601216289, "SA(1.200)": -0.6101556717279, "SA(1.400)": -0.5258311010685001, "SA(1.600)": -0.576557786163, "SA(1.800)": -0.5295688606713, "SA(2.000)": -0.5203206701213001, "SA(2.500)": -0.4498250985587, "SA(3.000)": -0.3609581190472, "SA(3.500)": -0.3262021183871, "SA(4.000)": -0.36780191139429996, "SA(4.500)": -0.3433139332285, "SA(5.000)": -0.30157361596520005, "SA(6.000)": -0.26085984097889997, "SA(7.000)": -0.2338270997861, "SA(8.000)": -0.18396787750119997}, "weight": 0.00188042}, {"id": "Kotha2020ESHM20Cluster3VHighStressAveAtten", "model": "KothaEtAl2020ESHM20", "sigma_mu_epsilon": 2.85697, "c3": {"PGA": -0.9417171, "SA(0.010)": -0.9398976, "SA(0.025)": -0.9068969, "SA(0.040)": -0.855044, "SA(0.050)": -0.8923484, "SA(0.070)": -1.0055216, "SA(0.100)": -1.1542278, "SA(0.150)": -1.2425577, "SA(0.200)": -1.1920834, "SA(0.250)": -1.1082921, "SA(0.300)": -1.0234899, "SA(0.350)": -0.9540171, "SA(0.400)": -0.9030336, "SA(0.450)": -0.8631518, "SA(0.500)": -0.8155044, "SA(0.600)": -0.7084427, "SA(0.700)": -0.6426621, "SA(0.750)": -0.6186517, "SA(0.800)": -0.5803321, "SA(0.900)": -0.5347752, "SA(1.000)": -0.5024231, "SA(1.200)": -0.4373266, "SA(1.400)": -0.370997, "SA(1.600)": -0.3262539, "SA(1.800)": -0.293566, "SA(2.000)": -0.2636198, "SA(2.500)": -0.2307662, "SA(3.000)": -0.2322889, "SA(3.500)": -0.2100125, "SA(4.000)": -0.1992226, "SA(4.500)": -0.1812745, "SA(5.000)": -0.1382322, "SA(6.000)": -0.1275198, "SA(7.000)": -0.090013, "SA(8.000)": -0.0678491}, "weight": 0.00749916}, {"id": "Kotha2020ESHM20Cluster3VHighStressSlowAtten", "model": "KothaEtAl2020ESHM20", "sigma_mu_epsilon": 2.85697, "c3": {"PGA": -0.7534575323232999, "SA(0.010)": -0.7549824495992, "SA(0.025)": -0.715697522161, "SA(0.040)": -0.6458766714972, "SA(0.050)": -0.6826119195386, "SA(0.070)": -0.7678078193509, "SA(0.100)": -0.9261251703498998, "SA(0.150)": -0.9527086646356001, "SA(0.200)": -0.9187035715691, "SA(0.250)": -0.8114000256542999, "SA(0.300)": -0.7416252733354, "SA(0.350)": -0.6990926213843, "SA(0.400)": -0.6310231310897, "SA(0.450)": -0.6088972787111, "SA(0.500)": -0.5847453237312, "SA(0.600)": -0.4809561608906, "SA(0.700)": -0.43682706441610003, "SA(0.750)": -0.41954672178170005, "SA(0.800)": -0.40808326535710004, "SA(0.900)": -0.36481648318930004, "SA(1.000)": -0.32898607837110005, "SA(1.200)": -0.26449752827210005, "SA(1.400)": -0.2161628989315, "SA(1.600)": -0.07595001383700001, "SA(1.800)": -0.0575631393287, "SA(2.000)": -0.006918929878699964, "SA(2.500)": -0.0117073014413, "SA(3.000)": -0.1036196809528, "SA(3.500)": -0.09382288161289998, "SA(4.000)": -0.03064328860570001, "SA(4.500)": -0.019235066771499998, "SA(5.000)": 0.02510921596520002, "SA(6.000)": 0.005820240978899993, "SA(7.000)": 0.053801099786099996, "SA(8.000)": 0.048269677501199995}, "weight": 0.00188042}], "ESHM20 Cluster 4": [{"id": "Kotha2020ESHM20Cluster4VLowStressFastAtten", "model": "KothaEtAl2020ESHM20", "sigma_mu_epsilon": -2.85697, "c3": {"PGA": -0.6916482138528, "SA(0.010)": -0.6920652597307999, "SA(0.025)": -0.6719664139776, "SA(0.040)": -0.641774979363, "SA(0.050)": -0.6700590784788, "SA(0.070)": -0.8205166246033, "SA(0.100)": -0.9509905389856, "SA(0.150)": -0.977099652915, "SA(0.200)": -0.8700580808379, "SA(0.250)": -0.8108221600545, "SA(0.300)": -0.7373872669617001, "SA(0.350)": -0.7403566591497001, "SA(0.400)": -0.735798307031, "SA(0.450)": -0.7249942812808, "SA(0.500)": -0.7008946640333, "SA(0.600)": -0.6278096146634, "SA(0.700)": -0.5764701967936, "SA(0.750)": -0.5488733402346999, "SA(0.800)": -0.498109367922, "SA(0.900)": -0.4392494104243, "SA(1.000)": -0.4141246867189, "SA(1.200)": -0.34338826853140003, "SA(1.400)": -0.2587217256421, "SA(1.600)": -0.2145010636124, "SA(1.800)": -0.1577592922155, "SA(2.000)": -0.077685416853, "SA(2.500)": -0.073979922388, "SA(3.000)": -0.1501754103968, "SA(3.500)": -0.1899546045114, "SA(4.000)": -0.2101315570557, "SA(4.500)": -0.2562412458301, "SA(5.000)": -0.2286379106528, "SA(6.000)": -0.239217076957, "SA(7.000)": -0.2146575569897, "SA(8.000)": -0.20518752692929998}, "weight": 0.00188042}, {"id": "Kotha2020ESHM20Cluster4VLowStressAveAtten", "model": "KothaEtAl2020ESHM20", "sigma_mu_epsilon": -2.85697, "c3": {"PGA": -0.5814676, "SA(0.010)": -0.5801907, "SA(0.025)": -0.5405079, "SA(0.040)": -0.5071721, "SA(0.050)": -0.531601, "SA(0.070)": -0.6307041, "SA(0.100)": -0.752661, "SA(0.150)": -0.8217953, "SA(0.200)": -0.7689186, "SA(0.250)": -0.7032973, "SA(0.300)": -0.6313395, "SA(0.350)": -0.5705902, "SA(0.400)": -0.5349133, "SA(0.450)": -0.4935216, "SA(0.500)": -0.4540457, "SA(0.600)": -0.3919157, "SA(0.700)": -0.3237404, "SA(0.750)": -0.3023164, "SA(0.800)": -0.2853754, "SA(0.900)": -0.2489675, "SA(1.000)": -0.2310055, "SA(1.200)": -0.1863581, "SA(1.400)": -0.1477196, "SA(1.600)": -0.0981204, "SA(1.800)": -0.0509082, "SA(2.000)": -0.015846, "SA(2.500)": 0.0247262, "SA(3.000)": -0.0030259, "SA(3.500)": 0.0138063, "SA(4.000)": 0.0039858, "SA(4.500)": -0.033023, "SA(5.000)": -0.0200768, "SA(6.000)": -0.0268555, "SA(7.000)": -0.0001349, "SA(8.000)": 0.017579}, "weight": 0.00749916}, {"id": "Kotha2020ESHM20Cluster4VLowStressSlowAtten", "model": "KothaEtAl2020ESHM20", "sigma_mu_epsilon": -2.85697, "c3": {"PGA": -0.4712869861472, "SA(0.010)": -0.46831614026919993, "SA(0.025)": -0.40904938602240004, "SA(0.040)": -0.37256922063700004, "SA(0.050)": -0.3931429215212, "SA(0.070)": -0.4408915753967, "SA(0.100)": -0.5543314610144, "SA(0.150)": -0.666490947085, "SA(0.200)": -0.6677791191621, "SA(0.250)": -0.5957724399455, "SA(0.300)": -0.5252917330383, "SA(0.350)": -0.40082374085030004, "SA(0.400)": -0.33402829296900005, "SA(0.450)": -0.2620489187192, "SA(0.500)": -0.20719673596670002, "SA(0.600)": -0.1560217853366, "SA(0.700)": -0.07101060320639996, "SA(0.750)": -0.0557594597653, "SA(0.800)": -0.072641432078, "SA(0.900)": -0.058685589575700026, "SA(1.000)": -0.04788631328110002, "SA(1.200)": -0.029327931468599994, "SA(1.400)": -0.036717474357900015, "SA(1.600)": 0.018260263612400005, "SA(1.800)": 0.0559428922155, "SA(2.000)": 0.045993416853, "SA(2.500)": 0.123432322388, "SA(3.000)": 0.1441236103968, "SA(3.500)": 0.2175672045114, "SA(4.000)": 0.21810315705570002, "SA(4.500)": 0.1901952458301, "SA(5.000)": 0.1884843106528, "SA(6.000)": 0.185506076957, "SA(7.000)": 0.2143877569897, "SA(8.000)": 0.2403455269293}, "weight": 0.00188042}, {"id": "Kotha2020ESHM20Cluster4LowStressFastAtten", "model": "KothaEtAl2020ESHM20", "sigma_mu_epsilon": -1.35563, "c3": {"PGA": -0.6916482138528, "SA(0.010)": -0.6920652597307999, "SA(0.025)": -0.6719664139776, "SA(0.040)": -0.641774979363, "SA(0.050)": -0.6700590784788, "SA(0.070)": -0.8205166246033, "SA(0.100)": -0.9509905389856, "SA(0.150)": -0.977099652915, "SA(0.200)": -0.8700580808379, "SA(0.250)": -0.8108221600545, "SA(0.300)": -0.7373872669617001, "SA(0.350)": -0.7403566591497001, "SA(0.400)": -0.735798307031, "SA(0.450)": -0.7249942812808, "SA(0.500)": -0.7008946640333, "SA(0.600)": -0.6278096146634, "SA(0.700)": -0.5764701967936, "SA(0.750)": -0.5488733402346999, "SA(0.800)": -0.498109367922, "SA(0.900)": -0.4392494104243, "SA(1.000)": -0.4141246867189, "SA(1.200)": -0.34338826853140003, "SA(1.400)": -0.2587217256421, "SA(1.600)": -0.2145010636124, "SA(1.800)": -0.1577592922155, "SA(2.000)": -0.077685416853, "SA(2.500)": -0.073979922388, "SA(3.000)": -0.1501754103968, "SA(3.500)": -0.1899546045114, "SA(4.000)": -0.2101315570557, "SA(4.500)": -0.2562412458301, "SA(5.000)": -0.2286379106528, "SA(6.000)": -0.239217076957, "SA(7.000)": -0.2146575569897, "SA(8.000)": -0.20518752692929998}, "weight": 0.03708736}, {"id": "Kotha2020ESHM20Cluster4LowStressAveAtten", "model": "KothaEtAl2020ESHM20", "sigma_mu_epsilon": -1.35563, "c3": {"PGA": -0.5814676, "SA(0.010)": -0.5801907, "SA(0.025)": -0.5405079, "SA(0.040)": -0.5071721, "SA(0.050)": -0.531601, "SA(0.070)": -0.6307041, "SA(0.100)": -0.752661, "SA(0.150)": -0.8217953, "SA(0.200)": -0.7689186, "SA(0.250)": -0.7032973, "SA(0.300)": -0.6313395, "SA(0.350)": -0.5705902, "SA(0.400)": -0.5349133, "SA(0.450)": -0.4935216, "SA(0.500)": -0.4540457, "SA(0.600)": -0.3919157, "SA(0.700)": -0.3237404, "SA(0.750)": -0.3023164, "SA(0.800)": -0.2853754, "SA(0.900)": -0.2489675, "SA(1.000)": -0.2310055, "SA(1.200)": -0.1863581, "SA(1.400)": -0.1477196, "SA(1.600)": -0.0981204, "SA(1.800)": -0.0509082, "SA(2.000)": -0.015846, "SA(2.500)": 0.0247262, "SA(3.000)": -0.0030259, "SA(3.500)": 0.0138063, "SA(4.000)": 0.0039858, "SA(4.500)": -0.033023, "SA(5.000)": -0.0200768, "SA(6.000)": -0.0268555, "SA(7.000)": -0.0001349, "SA(8.000)": 0.017579}, "weight": 0.14790528}, {"id": "Kotha2020ESHM20Cluster4LowStressSlowAtten", "model": "KothaEtAl2020ESHM20", "sigma_mu_epsilon": -1.35563, "c3": {"PGA": -0.4712869861472, "SA(0.010)": -0.46831614026919993, "SA(0.025)": -0.40904938602240004, "SA(0.040)": -0.37256922063700004, "SA(0.050)": -0.3931429215212, "SA(0.070)": -0.4408915753967, "SA(0.100)": -0.5543314610144, "SA(0.150)": -0.666490947085, "SA(0.200)": -0.6677791191621, "SA(0.250)": -0.5957724399455, "SA(0.300)": -0.5252917330383, "SA(0.350)": -0.40082374085030004, "SA(0.400)": -0.33402829296900005, "SA(0.450)": -0.2620489187192, "SA(0.500)": -0.20719673596670002, "SA(0.600)": -0.1560217853366, "SA(0.700)": -0.07101060320639996, "SA(0.750)": -0.0557594597653, "SA(0.800)": -0.072641432078, "SA(0.900)": -0.058685589575700026, "SA(1.000)": -0.04788631328110002, "SA(1.200)": -0.029327931468599994, "SA(1.400)": -0.036717474357900015, "SA(1.600)": 0.018260263612400005, "SA(1.800)": 0.0559428922155, "SA(2.000)": 0.045993416853, "SA(2.500)": 0.123432322388, "SA(3.000)": 0.1441236103968, "SA(3.500)": 0.2175672045114, "SA(4.000)": 0.21810315705570002, "SA(4.500)": 0.1901952458301, "SA(5.000)": 0.1884843106528, "SA(6.000)": 0.185506076957, "SA(7.000)": 0.2143877569897, "SA(8.000)": 0.2403455269293}, "weight": 0.03708736}, {"id": "Kotha2020ESHM20Cluster4AveStressFastAtten", "model": "KothaEtAl2020ESHM20", "c3": {"PGA": -0.6916482138528, "SA(0.010)": -0.6920652597307999, "SA(0.025)": -0.6719664139776, "SA(0.040)": -0.641774979363, "SA(0.050)": -0.6700590784788, "SA(0.070)": -0.8205166246033, "SA(0.100)": -0.9509905389856, "SA(0.150)": -0.977099652915, "SA(0.200)": -0.8700580808379, "SA(0.250)": -0.8108221600545, "SA(0.300)": -0.7373872669617001, "SA(0.350)": -0.7403566591497001, "SA(0.400)": -0.735798307031, "SA(0.450)": -0.7249942812808, "SA(0.500)": -0.7008946640333, "SA(0.600)": -0.6278096146634, "SA(0.700)": -0.5764701967936, "SA(0.750)": -0.5488733402346999, "SA(0.800)": -0.498109367922, "SA(0.900)": -0.4392494104243, "SA(1.000)": -0.4141246867189, "SA(1.200)": -0.34338826853140003, "SA(1.400)": -0.2587217256421, "SA(1.600)": -0.2145010636124, "SA(1.800)": -0.1577592922155, "SA(2.000)": -0.077685416853, "SA(2.500)": -0.073979922388, "SA(3.000)": -0.1501754103968, "SA(3.500)": -0.1899546045114, "SA(4.000)": -0.2101315570557, "SA(4.500)": -0.2562412458301, "SA(5.000)": -0.2286379106528, "SA(6.000)": -0.239217076957, "SA(7.000)": -0.2146575569897, "SA(8.000)": -0.20518752692929998}, "weight": 0.08906444}, {"id": "Kotha2020ESHM20Cluster4AveStressAveAtten", "model": "KothaEtAl2020ESHM20", "c3": {"PGA": -0.5814676, "SA(0.010)": -0.5801907, "SA(0.025)": -0.5405079, "SA(0.040)": -0.5071721, "SA(0.050)": -0.531601, "SA(0.070)": -0.6307041, "SA(0.100)": -0.752661, "SA(0.150)": -0.8217953, "SA(0.200)": -0.7689186, "SA(0.250)": -0.7032973, "SA(0.300)": -0.6313395, "SA(0.350)": -0.5705902, "SA(0.400)": -0.5349133, "SA(0.450)": -0.4935216, "SA(0.500)": -0.4540457, "SA(0.600)": -0.3919157, "SA(0.700)": -0.3237404, "SA(0.750)": -0.3023164, "SA(0.800)": -0.2853754, "SA(0.900)": -0.2489675, "SA(1.000)": -0.2310055, "SA(1.200)": -0.1863581, "SA(1.400)": -0.1477196, "SA(1.600)": -0.0981204, "SA(1.800)": -0.0509082, "SA(2.000)": -0.015846, "SA(2.500)": 0.0247262, "SA(3.000)": -0.0030259, "SA(3.500)": 0.0138063, "SA(4.000)": 0.0039858, "SA(4.500)": -0.033023, "SA(5.000)": -0.0200768, "SA(6.000)": -0.0268555, "SA(7.000)": -0.0001349, "SA(8.000)": 0.017579}, "weight": 0.35519112}, {"id": "Kotha2020ESHM20Cluster4AveStressSlowAtten", "model": "KothaEtAl2020ESHM20", "c3": {"PGA": -0.4712869861472, "SA(0.010)": -0.46831614026919993, "SA(0.025)": -0.40904938602240004, "SA(0.040)": -0.37256922063700004, "SA(0.050)": -0.3931429215212, "SA(0.070)": -0.4408915753967, "SA(0.100)": -0.5543314610144, "SA(0.150)": -0.666490947085, "SA(0.200)": -0.6677791191621, "SA(0.250)": -0.5957724399455, "SA(0.300)": -0.5252917330383, "SA(0.350)": -0.40082374085030004, "SA(0.400)": -0.33402829296900005, "SA(0.450)": -0.2620489187192, "SA(0.500)": -0.20719673596670002, "SA(0.600)": -0.1560217853366, "SA(0.700)": -0.07101060320639996, "SA(0.750)": -0.0557594597653, "SA(0.800)": -0.072641432078, "SA(0.900)": -0.058685589575700026, "SA(1.000)": -0.04788631328110002, "SA(1.200)": -0.029327931468599994, "SA(1.400)": -0.036717474357900015, "SA(1.600)": 0.018260263612400005, "SA(1.800)": 0.0559428922155, "SA(2.000)": 0.045993416853, "SA(2.500)": 0.123432322388, "SA(3.000)": 0.1441236103968, "SA(3.500)": 0.2175672045114, "SA(4.000)": 0.21810315705570002, "SA(4.500)": 0.1901952458301, "SA(5.000)": 0.1884843106528, "SA(6.000)": 0.185506076957, "SA(7.000)": 0.2143877569897, "SA(8.000)": 0.2403455269293}, "weight": 0.08906444}, {"id": "Kotha2020ESHM20Cluster4HighStressFastAtten", "model": "KothaEtAl2020ESHM20", "sigma_mu_epsilon": 1.35563, "c3": {"PGA": -0.6916482138528, "SA(0.010)": -0.6920652597307999, "SA(0.025)": -0.6719664139776, "SA(0.040)": -0.641774979363, "SA(0.050)": -0.6700590784788, "SA(0.070)": -0.8205166246033, "SA(0.100)": -0.9509905389856, "SA(0.150)": -0.977099652915, "SA(0.200)": -0.8700580808379, "SA(0.250)": -0.8108221600545, "SA(0.300)": -0.7373872669617001, "SA(0.350)": -0.7403566591497001, "SA(0.400)": -0.735798307031, "SA(0.450)": -0.7249942812808, "SA(0.500)": -0.7008946640333, "SA(0.600)": -0.6278096146634, "SA(0.700)": -0.5764701967936, "SA(0.750)": -0.5488733402346999, "SA(0.800)": -0.498109367922, "SA(0.900)": -0.4392494104243, "SA(1.000)": -0.4141246867189, "SA(1.200)": -0.34338826853140003, "SA(1.400)": -0.2587217256421, "SA(1.600)": -0.2145010636124, "SA(1.800)": -0.1577592922155, "SA(2.000)": -0.077685416853, "SA(2.500)": -0.073979922388, "SA(3.000)": -0.1501754103968, "SA(3.500)": -0.1899546045114, "SA(4.000)": -0.2101315570557, "SA(4.500)": -0.2562412458301, "SA(5.000)": -0.2286379106528, "SA(6.000)": -0.239217076957, "SA(7.000)": -0.2146575569897, "SA(8.000)": -0.20518752692929998}, "weight": 0.03708736}, {"id": "Kotha2020ESHM20Cluster4HighStressAveAtten", "model": "KothaEtAl2020ESHM20", "sigma_mu_epsilon": 1.35563, "c3": {"PGA": -0.5814676, "SA(0.010)": -0.5801907, "SA(0.025)": -0.5405079, "SA(0.040)": -0.5071721, "SA(0.050)": -0.531601, "SA(0.070)": -0.6307041, "SA(0.100)": -0.752661, "SA(0.150)": -0.8217953, "SA(0.200)": -0.7689186, "SA(0.250)": -0.7032973, "SA(0.300)": -0.6313395, "SA(0.350)": -0.5705902, "SA(0.400)": -0.5349133, "SA(0.450)": -0.4935216, "SA(0.500)": -0.4540457, "SA(0.600)": -0.3919157, "SA(0.700)": -0.3237404, "SA(0.750)": -0.3023164, "SA(0.800)": -0.2853754, "SA(0.900)": -0.2489675, "SA(1.000)": -0.2310055, "SA(1.200)": -0.1863581, "SA(1.400)": -0.1477196, "SA(1.600)": -0.0981204, "SA(1.800)": -0.0509082, "SA(2.000)": -0.015846, "SA(2.500)": 0.0247262, "SA(3.000)": -0.0030259, "SA(3.500)": 0.0138063, "SA(4.000)": 0.0039858, "SA(4.500)": -0.033023, "SA(5.000)": -0.0200768, "SA(6.000)": -0.0268555, "SA(7.000)": -0.0001349, "SA(8.000)": 0.017579}, "weight": 0.14790528}, {"id": "Kotha2020ESHM20Cluster4HighStressSlowAtten", "model": "KothaEtAl2020ESHM20", "sigma_mu_epsilon": 1.35563, "c3": {"PGA": -0.4712869861472, "SA(0.010)": -0.46831614026919993, "SA(0.025)": -0.40904938602240004, "SA(0.040)": -0.37256922063700004, "SA(0.050)": -0.3931429215212, "SA(0.070)": -0.4408915753967, "SA(0.100)": -0.5543314610144, "SA(0.150)": -0.666490947085, "SA(0.200)": -0.6677791191621, "SA(0.250)": -0.5957724399455, "SA(0.300)": -0.5252917330383, "SA(0.350)": -0.40082374085030004, "SA(0.400)": -0.33402829296900005, "SA(0.450)": -0.2620489187192, "SA(0.500)": -0.20719673596670002, "SA(0.600)": -0.1560217853366, "SA(0.700)": -0.07101060320639996, "SA(0.750)": -0.0557594597653, "SA(0.800)": -0.072641432078, "SA(0.900)": -0.058685589575700026, "SA(1.000)": -0.04788631328110002, "SA(1.200)": -0.029327931468599994, "SA(1.400)": -0.036717474357900015, "SA(1.600)": 0.018260263612400005, "SA(1.800)": 0.0559428922155, "SA(2.000)": 0.045993416853, "SA(2.500)": 0.123432322388, "SA(3.000)": 0.1441236103968, "SA(3.500)": 0.2175672045114, "SA(4.000)": 0.21810315705570002, "SA(4.500)": 0.1901952458301, "SA(5.000)": 0.1884843106528, "SA(6.000)": 0.185506076957, "SA(7.000)": 0.2143877569897, "SA(8.000)": 0.2403455269293}, "weight": 0.03708736}, {"id": "Kotha2020ESHM20Cluster4VHighStressFastAtten", "model": "KothaEtAl2020ESHM20", "sigma_mu_epsilon": 2.85697, "c3": {"PGA": -0.6916482138528, "SA(0.010)": -0.6920652597307999, "SA(0.025)": -0.6719664139776, "SA(0.040)": -0.641774979363, "SA(0.050)": -0.6700590784788, "SA(0.070)": -0.8205166246033, "SA(0.100)": -0.9509905389856, "SA(0.150)": -0.977099652915, "SA(0.200)": -0.8700580808379, "SA(0.250)": -0.8108221600545, "SA(0.300)": -0.7373872669617001, "SA(0.350)": -0.7403566591497001, "SA(0.400)": -0.735798307031, "SA(0.450)": -0.7249942812808, "SA(0.500)": -0.7008946640333, "SA(0.600)": -0.6278096146634, "SA(0.700)": -0.5764701967936, "SA(0.750)": -0.5488733402346999, "SA(0.800)": -0.498109367922, "SA(0.900)": -0.4392494104243, "SA(1.000)": -0.4141246867189, "SA(1.200)": -0.34338826853140003, "SA(1.400)": -0.2587217256421, "SA(1.600)": -0.2145010636124, "SA(1.800)": -0.1577592922155, "SA(2.000)": -0.077685416853, "SA(2.500)": -0.073979922388, "SA(3.000)": -0.1501754103968, "SA(3.500)": -0.1899546045114, "SA(4.000)": -0.2101315570557, "SA(4.500)": -0.2562412458301, "SA(5.000)": -0.2286379106528, "SA(6.000)": -0.239217076957, "SA(7.000)": -0.2146575569897, "SA(8.000)": -0.20518752692929998}, "weight": 0.00188042}, {"id": "Kotha2020ESHM20Cluster4VHighStressAveAtten", "model": "KothaEtAl2020ESHM20", "sigma_mu_epsilon": 2.85697, "c3": {"PGA": -0.5814676, "SA(0.010)": -0.5801907, "SA(0.025)": -0.5405079, "SA(0.040)": -0.5071721, "SA(0.050)": -0.531601, "SA(0.070)": -0.6307041, "SA(0.100)": -0.752661, "SA(0.150)": -0.8217953, "SA(0.200)": -0.7689186, "SA(0.250)": -0.7032973, "SA(0.300)": -0.6313395, "SA(0.350)": -0.5705902, "SA(0.400)": -0.5349133, "SA(0.450)": -0.4935216, "SA(0.500)": -0.4540457, "SA(0.600)": -0.3919157, "SA(0.700)": -0.3237404, "SA(0.750)": -0.3023164, "SA(0.800)": -0.2853754, "SA(0.900)": -0.2489675, "SA(1.000)": -0.2310055, "SA(1.200)": -0.1863581, "SA(1.400)": -0.1477196, "SA(1.600)": -0.0981204, "SA(1.800)": -0.0509082, "SA(2.000)": -0.015846, "SA(2.500)": 0.0247262, "SA(3.000)": -0.0030259, "SA(3.500)": 0.0138063, "SA(4.000)": 0.0039858, "SA(4.500)": -0.033023, "SA(5.000)": -0.0200768, "SA(6.000)": -0.0268555, "SA(7.000)": -0.0001349, "SA(8.000)": 0.017579}, "weight": 0.00749916}, {"id": "Kotha2020ESHM20Cluster4VHighStressSlowAtten", "model": "KothaEtAl2020ESHM20", "sigma_mu_epsilon": 2.85697, "c3": {"PGA": -0.4712869861472, "SA(0.010)": -0.46831614026919993, "SA(0.025)": -0.40904938602240004, "SA(0.040)": -0.37256922063700004, "SA(0.050)": -0.3931429215212, "SA(0.070)": -0.4408915753967, "SA(0.100)": -0.5543314610144, "SA(0.150)": -0.666490947085, "SA(0.200)": -0.6677791191621, "SA(0.250)": -0.5957724399455, "SA(0.300)": -0.5252917330383, "SA(0.350)": -0.40082374085030004, "SA(0.400)": -0.33402829296900005, "SA(0.450)": -0.2620489187192, "SA(0.500)": -0.20719673596670002, "SA(0.600)": -0.1560217853366, "SA(0.700)": -0.07101060320639996, "SA(0.750)": -0.0557594597653, "SA(0.800)": -0.072641432078, "SA(0.900)": -0.058685589575700026, "SA(1.000)": -0.04788631328110002, "SA(1.200)": -0.029327931468599994, "SA(1.400)": -0.036717474357900015, "SA(1.600)": 0.018260263612400005, "SA(1.800)": 0.0559428922155, "SA(2.000)": 0.045993416853, "SA(2.500)": 0.123432322388, "SA(3.000)": 0.1441236103968, "SA(3.500)": 0.2175672045114, "SA(4.000)": 0.21810315705570002, "SA(4.500)": 0.1901952458301, "SA(5.000)": 0.1884843106528, "SA(6.000)": 0.185506076957, "SA(7.000)": 0.2143877569897, "SA(8.000)": 0.2403455269293}, "weight": 0.00188042}], "ESHM20 Cluster 5": [{"id": "Kotha2020ESHM20Cluster5VLowStressFastAtten", "model": "KothaEtAl2020ESHM20", "sigma_mu_epsilon": -2.85697, "c3": {"PGA": -0.2616460409363, "SA(0.010)": -0.31118626004679995, "SA(0.025)": -0.41856624272629994, "SA(0.040)": -0.4697416628646, "SA(0.050)": -0.4576019902388, "SA(0.070)": -0.4428891287538, "SA(0.100)": -0.2840699341622, "SA(0.150)": -0.4885344898174, "SA(0.200)": -0.5178527654113, "SA(0.250)": -0.5106665177566, "SA(0.300)": -0.4847648364082, "SA(0.350)": -0.4683690080597, "SA(0.400)": -0.4687589249889, "SA(0.450)": -0.4633592414884, "SA(0.500)": -0.4353291217348, "SA(0.600)": -0.3659741833138, "SA(0.700)": -0.2861050782607, "SA(0.750)": -0.270019689151, "SA(0.800)": -0.2794292921316, "SA(0.900)": -0.335505224933, "SA(1.000)": -0.32728286856479993, "SA(1.200)": -0.26639067199359995, "SA(1.400)": -0.2888900776993, "SA(1.600)": -0.1881577508737, "SA(1.800)": -0.0114375929303, "SA(2.000)": -0.0519999274938, "SA(2.500)": 0.03804311596850002, "SA(3.000)": -0.1345280609073, "SA(3.500)": -0.05647226074759998, "SA(4.000)": 0.04794059028939998, "SA(4.500)": -0.3753265242785, "SA(5.000)": -0.36085257326069997, "SA(6.000)": -0.34568857534860004, "SA(7.000)": -0.2738678697362, "SA(8.000)": -0.25205542111330004}, "weight": 0.00188042}, {"id": "Kotha2020ESHM20Cluster5VLowStressAveAtten", "model": "KothaEtAl2020ESHM20", "sigma_mu_epsilon": -2.85697, "c3": {"PGA": -0.0697845, "SA(0.010)": -0.0910308, "SA(0.025)": -0.1274755, "SA(0.040)": -0.1424973, "SA(0.050)": -0.1394263, "SA(0.070)": -0.1329147, "SA(0.100)": -0.0828884, "SA(0.150)": -0.210285, "SA(0.200)": -0.2164823, "SA(0.250)": -0.1898446, "SA(0.300)": -0.1399166, "SA(0.350)": -0.1108309, "SA(0.400)": -0.0955125, "SA(0.450)": -0.1008957, "SA(0.500)": -0.0743787, "SA(0.600)": -0.0446375, "SA(0.700)": -0.0053817, "SA(0.750)": -0.006573, "SA(0.800)": -0.0138165, "SA(0.900)": -0.0241119, "SA(1.000)": -0.0177224, "SA(1.200)": 0.0126663, "SA(1.400)": 0.0157505, "SA(1.600)": 0.0639227, "SA(1.800)": 0.1445601, "SA(2.000)": 0.1397447, "SA(2.500)": 0.1951514, "SA(3.000)": 0.1472633, "SA(3.500)": 0.1499321, "SA(4.000)": 0.1977294, "SA(4.500)": -0.0166127, "SA(5.000)": -0.0021869, "SA(6.000)": -0.0006318, "SA(7.000)": 0.0552672, "SA(8.000)": 0.0694103}, "weight": 0.00749916}, {"id": "Kotha2020ESHM20Cluster5VLowStressSlowAtten", "model": "KothaEtAl2020ESHM20", "sigma_mu_epsilon": -2.85697, "c3": {"PGA": 0.12207704093630001, "SA(0.010)": 0.12912466004679998, "SA(0.025)": 0.1636152427263, "SA(0.040)": 0.18474706286460002, "SA(0.050)": 0.1787493902388, "SA(0.070)": 0.1770597287538, "SA(0.100)": 0.1182931341622, "SA(0.150)": 0.0679644898174, "SA(0.200)": 0.08488816541129998, "SA(0.250)": 0.13097731775659996, "SA(0.300)": 0.2049316364082, "SA(0.350)": 0.24670720805969998, "SA(0.400)": 0.2777339249889, "SA(0.450)": 0.26156784148839995, "SA(0.500)": 0.28657172173479994, "SA(0.600)": 0.2766991833138, "SA(0.700)": 0.2753416782607, "SA(0.750)": 0.256873689151, "SA(0.800)": 0.2517962921316, "SA(0.900)": 0.28728142493299996, "SA(1.000)": 0.2918380685648, "SA(1.200)": 0.2917232719936, "SA(1.400)": 0.3203910776993, "SA(1.600)": 0.3160031508737, "SA(1.800)": 0.3005577929303, "SA(2.000)": 0.3314893274938, "SA(2.500)": 0.3522596840315, "SA(3.000)": 0.42905466090730005, "SA(3.500)": 0.3563364607476, "SA(4.000)": 0.3475182097106, "SA(4.500)": 0.34210112427850004, "SA(5.000)": 0.3564787732607, "SA(6.000)": 0.3444249753486, "SA(7.000)": 0.3844022697362, "SA(8.000)": 0.3908760211133}, "weight": 0.00188042}, {"id": "Kotha2020ESHM20Cluster5LowStressFastAtten", "model": "KothaEtAl2020ESHM20", "sigma_mu_epsilon": -1.35563, "c3": {"PGA": -0.2616460409363, "SA(0.010)": -0.31118626004679995, "SA(0.025)": -0.41856624272629994, "SA(0.040)": -0.4697416628646, "SA(0.050)": -0.4576019902388, "SA(0.070)": -0.4428891287538, "SA(0.100)": -0.2840699341622, "SA(0.150)": -0.4885344898174, "SA(0.200)": -0.5178527654113, "SA(0.250)": -0.5106665177566, "SA(0.300)": -0.4847648364082, "SA(0.350)": -0.4683690080597, "SA(0.400)": -0.4687589249889, "SA(0.450)": -0.4633592414884, "SA(0.500)": -0.4353291217348, "SA(0.600)": -0.3659741833138, "SA(0.700)": -0.2861050782607, "SA(0.750)": -0.270019689151, "SA(0.800)": -0.2794292921316, "SA(0.900)": -0.335505224933, "SA(1.000)": -0.32728286856479993, "SA(1.200)": -0.26639067199359995, "SA(1.400)": -0.2888900776993, "SA(1.600)": -0.1881577508737, "SA(1.800)": -0.0114375929303, "SA(2.000)": -0.0519999274938, "SA(2.500)": 0.03804311596850002, "SA(3.000)": -0.1345280609073, "SA(3.500)": -0.05647226074759998, "SA(4.000)": 0.04794059028939998, "SA(4.500)": -0.3753265242785, "SA(5.000)": -0.36085257326069997, "SA(6.000)": -0.34568857534860004, "SA(7.000)": -0.2738678697362, "SA(8.000)": -0.25205542111330004}, "weight": 0.03708736}, {"id": "Kotha2020ESHM20Cluster5LowStressAveAtten", "model": "KothaEtAl2020ESHM20", "sigma_mu_epsilon": -1.35563, "c3": {"PGA": -0.0697845, "SA(0.010)": -0.0910308, "SA(0.025)": -0.1274755, "SA(0.040)": -0.1424973, "SA(0.050)": -0.1394263, "SA(0.070)": -0.1329147, "SA(0.100)": -0.0828884, "SA(0.150)": -0.210285, "SA(0.200)": -0.2164823, "SA(0.250)": -0.1898446, "SA(0.300)": -0.1399166, "SA(0.350)": -0.1108309, "SA(0.400)": -0.0955125, "SA(0.450)": -0.1008957, "SA(0.500)": -0.0743787, "SA(0.600)": -0.0446375, "SA(0.700)": -0.0053817, "SA(0.750)": -0.006573, "SA(0.800)": -0.0138165, "SA(0.900)": -0.0241119, "SA(1.000)": -0.0177224, "SA(1.200)": 0.0126663, "SA(1.400)": 0.0157505, "SA(1.600)": 0.0639227, "SA(1.800)": 0.1445601, "SA(2.000)": 0.1397447, "SA(2.500)": 0.1951514, "SA(3.000)": 0.1472633, "SA(3.500)": 0.1499321, "SA(4.000)": 0.1977294, "SA(4.500)": -0.0166127, "SA(5.000)": -0.0021869, "SA(6.000)": -0.0006318, "SA(7.000)": 0.0552672, "SA(8.000)": 0.0694103}, "weight": 0.14790528}, {"id": "Kotha2020ESHM20Cluster5LowStressSlowAtten", "model": "KothaEtAl2020ESHM20", "sigma_mu_epsilon": -1.35563, "c3": {"PGA": 0.12207704093630001, "SA(0.010)": 0.12912466004679998, "SA(0.025)": 0.1636152427263, "SA(0.040)": 0.18474706286460002, "SA(0.050)": 0.1787493902388, "SA(0.070)": 0.1770597287538, "SA(0.100)": 0.1182931341622, "SA(0.150)": 0.0679644898174, "SA(0.200)": 0.08488816541129998, "SA(0.250)": 0.13097731775659996, "SA(0.300)": 0.2049316364082, "SA(0.350)": 0.24670720805969998, "SA(0.400)": 0.2777339249889, "SA(0.450)": 0.26156784148839995, "SA(0.500)": 0.28657172173479994, "SA(0.600)": 0.2766991833138, "SA(0.700)": 0.2753416782607, "SA(0.750)": 0.256873689151, "SA(0.800)": 0.2517962921316, "SA(0.900)": 0.28728142493299996, "SA(1.000)": 0.2918380685648, "SA(1.200)": 0.2917232719936, "SA(1.400)": 0.3203910776993, "SA(1.600)": 0.3160031508737, "SA(1.800)": 0.3005577929303, "SA(2.000)": 0.3314893274938, "SA(2.500)": 0.3522596840315, "SA(3.000)": 0.42905466090730005, "SA(3.500)": 0.3563364607476, "SA(4.000)": 0.3475182097106, "SA(4.500)": 0.34210112427850004, "SA(5.000)": 0.3564787732607, "SA(6.000)": 0.3444249753486, "SA(7.000)": 0.3844022697362, "SA(8.000)": 0.3908760211133}, "weight": 0.03708736}, {"id": "Kotha2020ESHM20Cluster5AveStressFastAtten", "model": "KothaEtAl2020ESHM20", "c3": {"PGA": -0.2616460409363, "SA(0.010)": -0.31118626004679995, "SA(0.025)": -0.41856624272629994, "SA(0.040)": -0.4697416628646, "SA(0.050)": -0.4576019902388, "SA(0.070)": -0.4428891287538, "SA(0.100)": -0.2840699341622, "SA(0.150)": -0.4885344898174, "SA(0.200)": -0.5178527654113, "SA(0.250)": -0.5106665177566, "SA(0.300)": -0.4847648364082, "SA(0.350)": -0.4683690080597, "SA(0.400)": -0.4687589249889, "SA(0.450)": -0.4633592414884, "SA(0.500)": -0.4353291217348, "SA(0.600)": -0.3659741833138, "SA(0.700)": -0.2861050782607, "SA(0.750)": -0.270019689151, "SA(0.800)": -0.2794292921316, "SA(0.900)": -0.335505224933, "SA(1.000)": -0.32728286856479993, "SA(1.200)": -0.26639067199359995, "SA(1.400)": -0.2888900776993, "SA(1.600)": -0.1881577508737, "SA(1.800)": -0.0114375929303, "SA(2.000)": -0.0519999274938, "SA(2.500)": 0.03804311596850002, "SA(3.000)": -0.1345280609073, "SA(3.500)": -0.05647226074759998, "SA(4.000)": 0.04794059028939998, "SA(4.500)": -0.3753265242785, "SA(5.000)": -0.36085257326069997, "SA(6.000)": -0.34568857534860004, "SA(7.000)": -0.2738678697362, "SA(8.000)": -0.25205542111330004}, "weight": 0.08906444}, {"id": "Kotha2020ESHM20Cluster5AveStressAveAtten", "model": "KothaEtAl2020ESHM20", "c3": {"PGA": -0.0697845, "SA(0.010)": -0.0910308, "SA(0.025)": -0.1274755, "SA(0.040)": -0.1424973, "SA(0.050)": -0.1394263, "SA(0.070)": -0.1329147, "SA(0.100)": -0.0828884, "SA(0.150)": -0.210285, "SA(0.200)": -0.2164823, "SA(0.250)": -0.1898446, "SA(0.300)": -0.1399166, "SA(0.350)": -0.1108309, "SA(0.400)": -0.0955125, "SA(0.450)": -0.1008957, "SA(0.500)": -0.0743787, "SA(0.600)": -0.0446375, "SA(0.700)": -0.0053817, "SA(0.750)": -0.006573, "SA(0.800)": -0.0138165, "SA(0.900)": -0.0241119, "SA(1.000)": -0.0177224, "SA(1.200)": 0.0126663, "SA(1.400)": 0.0157505, "SA(1.600)": 0.0639227, "SA(1.800)": 0.1445601, "SA(2.000)": 0.1397447, "SA(2.500)": 0.1951514, "SA(3.000)": 0.1472633, "SA(3.500)": 0.1499321, "SA(4.000)": 0.1977294, "SA(4.500)": -0.0166127, "SA(5.000)": -0.0021869, "SA(6.000)": -0.0006318, "SA(7.000)": 0.0552672, "SA(8.000)": 0.0694103}, "weight": 0.35519112}, {"id": "Kotha2020ESHM20Cluster5AveStressSlowAtten", "model": "KothaEtAl2020ESHM20", "c3": {"PGA": 0.12207704093630001, "SA(0.010)": 0.12912466004679998, "SA(0.025)": 0.1636152427263, "SA(0.040)": 0.18474706286460002, "SA(0.050)": 0.1787493902388, "SA(0.070)": 0.1770597287538, "SA(0.100)": 0.1182931341622, "SA(0.150)": 0.0679644898174, "SA(0.200)": 0.08488816541129998, "SA(0.250)": 0.13097731775659996, "SA(0.300)": 0.2049316364082, "SA(0.350)": 0.24670720805969998, "SA(0.400)": 0.2777339249889, "SA(0.450)": 0.26156784148839995, "SA(0.500)": 0.28657172173479994, "SA(0.600)": 0.2766991833138, "SA(0.700)": 0.2753416782607, "SA(0.750)": 0.256873689151, "SA(0.800)": 0.2517962921316, "SA(0.900)": 0.28728142493299996, "SA(1.000)": 0.2918380685648, "SA(1.200)": 0.2917232719936, "SA(1.400)": 0.3203910776993, "SA(1.600)": 0.3160031508737, "SA(1.800)": 0.3005577929303, "SA(2.000)": 0.3314893274938, "SA(2.500)": 0.3522596840315, "SA(3.000)": 0.42905466090730005, "SA(3.500)": 0.3563364607476, "SA(4.000)": 0.3475182097106, "SA(4.500)": 0.34210112427850004, "SA(5.000)": 0.3564787732607, "SA(6.000)": 0.3444249753486, "SA(7.000)": 0.3844022697362, "SA(8.000)": 0.3908760211133}, "weight": 0.08906444}, {"id": "Kotha2020ESHM20Cluster5HighStressFastAtten", "model": "KothaEtAl2020ESHM20", "sigma_mu_epsilon": 1.35563, "c3": {"PGA": -0.2616460409363, "SA(0.010)": -0.31118626004679995, "SA(0.025)": -0.41856624272629994, "SA(0.040)": -0.4697416628646, "SA(0.050)": -0.4576019902388, "SA(0.070)": -0.4428891287538, "SA(0.100)": -0.2840699341622, "SA(0.150)": -0.4885344898174, "SA(0.200)": -0.5178527654113, "SA(0.250)": -0.5106665177566, "SA(0.300)": -0.4847648364082, "SA(0.350)": -0.4683690080597, "SA(0.400)": -0.4687589249889, "SA(0.450)": -0.4633592414884, "SA(0.500)": -0.4353291217348, "SA(0.600)": -0.3659741833138, "SA(0.700)": -0.2861050782607, "SA(0.750)": -0.270019689151, "SA(0.800)": -0.2794292921316, "SA(0.900)": -0.335505224933, "SA(1.000)": -0.32728286856479993, "SA(1.200)": -0.26639067199359995, "SA(1.400)": -0.2888900776993, "SA(1.600)": -0.1881577508737, "SA(1.800)": -0.0114375929303, "SA(2.000)": -0.0519999274938, "SA(2.500)": 0.03804311596850002, "SA(3.000)": -0.1345280609073, "SA(3.500)": -0.05647226074759998, "SA(4.000)": 0.04794059028939998, "SA(4.500)": -0.3753265242785, "SA(5.000)": -0.36085257326069997, "SA(6.000)": -0.34568857534860004, "SA(7.000)": -0.2738678697362, "SA(8.000)": -0.25205542111330004}, "weight": 0.03708736}, {"id": "Kotha2020ESHM20Cluster5HighStressAveAtten", "model": "KothaEtAl2020ESHM20", "sigma_mu_epsilon": 1.35563, "c3": {"PGA": -0.0697845, "SA(0.010)": -0.0910308, "SA(0.025)": -0.1274755, "SA(0.040)": -0.1424973, "SA(0.050)": -0.1394263, "SA(0.070)": -0.1329147, "SA(0.100)": -0.0828884, "SA(0.150)": -0.210285, "SA(0.200)": -0.2164823, "SA(0.250)": -0.1898446, "SA(0.300)": -0.1399166, "SA(0.350)": -0.1108309, "SA(0.400)": -0.0955125, "SA(0.450)": -0.1008957, "SA(0.500)": -0.0743787, "SA(0.600)": -0.0446375, "SA(0.700)": -0.0053817, "SA(0.750)": -0.006573, "SA(0.800)": -0.0138165, "SA(0.900)": -0.0241119, "SA(1.000)": -0.0177224, "SA(1.200)": 0.0126663, "SA(1.400)": 0.0157505, "SA(1.600)": 0.0639227, "SA(1.800)": 0.1445601, "SA(2.000)": 0.1397447, "SA(2.500)": 0.1951514, "SA(3.000)": 0.1472633, "SA(3.500)": 0.1499321, "SA(4.000)": 0.1977294, "SA(4.500)": -0.0166127, "SA(5.000)": -0.0021869, "SA(6.000)": -0.0006318, "SA(7.000)": 0.0552672, "SA(8.000)": 0.0694103}, "weight": 0.14790528}, {"id": "Kotha2020ESHM20Cluster5HighStressSlowAtten", "model": "KothaEtAl2020ESHM20", "sigma_mu_epsilon": 1.35563, "c3": {"PGA": 0.12207704093630001, "SA(0.010)": 0.12912466004679998, "SA(0.025)": 0.1636152427263, "SA(0.040)": 0.18474706286460002, "SA(0.050)": 0.1787493902388, "SA(0.070)": 0.1770597287538, "SA(0.100)": 0.1182931341622, "SA(0.150)": 0.0679644898174, "SA(0.200)": 0.08488816541129998, "SA(0.250)": 0.13097731775659996, "SA(0.300)": 0.2049316364082, "SA(0.350)": 0.24670720805969998, "SA(0.400)": 0.2777339249889, "SA(0.450)": 0.26156784148839995, "SA(0.500)": 0.28657172173479994, "SA(0.600)": 0.2766991833138, "SA(0.700)": 0.2753416782607, "SA(0.750)": 0.256873689151, "SA(0.800)": 0.2517962921316, "SA(0.900)": 0.28728142493299996, "SA(1.000)": 0.2918380685648, "SA(1.200)": 0.2917232719936, "SA(1.400)": 0.3203910776993, "SA(1.600)": 0.3160031508737, "SA(1.800)": 0.3005577929303, "SA(2.000)": 0.3314893274938, "SA(2.500)": 0.3522596840315, "SA(3.000)": 0.42905466090730005, "SA(3.500)": 0.3563364607476, "SA(4.000)": 0.3475182097106, "SA(4.500)": 0.34210112427850004, "SA(5.000)": 0.3564787732607, "SA(6.000)": 0.3444249753486, "SA(7.000)": 0.3844022697362, "SA(8.000)": 0.3908760211133}, "weight": 0.03708736}, {"id": "Kotha2020ESHM20Cluster5VHighStressFastAtten", "model": "KothaEtAl2020ESHM20", "sigma_mu_epsilon": 2.85697, "c3": {"PGA": -0.2616460409363, "SA(0.010)": -0.31118626004679995, "SA(0.025)": -0.41856624272629994, "SA(0.040)": -0.4697416628646, "SA(0.050)": -0.4576019902388, "SA(0.070)": -0.4428891287538, "SA(0.100)": -0.2840699341622, "SA(0.150)": -0.4885344898174, "SA(0.200)": -0.5178527654113, "SA(0.250)": -0.5106665177566, "SA(0.300)": -0.4847648364082, "SA(0.350)": -0.4683690080597, "SA(0.400)": -0.4687589249889, "SA(0.450)": -0.4633592414884, "SA(0.500)": -0.4353291217348, "SA(0.600)": -0.3659741833138, "SA(0.700)": -0.2861050782607, "SA(0.750)": -0.270019689151, "SA(0.800)": -0.2794292921316, "SA(0.900)": -0.335505224933, "SA(1.000)": -0.32728286856479993, "SA(1.200)": -0.26639067199359995, "SA(1.400)": -0.2888900776993, "SA(1.600)": -0.1881577508737, "SA(1.800)": -0.0114375929303, "SA(2.000)": -0.0519999274938, "SA(2.500)": 0.03804311596850002, "SA(3.000)": -0.1345280609073, "SA(3.500)": -0.05647226074759998, "SA(4.000)": 0.04794059028939998, "SA(4.500)": -0.3753265242785, "SA(5.000)": -0.36085257326069997, "SA(6.000)": -0.34568857534860004, "SA(7.000)": -0.2738678697362, "SA(8.000)": -0.25205542111330004}, "weight": 0.00188042}, {"id": "Kotha2020ESHM20Cluster5VHighStressAveAtten", "model": "KothaEtAl2020ESHM20", "sigma_mu_epsilon": 2.85697, "c3": {"PGA": -0.0697845, "SA(0.010)": -0.0910308, "SA(0.025)": -0.1274755, "SA(0.040)": -0.1424973, "SA(0.050)": -0.1394263, "SA(0.070)": -0.1329147, "SA(0.100)": -0.0828884, "SA(0.150)": -0.210285, "SA(0.200)": -0.2164823, "SA(0.250)": -0.1898446, "SA(0.300)": -0.1399166, "SA(0.350)": -0.1108309, "SA(0.400)": -0.0955125, "SA(0.450)": -0.1008957, "SA(0.500)": -0.0743787, "SA(0.600)": -0.0446375, "SA(0.700)": -0.0053817, "SA(0.750)": -0.006573, "SA(0.800)": -0.0138165, "SA(0.900)": -0.0241119, "SA(1.000)": -0.0177224, "SA(1.200)": 0.0126663, "SA(1.400)": 0.0157505, "SA(1.600)": 0.0639227, "SA(1.800)": 0.1445601, "SA(2.000)": 0.1397447, "SA(2.500)": 0.1951514, "SA(3.000)": 0.1472633, "SA(3.500)": 0.1499321, "SA(4.000)": 0.1977294, "SA(4.500)": -0.0166127, "SA(5.000)": -0.0021869, "SA(6.000)": -0.0006318, "SA(7.000)": 0.0552672, "SA(8.000)": 0.0694103}, "weight": 0.00749916}, {"id": "Kotha2020ESHM20Cluster5VHighStressSlowAtten", "model": "KothaEtAl2020ESHM20", "sigma_mu_epsilon": 2.85697, "c3": {"PGA": 0.12207704093630001, "SA(0.010)": 0.12912466004679998, "SA(0.025)": 0.1636152427263, "SA(0.040)": 0.18474706286460002, "SA(0.050)": 0.1787493902388, "SA(0.070)": 0.1770597287538, "SA(0.100)": 0.1182931341622, "SA(0.150)": 0.0679644898174, "SA(0.200)": 0.08488816541129998, "SA(0.250)": 0.13097731775659996, "SA(0.300)": 0.2049316364082, "SA(0.350)": 0.24670720805969998, "SA(0.400)": 0.2777339249889, "SA(0.450)": 0.26156784148839995, "SA(0.500)": 0.28657172173479994, "SA(0.600)": 0.2766991833138, "SA(0.700)": 0.2753416782607, "SA(0.750)": 0.256873689151, "SA(0.800)": 0.2517962921316, "SA(0.900)": 0.28728142493299996, "SA(1.000)": 0.2918380685648, "SA(1.200)": 0.2917232719936, "SA(1.400)": 0.3203910776993, "SA(1.600)": 0.3160031508737, "SA(1.800)": 0.3005577929303, "SA(2.000)": 0.3314893274938, "SA(2.500)": 0.3522596840315, "SA(3.000)": 0.42905466090730005, "SA(3.500)": 0.3563364607476, "SA(4.000)": 0.3475182097106, "SA(4.500)": 0.34210112427850004, "SA(5.000)": 0.3564787732607, "SA(6.000)": 0.3444249753486, "SA(7.000)": 0.3844022697362, "SA(8.000)": 0.3908760211133}, "weight": 0.00188042}], "ESHM20 Craton": [{"id": "ESHM20CratonVLowStressLowSite", "model": "ESHM20Craton", "epsilon": -2.85697, "site_epsilon": -1.732051, "weight": 0.001504336}, {"id": "ESHM20CratonVLowStressAveSite", "model": "ESHM20Craton", "epsilon": -2.85697, "weight": 0.005999328}, {"id": "ESHM20CratonVLowStressHighSite", "model": "ESHM20Craton", "epsilon": -2.85697, "site_epsilon": 1.732051, "weight": 0.001504336}, {"id": "ESHM20CratonLowStressLowSite", "model": "ESHM20Craton", "epsilon": -1.35563, "site_epsilon": -1.732051, "weight": 0.029669888}, {"id": "ESHM20CratonLowStressAveSite", "model": "ESHM20Craton", "epsilon": -1.35563, "weight": 0.118324224}, {"id": "ESHM20CratonLowStressHighSite", "model": "ESHM20Craton", "epsilon": -1.35563, "site_epsilon": 1.732051, "weight": 0.029669888}, {"id": "ESHM20CratonAveStressLowSite", "model": "ESHM20Craton", "site_epsilon": -1.732051, "weight": 0.071251552}, {"id": "ESHM20CratonAveStressAveSite", "model": "ESHM20Craton", "weight": 0.284152896}, {"id": "ESHM20CratonAveStressHighSite", "model": "ESHM20Craton", "site_epsilon": 1.732051, "weight": 0.071251552}, {"id": "ESHM20CratonHighStressLowSite", "model": "ESHM20Craton", "epsilon": 1.35563, "site_epsilon": -1.732051, "weight": 0.029669888}, {"id": "ESHM20CratonHighStressAveSite", "model": "ESHM20Craton", "epsilon": 1.35563, "weight": 0.118324224}, {"id": "ESHM20CratonHighStressHighSite", "model": "ESHM20Craton", "epsilon": 1.35563, "site_epsilon": 1.732051, "weight": 0.029669888}, {"id": "ESHM20CratonVHighStressLowSite", "model": "ESHM20Craton", "epsilon": 2.85697, "site_epsilon": -1.732051, "weight": 0.001504336}, {"id": "ESHM20CratonVHighStressAveSite", "model": "ESHM20Craton", "epsilon": 2.85697, "weight": 0.005999328}, {"id": "ESHM20CratonVHighStressHighSite", "model": "ESHM20Craton", "epsilon": 2.85697, "site_epsilon": 1.732051, "weight": 0.001504336}, {"id": "KothaEtAl2020ESHM20CratonHighStressSlowAtten", "model": "KothaEtAl2020ESHM20", "sigma_mu_epsilon": 1.732051, "c3_epsilon": 1.732051, "weight": 0.0889778}, {"id": "KothaEtAl2020ESHM20CratonHighStressAveAtten", "model": "KothaEtAl2020ESHM20", "sigma_mu_epsilon": 1.732051, "weight": 0.0444222}, {"id": "KothaEtAl2020ESHM20CratonAveStressSlowAtten", "model": "KothaEtAl2020ESHM20", "c3_epsilon": 1.732051, "weight": 0.0444222}, {"id": "KothaEtAl2020ESHM20CratonAveStressAveAtten", "model": "KothaEtAl2020ESHM20", "weight": 0.0221778}], "ESHM20 Vrancea": [{"id": "BCHydroESHM20VLowStressFastAtten", "model": "BCHydroESHM20SSlab", "faba_taper_model": "SFunc", "a": -100.0, "b": 100.0, "theta_6_adjustment": -0.0015, "sigma_mu_epsilon": -2.85697, "weight": 0.00188042}, {"id": "BCHydroESHM20VLowStressAveAtten", "model": "BCHydroESHM20SSlab", "faba_taper_model": "SFunc", "a": -100.0, "b": 100.0, "sigma_mu_epsilon": -2.85697, "weight": 0.00749916}, {"id": "BCHydroESHM20VLowStressSlowAtten", "model": "BCHydroESHM20SSlab", "faba_taper_model": "SFunc", "a": -100.0, "b": 100.0, "theta_6_adjustment": 0.0015, "sigma_mu_epsilon": -2.85697, "weight": 0.00188042}, {"id": "BCHydroESHM20LowStressFastAtten", "model": "BCHydroESHM20SSlab", "faba_taper_model": "SFunc", "a": -100.0, "b": 100.0, "theta_6_adjustment": -0.0015, "sigma_mu_epsilon": -1.35563, "weight": 0.03708736}, {"id": "BCHydroESHM20LowStressAveAtten", "model": "BCHydroESHM20SSlab", "faba_taper_model": "SFunc", "a": -100.0, "b": 100.0, "sigma_mu_epsilon": -1.35563, "weight": 0.14790528}, {"id": "BCHydroESHM20LowStressSlowAtten", "model": "BCHydroESHM20SSlab", "faba_taper_model": "SFunc", "a": -100.0, "b": 100.0, "theta_6_adjustment": 0.0015, "sigma_mu_epsilon": -1.35563, "weight": 0.03708736}, {"id": "BCHydroESHM20AveStressFastAtten", "model": "BCHydroESHM20SSlab", "faba_taper_model": "SFunc", "a": -100.0, "b": 100.0, "theta_6_adjustment": -0.0015, "weight": 0.08906444}, {"id": "BCHydroESHM20AveStressAveAtten", "model": "BCHydroESHM20SSlab", "faba_taper_model": "SFunc", "a": -100.0, "b": 100.0, "weight": 0.35519112}, {"id": "BCHydroESHM20AveStressSlowAtten", "model": "BCHydroESHM20SSlab", "faba_taper_model": "SFunc", "a": -100.0, "b": 100.0, "theta_6_adjustment": 0.0015, "weight": 0.08906444}, {"id": "BCHydroESHM20HighStressFastAtten", "model": "BCHydroESHM20SSlab", "faba_taper_model": "SFunc", "a": -100.0, "b": 100.0, "theta_6_adjustment": -0.0015, "sigma_mu_epsilon": 1.35563, "weight": 0.03708736}, {"id": "BCHydroESHM20HighStressAveAtten", "model": "BCHydroESHM20SSlab", "faba_taper_model": "SFunc", "a": -100.0, "b": 100.0, "sigma_mu_epsilon": 1.35563, "weight": 0.14790528}, {"id": "BCHydroESHM20HighStressSlowAtten", "model": "BCHydroESHM20SSlab", "faba_taper_model": "SFunc", "a": -100.0, "b": 100.0, "theta_6_adjustment": 0.0015, "sigma_mu_epsilon": 1.35563, "weight": 0.03708736}, {"id": "BCHydroESHM20VHighStressFastAtten", "model": "BCHydroESHM20SSlab", "faba_taper_model": "SFunc", "a": -100.0, "b": 100.0, "theta_6_adjustment": -0.0015, "sigma_mu_epsilon": 2.85697, "weight": 0.00188042}, {"id": "BCHydroESHM20VHighStressAveAtten", "model": "BCHydroESHM20SSlab", "faba_taper_model": "SFunc", "a": -100.0, "b": 100.0, "sigma_mu_epsilon": 2.85697, "weight": 0.00749916}, {"id": "BCHydroESHM20VHighStressSlowAtten", "model": "BCHydroESHM20SSlab", "faba_taper_model": "SFunc", "a": -100.0, "b": 100.0, "theta_6_adjustment": 0.0015, "sigma_mu_epsilon": 2.85697, "weight": 0.00188042}], "ESHM20 Iceland": [{"id": "Kotha2020ESHM20IcelandVLowStressFastAtten", "model": "KothaEtAl2020ESHM20", "dl2l": {"PGA": -1.3207140445937, "SA(0.010)": -1.3347021975537, "SA(0.025)": -1.4111437482420002, "SA(0.040)": -1.5931895950428, "SA(0.050)": -1.7324704811285, "SA(0.070)": -1.846624023436, "SA(0.100)": -1.8690800181509002, "SA(0.150)": -1.6667014863049, "SA(0.200)": -1.3701200584775002, "SA(0.250)": -1.2392156673241, "SA(0.300)": -1.1075777039263, "SA(0.350)": -0.9533217924043, "SA(0.400)": -0.9198931143957, "SA(0.450)": -0.8885776589472001, "SA(0.500)": -0.8196942896905, "SA(0.600)": -0.7636890854779, "SA(0.700)": -0.7032554330881, "SA(0.750)": -0.6411880497475, "SA(0.800)": -0.5926292159615, "SA(0.900)": -0.5607619040190001, "SA(1.000)": -0.4531285835127, "SA(1.200)": -0.32095984878339995, "SA(1.400)": -0.23543645346729997, "SA(1.600)": -0.15924458342349995, "SA(1.800)": -0.011255014050899903, "SA(2.000)": 0.11459511272410006, "SA(2.500)": 0.2688250500279, "SA(3.000)": 0.21402961517749997, "SA(3.500)": 0.06112830149049997, "SA(4.000)": -0.06601226695380003, "SA(4.500)": -0.016225685096299958, "SA(5.000)": 0.0051093775839999855, "SA(6.000)": 0.1441209032605999, "SA(7.000)": 0.1256197371662, "SA(8.000)": -0.08147868520040003}, "c3_epsilon": -1.732051, "weight": 0.00188042}, {"id": "Kotha2020ESHM20IcelandVLowStressAveAtten", "model": "KothaEtAl2020ESHM20", "dl2l": {"PGA": -1.3207140445937, "SA(0.010)": -1.3347021975537, "SA(0.025)": -1.4111437482420002, "SA(0.040)": -1.5931895950428, "SA(0.050)": -1.7324704811285, "SA(0.070)": -1.846624023436, "SA(0.100)": -1.8690800181509002, "SA(0.150)": -1.6667014863049, "SA(0.200)": -1.3701200584775002, "SA(0.250)": -1.2392156673241, "SA(0.300)": -1.1075777039263, "SA(0.350)": -0.9533217924043, "SA(0.400)": -0.9198931143957, "SA(0.450)": -0.8885776589472001, "SA(0.500)": -0.8196942896905, "SA(0.600)": -0.7636890854779, "SA(0.700)": -0.7032554330881, "SA(0.750)": -0.6411880497475, "SA(0.800)": -0.5926292159615, "SA(0.900)": -0.5607619040190001, "SA(1.000)": -0.4531285835127, "SA(1.200)": -0.32095984878339995, "SA(1.400)": -0.23543645346729997, "SA(1.600)": -0.15924458342349995, "SA(1.800)": -0.011255014050899903, "SA(2.000)": 0.11459511272410006, "SA(2.500)": 0.2688250500279, "SA(3.000)": 0.21402961517749997, "SA(3.500)": 0.06112830149049997, "SA(4.000)": -0.06601226695380003, "SA(4.500)": -0.016225685096299958, "SA(5.000)": 0.0051093775839999855, "SA(6.000)": 0.1441209032605999, "SA(7.000)": 0.1256197371662, "SA(8.000)": -0.08147868520040003}, "weight": 0.00749916}, {"id": "Kotha2020ESHM20IcelandVLowStressSlowAtten", "model": "KothaEtAl2020ESHM20", "dl2l": {"PGA": -1.3207140445937, "SA(0.010)": -1.3347021975537, "SA(0.025)": -1.4111437482420002, "SA(0.040)": -1.5931895950428, "SA(0.050)": -1.7324704811285, "SA(0.070)": -1.846624023436, "SA(0.100)": -1.8690800181509002, "SA(0.150)": -1.6667014863049, "SA(0.200)": -1.3701200584775002, "SA(0.250)": -1.2392156673241, "SA(0.300)": -1.1075777039263, "SA(0.350)": -0.9533217924043, "SA(0.400)": -0.9198931143957, "SA(0.450)": -0.8885776589472001, "SA(0.500)": -0.8196942896905, "SA(0.600)": -0.7636890854779, "SA(0.700)": -0.7032554330881, "SA(0.750)": -0.6411880497475, "SA(0.800)": -0.5926292159615, "SA(0.900)": -0.5607619040190001, "SA(1.000)": -0.4531285835127, "SA(1.200)": -0.32095984878339995, "SA(1.400)": -0.23543645346729997, "SA(1.600)": -0.15924458342349995, "SA(1.800)": -0.011255014050899903, "SA(2.000)": 0.11459511272410006, "SA(2.500)": 0.2688250500279, "SA(3.000)": 0.21402961517749997, "SA(3.500)": 0.06112830149049997, "SA(4.000)": -0.06601226695380003, "SA(4.500)": -0.016225685096299958, "SA(5.000)": 0.0051093775839999855, "SA(6.000)": 0.1441209032605999, "SA(7.000)": 0.1256197371662, "SA(8.000)": -0.08147868520040003}, "c3_epsilon": 1.732051, "weight": 0.00188042}, {"id": "Kotha2020ESHM20IcelandLowStressFastAtten", "model": "KothaEtAl2020ESHM20", "dl2l": {"PGA": -0.7873191554523, "SA(0.010)": -0.8001542792923, "SA(0.025)": -0.8580521941179999, "SA(0.040)": -0.9732544205812, "SA(0.050)": -1.0653890119015, "SA(0.070)": -1.139584765444, "SA(0.100)": -1.1503315542711001, "SA(0.150)": -1.0450774094370998, "SA(0.200)": -0.8867249859724999, "SA(0.250)": -0.7988283107539, "SA(0.300)": -0.7069649576277, "SA(0.350)": -0.6055901443897, "SA(0.400)": -0.5583316928103, "SA(0.450)": -0.5143750296288, "SA(0.500)": -0.4536996512995, "SA(0.600)": -0.39418368360409994, "SA(0.700)": -0.3327986921099, "SA(0.750)": -0.27310940130249994, "SA(0.800)": -0.2321980932085, "SA(0.900)": -0.188935986001, "SA(1.000)": -0.09564164855330001, "SA(1.200)": 0.019581927011400047, "SA(1.400)": 0.11275745713329999, "SA(1.600)": 0.17690176429350002, "SA(1.800)": 0.29683191962890004, "SA(2.000)": 0.4101345973539, "SA(2.500)": 0.5553827080541001, "SA(3.000)": 0.5456970152725, "SA(3.500)": 0.4173682834995, "SA(4.000)": 0.2850423719498, "SA(4.500)": 0.27908457494230005, "SA(5.000)": 0.298730645136, "SA(6.000)": 0.43039644448739994, "SA(7.000)": 0.43824607742980004, "SA(8.000)": 0.24311300456839996}, "c3_epsilon": -1.732051, "weight": 0.03708736}, {"id": "Kotha2020ESHM20IcelandLowStressAveAtten", "model": "KothaEtAl2020ESHM20", "dl2l": {"PGA": -0.7873191554523, "SA(0.010)": -0.8001542792923, "SA(0.025)": -0.8580521941179999, "SA(0.040)": -0.9732544205812, "SA(0.050)": -1.0653890119015, "SA(0.070)": -1.139584765444, "SA(0.100)": -1.1503315542711001, "SA(0.150)": -1.0450774094370998, "SA(0.200)": -0.8867249859724999, "SA(0.250)": -0.7988283107539, "SA(0.300)": -0.7069649576277, "SA(0.350)": -0.6055901443897, "SA(0.400)": -0.5583316928103, "SA(0.450)": -0.5143750296288, "SA(0.500)": -0.4536996512995, "SA(0.600)": -0.39418368360409994, "SA(0.700)": -0.3327986921099, "SA(0.750)": -0.27310940130249994, "SA(0.800)": -0.2321980932085, "SA(0.900)": -0.188935986001, "SA(1.000)": -0.09564164855330001, "SA(1.200)": 0.019581927011400047, "SA(1.400)": 0.11275745713329999, "SA(1.600)": 0.17690176429350002, "SA(1.800)": 0.29683191962890004, "SA(2.000)": 0.4101345973539, "SA(2.500)": 0.5553827080541001, "SA(3.000)": 0.5456970152725, "SA(3.500)": 0.4173682834995, "SA(4.000)": 0.2850423719498, "SA(4.500)": 0.27908457494230005, "SA(5.000)": 0.298730645136, "SA(6.000)": 0.43039644448739994, "SA(7.000)": 0.43824607742980004, "SA(8.000)": 0.24311300456839996}, "weight": 0.14790528}, {"id": "Kotha2020ESHM20IcelandLowStressSlowAtten", "model": "KothaEtAl2020ESHM20", "dl2l": {"PGA": -0.7873191554523, "SA(0.010)": -0.8001542792923, "SA(0.025)": -0.8580521941179999, "SA(0.040)": -0.9732544205812, "SA(0.050)": -1.0653890119015, "SA(0.070)": -1.139584765444, "SA(0.100)": -1.1503315542711001, "SA(0.150)": -1.0450774094370998, "SA(0.200)": -0.8867249859724999, "SA(0.250)": -0.7988283107539, "SA(0.300)": -0.7069649576277, "SA(0.350)": -0.6055901443897, "SA(0.400)": -0.5583316928103, "SA(0.450)": -0.5143750296288, "SA(0.500)": -0.4536996512995, "SA(0.600)": -0.39418368360409994, "SA(0.700)": -0.3327986921099, "SA(0.750)": -0.27310940130249994, "SA(0.800)": -0.2321980932085, "SA(0.900)": -0.188935986001, "SA(1.000)": -0.09564164855330001, "SA(1.200)": 0.019581927011400047, "SA(1.400)": 0.11275745713329999, "SA(1.600)": 0.17690176429350002, "SA(1.800)": 0.29683191962890004, "SA(2.000)": 0.4101345973539, "SA(2.500)": 0.5553827080541001, "SA(3.000)": 0.5456970152725, "SA(3.500)": 0.4173682834995, "SA(4.000)": 0.2850423719498, "SA(4.500)": 0.27908457494230005, "SA(5.000)": 0.298730645136, "SA(6.000)": 0.43039644448739994, "SA(7.000)": 0.43824607742980004, "SA(8.000)": 0.24311300456839996}, "c3_epsilon": 1.732051, "weight": 0.03708736}, {"id": "Kotha2020ESHM20IcelandAveStressFastAtten", "model": "KothaEtAl2020ESHM20", "dl2l": {"PGA": -0.305692, "SA(0.010)": -0.317486, "SA(0.025)": -0.35864, "SA(0.040)": -0.413486, "SA(0.050)": -0.46305, "SA(0.070)": -0.501166, "SA(0.100)": -0.50134, "SA(0.150)": -0.483784, "SA(0.200)": -0.450245, "SA(0.250)": -0.401182, "SA(0.300)": -0.345233, "SA(0.350)": -0.291607, "SA(0.400)": -0.231861, "SA(0.450)": -0.17649, "SA(0.500)": -0.123226, "SA(0.600)": -0.06054, "SA(0.700)": 0.001704, "SA(0.750)": 0.059246, "SA(0.800)": 0.093252, "SA(0.900)": 0.146803, "SA(1.000)": 0.22715, "SA(1.200)": 0.327073, "SA(1.400)": 0.427158, "SA(1.600)": 0.480424, "SA(1.800)": 0.575018, "SA(2.000)": 0.676991, "SA(2.500)": 0.814129, "SA(3.000)": 0.845175, "SA(3.500)": 0.739034, "SA(4.000)": 0.602026, "SA(4.500)": 0.545734, "SA(5.000)": 0.563855, "SA(6.000)": 0.688888, "SA(7.000)": 0.720531, "SA(8.000)": 0.536202}, "c3_epsilon": -1.732051, "weight": 0.08906444}, {"id": "Kotha2020ESHM20IcelandAveStressAveAtten", "model": "KothaEtAl2020ESHM20", "dl2l": {"PGA": -0.305692, "SA(0.010)": -0.317486, "SA(0.025)": -0.35864, "SA(0.040)": -0.413486, "SA(0.050)": -0.46305, "SA(0.070)": -0.501166, "SA(0.100)": -0.50134, "SA(0.150)": -0.483784, "SA(0.200)": -0.450245, "SA(0.250)": -0.401182, "SA(0.300)": -0.345233, "SA(0.350)": -0.291607, "SA(0.400)": -0.231861, "SA(0.450)": -0.17649, "SA(0.500)": -0.123226, "SA(0.600)": -0.06054, "SA(0.700)": 0.001704, "SA(0.750)": 0.059246, "SA(0.800)": 0.093252, "SA(0.900)": 0.146803, "SA(1.000)": 0.22715, "SA(1.200)": 0.327073, "SA(1.400)": 0.427158, "SA(1.600)": 0.480424, "SA(1.800)": 0.575018, "SA(2.000)": 0.676991, "SA(2.500)": 0.814129, "SA(3.000)": 0.845175, "SA(3.500)": 0.739034, "SA(4.000)": 0.602026, "SA(4.500)": 0.545734, "SA(5.000)": 0.563855, "SA(6.000)": 0.688888, "SA(7.000)": 0.720531, "SA(8.000)": 0.536202}, "weight": 0.35519112}, {"id": "Kotha2020ESHM20IcelandAveStressSlowAtten", "model": "KothaEtAl2020ESHM20", "dl2l": {"PGA": -0.305692, "SA(0.010)": -0.317486, "SA(0.025)": -0.35864, "SA(0.040)": -0.413486, "SA(0.050)": -0.46305, "SA(0.070)": -0.501166, "SA(0.100)": -0.50134, "SA(0.150)": -0.483784, "SA(0.200)": -0.450245, "SA(0.250)": -0.401182, "SA(0.300)": -0.345233, "SA(0.350)": -0.291607, "SA(0.400)": -0.231861, "SA(0.450)": -0.17649, "SA(0.500)": -0.123226, "SA(0.600)": -0.06054, "SA(0.700)": 0.001704, "SA(0.750)": 0.059246, "SA(0.800)": 0.093252, "SA(0.900)": 0.146803, "SA(1.000)": 0.22715, "SA(1.200)": 0.327073, "SA(1.400)": 0.427158, "SA(1.600)": 0.480424, "SA(1.800)": 0.575018, "SA(2.000)": 0.676991, "SA(2.500)": 0.814129, "SA(3.000)": 0.845175, "SA(3.500)": 0.739034, "SA(4.000)": 0.602026, "SA(4.500)": 0.545734, "SA(5.000)": 0.563855, "SA(6.000)": 0.688888, "SA(7.000)": 0.720531, "SA(8.000)": 0.536202}, "c3_epsilon": 1.732051, "weight": 0.08906444}, {"id": "Kotha2020ESHM20IcelandHighStressFastAtten", "model": "KothaEtAl2020ESHM20", "dl2l": {"PGA": 0.17593515545229998, "SA(0.010)": 0.16518227929229995, "SA(0.025)": 0.14077219411799996, "SA(0.040)": 0.1462824205812, "SA(0.050)": 0.13928901190149995, "SA(0.070)": 0.1372527654439999, "SA(0.100)": 0.1476515542711, "SA(0.150)": 0.07750940943709994, "SA(0.200)": -0.013765014027500022, "SA(0.250)": -0.0035356892460999823, "SA(0.300)": 0.01649895762769993, "SA(0.350)": 0.02237614438969998, "SA(0.400)": 0.09460969281029999, "SA(0.450)": 0.16139502962879995, "SA(0.500)": 0.2072476512995, "SA(0.600)": 0.2731036836041, "SA(0.700)": 0.33620669210989995, "SA(0.750)": 0.3916014013025, "SA(0.800)": 0.4187020932085, "SA(0.900)": 0.48254198600099996, "SA(1.000)": 0.5499416485533, "SA(1.200)": 0.6345640729886, "SA(1.400)": 0.7415585428667, "SA(1.600)": 0.7839462357065, "SA(1.800)": 0.8532040803711001, "SA(2.000)": 0.9438474026461, "SA(2.500)": 1.0728752919459, "SA(3.000)": 1.1446529847275, "SA(3.500)": 1.0606997165004999, "SA(4.000)": 0.9190096280501999, "SA(4.500)": 0.8123834250577, "SA(5.000)": 0.828979354864, "SA(6.000)": 0.9473795555125999, "SA(7.000)": 1.0028159225702, "SA(8.000)": 0.8292909954315999}, "c3_epsilon": -1.732051, "weight": 0.03708736}, {"id": "Kotha2020ESHM20IcelandHighStressAveAtten", "model": "KothaEtAl2020ESHM20", "dl2l": {"PGA": 0.17593515545229998, "SA(0.010)": 0.16518227929229995, "SA(0.025)": 0.14077219411799996, "SA(0.040)": 0.1462824205812, "SA(0.050)": 0.13928901190149995, "SA(0.070)": 0.1372527654439999, "SA(0.100)": 0.1476515542711, "SA(0.150)": 0.07750940943709994, "SA(0.200)": -0.013765014027500022, "SA(0.250)": -0.0035356892460999823, "SA(0.300)": 0.01649895762769993, "SA(0.350)": 0.02237614438969998, "SA(0.400)": 0.09460969281029999, "SA(0.450)": 0.16139502962879995, "SA(0.500)": 0.2072476512995, "SA(0.600)": 0.2731036836041, "SA(0.700)": 0.33620669210989995, "SA(0.750)": 0.3916014013025, "SA(0.800)": 0.4187020932085, "SA(0.900)": 0.48254198600099996, "SA(1.000)": 0.5499416485533, "SA(1.200)": 0.6345640729886, "SA(1.400)": 0.7415585428667, "SA(1.600)": 0.7839462357065, "SA(1.800)": 0.8532040803711001, "SA(2.000)": 0.9438474026461, "SA(2.500)": 1.0728752919459, "SA(3.000)": 1.1446529847275, "SA(3.500)": 1.0606997165004999, "SA(4.000)": 0.9190096280501999, "SA(4.500)": 0.8123834250577, "SA(5.000)": 0.828979354864, "SA(6.000)": 0.9473795555125999, "SA(7.000)": 1.0028159225702, "SA(8.000)": 0.8292909954315999}, "weight": 0.14790528}, {"id": "Kotha2020ESHM20IcelandHighStressSlowAtten", "model": "KothaEtAl2020ESHM20", "dl2l": {"PGA": 0.17593515545229998, "SA(0.010)": 0.16518227929229995, "SA(0.025)": 0.14077219411799996, "SA(0.040)": 0.1462824205812, "SA(0.050)": 0.13928901190149995, "SA(0.070)": 0.1372527654439999, "SA(0.100)": 0.1476515542711, "SA(0.150)": 0.07750940943709994, "SA(0.200)": -0.013765014027500022, "SA(0.250)": -0.0035356892460999823, "SA(0.300)": 0.01649895762769993, "SA(0.350)": 0.02237614438969998, "SA(0.400)": 0.09460969281029999, "SA(0.450)": 0.16139502962879995, "SA(0.500)": 0.2072476512995, "SA(0.600)": 0.2731036836041, "SA(0.700)": 0.33620669210989995, "SA(0.750)": 0.3916014013025, "SA(0.800)": 0.4187020932085, "SA(0.900)": 0.48254198600099996, "SA(1.000)": 0.5499416485533, "SA(1.200)": 0.6345640729886, "SA(1.400)": 0.7415585428667, "SA(1.600)": 0.7839462357065, "SA(1.800)": 0.8532040803711001, "SA(2.000)": 0.9438474026461, "SA(2.500)": 1.0728752919459, "SA(3.000)": 1.1446529847275, "SA(3.500)": 1.0606997165004999, "SA(4.000)": 0.9190096280501999, "SA(4.500)": 0.8123834250577, "SA(5.000)": 0.828979354864, "SA(6.000)": 0.9473795555125999, "SA(7.000)": 1.0028159225702, "SA(8.000)": 0.8292909954315999}, "c3_epsilon": 1.732051, "weight": 0.03708736}, {"id": "Kotha2020ESHM20IcelandVHighStressFastAtten", "model": "KothaEtAl2020ESHM20", "dl2l": {"PGA": 0.7093300445936999, "SA(0.010)": 0.6997301975537, "SA(0.025)": 0.693863748242, "SA(0.040)": 0.7662175950428001, "SA(0.050)": 0.8063704811285002, "SA(0.070)": 0.8442920234360001, "SA(0.100)": 0.8664000181509001, "SA(0.150)": 0.6991334863048999, "SA(0.200)": 0.46963005847750006, "SA(0.250)": 0.4368516673241, "SA(0.300)": 0.4171117039262999, "SA(0.350)": 0.3701077924043, "SA(0.400)": 0.4561711143957, "SA(0.450)": 0.5355976589472, "SA(0.500)": 0.5732422896905001, "SA(0.600)": 0.6426090854779, "SA(0.700)": 0.7066634330881001, "SA(0.750)": 0.7596800497475, "SA(0.800)": 0.7791332159615, "SA(0.900)": 0.8543679040190001, "SA(1.000)": 0.9074285835127, "SA(1.200)": 0.9751058487833999, "SA(1.400)": 1.0897524534673, "SA(1.600)": 1.1200925834235, "SA(1.800)": 1.1612910140508999, "SA(2.000)": 1.2393868872759, "SA(2.500)": 1.3594329499721, "SA(3.000)": 1.4763203848225, "SA(3.500)": 1.4169396985095, "SA(4.000)": 1.2700642669538, "SA(4.500)": 1.1076936850963, "SA(5.000)": 1.122600622416, "SA(6.000)": 1.2336550967394, "SA(7.000)": 1.3154422628338, "SA(8.000)": 1.1538826852003998}, "c3_epsilon": -1.732051, "weight": 0.00188042}, {"id": "Kotha2020ESHM20IcelandVHighStressAveAtten", "model": "KothaEtAl2020ESHM20", "dl2l": {"PGA": 0.7093300445936999, "SA(0.010)": 0.6997301975537, "SA(0.025)": 0.693863748242, "SA(0.040)": 0.7662175950428001, "SA(0.050)": 0.8063704811285002, "SA(0.070)": 0.8442920234360001, "SA(0.100)": 0.8664000181509001, "SA(0.150)": 0.6991334863048999, "SA(0.200)": 0.46963005847750006, "SA(0.250)": 0.4368516673241, "SA(0.300)": 0.4171117039262999, "SA(0.350)": 0.3701077924043, "SA(0.400)": 0.4561711143957, "SA(0.450)": 0.5355976589472, "SA(0.500)": 0.5732422896905001, "SA(0.600)": 0.6426090854779, "SA(0.700)": 0.7066634330881001, "SA(0.750)": 0.7596800497475, "SA(0.800)": 0.7791332159615, "SA(0.900)": 0.8543679040190001, "SA(1.000)": 0.9074285835127, "SA(1.200)": 0.9751058487833999, "SA(1.400)": 1.0897524534673, "SA(1.600)": 1.1200925834235, "SA(1.800)": 1.1612910140508999, "SA(2.000)": 1.2393868872759, "SA(2.500)": 1.3594329499721, "SA(3.000)": 1.4763203848225, "SA(3.500)": 1.4169396985095, "SA(4.000)": 1.2700642669538, "SA(4.500)": 1.1076936850963, "SA(5.000)": 1.122600622416, "SA(6.000)": 1.2336550967394, "SA(7.000)": 1.3154422628338, "SA(8.000)": 1.1538826852003998}, "weight": 0.00749916}, {"id": "Kotha2020ESHM20IcelandVHighStressSlowAtten", "model": "KothaEtAl2020ESHM20", "dl2l": {"PGA": 0.7093300445936999, "SA(0.010)": 0.6997301975537, "SA(0.025)": 0.693863748242, "SA(0.040)": 0.7662175950428001, "SA(0.050)": 0.8063704811285002, "SA(0.070)": 0.8442920234360001, "SA(0.100)": 0.8664000181509001, "SA(0.150)": 0.6991334863048999, "SA(0.200)": 0.46963005847750006, "SA(0.250)": 0.4368516673241, "SA(0.300)": 0.4171117039262999, "SA(0.350)": 0.3701077924043, "SA(0.400)": 0.4561711143957, "SA(0.450)": 0.5355976589472, "SA(0.500)": 0.5732422896905001, "SA(0.600)": 0.6426090854779, "SA(0.700)": 0.7066634330881001, "SA(0.750)": 0.7596800497475, "SA(0.800)": 0.7791332159615, "SA(0.900)": 0.8543679040190001, "SA(1.000)": 0.9074285835127, "SA(1.200)": 0.9751058487833999, "SA(1.400)": 1.0897524534673, "SA(1.600)": 1.1200925834235, "SA(1.800)": 1.1612910140508999, "SA(2.000)": 1.2393868872759, "SA(2.500)": 1.3594329499721, "SA(3.000)": 1.4763203848225, "SA(3.500)": 1.4169396985095, "SA(4.000)": 1.2700642669538, "SA(4.500)": 1.1076936850963, "SA(5.000)": 1.122600622416, "SA(6.000)": 1.2336550967394, "SA(7.000)": 1.3154422628338, "SA(8.000)": 1.1538826852003998}, "c3_epsilon": 1.732051, "weight": 0.00188042}]} \ No newline at end of file diff --git a/shakyground2/regionalization_files/germany_gsim_mapping.json b/shakyground2/regionalization_files/germany_gsim_mapping.json new file mode 100644 index 0000000..10bc269 --- /dev/null +++ b/shakyground2/regionalization_files/germany_gsim_mapping.json @@ -0,0 +1 @@ +{"Germany": [{"id": "Akkar2014LowStress", "model": "AkkarEtAlRhyp2014", "adjustment_factor": 0.75, "weight": 0.02331}, {"id": "Akkar2014AveStress", "model": "AkkarEtAlRhyp2014", "weight": 0.05994}, {"id": "Akkar2014HighStress", "model": "AkkarEtAlRhyp2014", "adjustment_factor": 1.25, "weight": 0.05994}, {"id": "Akkar2014VHighStress", "model": "AkkarEtAlRhyp2014", "adjustment_factor": 1.5, "weight": 0.02331}, {"id": "Bindi2014LowStress", "model": "BindiEtAl2014Rhyp", "adjustment_factor": 0.75, "weight": 0.02338}, {"id": "Bindi2014AveStress", "model": "BindiEtAl2014Rhyp", "weight": 0.06012}, {"id": "Bindi2014HighStress", "model": "BindiEtAl2014Rhyp", "adjustment_factor": 1.25, "weight": 0.06012}, {"id": "Bindi2014VHighStress", "model": "BindiEtAl2014Rhyp", "adjustment_factor": 1.5, "weight": 0.02338}, {"id": "Cauzzi2015LowStress", "model": "CauzziEtAl2014RhypoGermany", "adjustment_factor": 0.75, "weight": 0.02331}, {"id": "Cauzzi2015AveStress", "model": "CauzziEtAl2014RhypoGermany", "weight": 0.05994}, {"id": "Cauzzi2015HighStress", "model": "CauzziEtAl2014RhypoGermany", "adjustment_factor": 1.25, "weight": 0.05994}, {"id": "Cauzzi2015VHighStress", "model": "CauzziEtAl2014RhypoGermany", "adjustment_factor": 1.5, "weight": 0.02331}, {"id": "Derras2014LowStress", "model": "DerrasEtAl2014RhypoGermany", "adjustment_factor": 0.75, "weight": 0.035}, {"id": "Derras2014AveStress", "model": "DerrasEtAl2014RhypoGermany", "weight": 0.09}, {"id": "Derras2014HighStress", "model": "DerrasEtAl2014RhypoGermany", "adjustment_factor": 1.25, "weight": 0.09}, {"id": "Derras2014VHighStress", "model": "DerrasEtAl2014RhypoGermany", "adjustment_factor": 1.5, "weight": 0.035}, {"id": "Bindi2017LowStress", "model": "BindiEtAl2017Rhypo", "adjustment_factor": 0.75, "weight": 0.035}, {"id": "Bindi2017AveStress", "model": "BindiEtAl2017Rhypo", "weight": 0.09}, {"id": "Bindi2017HighStress", "model": "BindiEtAl2017Rhypo", "adjustment_factor": 1.25, "weight": 0.09}, {"id": "Bindi2017VHighStress", "model": "BindiEtAl2017Rhypo", "adjustment_factor": 1.5, "weight": 0.035}]} \ No newline at end of file diff --git a/shakyground2/regionalization_files/germany_v4.geojson b/shakyground2/regionalization_files/germany_v4.geojson new file mode 100644 index 0000000..00af619 --- /dev/null +++ b/shakyground2/regionalization_files/germany_v4.geojson @@ -0,0 +1,6 @@ +{ +"type": "FeatureCollection", +"features": [ +{ "type": "Feature", "properties": { "id": 1, "REGION": "Germany", "UPPER DEPTH": 0.0, "LOWER DEPTH": 40.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.852162781451399, 50.884047909797523 ], [ 5.794128831258057, 50.916369651612555 ], [ 5.781476726326511, 50.924264772172137 ], [ 5.769671135368808, 50.933377220250925 ], [ 5.758828754651356, 50.943616920843567 ], [ 5.749056759270534, 50.954882656244614 ], [ 5.740451743745023, 50.967063066568365 ], [ 5.733098767195354, 50.980037750522484 ], [ 5.727070512548915, 50.993678455554367 ], [ 5.722426568081523, 51.007850345605902 ], [ 5.719212838397421, 51.022413333945074 ], [ 5.717461090670036, 51.037223467899523 ], [ 5.717188640628859, 51.052134351804384 ], [ 5.718398181396385, 51.066998594098592 ], [ 5.721077756867056, 51.081669264265493 ], [ 5.725200879891347, 51.096001345216138 ], [ 5.730726794096734, 51.10985316675859 ], [ 5.737600876757549, 51.123087805983793 ], [ 5.745755178731359, 51.135574440725357 ], [ 5.755109096124725, 51.147189642714437 ], [ 5.765570167049041, 51.157818597647342 ], [ 5.777034985590625, 51.167356240105399 ], [ 5.789390223960667, 51.175708292108865 ], [ 5.802513752721214, 51.182792195038765 ], [ 5.816275848013972, 51.188537925714861 ], [ 5.923040970001803, 51.226999555152972 ], [ 5.922688349856085, 51.229574186164413 ], [ 5.922149594263414, 51.244598644108514 ], [ 5.923117515417904, 51.259601567914942 ], [ 5.925582390031287, 51.274432245149747 ], [ 5.929519457113162, 51.288941693688393 ], [ 5.934889166708457, 51.302984158321244 ], [ 5.941637577197984, 51.316418574943029 ], [ 5.949696897170999, 51.329109987617556 ], [ 5.958986166426362, 51.340930904282693 ], [ 5.969412069261276, 51.351762577476606 ], [ 5.980869871877676, 51.361496197219864 ], [ 6.069305981791429, 51.429296828600187 ], [ 6.067229418269315, 51.452284250450376 ], [ 5.831383773518002, 51.726759877766831 ], [ 5.822166879169315, 51.738643203730675 ], [ 5.814186213888445, 51.751389715373961 ], [ 5.807521997399418, 51.764871287833621 ], [ 5.802241216800273, 51.778952407592421 ], [ 5.798396953224903, 51.793491534628139 ], [ 5.796027848284281, 51.808342525139821 ], [ 5.795157715650306, 51.823356100550001 ], [ 5.795795301686508, 51.838381348016988 ], [ 5.797934197531712, 51.853267237374396 ], [ 5.801552903520367, 51.867864139249981 ], [ 5.806615045291998, 51.882025329104003 ], [ 5.813069739417518, 51.895608462068964 ], [ 5.820852104867186, 51.908477003765896 ], [ 5.829883915179087, 51.920501602715028 ], [ 5.840074384772674, 51.931561390545724 ], [ 5.851321081503542, 51.941545196936154 ], [ 5.863510956286658, 51.950352667070632 ], [ 5.876521479438515, 51.957895270382011 ], [ 5.890221872315987, 51.964097190439595 ], [ 5.904474421871727, 51.968896087037663 ], [ 5.91913586491253, 51.97224372282416 ], [ 5.934058828146423, 51.974106448170971 ], [ 5.979879302170546, 51.977504758357142 ], [ 5.984462812088549, 51.984093282241652 ], [ 5.993786618082559, 51.995075651923486 ], [ 6.004120984316639, 52.005112916320833 ], [ 6.015370583931739, 52.014112489118595 ], [ 6.027431647720091, 52.021991355936592 ], [ 6.040192921319143, 52.028676840075569 ], [ 6.053536691450485, 52.034107272905857 ], [ 6.067339871737487, 52.03823256271469 ], [ 6.119115741737459, 52.05103341071473 ], [ 6.132539272286047, 52.053708886745568 ], [ 6.146150800446997, 52.055149596814971 ], [ 6.159836987959114, 52.055343544652416 ], [ 6.173483874899841, 52.054289115324551 ], [ 6.186977828588238, 52.05199508868219 ], [ 6.200206489763121, 52.048480566253673 ], [ 6.41016294309427, 51.982308184298155 ], [ 6.556224472987506, 52.01397309193306 ], [ 6.552977232378885, 52.022228046940739 ], [ 6.548972318472963, 52.036305861312663 ], [ 6.546358491076604, 52.050706975825996 ], [ 6.545160636637111, 52.065294276385934 ], [ 6.54539016001673, 52.079928876206303 ], [ 6.547044875906092, 52.094471438161115 ], [ 6.550109029630717, 52.108783501423837 ], [ 6.554553447152447, 52.122728799763301 ], [ 6.560335812837663, 52.136174558944788 ], [ 6.567401072347614, 52.14899276088348 ], [ 6.575681956814923, 52.161061362514296 ], [ 6.585099623315526, 52.172265457773065 ], [ 6.595564405538094, 52.18249837162584 ], [ 6.606976667503722, 52.191662675729916 ], [ 6.619227752207586, 52.1996711160564 ], [ 6.632201016150456, 52.206447443642404 ], [ 6.868144251201795, 52.315383424934943 ], [ 6.755190754223772, 52.313811495290835 ], [ 6.740115249246002, 52.314360342449191 ], [ 6.725171111171369, 52.316420638725049 ], [ 6.710509489717132, 52.319971545633244 ], [ 6.696278677138508, 52.324977148183393 ], [ 6.682622608354118, 52.331386818135428 ], [ 6.669679405142904, 52.339135726069536 ], [ 6.657579979136973, 52.348145497091323 ], [ 6.646446707740139, 52.35832500354018 ], [ 6.636392196364329, 52.369571286683147 ], [ 6.56462045336433, 52.458470307683122 ], [ 6.556029947149799, 52.470237123135242 ], [ 6.548621480757781, 52.482781817975074 ], [ 6.542464942282913, 52.495986051270258 ], [ 6.537618409702582, 52.509725260303313 ], [ 6.534127602995757, 52.523869835639523 ], [ 6.532025452841554, 52.538286343803271 ], [ 6.531331789966218, 52.552838786028602 ], [ 6.532053158069093, 52.567389881209593 ], [ 6.534182752092351, 52.581802360947734 ], [ 6.537700482416793, 52.595940264479403 ], [ 6.54257316437817, 52.609670221267727 ], [ 6.548754831316172, 52.62286270915947 ], [ 6.556187168202947, 52.635393276237927 ], [ 6.564800061760492, 52.647143714845598 ], [ 6.574512261877351, 52.658003176701335 ], [ 6.585232148085131, 52.667869218592507 ], [ 6.596858593864231, 52.676648768777561 ], [ 6.606058738052671, 52.682284559555576 ], [ 6.609977207256275, 52.696137552960046 ], [ 6.615341204230618, 52.709818288470267 ], [ 6.622018084123352, 52.722908523859267 ], [ 6.629943768179936, 52.735282630690733 ], [ 6.639042192734203, 52.746821853293305 ], [ 6.649226039199765, 52.75741544847186 ], [ 6.660397572076149, 52.766961748322238 ], [ 6.672449576927194, 52.775369135949305 ], [ 6.685266389329854, 52.782556924724467 ], [ 6.698725004918449, 52.788456132644164 ], [ 6.712696259871167, 52.793010144357751 ], [ 6.727046070509539, 52.796175254511326 ], [ 6.741636720114326, 52.79792108719279 ], [ 6.756328180608103, 52.798230887452895 ], [ 6.92508609416535, 52.793518269936406 ], [ 6.939155857269636, 52.875795700250329 ], [ 6.942615467185871, 52.891136293481843 ], [ 6.94766214682503, 52.90603037707524 ], [ 6.954240426964525, 52.920314246714575 ], [ 6.962278004206603, 52.933830905086559 ], [ 6.971686535681695, 52.946431787474296 ], [ 7.06237284220421, 53.055462886186042 ], [ 7.051058774489947, 53.191675810137205 ], [ 7.002577819219908, 53.195025946024977 ], [ 6.987625218980013, 53.196816964874323 ], [ 6.972927561273822, 53.200098254316657 ], [ 6.958632990653863, 53.204836740704081 ], [ 6.944885588769773, 53.210984662620476 ], [ 6.931823922102095, 53.218480052291156 ], [ 6.919579645286039, 53.227247360184947 ], [ 6.908276174102968, 53.237198216513235 ], [ 6.898027441515119, 53.248232321950269 ], [ 6.888936749282105, 53.260238458596895 ], [ 6.881095726734256, 53.273095610997672 ], [ 6.874583407197831, 53.286674185912162 ], [ 6.86946543138123, 53.300837318545639 ], [ 6.865793385751655, 53.315442252073289 ], [ 6.863604282571028, 53.330341776552856 ], [ 6.862920186832127, 53.34538571272239 ], [ 6.863747993855222, 53.360422425727073 ], [ 6.874690598237843, 53.464039443267829 ], [ 6.825679548942418, 53.431873211451361 ], [ 6.812996170897216, 53.424412376313924 ], [ 6.799642794564333, 53.418230185755725 ], [ 6.785747928172575, 53.413386135018925 ], [ 6.771445291061898, 53.409926841555539 ], [ 6.756872526815204, 53.40788559639735 ], [ 6.742169878624584, 53.407282043774657 ], [ 6.727478839639828, 53.408121992067038 ], [ 6.712940791287783, 53.410397357905566 ], [ 6.698695642666899, 53.414086243964313 ], [ 6.684880484110933, 53.419153149692569 ], [ 6.595299956110934, 53.457090621692579 ], [ 6.581841075854538, 53.46359955858199 ], [ 6.56909696925601, 53.471415917337296 ], [ 6.55719423214528, 53.480462052780631 ], [ 6.546251102460121, 53.49064810353056 ], [ 6.536376285708747, 53.50187288465596 ], [ 6.527667875124479, 53.514024892814376 ], [ 6.520212377239317, 53.526983413890122 ], [ 6.514083852556053, 53.540619722129264 ], [ 6.509343179855205, 53.554798358859564 ], [ 6.50603745144492, 53.569378478093093 ], [ 6.504199505361226, 53.584215245644671 ], [ 6.50384759916561, 53.599161277867836 ], [ 6.504985228580314, 53.614068105716214 ], [ 6.507601092762963, 53.628787649587011 ], [ 6.511669206565468, 53.643173690295839 ], [ 6.517149158662086, 53.657083321570788 ], [ 6.523986512982444, 53.670378369637049 ], [ 6.532113349461842, 53.682926765790484 ], [ 6.541448938737192, 53.694603858325372 ], [ 6.551900544086383, 53.705293650784114 ], [ 6.563364342644858, 53.714889954228518 ], [ 6.575726456748347, 53.723297442086292 ], [ 6.588864085156722, 53.730432597094406 ], [ 6.602646722921769, 53.736224540932518 ], [ 6.616937457781103, 53.740615738305273 ], [ 6.631594330200266, 53.743562568479327 ], [ 6.64647174355279, 53.74503575859756 ], [ 6.805718210552793, 53.752820440597525 ], [ 6.820210582423787, 53.752827960437337 ], [ 6.834636039606344, 53.75143688744523 ], [ 6.84885992597204, 53.748660206755822 ], [ 6.862749466978972, 53.744523837621919 ], [ 6.876175009071351, 53.739066391468185 ], [ 6.889011229945886, 53.732338811468267 ], [ 6.901138308387575, 53.724403897009729 ], [ 6.912443042754944, 53.715335717485793 ], [ 6.922819907674101, 53.705218920885841 ], [ 6.932172039077757, 53.694147943638825 ], [ 6.940412138394267, 53.682226129085279 ], [ 6.947463287446431, 53.669564762806736 ], [ 6.948031815737044, 53.668261948205057 ], [ 6.953642575315333, 53.67223755203257 ], [ 6.966666643062605, 53.679635189893801 ], [ 6.980363553659994, 53.685697039999056 ], [ 6.986384020128915, 53.687670541487343 ], [ 6.988015464601794, 53.689350090004226 ], [ 6.99927914322263, 53.698867755634147 ], [ 7.011422936157286, 53.707233441994312 ], [ 7.02432947693121, 53.714366296988452 ], [ 7.230351856931189, 53.815339903988409 ], [ 7.244534053243774, 53.821407433214183 ], [ 7.259264401120685, 53.825986347340866 ], [ 7.274387119209406, 53.829028221888485 ], [ 7.289742276631365, 53.83050088739742 ], [ 8.002104900631402, 53.861988602397446 ], [ 8.016393915559803, 53.861938943412554 ], [ 8.030613371788807, 53.860529873439006 ], [ 8.044634233495495, 53.857774179217792 ], [ 8.058329267022037, 53.853696867561112 ], [ 8.071574195469763, 53.848334938425666 ], [ 8.084248826461815, 53.841737049153011 ], [ 8.096238142840441, 53.833963072923815 ], [ 8.107433346401253, 53.82508355543294 ], [ 8.117732845192988, 53.815179074715708 ], [ 8.19458796526326, 53.733878717344076 ], [ 8.203525991846465, 53.73924672434395 ], [ 8.216562930083034, 53.745456718010423 ], [ 8.230136596243598, 53.750384330706588 ], [ 8.244121192136044, 53.753983894242182 ], [ 8.258387111148577, 53.756222048537495 ], [ 8.272802139419491, 53.757078050798306 ], [ 8.287232681170442, 53.756543967756208 ], [ 8.30154499684706, 53.754624749192665 ], [ 8.315606442592056, 53.751338182065354 ], [ 8.341315064177532, 53.744007853290654 ], [ 8.343879594447221, 53.750599768333394 ], [ 8.350266594937343, 53.763303635966643 ], [ 8.35782779375903, 53.775345658242117 ], [ 8.491803402759034, 53.967814272242123 ], [ 8.50095724731503, 53.979657385115715 ], [ 8.511245857701441, 53.990529215182846 ], [ 8.522566781219743, 54.000321502116179 ], [ 8.534807285526043, 54.008936735544211 ], [ 8.547845481205695, 54.016289126047376 ], [ 8.561551535532891, 54.0223054594384 ], [ 8.575788965328732, 54.026925825820022 ], [ 8.590415996043705, 54.030104216160304 ], [ 8.605286973530953, 54.031808980444794 ], [ 8.620253814452102, 54.032023142843457 ], [ 8.635167480872658, 54.030744570753839 ], [ 8.654896848016891, 54.028056010273538 ], [ 8.655850125386786, 54.041381085019886 ], [ 8.658286817983575, 54.05571491347451 ], [ 8.662099805943924, 54.069745495493507 ], [ 8.667253264787023, 54.08334100839042 ], [ 8.673698775795215, 54.096373717119654 ], [ 8.676469683755213, 54.100830359660392 ], [ 8.671622739466617, 54.110507687268822 ], [ 8.666362669745657, 54.12421496321916 ], [ 8.662467846670296, 54.138370813623133 ], [ 8.659975583986704, 54.152839620559575 ], [ 8.659259213100732, 54.162681685563612 ], [ 8.571947579245469, 54.178921521430347 ], [ 8.557557757262549, 54.182339682284443 ], [ 8.543574512038196, 54.18715835983334 ], [ 8.530133792287254, 54.193330705651682 ], [ 8.517366272152051, 54.200796710602241 ], [ 8.505396080754711, 54.209483788260215 ], [ 8.49433959538182, 54.219307480617147 ], [ 8.48430431003445, 54.230172279203472 ], [ 8.475387790343765, 54.241972553646477 ], [ 8.467676725012808, 54.254593578636005 ], [ 8.461246083006579, 54.267912649313502 ], [ 8.45615838468443, 54.281800274240304 ], [ 8.452463093961022, 54.296121434346738 ], [ 8.450196137405381, 54.310736895622362 ], [ 8.449379554953548, 54.325504562784914 ], [ 8.450021285630626, 54.340280860767251 ], [ 8.45211509036554, 54.354922130591163 ], [ 8.455640612648892, 54.369286026057026 ], [ 8.460563576444189, 54.383232897670212 ], [ 8.466836119428311, 54.396627150349509 ], [ 8.474397258321357, 54.409338561717441 ], [ 8.477920604995065, 54.414117997263617 ], [ 8.46860209179084, 54.425255233557642 ], [ 8.460274306335492, 54.437478242480381 ], [ 8.453190754148769, 54.450461972535088 ], [ 8.447420304345142, 54.464080190729085 ], [ 8.443019059534935, 54.478200495323399 ], [ 8.440029810372421, 54.492685603095183 ], [ 8.439205835764124, 54.500514036695741 ], [ 8.427403819995627, 54.49624370683776 ], [ 8.413210371550159, 54.492627233146429 ], [ 8.398731874879697, 54.490412285088851 ], [ 8.384106379464683, 54.489619981738066 ], [ 8.369473336388269, 54.490257877543158 ], [ 8.354972268699012, 54.49231989029915 ], [ 8.340741441087358, 54.495786359139586 ], [ 8.247719755087372, 54.523320269139631 ], [ 8.233569869281066, 54.528290451753939 ], [ 8.219987019119943, 54.534648766393175 ], [ 8.207106986008469, 54.542331651957745 ], [ 8.195058525617561, 54.551262306231642 ], [ 8.183962080774325, 54.561351453638238 ], [ 8.173928577451404, 54.57249823768656 ], [ 8.165058315891882, 54.584591229186458 ], [ 8.157439967954627, 54.597509540154149 ], [ 8.151149690703171, 54.611124032272876 ], [ 8.146250365099137, 54.625298607828313 ], [ 8.142790967410653, 54.639891570213791 ], [ 8.140806079619495, 54.654757040405059 ], [ 8.140315543721181, 54.66974641524471 ], [ 8.141324263373811, 54.684709852958463 ], [ 8.14222400562668, 54.690036471315203 ], [ 8.138456099868417, 54.698615880683413 ], [ 8.13392727579124, 54.712425615167547 ], [ 8.130756151654632, 54.726608808945905 ], [ 8.128972496423637, 54.741032317120457 ], [ 8.128593054182668, 54.755560738838938 ], [ 8.129621386950216, 54.770057688371978 ], [ 8.132047841240357, 54.78438707543571 ], [ 8.13584963868497, 54.798414382740908 ], [ 8.140991089865924, 54.812007928775635 ], [ 8.22792974553516, 55.012003287162997 ], [ 8.234416451273695, 55.025132362519727 ], [ 8.236855113642559, 55.029051984732156 ], [ 8.237970186007745, 55.033233841185741 ], [ 8.24323702174204, 55.047216440246203 ], [ 8.273937270865945, 55.117839884775599 ], [ 8.280544916260745, 55.131185906679299 ], [ 8.288443372921785, 55.143810947696707 ], [ 8.297554787594793, 55.15559056572846 ], [ 8.307789351179865, 55.166408651813377 ], [ 8.319046183958926, 55.176158574587518 ], [ 8.331214329943704, 55.184744231324814 ], [ 8.344173850543143, 55.192080995199319 ], [ 8.357797006770273, 55.198096549432194 ], [ 8.371949518335754, 55.202731600101437 ], [ 8.386491887217527, 55.205940460588266 ], [ 8.40128077266044, 55.207691501899568 ], [ 8.416170404052812, 55.207967464427504 ], [ 8.431014017753514, 55.206765628073484 ], [ 8.445665303707127, 55.204097839059528 ], [ 8.498359238707106, 55.191772496059542 ], [ 8.512780614808038, 55.18762852050061 ], [ 8.526715820836849, 55.182064470266099 ], [ 8.54002541268528, 55.175136022611269 ], [ 8.552576206519328, 55.166912507778008 ], [ 8.564242611497317, 55.157476215234482 ], [ 8.574907886507896, 55.146921570236834 ], [ 8.584465308352277, 55.135354188952981 ], [ 8.592819239681178, 55.122889821603231 ], [ 8.599886086000039, 55.109653194193527 ], [ 8.60559513216614, 55.095776760431541 ], [ 8.609889250007141, 55.081399376314629 ], [ 8.612725469980157, 55.066664910652712 ], [ 8.614075411151015, 55.051720805429824 ], [ 8.613926183703606, 55.036778532602789 ], [ 8.940893938590047, 55.05233149898234 ], [ 8.955921633947829, 55.052292697294256 ], [ 8.970870030139251, 55.05075043122072 ], [ 8.985589089690967, 55.047720180529716 ], [ 9.337142271613112, 54.956773632837404 ], [ 9.542349984886624, 55.028569099202684 ], [ 9.556970335946948, 55.032864266384436 ], [ 9.571951019540487, 55.035653933984094 ], [ 9.587137432931074, 55.036909312244433 ], [ 9.602372850222453, 55.036617445487366 ], [ 9.617500039791302, 55.034781345818388 ], [ 9.632362886939436, 55.031419962041198 ], [ 9.646808005019176, 55.026567984103423 ], [ 9.660686318404876, 55.020275485091531 ], [ 9.835300812152166, 54.930145120840223 ], [ 9.8376354304492, 54.931578500741999 ], [ 9.851393267861591, 54.938203655213272 ], [ 9.865753381446842, 54.943395754967 ], [ 9.880566955265953, 54.947100993520685 ], [ 9.895680474105777, 54.949280972950007 ], [ 9.910937314379428, 54.949913101812093 ], [ 9.926179367239225, 54.948990829263899 ], [ 9.9412486770816, 54.946523712949549 ], [ 9.955989078463915, 54.942537319953097 ], [ 9.970247814469598, 54.937072961843107 ], [ 9.983877119750197, 54.930187266554888 ], [ 9.996735751839124, 54.921951591547 ], [ 10.008690454867804, 54.912451284313541 ], [ 10.135203518867797, 54.800948412313524 ], [ 10.146084629452188, 54.790331382416433 ], [ 10.155835192183904, 54.778667488649766 ], [ 10.164355049329638, 54.766076542473975 ], [ 10.171556684957917, 54.752687878027402 ], [ 10.177366123902329, 54.738639023606609 ], [ 10.181723691634083, 54.724074288976396 ], [ 10.184584627238475, 54.709143283020573 ], [ 10.185919543198786, 54.693999376960235 ], [ 10.185714727264715, 54.678798128925337 ], [ 10.182339468807683, 54.626271607280621 ], [ 10.194473483012757, 54.621619644159559 ], [ 10.259828781012743, 54.592843285159553 ], [ 10.273062134932974, 54.586218909800046 ], [ 10.282361388074088, 54.580352261335506 ], [ 10.284026964085559, 54.580875075701357 ], [ 10.298281771099457, 54.583868863563062 ], [ 10.312759740468948, 54.585465952070457 ], [ 10.327324353122117, 54.585651281581185 ], [ 10.341838272989833, 54.584423104542665 ], [ 10.35616464200729, 54.58179300197051 ], [ 10.370168370608246, 54.577785774246117 ], [ 10.715797919337732, 54.460449190734614 ], [ 10.860749173920864, 54.491928547971433 ], [ 10.860896901088104, 54.495723661269921 ], [ 10.862901253757927, 54.510275761962347 ], [ 10.866319371969491, 54.524562032717142 ], [ 10.871118475047894, 54.538445464347333 ], [ 10.877252538301166, 54.551792911001748 ], [ 10.884662734409458, 54.56447636706956 ], [ 10.893277997594899, 54.576374194788649 ], [ 10.903015705161559, 54.587372290784494 ], [ 10.913782469869373, 54.597365180352284 ], [ 10.925475035542942, 54.606257028987791 ], [ 10.93798126732608, 54.613962561466074 ], [ 10.951181227085316, 54.620407879653882 ], [ 10.964948323648912, 54.62553117121265 ], [ 10.979150526850322, 54.6292833023955 ], [ 10.993651633733078, 54.631628289253122 ], [ 11.21465978973306, 54.656337178253132 ], [ 11.229915642687285, 54.657259305798519 ], [ 11.245186138511759, 54.656624226397504 ], [ 11.260312741383443, 54.654438533341917 ], [ 11.27513840935271, 54.650724918144299 ], [ 11.289509224727517, 54.645521934958275 ], [ 11.30327599202205, 54.63888360031553 ], [ 11.316295786880168, 54.630878832334922 ], [ 11.32843343989301, 54.621590735225674 ], [ 11.339562939905971, 54.611115736512915 ], [ 11.34956874224619, 54.599562585942643 ], [ 11.431135064246204, 54.495066705942641 ], [ 11.439645827131113, 54.482979580726997 ], [ 11.446925494888909, 54.470113418976197 ], [ 11.452903363607092, 54.456593183532618 ], [ 11.457521373121265, 54.442550189941912 ], [ 11.460734670925589, 54.42812083104824 ], [ 11.462512047803607, 54.413445252276169 ], [ 11.462836240948354, 54.39866599046556 ], [ 11.461704101627706, 54.383926589479756 ], [ 11.459126625766492, 54.369370206033082 ], [ 11.455128847148373, 54.355138219278516 ], [ 11.449749594274733, 54.341368857659937 ], [ 11.443041113242115, 54.328195856365753 ], [ 11.435068560301012, 54.315747158423271 ], [ 11.425909369024536, 54.304143672049662 ], [ 11.415652498233351, 54.29349809632852 ], [ 11.40439756798143, 54.283913826617891 ], [ 11.39225389199437, 54.275483950320876 ], [ 11.379339415957739, 54.268290342772431 ], [ 11.365779571967348, 54.262402872023635 ], [ 11.351706060267617, 54.257878720246872 ], [ 11.337255570110429, 54.254761828352905 ], [ 11.322568452158153, 54.253082469213943 ], [ 11.30778735532515, 54.252856953637782 ], [ 11.251851071564561, 54.254761770477643 ], [ 11.242190714606597, 54.179556239050704 ], [ 11.239640740529806, 54.165238372553908 ], [ 11.236476741132575, 54.153948512755498 ], [ 11.240493372769555, 54.152420440535415 ], [ 11.323134312949593, 54.115988044052514 ], [ 11.403272699971845, 54.157616601176883 ], [ 11.416852107948522, 54.16383274502499 ], [ 11.421536992219396, 54.165435788910315 ], [ 11.4241347698413, 54.170257862515641 ], [ 11.432405686739376, 54.182534315798847 ], [ 11.441846350376208, 54.193935773672543 ], [ 11.452364821539211, 54.204351201457456 ], [ 11.46385866463768, 54.213679167065095 ], [ 11.476215945285997, 54.221828828808277 ], [ 11.489316320392172, 54.228720820075473 ], [ 11.503032210135748, 54.234288022253558 ], [ 11.517230040421573, 54.238476218371751 ], [ 11.531771543709668, 54.24124462110111 ], [ 12.04132262774257, 54.312410255019174 ], [ 12.423432261955343, 54.60364744019023 ], [ 12.435590113641981, 54.612001899902893 ], [ 12.448509790894628, 54.619121752037053 ], [ 12.462066340133289, 54.624938136434992 ], [ 12.476128648225133, 54.629394799520178 ], [ 12.490560710554512, 54.632448638357722 ], [ 12.505222946401297, 54.634070117527514 ], [ 12.519973548905769, 54.634243554778116 ], [ 12.534669856563776, 54.632967272698778 ], [ 12.94726184356376, 54.576582602698778 ], [ 12.952853609246029, 54.575540440916512 ], [ 12.965820481523297, 54.580829585775895 ], [ 12.979537282177541, 54.584949429873355 ], [ 12.993584475539894, 54.587742294749489 ], [ 12.999721798220101, 54.588362690807571 ], [ 13.000388260974887, 54.591003704435593 ], [ 13.005395261711076, 54.60490443020494 ], [ 13.011745531594386, 54.61824513129956 ], [ 13.019377458829396, 54.630896373134505 ], [ 13.028216996682959, 54.642735410418943 ], [ 13.038178381902828, 54.653647378059482 ], [ 13.049164966812674, 54.66352640560806 ], [ 13.061070157010327, 54.672276644441631 ], [ 13.062948817640715, 54.673390769749844 ], [ 13.186395332499119, 54.78479299286132 ], [ 13.197331219985381, 54.793763611037257 ], [ 13.209063443601682, 54.801664279020898 ], [ 13.221487682696592, 54.808424745608569 ], [ 13.234493463351592, 54.813984898045746 ], [ 13.247965140693667, 54.818295296537954 ], [ 13.261782927187044, 54.821317613859819 ], [ 13.275823957760664, 54.823024976153313 ], [ 13.41969459176066, 54.83366749415331 ], [ 13.434492733225458, 54.834029771502578 ], [ 13.449254526216372, 54.832931726246962 ], [ 13.463836213021747, 54.830384051699468 ], [ 13.478095789893903, 54.826411558387072 ], [ 13.491894389952542, 54.821052932433368 ], [ 13.505097635539764, 54.814360358813794 ], [ 13.517576946856821, 54.806399013152287 ], [ 13.529210794138384, 54.79724642700851 ], [ 13.539885881170104, 54.78699173283681 ], [ 13.54949824862371, 54.775734795969846 ], [ 13.557954286464868, 54.76358524208014 ], [ 13.565171645574443, 54.750661389590519 ], [ 13.571080039705333, 54.737089097430236 ], [ 13.575621929965054, 54.723000539357862 ], [ 13.576022567939068, 54.72114937624459 ], [ 13.677086297371913, 54.718310759353216 ], [ 13.69193125168937, 54.717154479631127 ], [ 13.706588428744659, 54.71453211195039 ], [ 13.720913400199263, 54.710469496498753 ], [ 13.734765011189683, 54.705006665323147 ], [ 13.748006771233912, 54.698197447863393 ], [ 13.760508199176199, 54.690108940529718 ], [ 13.772146108917335, 54.680820845550649 ], [ 13.782805823261203, 54.670424685606214 ], [ 13.792382303916597, 54.659022901985225 ], [ 13.800781186519584, 54.64672784515313 ], [ 13.807919710477506, 54.633660667677283 ], [ 13.813727534472196, 54.61995013041831 ], [ 13.818147429586597, 54.605731333751194 ], [ 13.821135843224914, 54.591144386318319 ], [ 13.822663328269535, 54.576333024432202 ], [ 13.822714833245934, 54.561443195732025 ], [ 13.821289850636315, 54.546621621050321 ], [ 13.818402421880579, 54.532014348660731 ], [ 13.814080999015308, 54.517765315153063 ], [ 13.808368164314164, 54.504014927116344 ], [ 13.802992045472292, 54.494009963986301 ], [ 13.842257148709042, 54.471065703792647 ], [ 13.854874904640058, 54.462815156467492 ], [ 13.866600757191641, 54.453339731525155 ], [ 13.877316259985493, 54.442735143094943 ], [ 13.886913172491381, 54.431108511327594 ], [ 13.895294553397434, 54.418577280342291 ], [ 13.90237573984361, 54.405268031888163 ], [ 13.908085202626809, 54.391315206703752 ], [ 13.912365268738975, 54.376859746490574 ], [ 13.915172703939561, 54.362047670218367 ], [ 13.916479149477643, 54.347028599143385 ], [ 13.916271408552245, 54.331954245438922 ], [ 13.9145515796172, 54.316976879704811 ], [ 13.911337035184038, 54.302247792836077 ], [ 13.906660246336999, 54.287915767787972 ], [ 13.906204207505743, 54.286883417529317 ], [ 14.301337854991143, 54.058519784811807 ], [ 14.313522566095161, 54.050668851370844 ], [ 14.32489261239035, 54.041678501665302 ], [ 14.335341820717634, 54.031632687317234 ], [ 14.344772616675892, 54.020625215846614 ], [ 14.353096935768857, 54.008758874699438 ], [ 14.360237045748804, 53.996144471421559 ], [ 14.366126272478001, 53.982899798941091 ], [ 14.370709622529844, 53.969148535621486 ], [ 14.37394429671588, 53.955019090356615 ], [ 14.375800089743358, 53.94064340349226 ], [ 14.376259672271374, 53.926155714771049 ], [ 14.375318752731753, 53.911691309805661 ], [ 14.372986117403579, 53.897385256785753 ], [ 14.372092005905381, 53.893189643304972 ], [ 14.376816843179711, 53.889818240271232 ], [ 14.388268136906925, 53.8797446039531 ], [ 14.398637303818953, 53.868560210619194 ], [ 14.407817145036482, 53.856380687150768 ], [ 14.415712757208153, 53.843331948317775 ], [ 14.422242513643653, 53.829548895042471 ], [ 14.427338908189599, 53.815174019761997 ], [ 14.430949253123964, 53.800355933308211 ], [ 14.433036223854124, 53.785247828534004 ], [ 14.449482703192858, 53.595383684373893 ], [ 14.584247249400404, 53.330210659431842 ], [ 14.590526055942115, 53.316101288767591 ], [ 14.595320869358657, 53.301421114503299 ], [ 14.598580865106841, 53.286325745019539 ], [ 14.60027148755743, 53.270975189724723 ], [ 14.600374816281349, 53.255532162971392 ], [ 14.598889756004446, 53.240160359300269 ], [ 14.595832048217293, 53.225022718294554 ], [ 14.591234104316952, 53.210279697436576 ], [ 14.585144662049405, 53.196087571274525 ], [ 14.483145257049445, 52.988555910274506 ], [ 14.476020978748183, 52.975694251560945 ], [ 14.467671742063407, 52.963591861178891 ], [ 14.458177765572893, 52.952365017607548 ], [ 14.447630266392679, 52.942121587165488 ], [ 14.436130583772716, 52.932959987642576 ], [ 14.423789205440144, 52.924968242712325 ], [ 14.410724706044956, 52.918223136209747 ], [ 14.349204743517705, 52.890189737298698 ], [ 14.707529879657811, 52.706478896888591 ], [ 14.719986307068393, 52.699319337731957 ], [ 14.731700620668088, 52.691000880661051 ], [ 14.742565349766561, 52.681599841741381 ], [ 14.752480818021146, 52.671202468974919 ], [ 14.761356057898041, 52.659904151034617 ], [ 14.769109645236254, 52.647808542139607 ], [ 14.77567044625772, 52.63502661109969 ], [ 14.7809782701703, 52.621675623253637 ], [ 14.784984421376492, 52.607878064641127 ], [ 14.787652146221717, 52.593760518278437 ], [ 14.788956970183559, 52.579452502847182 ], [ 14.788886922408521, 52.565085284450376 ], [ 14.787442645536281, 52.550790672337108 ], [ 14.784637389803926, 52.536699809644261 ], [ 14.780496891484226, 52.52294197024932 ], [ 14.775059136773212, 52.509643372772324 ], [ 14.768374013293208, 52.496926022607703 ], [ 14.710255392158087, 52.398159914556629 ], [ 14.768434927727956, 52.376305713228803 ], [ 14.782104231051708, 52.370380734860198 ], [ 14.795118363596586, 52.363129005678161 ], [ 14.80734894515466, 52.354622061645401 ], [ 14.818675324995027, 52.344943821013089 ], [ 14.828985772044261, 52.334189756494496 ], [ 14.838178577077294, 52.322465953457517 ], [ 14.846163056046029, 52.309888063426868 ], [ 14.852860444648144, 52.29658016321919 ], [ 14.858204675311455, 52.28267353096539 ], [ 14.862143028929141, 52.268305351094327 ], [ 14.864636654916687, 52.253617361052818 ], [ 14.865660954460328, 52.238754453111568 ], [ 14.865205823176389, 52.22386324504977 ], [ 14.86327575078777, 52.209090633818178 ], [ 14.859889776834271, 52.194582346448144 ], [ 14.855559085579898, 52.179462680573828 ], [ 14.865394691147991, 52.170501131620178 ], [ 14.875338766941006, 52.159449891910455 ], [ 14.88414005612022, 52.147468579324489 ], [ 14.891712104778906, 52.134674884720923 ], [ 14.897980533678394, 52.121194478880184 ], [ 14.902883768865557, 52.107159778056932 ], [ 14.906373646505653, 52.092708643272559 ], [ 14.908415885989347, 52.077983026124542 ], [ 14.908990426666636, 52.063127574414509 ], [ 14.908091624899964, 52.048288211291954 ], [ 14.905728309500942, 52.033610701870273 ], [ 14.901923695006094, 52.019239221395232 ], [ 14.896715153643502, 52.005314939030491 ], [ 14.890153848230339, 51.991974631171445 ], [ 14.882304229607231, 51.979349337908687 ], [ 14.786515002803814, 51.841070064117439 ], [ 14.86099152171308, 51.770089428127108 ], [ 14.871551917452997, 51.758938649240505 ], [ 14.880916783432108, 51.746766504271157 ], [ 14.888987950121143, 51.733700590746288 ], [ 14.895680809514369, 51.719877875343585 ], [ 14.900925202053973, 51.705443258104047 ], [ 14.904666152095025, 51.690548053481351 ], [ 14.906864444201302, 51.675348404150625 ], [ 14.907497034230824, 51.66000364420411 ], [ 14.90655729090178, 51.644674628892062 ], [ 14.904055065306588, 51.629522048417691 ], [ 14.903619499848059, 51.62752626197431 ], [ 15.025675329575558, 51.583074908497665 ], [ 15.038579611587096, 51.577681384639448 ], [ 15.050925451507768, 51.571109411534238 ], [ 15.062605517022977, 51.563416124629228 ], [ 15.073518263930435, 51.554668407854194 ], [ 15.083568818945563, 51.544942312145722 ], [ 15.092669804511251, 51.53432239427525 ], [ 15.100742098441231, 51.522900981729052 ], [ 15.107715521792864, 51.510777370031157 ], [ 15.113529448989134, 51.498056959487513 ], [ 15.180999853989128, 51.330141939487504 ], [ 15.185677787594436, 51.316685287699848 ], [ 15.189057990623192, 51.302845534536075 ], [ 15.191109971459694, 51.288747523513365 ], [ 15.191815219910747, 51.274518427801681 ], [ 15.191167374179571, 51.26028660303961 ], [ 15.189172278253317, 51.246180429483509 ], [ 15.185847929186528, 51.232327153934669 ], [ 15.141800093186523, 51.08087080293469 ], [ 15.136808432072636, 51.06647746978112 ], [ 15.130382582873549, 51.052664679258704 ], [ 15.122588827429782, 51.039574908595007 ], [ 14.92169167642979, 50.73812246759497 ], [ 14.9128814952421, 50.726220521454806 ], [ 14.902940719657254, 50.715245249464793 ], [ 14.891966228327464, 50.705303612047565 ], [ 14.880064974067395, 50.696492496254415 ], [ 14.86735294153665, 50.688897771544426 ], [ 14.85395401690165, 50.682593452936622 ], [ 14.839998780492738, 50.677640979690395 ], [ 14.825623234222753, 50.674088616544161 ], [ 14.810967476169111, 50.671970983347336 ], [ 14.796174335236389, 50.67130871766971 ], [ 14.781387979205389, 50.672108273676336 ], [ 14.766752509734101, 50.674361859227886 ], [ 14.588682130734082, 50.710859323227922 ], [ 14.574396871231322, 50.714527393933743 ], [ 14.56054088965376, 50.719580626195011 ], [ 14.547248141555633, 50.72597016684859 ], [ 14.534647137315574, 50.733634243694901 ], [ 14.52285969973607, 50.742498762693323 ], [ 14.511999786296439, 50.752478024281622 ], [ 14.502172387445434, 50.763475551894111 ], [ 14.493472511584482, 50.775385024668672 ], [ 14.48679763508647, 50.786711156999203 ], [ 14.484269428994978, 50.784363140862396 ], [ 14.472717453461385, 50.775552650837788 ], [ 14.460367318086297, 50.767901047775723 ], [ 14.447334879694514, 50.761480111491444 ], [ 14.433742395806759, 50.756350076894726 ], [ 13.90136897580676, 50.584382099894718 ], [ 13.88842018641202, 50.58083087976248 ], [ 13.875205712175562, 50.578451808121919 ], [ 13.861831434695466, 50.577263947396773 ], [ 13.628089540156642, 50.567016455887568 ], [ 13.584128143042806, 50.510363478341951 ], [ 13.574487323290976, 50.499130777546902 ], [ 13.563786304986404, 50.488903012400819 ], [ 13.552129301290741, 50.479779787232182 ], [ 13.539629835345043, 50.471849949673278 ], [ 13.526409634710934, 50.465190725406721 ], [ 13.512597445912018, 50.459866966093848 ], [ 13.49832778062027, 50.45593051780893 ], [ 13.483739605697854, 50.453419716129929 ], [ 13.468974989851509, 50.452359012802809 ], [ 13.454177720079263, 50.452758737615277 ], [ 13.439491901383354, 50.454614997798885 ], [ 13.42506055338623, 50.457909715939209 ], [ 13.411024217516637, 50.462610806024955 ], [ 13.397519588329928, 50.468672485921466 ], [ 13.37577177680614, 50.479754326756627 ], [ 13.023628984147908, 50.274688625179238 ], [ 13.011207766550243, 50.268212220772767 ], [ 12.998236553907438, 50.262922787606556 ], [ 12.984828472754248, 50.258866456698676 ], [ 12.971100459710277, 50.256078604746143 ], [ 12.957172241634339, 50.25458354559219 ], [ 12.943165291444169, 50.254394318176651 ], [ 12.929201768708124, 50.25551257281878 ], [ 12.915403454248368, 50.25792855682419 ], [ 12.901890688047239, 50.26162119954158 ], [ 12.888781319719678, 50.266558296127336 ], [ 12.803219742378447, 50.303430191512817 ], [ 12.595609416314764, 50.261187075111046 ], [ 12.482282371879185, 50.118167201822331 ], [ 12.612778416855344, 50.055476883319905 ], [ 12.625626956382334, 50.048514704578075 ], [ 12.637737043031883, 50.040335297377659 ], [ 12.648993734911837, 50.031016295889863 ], [ 12.659290190056364, 50.020646150651409 ], [ 12.668528680507686, 50.009323289043557 ], [ 12.676621519892963, 49.997155181076664 ], [ 12.683491895692287, 49.984257319347449 ], [ 12.689074598298408, 49.970752122850492 ], [ 12.693316639948364, 49.956767775048405 ], [ 12.696177757652473, 49.942437007229024 ], [ 12.697630795347187, 49.92789583869731 ], [ 12.697661961644648, 49.913282285759315 ], [ 12.696270960732505, 49.8987350517517 ], [ 12.693470995181597, 49.88439221055048 ], [ 12.689288640634828, 49.870389896054121 ], [ 12.683763593566649, 49.856861010079868 ], [ 12.676948294507223, 49.843933960937065 ], [ 12.668907430307451, 49.831731444650224 ], [ 12.659717320169037, 49.820369280399802 ], [ 12.631481671878781, 49.788744155177049 ], [ 12.638782418797465, 49.780484721544397 ], [ 12.647086190292482, 49.769092190129001 ], [ 12.654283755203378, 49.756970414168123 ], [ 12.760714465190601, 49.556864003586512 ], [ 13.078544195243126, 49.446175039771077 ], [ 13.091128637857954, 49.441143985443503 ], [ 13.103207610305777, 49.434997593967381 ], [ 13.114682505383094, 49.427786041670025 ], [ 13.125459647297628, 49.419568200364246 ], [ 13.497674918386757, 49.108174425294486 ], [ 13.777922399923547, 49.030454261481843 ], [ 13.791516193665151, 49.025975736971454 ], [ 13.80462126584521, 49.020221999643873 ], [ 13.817118302988165, 49.013245433674356 ], [ 13.828893527396708, 49.005109556327206 ], [ 13.839839733026468, 48.995888439670836 ], [ 13.8498572615299, 48.985666036197955 ], [ 13.951753567529915, 48.871241940197962 ], [ 13.961277498813185, 48.859388164132149 ], [ 13.969552395770956, 48.846631073772471 ], [ 13.976493222886866, 48.833101765103734 ], [ 13.982028653977547, 48.818939269675774 ], [ 13.986101805163544, 48.804289125870234 ], [ 13.988670819426442, 48.789301883301178 ], [ 13.989709296745133, 48.774131555718512 ], [ 13.989206565390953, 48.758934038312951 ], [ 13.98716779159383, 48.743865505686614 ], [ 13.95045569359382, 48.547898133686573 ], [ 13.946991220998891, 48.533417934605389 ], [ 13.942108293317666, 48.519352524797931 ], [ 13.935855019049496, 48.505840482142624 ], [ 13.928293007880349, 48.49301493252986 ], [ 13.919496763680273, 48.481002238254035 ], [ 13.909552950462333, 48.469920753043176 ], [ 13.89855953853511, 48.459879655992047 ], [ 13.822898453535075, 48.397369550992103 ], [ 13.810500848917917, 48.388158266260966 ], [ 13.79722176675971, 48.380270659293267 ], [ 13.783201993876425, 48.373790355678274 ], [ 13.768590169997928, 48.368786060564553 ], [ 13.753541211867324, 48.365310830237689 ], [ 13.738214670790468, 48.363401509609602 ], [ 13.722773041049143, 48.363078341583275 ], [ 13.707380037112376, 48.364344752434484 ], [ 13.692198857911135, 48.367187315485893 ], [ 13.67739045657885, 48.371575893458697 ], [ 13.568491148000163, 48.410050756579508 ], [ 13.454302228602119, 48.239978259359958 ], [ 13.446048997867761, 48.228835697406375 ], [ 13.436802095781575, 48.21850287077217 ], [ 13.426640541233448, 48.209068078055346 ], [ 13.415651169225248, 48.200611943754765 ], [ 13.403927888827118, 48.193206729297991 ], [ 13.391570880682726, 48.186915715535214 ], [ 13.378685740921108, 48.181792661976289 ], [ 13.02051146672361, 48.058230688926145 ], [ 13.114358736730329, 47.953266750873027 ], [ 13.123614353062274, 47.941832491607691 ], [ 13.131705423910317, 47.929546593546782 ], [ 13.138554128017807, 47.91652722448837 ], [ 13.144094593416741, 47.902899606875806 ], [ 13.148273530995221, 47.888794813387555 ], [ 13.151050747040955, 47.874348506258521 ], [ 13.152399529831021, 47.859699632458245 ], [ 13.152306906549622, 47.844989087276005 ], [ 13.150773768062791, 47.830358359166603 ], [ 13.148725517704893, 47.820383165529947 ], [ 13.152774503142584, 47.818402428627223 ], [ 13.165493477065638, 47.810520816531117 ], [ 13.177363929426837, 47.801411235441442 ], [ 13.188267740200008, 47.791164332616113 ], [ 13.198096408177724, 47.779882072529027 ], [ 13.206752130640812, 47.767676722246023 ], [ 13.214148776569759, 47.754669734282217 ], [ 13.220212743713864, 47.740990538057147 ], [ 13.224883690989566, 47.726775251973621 ], [ 13.228115138920124, 47.712165328936145 ], [ 13.229874932141739, 47.697306148786957 ], [ 13.230145559373872, 47.682345571666069 ], [ 13.228924327669807, 47.66743246669045 ], [ 13.226223389213509, 47.652715230593138 ], [ 13.222069620396157, 47.638340311062898 ], [ 13.145133673396176, 47.414598483062882 ], [ 13.139704030757779, 47.401004715575894 ], [ 13.132975249966076, 47.388004906241591 ], [ 13.125011410406842, 47.375722854574796 ], [ 13.115888353151913, 47.364275524755392 ], [ 13.105692958711055, 47.353771931757457 ], [ 13.094522319653299, 47.34431210318013 ], [ 13.082482815977004, 47.33598612666686 ], [ 13.069689102034051, 47.328873291984621 ], [ 13.056263014655901, 47.32304133593324 ], [ 13.04233241287961, 47.318545797275704 ], [ 13.028029960323289, 47.315429487832589 ], [ 13.013491861806699, 47.313722084777403 ], [ 12.998856566248316, 47.31343984801552 ], [ 12.984263448191474, 47.314585465338233 ], [ 12.969851480515601, 47.317148026826395 ], [ 12.955757910972569, 47.321103128747545 ], [ 12.94211695515175, 47.326413105957052 ], [ 12.733310803151728, 47.419668381957031 ], [ 12.720688898761981, 47.426035046532725 ], [ 12.708722407308358, 47.433561664002326 ], [ 12.697517616172199, 47.442181382317813 ], [ 12.687174047248703, 47.451817640417737 ], [ 12.677783572985104, 47.462384848248945 ], [ 12.669429600361875, 47.473789146984672 ], [ 12.662186330064939, 47.485929242686467 ], [ 12.656118097428941, 47.498697306005496 ], [ 12.655638796020298, 47.500012865087058 ], [ 12.52464438496553, 47.477174578450025 ], [ 12.510487692114252, 47.475395252056934 ], [ 12.496225984614416, 47.474969043085061 ], [ 12.481988301099186, 47.475899807834452 ], [ 12.467903462834894, 47.478179124830255 ], [ 12.454098908157938, 47.48178637101946 ], [ 12.440699539424294, 47.486688908366425 ], [ 12.427826592904349, 47.492842379158851 ], [ 12.415596541848148, 47.500191107352308 ], [ 12.404120042646017, 47.508668602322054 ], [ 12.393500933619599, 47.518198160464152 ], [ 12.383835295502161, 47.528693559202708 ], [ 12.375172862244229, 47.539047396025367 ], [ 12.335241714797473, 47.535620779252923 ], [ 12.32933375759163, 47.525373596026569 ], [ 12.320807135544676, 47.513449238613489 ], [ 12.311157276222533, 47.502414122016496 ], [ 12.300476343751763, 47.492373640713232 ], [ 12.288866349859077, 47.483423689592797 ], [ 12.2764381795751, 47.47564974808035 ], [ 12.263310532190747, 47.469126063738017 ], [ 12.24960878758095, 47.463914943139308 ], [ 12.235463808723305, 47.460066156789928 ], [ 12.221010691848553, 47.457616463778308 ], [ 12.206387476159998, 47.456589260695971 ], [ 11.675051978726321, 47.445298886152798 ], [ 11.344396403180166, 47.265992418905981 ], [ 11.330762809830196, 47.259465603593142 ], [ 11.316541571168559, 47.254344026034509 ], [ 11.301877095458533, 47.250679692819524 ], [ 11.28691829177334, 47.24850981308365 ], [ 11.271817057912619, 47.247856420671582 ], [ 10.969253989912579, 47.250024433671598 ], [ 10.955170198947043, 47.250788491147958 ], [ 10.941220434786029, 47.252872005400413 ], [ 10.92752803625444, 47.256256554741206 ], [ 10.914214066642348, 47.26091221419572 ], [ 10.901396243306674, 47.266797820088371 ], [ 10.889187896856443, 47.273861333997125 ], [ 10.877696969124061, 47.282040302858618 ], [ 10.867025058782252, 47.291262411155778 ], [ 10.857266523044933, 47.301446120305769 ], [ 10.848507643394484, 47.312501389594985 ], [ 10.840825862711737, 47.324330472286817 ], [ 10.801970157020241, 47.390811118517369 ], [ 10.58923591665773, 47.399865918188652 ], [ 10.585686811421699, 47.365318685851882 ], [ 10.583493059669529, 47.350901388433698 ], [ 10.579909659574618, 47.336765255463384 ], [ 10.574970481595773, 47.323043902305336 ], [ 10.568722211065314, 47.309867023806511 ], [ 10.561223906917215, 47.297359168414914 ], [ 10.552546443459406, 47.285638560942047 ], [ 10.542771840466626, 47.274815985096708 ], [ 10.531992487925827, 47.264993736352366 ], [ 10.520310272761863, 47.256264655045754 ], [ 10.507835615797694, 47.248711248845844 ], [ 10.4946864280518, 47.242404912887629 ], [ 10.232406171051757, 47.131958303887622 ], [ 10.218458980836258, 47.126881885987615 ], [ 10.204078378088985, 47.123208685989262 ], [ 10.189405161139845, 47.120974667644163 ], [ 10.174582993260612, 47.120201703891688 ], [ 10.159756996079336, 47.120897362704298 ], [ 10.145072328716186, 47.123054832990633 ], [ 10.13067276655223, 47.126652991281922 ], [ 10.116699293546185, 47.131656608548674 ], [ 10.103288721881579, 47.138016695122872 ], [ 10.090572352459118, 47.145670980348434 ], [ 10.078674689349226, 47.15454452226394 ], [ 10.067712220791309, 47.16455044134814 ], [ 10.057792278674842, 47.175590771144329 ], [ 10.049011987668887, 47.187557417435315 ], [ 10.041457314288998, 47.200333216577675 ], [ 10.035202225211924, 47.213793082633501 ], [ 10.032784025863725, 47.220716326568727 ], [ 10.028119006200425, 47.222961068763311 ], [ 10.015420546972708, 47.230706160708095 ], [ 10.003551579539719, 47.239670809505782 ], [ 9.992628808723614, 47.249766867830203 ], [ 9.982759635613215, 47.260895063465981 ], [ 9.974041101513857, 47.272945975429373 ], [ 9.966558933762583, 47.285801109879586 ], [ 9.960386702790998, 47.299334065241389 ], [ 9.955585098724164, 47.31341177508272 ], [ 9.952201334628574, 47.327895816526201 ], [ 9.950268682276963, 47.342643771329463 ], [ 9.947440294511935, 47.377614766653338 ], [ 9.903940848394868, 47.408989903567765 ], [ 9.81120437199074, 47.436209713995723 ], [ 9.741900862376603, 47.405284236312617 ], [ 9.727487973659606, 47.399723842918661 ], [ 9.712579624094829, 47.395675330955179 ], [ 9.697333941136604, 47.393181641519554 ], [ 9.681912630212164, 47.392269224270798 ], [ 9.666479259570856, 47.392947756887601 ], [ 9.651197525375066, 47.3952100424207 ], [ 9.636229515434422, 47.399032085628313 ], [ 9.621733989999216, 47.40437334748497 ], [ 9.301113881438235, 47.541654678966523 ], [ 9.300565897853422, 47.541252549427966 ], [ 9.287955990927601, 47.533774166583378 ], [ 9.274676264790326, 47.52756249721299 ], [ 9.260853576806973, 47.522676879589504 ], [ 9.246619971099681, 47.519163984598563 ], [ 9.232111417168211, 47.517057369905352 ], [ 9.217466511012825, 47.516377159387957 ], [ 9.133658294901863, 47.516584577528853 ], [ 8.907119782704347, 47.498394104502438 ], [ 8.891045142984721, 47.497968044134318 ], [ 8.875017261313129, 47.499265186637878 ], [ 8.859220334073216, 47.502270624930361 ], [ 8.843835903463123, 47.506949819770966 ], [ 8.82904077116762, 47.513248996694315 ], [ 8.728992082120678, 47.562338042177274 ], [ 8.72518262530156, 47.550429895141306 ], [ 8.72021672637579, 47.537115829302273 ], [ 8.714013239106391, 47.524331415080049 ], [ 8.70662783620773, 47.512191385206464 ], [ 8.698126797404129, 47.500804689436102 ], [ 8.688586414607633, 47.490273516785187 ], [ 8.678092307242173, 47.480692378444196 ], [ 8.666738653858703, 47.472147259594522 ], [ 8.65462734693711, 47.464714847741156 ], [ 8.641867078460074, 47.458461844486642 ], [ 8.628572364465319, 47.453444366922696 ], [ 8.614862517330328, 47.449707444011757 ], [ 8.600860575012693, 47.447284612478065 ], [ 8.586692196855514, 47.446197615834912 ], [ 8.572484535867401, 47.446456209249199 ], [ 8.212723181756839, 47.470084474929116 ], [ 7.715860191892603, 47.38451333225926 ], [ 7.702199567012678, 47.382801769506145 ], [ 7.688439554703145, 47.382349906242105 ], [ 7.674696070603691, 47.383161549005841 ], [ 7.661084891118802, 47.385229860442251 ], [ 7.64772067810643, 47.388537416901009 ], [ 7.634716012955705, 47.393056355214974 ], [ 7.622180448190703, 47.398748607422164 ], [ 7.565849872190708, 47.427515575422177 ], [ 7.552949730942075, 47.434932173036998 ], [ 7.540847893469108, 47.443590411552577 ], [ 7.532445040941836, 47.450964160891616 ], [ 7.521558386308256, 47.455827195298063 ], [ 7.509143517067201, 47.462857455375364 ], [ 7.497452730513966, 47.47103541629442 ], [ 7.486591791134335, 47.480287093483931 ], [ 7.47665895593295, 47.490528788650707 ], [ 7.467744085519505, 47.501667846983366 ], [ 7.390140360519488, 47.608694912983367 ], [ 7.38189416573996, 47.621365404042002 ], [ 7.374965209107334, 47.634801572840885 ], [ 7.369423870673907, 47.648866943094639 ], [ 7.365326435925274, 47.663418647478991 ], [ 7.362714524067212, 47.678308878788634 ], [ 7.361614665283545, 47.693386391271297 ], [ 7.362038031258961, 47.708498036888493 ], [ 7.363980321703953, 47.723490320898485 ], [ 7.367421808034502, 47.738210960960842 ], [ 7.372327533762816, 47.752510433926219 ], [ 7.463448763089175, 47.98005278510167 ], [ 7.434102178562964, 48.078598402859896 ], [ 7.430628846276611, 48.092737559830539 ], [ 7.428542654664551, 48.107146848555857 ], [ 7.427863258414537, 48.121690514453668 ], [ 7.428597058338976, 48.136231536930879 ], [ 7.430737141070801, 48.150632920298904 ], [ 7.434263344196542, 48.164758984454487 ], [ 7.439142446212961, 48.178476643165986 ], [ 7.445328479517613, 48.191656657921882 ], [ 7.452763163484533, 48.20417485552872 ], [ 7.461376453544911, 48.215913297987051 ], [ 7.608476959994732, 48.397232026013953 ], [ 7.696266626801735, 48.685039552682056 ], [ 7.70119078449147, 48.698756196045302 ], [ 7.707422811871152, 48.711930241317994 ], [ 7.714903880365534, 48.724437329240061 ], [ 7.723563370804637, 48.736159396440137 ], [ 7.733319540048733, 48.746985789920352 ], [ 7.744080292620456, 48.756814311589359 ], [ 7.877327021513955, 48.867136059611887 ], [ 7.609409020691765, 48.906477166630992 ], [ 7.595788974903124, 48.909125752743705 ], [ 7.582471934132387, 48.913021530046322 ], [ 7.569571845287147, 48.918131164423265 ], [ 7.557199087636865, 48.924410935422955 ], [ 7.545459528355561, 48.931807110350704 ], [ 7.429947960326143, 49.012277412677086 ], [ 7.355202249576486, 48.978331867696888 ], [ 7.34064018204916, 48.972614541650316 ], [ 7.325561837202483, 48.968444991977044 ], [ 7.310131228310331, 48.965868572560368 ], [ 7.294516200365508, 48.964913308159481 ], [ 7.053785211365523, 48.962763823159463 ], [ 7.039298387220326, 48.963335146637874 ], [ 7.024934386987665, 48.965302373530484 ], [ 7.010827398828511, 48.968647126048737 ], [ 6.997109209902936, 48.973338157591272 ], [ 6.983907975217478, 48.97933164464893 ], [ 6.971347020404016, 48.986571596202985 ], [ 6.959543689614536, 48.994990376791939 ], [ 6.948608249294757, 49.004509338360485 ], [ 6.897050440645342, 49.05396630332239 ], [ 6.78079002822606, 49.019712831781014 ], [ 6.766943965115574, 49.016339161131107 ], [ 6.752840229803812, 49.014294713144636 ], [ 6.738606128947564, 49.013597941928424 ], [ 6.724370145941639, 49.014255136852789 ], [ 6.710260781169977, 49.016260365780816 ], [ 6.696405392103403, 49.019595528614538 ], [ 6.682929043713822, 49.024230520674536 ], [ 6.669953379581552, 49.030123504438315 ], [ 6.657595523885668, 49.037221287184586 ], [ 6.645967024188494, 49.045459801134712 ], [ 6.635172844557148, 49.054764681757263 ], [ 6.625310418110677, 49.06505193901571 ], [ 6.616468767544909, 49.076228715500299 ], [ 6.461450375499175, 49.292566273329811 ], [ 6.332028436149325, 49.323624109786465 ], [ 6.318244263747466, 49.32763851496118 ], [ 6.304907016219613, 49.33295233525282 ], [ 6.292138873931343, 49.339516891613876 ], [ 6.280056803767257, 49.347272047206189 ], [ 6.26877148761629, 49.356146758304796 ], [ 6.258386308432837, 49.366059725117942 ], [ 6.248996403162251, 49.376920136561367 ], [ 6.240687791206684, 49.388628502163911 ], [ 6.233536586415265, 49.401077563483632 ], [ 6.227608299817455, 49.414153276685028 ], [ 6.22295723948711, 49.427735857276154 ], [ 6.219626013035003, 49.441700877434961 ], [ 6.217645137287405, 49.455920405872412 ], [ 6.208203690287433, 49.559912869872399 ], [ 6.207599292264949, 49.575208802810785 ], [ 6.208556995689687, 49.590486684390882 ], [ 6.211066826363044, 49.605587399983733 ], [ 6.215102645139078, 49.620353680091874 ], [ 6.220622420155996, 49.634631738264744 ], [ 6.227568664585594, 49.64827287273917 ], [ 6.235869035341612, 49.661135015124394 ], [ 6.264557822383026, 49.700971055145416 ], [ 6.26006081911211, 49.702765223566246 ], [ 6.247272920826841, 49.70935053725966 ], [ 6.235174574730546, 49.717130429336635 ], [ 6.22387703006192, 49.726033360508751 ], [ 6.213484172363126, 49.73597746468397 ], [ 6.004638246363144, 49.955932862683937 ], [ 5.994877150702663, 49.96729996284764 ], [ 5.986298753841368, 49.979584142181842 ], [ 5.978988645286906, 49.992662837359376 ], [ 5.973019760414287, 50.006405557905254 ], [ 5.968451652765477, 50.020675188143407 ], [ 5.965329899863979, 50.035329355245182 ], [ 5.963685648472777, 50.050221849730235 ], [ 5.963535303832772, 50.06520408424695 ], [ 5.964880365982247, 50.080126576077703 ], [ 5.967707414790496, 50.094840438577414 ], [ 5.971988243854911, 50.10919886666499 ], [ 6.034259904854865, 50.285398601665001 ], [ 6.04015998470762, 50.299699092131412 ], [ 6.047501564116922, 50.313315853186296 ], [ 6.056206556422551, 50.326104053951369 ], [ 6.066182373403568, 50.337927676298605 ], [ 6.077322910067082, 50.348660961569095 ], [ 6.089509673204392, 50.358189748169913 ], [ 6.102613041710934, 50.366412685822034 ], [ 6.116493645264971, 50.373242313544282 ], [ 6.151501232565575, 50.3882773982278 ], [ 6.142955743420525, 50.391104426467102 ], [ 6.129507016421242, 50.397071830961949 ], [ 6.116707612507484, 50.404328099545651 ], [ 6.104680677972203, 50.412803417828201 ], [ 6.093541926985653, 50.422416242634988 ], [ 6.083398528280174, 50.433074086554278 ], [ 6.074348074052788, 50.444674407781918 ], [ 6.066477641006063, 50.457105596701865 ], [ 6.059862952561199, 50.470248049710484 ], [ 6.054567650303889, 50.483975319952961 ], [ 6.050642681672581, 50.498155333900407 ], [ 6.048125809780322, 50.512651662062538 ], [ 6.047041250086319, 50.527324831610272 ], [ 6.047399437412905, 50.542033668278933 ], [ 6.049196925549479, 50.556636654641501 ], [ 6.052416420409368, 50.570993291683422 ], [ 6.056692484125143, 50.583951865507615 ], [ 5.903983586367791, 50.665742284500411 ], [ 5.891466138352912, 50.673252346645199 ], [ 5.879737953355376, 50.681943561456002 ], [ 5.868910103822691, 50.691733618285319 ], [ 5.859085135523797, 50.702529799839446 ], [ 5.850356096383493, 50.714229860262826 ], [ 5.842805655266733, 50.726722993463355 ], [ 5.836505319058407, 50.739890882507765 ], [ 5.8315147554533, 50.753608820148941 ], [ 5.827881227869765, 50.767746889873045 ], [ 5.825639147838817, 50.782171196281276 ], [ 5.82480974910776, 50.796745133153955 ], [ 5.825400886544761, 50.811330677187499 ], [ 5.827406961748878, 50.825789695152046 ], [ 5.830808976070035, 50.839985252090138 ], [ 5.835574710536822, 50.85378290816702 ], [ 5.841659030988112, 50.86705199189084 ], [ 5.849004315518717, 50.879666837644486 ], [ 5.852162781451399, 50.884047909797523 ] ] ] } } +] +} diff --git a/shakyground2/regionalization_files/global_stable_mapping.json b/shakyground2/regionalization_files/global_stable_mapping.json new file mode 100644 index 0000000..959a0d2 --- /dev/null +++ b/shakyground2/regionalization_files/global_stable_mapping.json @@ -0,0 +1 @@ +{"GLOBAL STABLE": [{"id": "GlobalCratonLowStressLowSite", "model": "ESHM20Craton", "epsilon": -1.732051, "site_epsilon": -1.732051, "weight": 0.027889}, {"id": "GlobalCratonLowStressAveSite", "model": "ESHM20Craton", "epsilon": -1.732051, "weight": 0.111222}, {"id": "GlobalCratonLowStressHighSite", "model": "ESHM20Craton", "epsilon": -1.732051, "site_epsilon": 1.732051, "weight": 0.027889}, {"id": "GlobalCratonAveStressLowSite", "model": "ESHM20Craton", "site_epsilon": -1.732051, "weight": 0.111222}, {"id": "GlobalCratonAveStressAveSite", "model": "ESHM20Craton", "weight": 0.443556}, {"id": "GlobalCratonAveStressHighSite", "model": "ESHM20Craton", "site_epsilon": 1.732051, "weight": 0.111222}, {"id": "GlobalCratonHighStressLowSite", "model": "ESHM20Craton", "epsilon": 1.732051, "site_epsilon": -1.732051, "weight": 0.027889}, {"id": "GlobalCratonHighStressAveSite", "model": "ESHM20Craton", "epsilon": 1.732051, "weight": 0.111222}, {"id": "GlobalCratonHighStressHighSite", "model": "ESHM20Craton", "epsilon": 1.732051, "site_epsilon": 1.732051, "weight": 0.027889}]} \ No newline at end of file diff --git a/shakyground2/regionalization_files/global_volcanic_mapping.json b/shakyground2/regionalization_files/global_volcanic_mapping.json new file mode 100644 index 0000000..6229cf0 --- /dev/null +++ b/shakyground2/regionalization_files/global_volcanic_mapping.json @@ -0,0 +1 @@ +{"GLOBAL VOLCANIC": [{"id": "Faccioli2010", "model": "FaccioliEtAl2010", "weight": 1.0}]} \ No newline at end of file diff --git a/shakyground2/regionalization_files/stable.geojson b/shakyground2/regionalization_files/stable.geojson new file mode 100644 index 0000000..053299b --- /dev/null +++ b/shakyground2/regionalization_files/stable.geojson @@ -0,0 +1,17 @@ +{ +"type": "FeatureCollection", +"features": [ +{ "type": "Feature", "properties": { "id": "GLOBAL-STABLE-0", "REGION": "GLOBAL STABLE", "UPPER DEPTH": 0.0, "LOWER DEPTH": 40.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 180.0, -90.0 ], [ 179.500693481000042, -90.0 ], [ 179.001386963000186, -90.0 ], [ 178.502080444000171, -90.0 ], [ 178.002773925000042, -90.0 ], [ 177.503467406000027, -90.0 ], [ 177.004160887999944, -90.0 ], [ 176.504854369000157, -90.0 ], [ 176.005547850000141, -90.0 ], [ 175.506241331000183, -90.0 ], [ 175.0069348130001, -90.0 ], [ 174.507628294000085, -90.0 ], [ 174.008321775000127, -90.0 ], [ 173.509015257000215, -90.0 ], [ 173.009708738000143, -90.0 ], [ 172.510402219000071, -90.0 ], [ 172.011095700000112, -90.0 ], [ 171.51178918200003, -90.0 ], [ 171.012482663000014, -90.0 ], [ 170.513176144000056, -90.0 ], [ 170.013869626000144, -90.0 ], [ 169.514563107000072, -90.0 ], [ 169.015256588000057, -90.0 ], [ 168.515950069000098, -90.0 ], [ 168.016643551000016, -90.0 ], [ 167.517337032000057, -90.0 ], [ 167.018030513000156, -90.0 ], [ 166.51872399400014, -90.0 ], [ 166.019417476000058, -90.0 ], [ 165.520110957000099, -90.0 ], [ 165.020804438000027, -90.0 ], [ 164.52149792, -90.0 ], [ 164.0221914010001, -90.0 ], [ 163.522884882000142, -90.0 ], [ 163.02357836300007, -90.0 ], [ 162.524271845000101, -90.0 ], [ 162.024965326000085, -90.0 ], [ 161.525658807000013, -90.0 ], [ 161.026352288, -90.0 ], [ 160.527045770000143, -90.0 ], [ 160.027739251000071, -90.0 ], [ 159.528432732000056, -90.0 ], [ 159.029126214000087, -90.0 ], [ 158.529819695000015, -90.0 ], [ 158.030513176, -90.0 ], [ 157.531206657000098, -90.0 ], [ 157.031900139000129, -90.0 ], [ 156.532593620000057, -90.0 ], [ 156.033287101000042, -90.0 ], [ 155.533980583000016, -90.0 ], [ 155.034674064, -90.0 ], [ 154.535367545000099, -90.0 ], [ 154.036061026000141, -90.0 ], [ 153.536754508000058, -90.0 ], [ 153.037447989000043, -90.0 ], [ 152.538141470000085, -90.0 ], [ 152.038834951000013, -90.0 ], [ 151.5395284330001, -90.0 ], [ 151.040221914000085, -90.0 ], [ 150.540915395000127, -90.0 ], [ 150.041608877000044, -90.0 ], [ 149.542302358000086, -90.0 ], [ 149.042995839000071, -90.0 ], [ 148.54368932, -90.0 ], [ 148.044382802000086, -90.0 ], [ 147.545076283000128, -90.0 ], [ 147.045769764000056, -90.0 ], [ 146.546463245000041, -90.0 ], [ 146.047156727000072, -90.0 ], [ 145.547850208, -90.0 ], [ 145.048543689000098, -90.0 ], [ 144.549237171000129, -90.0 ], [ 144.049930652000114, -90.0 ], [ 143.550624133000042, -90.0 ], [ 143.051317614000084, -90.0 ], [ 142.552011096, -90.0 ], [ 142.0527045770001, -90.0 ], [ 141.553398058000084, -90.0 ], [ 141.054091540000115, -90.0 ], [ 140.554785021000043, -90.0 ], [ 140.055478502000028, -90.0 ], [ 139.55617198300007, -90.0 ], [ 139.056865465000158, -90.0 ], [ 138.557558946000086, -90.0 ], [ 138.058252427000127, -90.0 ], [ 137.558945908000112, -90.0 ], [ 137.059639390000029, -90.0 ], [ 136.560332871000071, -90.0 ], [ 136.061026352, -90.0 ], [ 135.561719834000087, -90.0 ], [ 135.062413315000072, -90.0 ], [ 134.563106796000113, -90.0 ], [ 134.063800277000041, -90.0 ], [ 133.564493759000015, -90.0 ], [ 133.065187240000057, -90.0 ], [ 132.565880721000156, -90.0 ], [ 132.066574202000083, -90.0 ], [ 131.567267684000115, -90.0 ], [ 131.067961165000042, -90.0 ], [ 130.568654646000027, -90.0 ], [ 130.069348128000058, -90.0 ], [ 129.570041609000157, -90.0 ], [ 129.070735090000085, -90.0 ], [ 128.571428571000069, -90.0 ], [ 128.072122053000101, -90.0 ], [ 127.572815534000028, -90.0 ], [ 127.073509015000013, -90.0 ], [ 126.574202497000158, -90.0 ], [ 126.074895978000086, -90.0 ], [ 125.575589459000071, -90.0 ], [ 125.076282940000112, -90.0 ], [ 124.57697642200003, -90.0 ], [ 124.077669903000015, -90.0 ], [ 123.578363384000056, -90.0 ], [ 123.079056865000155, -90.0 ], [ 122.579750347000072, -90.0 ], [ 122.080443828000057, -90.0 ], [ 121.581137309000098, -90.0 ], [ 121.081830791000016, -90.0 ], [ 120.582524272000057, -90.0 ], [ 120.083217753000156, -90.0 ], [ 119.583911234000141, -90.0 ], [ 119.084604716000058, -90.0 ], [ 118.5852981970001, -90.0 ], [ 118.085991678000028, -90.0 ], [ 117.58668516, -90.0 ], [ 117.0873786410001, -90.0 ], [ 116.588072122000142, -90.0 ], [ 116.08876560300007, -90.0 ], [ 115.589459085000101, -90.0 ], [ 115.090152566000086, -90.0 ], [ 114.590846047000014, -90.0 ], [ 114.091539528000055, -90.0 ], [ 113.592233010000143, -90.0 ], [ 113.092926491000071, -90.0 ], [ 112.593619972000056, -90.0 ], [ 112.094313454000087, -90.0 ], [ 111.595006935000072, -90.0 ], [ 111.095700416000113, -90.0 ], [ 110.596393897000041, -90.0 ], [ 110.097087379000129, -90.0 ], [ 109.597780860000057, -90.0 ], [ 109.098474341000099, -90.0 ], [ 108.599167822000084, -90.0 ], [ 108.099861304000115, -90.0 ], [ 107.600554785000043, -90.0 ], [ 107.101248266000027, -90.0 ], [ 106.601941748000058, -90.0 ], [ 106.102635229000043, -90.0 ], [ 105.603328710000085, -90.0 ], [ 105.10402219100007, -90.0 ], [ 104.604715673000101, -90.0 ], [ 104.105409154000029, -90.0 ], [ 103.606102635000127, -90.0 ], [ 103.106796117000044, -90.0 ], [ 102.607489598000086, -90.0 ], [ 102.108183079000071, -90.0 ], [ 101.608876560000112, -90.0 ], [ 101.10957004200003, -90.0 ], [ 100.610263523000128, -90.0 ], [ 100.110957004000056, -90.0 ], [ 99.611650485000041, -90.0 ], [ 99.112343967000072, -90.0 ], [ 98.613037448000057, -90.0 ], [ 98.113730929000099, -90.0 ], [ 97.61442441100013, -90.0 ], [ 97.115117892000114, -90.0 ], [ 96.615811373000042, -90.0 ], [ 96.116504854000084, -90.0 ], [ 95.617198336000058, -90.0 ], [ 95.1178918170001, -90.0 ], [ 94.618585298000028, -90.0 ], [ 94.119278779000126, -90.0 ], [ 93.619972261000044, -90.0 ], [ 93.120665742000028, -90.0 ], [ 92.62135922300007, -90.0 ], [ 92.122052705000101, -90.0 ], [ 91.622746186000086, -90.0 ], [ 91.123439667000127, -90.0 ], [ 90.624133148000112, -90.0 ], [ 90.12482663000003, -90.0 ], [ 89.625520111000071, -90.0 ], [ 89.126213592000056, -90.0 ], [ 88.626907074000087, -90.0 ], [ 88.127600555000072, -90.0 ], [ 87.628294036000113, -90.0 ], [ 87.128987517000041, -90.0 ], [ 86.629680999000129, -90.0 ], [ 86.130374480000057, -90.0 ], [ 85.631067961000099, -90.0 ], [ 85.131761442000084, -90.0 ], [ 84.632454924000115, -90.0 ], [ 84.133148405000043, -90.0 ], [ 83.633841886000141, -90.0 ], [ 83.134535368000058, -90.0 ], [ 82.635228849000043, -90.0 ], [ 82.135922330000085, -90.0 ], [ 81.63661581100007, -90.0 ], [ 81.137309293000101, -90.0 ], [ 80.638002774000029, -90.0 ], [ 80.138696255000127, -90.0 ], [ 79.639389736000055, -90.0 ], [ 79.140083218000086, -90.0 ], [ 78.640776699000071, -90.0 ], [ 78.141470180000113, -90.0 ], [ 77.64216366200003, -90.0 ], [ 77.142857143000128, -90.0 ], [ 76.643550624000056, -90.0 ], [ 76.144244105000041, -90.0 ], [ 75.644937587000072, -90.0 ], [ 75.145631068000057, -90.0 ], [ 74.646324549000099, -90.0 ], [ 74.14701803100013, -90.0 ], [ 73.647711512000114, -90.0 ], [ 73.148404993000042, -90.0 ], [ 72.649098474000141, -90.0 ], [ 72.149791956000058, -90.0 ], [ 71.6504854370001, -90.0 ], [ 71.151178918000085, -90.0 ], [ 70.651872399000126, -90.0 ], [ 70.152565881000044, -90.0 ], [ 69.653259362000142, -90.0 ], [ 69.15395284300007, -90.0 ], [ 68.654646325000101, -90.0 ], [ 68.155339806000086, -90.0 ], [ 67.656033287000128, -90.0 ], [ 67.156726768000112, -90.0 ], [ 66.65742025000003, -90.0 ], [ 66.158113731000071, -90.0 ], [ 65.658807212000056, -90.0 ], [ 65.159500693000098, -90.0 ], [ 64.660194175000072, -90.0 ], [ 64.160887656000114, -90.0 ], [ 63.661581137000042, -90.0 ], [ 63.162274619000129, -90.0 ], [ 62.662968100000057, -90.0 ], [ 62.163661581000099, -90.0 ], [ 61.664355062000084, -90.0 ], [ 61.165048544000115, -90.0 ], [ 60.665742025000043, -90.0 ], [ 60.166435506000141, -90.0 ], [ 59.667128988000059, -90.0 ], [ 59.167822469000043, -90.0 ], [ 58.668515950000085, -90.0 ], [ 58.16920943100007, -90.0 ], [ 57.669902913000101, -90.0 ], [ 57.170596394000142, -90.0 ], [ 56.671289875000127, -90.0 ], [ 56.171983356000055, -90.0 ], [ 55.672676838000086, -90.0 ], [ 55.173370319000071, -90.0 ], [ 54.674063800000113, -90.0 ], [ 54.174757282000087, -90.0 ], [ 53.675450763000129, -90.0 ], [ 53.176144244000056, -90.0 ], [ 52.676837725000041, -90.0 ], [ 52.177531207000072, -90.0 ], [ 51.678224688000057, -90.0 ], [ 51.178918169000099, -90.0 ], [ 50.679611650000084, -90.0 ], [ 50.180305132000115, -90.0 ], [ 49.680998613000042, -90.0 ], [ 49.181692094000141, -90.0 ], [ 48.682385576000058, -90.0 ], [ 48.1830790570001, -90.0 ], [ 47.683772538000085, -90.0 ], [ 47.184466019000126, -90.0 ], [ 46.685159501000044, -90.0 ], [ 46.185852982000142, -90.0 ], [ 45.68654646300007, -90.0 ], [ 45.187239945000101, -90.0 ], [ 44.687933426000086, -90.0 ], [ 44.188626907000128, -90.0 ], [ 43.689320388000112, -90.0 ], [ 43.190013870000143, -90.0 ], [ 42.690707351000071, -90.0 ], [ 42.191400832000056, -90.0 ], [ 41.692094313000098, -90.0 ], [ 41.192787795000072, -90.0 ], [ 40.693481276000114, -90.0 ], [ 40.194174757000042, -90.0 ], [ 39.69486823900013, -90.0 ], [ 39.195561720000057, -90.0 ], [ 38.696255201000099, -90.0 ], [ 38.196948682000084, -90.0 ], [ 37.697642164000115, -90.0 ], [ 37.198335645000043, -90.0 ], [ 36.699029126000141, -90.0 ], [ 36.199722607000069, -90.0 ], [ 35.700416089000043, -90.0 ], [ 35.201109570000085, -90.0 ], [ 34.70180305100007, -90.0 ], [ 34.202496533000101, -90.0 ], [ 33.703190014000143, -90.0 ], [ 33.203883495000127, -90.0 ], [ 32.704576976000055, -90.0 ], [ 32.205270458000086, -90.0 ], [ 31.705963939000071, -90.0 ], [ 31.206657420000113, -90.0 ], [ 30.707350902000087, -90.0 ], [ 30.208044383000129, -90.0 ], [ 29.708737864000057, -90.0 ], [ 29.209431345000041, -90.0 ], [ 28.710124827000072, -90.0 ], [ 28.210818308000086, -90.0 ], [ 27.711511789000099, -90.0 ], [ 27.212205270000112, -90.0 ], [ 26.712898752000115, -90.0 ], [ 26.213592233000043, -90.0 ], [ 25.714285714000141, -90.0 ], [ 25.214979196000087, -90.0 ], [ 24.7156726770001, -90.0 ], [ 24.216366158000113, -90.0 ], [ 23.717059639000126, -90.0 ], [ 23.217753121000044, -90.0 ], [ 22.718446602000142, -90.0 ], [ 22.21914008300007, -90.0 ], [ 21.719833564000083, -90.0 ], [ 21.220527046000086, -90.0 ], [ 20.721220527000099, -90.0 ], [ 20.221914008000113, -90.0 ], [ 19.722607490000144, -90.0 ], [ 19.223300971000043, -90.0 ], [ 18.723994452000056, -90.0 ], [ 18.22468793300007, -90.0 ], [ 17.725381415000101, -90.0 ], [ 17.226074896000114, -90.0 ], [ 16.726768377000042, -90.0 ], [ 16.22746185900013, -90.0 ], [ 15.728155340000058, -90.0 ], [ 15.228848821000071, -90.0 ], [ 14.729542302000084, -90.0 ], [ 14.230235784000087, -90.0 ], [ 13.730929265000015, -90.0 ], [ 13.231622746000113, -90.0 ], [ 12.732316227000041, -90.0 ], [ 12.233009709000072, -90.0 ], [ 11.733703190000085, -90.0 ], [ 11.234396671000098, -90.0 ], [ 10.735090153000101, -90.0 ], [ 10.235783634000114, -90.0 ], [ 9.736477115000127, -90.0 ], [ 9.237170596000055, -90.0 ], [ 8.737864078000058, -90.0 ], [ 8.238557559000071, -90.0 ], [ 7.739251040000084, -90.0 ], [ 7.239944521000098, -90.0 ], [ 6.740638003000129, -90.0 ], [ 6.241331484000057, -90.0 ], [ 5.74202496500007, -90.0 ], [ 5.242718447000073, -90.0 ], [ 4.743411928000086, -90.0 ], [ 4.244105409000099, -90.0 ], [ 3.744798890000112, -90.0 ], [ 3.245492372000115, -90.0 ], [ 2.746185853000043, -90.0 ], [ 2.246879334000141, -90.0 ], [ 1.747572816000087, -90.0 ], [ 1.2482662970001, -90.0 ], [ 0.748959778000113, -90.0 ], [ 0.249653259000127, -90.0 ], [ -0.249653258999956, -90.0 ], [ -0.748959777999858, -90.0 ], [ -1.24826629699993, -90.0 ], [ -1.747572815999916, -90.0 ], [ -2.246879333999914, -90.0 ], [ -2.746185852999901, -90.0 ], [ -3.245492371999887, -90.0 ], [ -3.744798889999856, -90.0 ], [ -4.244105408999957, -90.0 ], [ -4.743411927999944, -90.0 ], [ -5.24271844699993, -90.0 ], [ -5.742024964999899, -90.0 ], [ -6.241331483999886, -90.0 ], [ -6.740638002999958, -90.0 ], [ -7.23994452099987, -90.0 ], [ -7.739251039999942, -90.0 ], [ -8.238557558999929, -90.0 ], [ -8.737864077999916, -90.0 ], [ -9.237170595999913, -90.0 ], [ -9.736477114999985, -90.0 ], [ -10.235783633999887, -90.0 ], [ -10.735090152999959, -90.0 ], [ -11.234396670999928, -90.0 ], [ -11.733703189999915, -90.0 ], [ -12.233009708999901, -90.0 ], [ -12.732316226999899, -90.0 ], [ -13.231622745999886, -90.0 ], [ -13.730929264999872, -90.0 ], [ -14.230235783999944, -90.0 ], [ -14.729542301999942, -90.0 ], [ -15.228848820999929, -90.0 ], [ -15.728155339999915, -90.0 ], [ -16.227461858999987, -90.0 ], [ -16.726768376999871, -90.0 ], [ -17.226074895999943, -90.0 ], [ -17.72538141499993, -90.0 ], [ -18.224687932999927, -90.0 ], [ -18.723994451999914, -90.0 ], [ -19.223300970999901, -90.0 ], [ -19.722607489999888, -90.0 ], [ -20.22191400799997, -90.0 ], [ -20.721220526999957, -90.0 ], [ -21.220527045999944, -90.0 ], [ -21.719833563999913, -90.0 ], [ -22.2191400829999, -90.0 ], [ -22.718446601999887, -90.0 ], [ -23.217753120999873, -90.0 ], [ -23.717059638999956, -90.0 ], [ -24.216366157999857, -90.0 ], [ -24.71567267699993, -90.0 ], [ -25.214979195999916, -90.0 ], [ -25.714285713999914, -90.0 ], [ -26.2135922329999, -90.0 ], [ -26.712898751999887, -90.0 ], [ -27.212205269999856, -90.0 ], [ -27.711511788999957, -90.0 ], [ -28.210818307999943, -90.0 ], [ -28.71012482699993, -90.0 ], [ -29.209431344999899, -90.0 ], [ -29.708737863999886, -90.0 ], [ -30.208044382999958, -90.0 ], [ -30.70735090199986, -90.0 ], [ -31.206657419999942, -90.0 ], [ -31.705963938999929, -90.0 ], [ -32.205270457999916, -90.0 ], [ -32.704576975999913, -90.0 ], [ -33.203883494999985, -90.0 ], [ -33.703190013999887, -90.0 ], [ -34.202496532999959, -90.0 ], [ -34.701803050999928, -90.0 ], [ -35.201109569999915, -90.0 ], [ -35.700416088999901, -90.0 ], [ -36.199722606999984, -90.0 ], [ -36.699029125999886, -90.0 ], [ -37.198335644999958, -90.0 ], [ -37.697642163999944, -90.0 ], [ -38.196948681999942, -90.0 ], [ -38.696255200999929, -90.0 ], [ -39.195561719999915, -90.0 ], [ -39.694868238999902, -90.0 ], [ -40.194174756999871, -90.0 ], [ -40.693481275999943, -90.0 ], [ -41.192787794999845, -90.0 ], [ -41.692094312999927, -90.0 ], [ -42.191400831999914, -90.0 ], [ -42.690707350999901, -90.0 ], [ -43.190013869999888, -90.0 ], [ -43.68932038799997, -90.0 ], [ -44.188626906999957, -90.0 ], [ -44.687933425999944, -90.0 ], [ -45.187239944999931, -90.0 ], [ -45.6865464629999, -90.0 ], [ -46.185852981999886, -90.0 ], [ -46.685159500999873, -90.0 ], [ -47.184466018999956, -90.0 ], [ -47.683772537999943, -90.0 ], [ -48.183079056999929, -90.0 ], [ -48.682385575999916, -90.0 ], [ -49.181692093999914, -90.0 ], [ -49.6809986129999, -90.0 ], [ -50.180305131999972, -90.0 ], [ -50.679611649999856, -90.0 ], [ -51.178918168999957, -90.0 ], [ -51.678224687999943, -90.0 ], [ -52.17753120699993, -90.0 ], [ -52.676837724999899, -90.0 ], [ -53.176144243999886, -90.0 ], [ -53.675450762999873, -90.0 ], [ -54.17475728199986, -90.0 ], [ -54.674063799999942, -90.0 ], [ -55.173370318999929, -90.0 ], [ -55.672676837999916, -90.0 ], [ -56.171983355999885, -90.0 ], [ -56.671289874999871, -90.0 ], [ -57.170596393999858, -90.0 ], [ -57.669902912999959, -90.0 ], [ -58.169209430999842, -90.0 ], [ -58.668515949999914, -90.0 ], [ -59.167822468999901, -90.0 ], [ -59.667128987999888, -90.0 ], [ -60.166435505999885, -90.0 ], [ -60.665742024999957, -90.0 ], [ -61.165048543999944, -90.0 ], [ -61.664355061999942, -90.0 ], [ -62.163661580999928, -90.0 ], [ -62.662968099999915, -90.0 ], [ -63.162274618999902, -90.0 ], [ -63.661581136999871, -90.0 ], [ -64.160887655999943, -90.0 ], [ -64.660194174999845, -90.0 ], [ -65.159500692999927, -90.0 ], [ -65.658807211999914, -90.0 ], [ -66.158113730999901, -90.0 ], [ -66.657420249999888, -90.0 ], [ -67.15672676799997, -90.0 ], [ -67.656033286999872, -90.0 ], [ -68.155339805999944, -90.0 ], [ -68.654646324999931, -90.0 ], [ -69.1539528429999, -90.0 ], [ -69.653259361999886, -90.0 ], [ -70.152565880999873, -90.0 ], [ -70.65187239899987, -90.0 ], [ -71.151178917999943, -90.0 ], [ -71.650485436999929, -90.0 ], [ -72.149791955999916, -90.0 ], [ -72.649098473999913, -90.0 ], [ -73.1484049929999, -90.0 ], [ -73.647711511999972, -90.0 ], [ -74.147018030999874, -90.0 ], [ -74.646324548999928, -90.0 ], [ -75.145631067999915, -90.0 ], [ -75.644937586999902, -90.0 ], [ -76.144244104999899, -90.0 ], [ -76.643550623999886, -90.0 ], [ -77.142857142999873, -90.0 ], [ -77.642163661999859, -90.0 ], [ -78.141470179999942, -90.0 ], [ -78.640776698999929, -90.0 ], [ -79.140083217999916, -90.0 ], [ -79.639389735999885, -90.0 ], [ -80.138696254999871, -90.0 ], [ -80.638002773999858, -90.0 ], [ -81.137309292999959, -90.0 ], [ -81.636615810999842, -90.0 ], [ -82.135922329999914, -90.0 ], [ -82.635228848999901, -90.0 ], [ -83.134535367999888, -90.0 ], [ -83.633841885999885, -90.0 ], [ -84.133148404999957, -90.0 ], [ -84.632454923999944, -90.0 ], [ -85.131761441999942, -90.0 ], [ -85.631067960999928, -90.0 ], [ -86.130374479999915, -90.0 ], [ -86.629680998999902, -90.0 ], [ -87.128987516999871, -90.0 ], [ -87.628294035999943, -90.0 ], [ -88.127600554999844, -90.0 ], [ -88.626907073999917, -90.0 ], [ -89.126213591999914, -90.0 ], [ -89.625520110999901, -90.0 ], [ -90.124826629999887, -90.0 ], [ -90.62413314799997, -90.0 ], [ -91.123439666999872, -90.0 ], [ -91.622746185999944, -90.0 ], [ -92.12205270499993, -90.0 ], [ -92.621359222999899, -90.0 ], [ -93.120665741999886, -90.0 ], [ -93.619972260999873, -90.0 ], [ -94.11927877899987, -90.0 ], [ -94.618585297999942, -90.0 ], [ -95.117891816999929, -90.0 ], [ -95.617198335999916, -90.0 ], [ -96.116504853999913, -90.0 ], [ -96.6158113729999, -90.0 ], [ -97.115117891999972, -90.0 ], [ -97.614424410999874, -90.0 ], [ -98.113730928999928, -90.0 ], [ -98.613037447999915, -90.0 ], [ -99.112343966999916, -90.0 ], [ -99.611650484999899, -90.0 ], [ -100.110957003999886, -90.0 ], [ -100.610263522999873, -90.0 ], [ -101.109570041999859, -90.0 ], [ -101.608876559999942, -90.0 ], [ -102.108183078999929, -90.0 ], [ -102.607489597999916, -90.0 ], [ -103.106796116999902, -90.0 ], [ -103.606102634999885, -90.0 ], [ -104.105409153999872, -90.0 ], [ -104.604715672999944, -90.0 ], [ -105.104022190999842, -90.0 ], [ -105.603328709999914, -90.0 ], [ -106.102635228999901, -90.0 ], [ -106.601941747999888, -90.0 ], [ -107.101248265999885, -90.0 ], [ -107.600554784999957, -90.0 ], [ -108.099861303999944, -90.0 ], [ -108.599167821999927, -90.0 ], [ -109.098474340999914, -90.0 ], [ -109.597780859999901, -90.0 ], [ -110.097087378999888, -90.0 ], [ -110.596393896999871, -90.0 ], [ -111.095700415999957, -90.0 ], [ -111.595006934999844, -90.0 ], [ -112.094313453999931, -90.0 ], [ -112.593619971999914, -90.0 ], [ -113.092926490999901, -90.0 ], [ -113.592233009999887, -90.0 ], [ -114.091539527999956, -90.0 ], [ -114.590846046999857, -90.0 ], [ -115.090152565999929, -90.0 ], [ -115.589459084999916, -90.0 ], [ -116.088765602999914, -90.0 ], [ -116.5880721219999, -90.0 ], [ -117.087378640999887, -90.0 ], [ -117.586685159999959, -90.0 ], [ -118.085991677999942, -90.0 ], [ -118.585298196999929, -90.0 ], [ -119.084604715999916, -90.0 ], [ -119.583911233999899, -90.0 ], [ -120.083217752999886, -90.0 ], [ -120.582524271999972, -90.0 ], [ -121.081830790999859, -90.0 ], [ -121.581137308999942, -90.0 ], [ -122.080443827999929, -90.0 ], [ -122.579750346999916, -90.0 ], [ -123.079056864999899, -90.0 ], [ -123.578363383999886, -90.0 ], [ -124.077669902999872, -90.0 ], [ -124.576976421999859, -90.0 ], [ -125.076282939999942, -90.0 ], [ -125.575589458999929, -90.0 ], [ -126.074895977999915, -90.0 ], [ -126.574202496999902, -90.0 ], [ -127.073509014999885, -90.0 ], [ -127.572815533999872, -90.0 ], [ -128.07212205299993, -90.0 ], [ -128.571428570999927, -90.0 ], [ -129.070735089999914, -90.0 ], [ -129.570041608999901, -90.0 ], [ -130.069348128, -90.0 ], [ -130.568654645999885, -90.0 ], [ -131.067961164999957, -90.0 ], [ -131.567267683999944, -90.0 ], [ -132.066574201999913, -90.0 ], [ -132.565880720999928, -90.0 ], [ -133.065187239999887, -90.0 ], [ -133.564493758999902, -90.0 ], [ -134.063800276999984, -90.0 ], [ -134.563106795999943, -90.0 ], [ -135.062413314999958, -90.0 ], [ -135.561719833999916, -90.0 ], [ -136.061026351999914, -90.0 ], [ -136.5603328709999, -90.0 ], [ -137.059639389999887, -90.0 ], [ -137.558945907999941, -90.0 ], [ -138.058252426999843, -90.0 ], [ -138.557558945999915, -90.0 ], [ -139.05686546499993, -90.0 ], [ -139.556171982999899, -90.0 ], [ -140.055478501999914, -90.0 ], [ -140.554785020999873, -90.0 ], [ -141.054091539999945, -90.0 ], [ -141.553398057999942, -90.0 ], [ -142.052704576999929, -90.0 ], [ -142.552011095999916, -90.0 ], [ -143.051317613999913, -90.0 ], [ -143.550624132999872, -90.0 ], [ -144.049930651999887, -90.0 ], [ -144.549237170999959, -90.0 ], [ -145.048543688999928, -90.0 ], [ -145.547850207999943, -90.0 ], [ -146.047156726999901, -90.0 ], [ -146.546463244999899, -90.0 ], [ -147.045769763999886, -90.0 ], [ -147.545076282999958, -90.0 ], [ -148.044382801999944, -90.0 ], [ -148.543689319999942, -90.0 ], [ -149.042995838999929, -90.0 ], [ -149.542302357999915, -90.0 ], [ -150.041608876999902, -90.0 ], [ -150.540915394999899, -90.0 ], [ -151.040221913999858, -90.0 ], [ -151.53952843299993, -90.0 ], [ -152.038834950999927, -90.0 ], [ -152.538141469999914, -90.0 ], [ -153.037447988999901, -90.0 ], [ -153.536754507999888, -90.0 ], [ -154.036061025999885, -90.0 ], [ -154.535367544999957, -90.0 ], [ -155.034674063999944, -90.0 ], [ -155.533980582999931, -90.0 ], [ -156.033287100999928, -90.0 ], [ -156.532593619999886, -90.0 ], [ -157.031900138999902, -90.0 ], [ -157.531206656999984, -90.0 ], [ -158.030513175999943, -90.0 ], [ -158.529819694999958, -90.0 ], [ -159.029126213999916, -90.0 ], [ -159.528432731999914, -90.0 ], [ -160.0277392509999, -90.0 ], [ -160.527045769999887, -90.0 ], [ -161.026352287999885, -90.0 ], [ -161.525658806999957, -90.0 ], [ -162.024965325999915, -90.0 ], [ -162.52427184499993, -90.0 ], [ -163.023578362999899, -90.0 ], [ -163.522884881999886, -90.0 ], [ -164.022191400999873, -90.0 ], [ -164.52149791999986, -90.0 ], [ -165.020804437999942, -90.0 ], [ -165.520110956999929, -90.0 ], [ -166.019417475999916, -90.0 ], [ -166.518723993999913, -90.0 ], [ -167.0180305129999, -90.0 ], [ -167.517337031999887, -90.0 ], [ -168.016643550999873, -90.0 ], [ -168.515950068999928, -90.0 ], [ -169.015256587999943, -90.0 ], [ -169.514563106999901, -90.0 ], [ -170.013869625999916, -90.0 ], [ -170.513176143999885, -90.0 ], [ -171.012482662999872, -90.0 ], [ -171.511789181999944, -90.0 ], [ -172.011095699999942, -90.0 ], [ -172.510402218999928, -90.0 ], [ -173.009708737999915, -90.0 ], [ -173.509015256999902, -90.0 ], [ -174.008321774999899, -90.0 ], [ -174.507628293999858, -90.0 ], [ -175.006934812999873, -90.0 ], [ -175.506241330999927, -90.0 ], [ -176.005547849999914, -90.0 ], [ -176.504854368999901, -90.0 ], [ -177.004160887999888, -90.0 ], [ -177.503467405999885, -90.0 ], [ -178.002773924999872, -90.0 ], [ -178.502080443999944, -90.0 ], [ -179.001386962999931, -90.0 ], [ -179.500693480999928, -90.0 ], [ -179.999999999999886, -90.0 ], [ -179.999999999999886, -89.501385041999896 ], [ -179.999999999999886, -89.00277008299993 ], [ -179.999999999999886, -88.504155124999869 ], [ -179.999999999999886, -88.005540165999918 ], [ -179.999999999999886, -87.506925207999942 ], [ -179.999999999999886, -87.008310248999891 ], [ -179.999999999999886, -86.509695290999929 ], [ -179.999999999999886, -86.011080331999963 ], [ -179.999999999999886, -85.512465373999902 ], [ -179.999999999999886, -85.01385041599994 ], [ -179.999999999999886, -84.515235456999889 ], [ -179.999999999999886, -84.352796000999945 ], [ -179.999999999999886, -84.016620498999913 ], [ -179.999999999999886, -83.518005539999962 ], [ -179.999999999999886, -83.0193905819999 ], [ -179.999999999999886, -82.520775622999935 ], [ -179.999999999999886, -82.022160664999973 ], [ -179.999999999999886, -81.523545705999908 ], [ -179.999999999999886, -81.024930747999946 ], [ -179.999999999999886, -80.526315788999895 ], [ -179.999999999999886, -80.027700830999933 ], [ -179.999999999999886, -79.529085872999957 ], [ -179.999999999999886, -79.03047091399992 ], [ -179.999999999999886, -78.531855955999859 ], [ -179.999999999999886, -78.033240996999979 ], [ -179.999999999999886, -77.534626038999932 ], [ -179.999999999999886, -77.036011079999952 ], [ -179.999999999999886, -76.537396121999905 ], [ -179.999999999999886, -76.038781162999939 ], [ -179.999999999999886, -75.540166204999977 ], [ -179.999999999999886, -75.041551246999916 ], [ -179.999999999999886, -74.542936287999865 ], [ -179.999999999999886, -74.044321329999903 ], [ -179.999999999999886, -73.545706370999937 ], [ -179.999999999999886, -73.04709141299989 ], [ -179.999999999999886, -72.548476453999911 ], [ -179.999999999999886, -72.049861495999949 ], [ -179.999999999999886, -71.551246536999898 ], [ -179.999999999999886, -71.052631578999922 ], [ -179.999999999999886, -70.554016619999885 ], [ -179.999999999999886, -70.055401661999909 ], [ -179.999999999999886, -70.000006130146943 ], [ -170.080547201785635, -68.534409746477493 ], [ -164.755650037836261, -67.613584945913558 ], [ -161.144164812577259, -66.892800841258847 ], [ -158.006906256728598, -66.032387614644307 ], [ -155.073486525533525, -65.214426677314265 ], [ -152.375090834850511, -64.373044089516924 ], [ -150.128714084580508, -63.524571324562366 ], [ -148.263537227910746, -62.429260804274165 ], [ -145.976200467921103, -61.100544965874327 ], [ -142.097262335935739, -60.224876274680035 ], [ -135.84117108458571, -59.624478658802111 ], [ -127.344571012169354, -59.62672742569729 ], [ -119.923259693918141, -59.325829865683723 ], [ -115.804192711533659, -58.165718936511794 ], [ -112.647439992434798, -56.668352437129791 ], [ -109.718955387009288, -54.699281994973923 ], [ -107.807674724648422, -52.783253320391836 ], [ -106.626874220396232, -50.232003506932671 ], [ -105.729397915178083, -47.164199731915247 ], [ -105.329771481236662, -43.604396698563555 ], [ -105.255856552842019, -41.220514163524321 ], [ -104.269175584684604, -38.349204504293262 ], [ -103.006781403988001, -37.509490429283176 ], [ -101.349197707631404, -37.449743032547914 ], [ -98.931890108892716, -38.60649357301363 ], [ -97.023800577353271, -39.505957784317886 ], [ -95.000006006287322, -41.000007952176595 ], [ -93.325405876262295, -41.843256905092169 ], [ -91.347793331630029, -42.851422452938664 ], [ -87.733103434935444, -44.077318491933944 ], [ -85.407329935278284, -45.275447798096643 ], [ -83.449740942685395, -47.473533240307816 ], [ -80.189181047733584, -54.425943371581852 ], [ -77.328681282501279, -58.080018326620433 ], [ -71.875673950261046, -60.988111410792477 ], [ -66.431125159938276, -62.893830599582202 ], [ -63.641793168460389, -63.996694850047554 ], [ -63.643875191984748, -64.004205006331858 ], [ -62.120920209024618, -67.254691014739308 ], [ -58.938626214779561, -67.231960343351844 ], [ -54.665259993936203, -66.163618788141008 ], [ -52.301270169639878, -63.617783592744956 ], [ -52.338479926998247, -63.346979247525731 ], [ -49.140673941787135, -62.957504293625142 ], [ -41.792187762981307, -63.18532766136569 ], [ -33.224649296246689, -63.301301134809975 ], [ -24.117323857963179, -63.049856902433341 ], [ -18.699122912108539, -62.557439285018482 ], [ -11.662558105397368, -61.608272092522 ], [ -4.805155159422233, -60.356652501620914 ], [ 3.494758888283958, -58.70183267442173 ], [ 10.913178803754011, -57.014496117694058 ], [ 16.862347147919117, -56.163767127403204 ], [ 23.656323449852444, -56.788864267910725 ], [ 29.566459368231694, -56.116253897911562 ], [ 33.367182687596163, -53.570447003745663 ], [ 36.918190777127464, -50.143177004104977 ], [ 40.400335915938058, -47.57053876776672 ], [ 42.592329341060193, -45.614940351638317 ], [ 46.743367664740781, -42.879630415481728 ], [ 49.873557418938709, -41.019097672488044 ], [ 52.90929480490675, -39.508606448526223 ], [ 56.155458590924709, -38.101861493506661 ], [ 59.58996421904051, -36.270926793274704 ], [ 61.296277205945913, -34.581044479035427 ], [ 62.904504067191375, -32.487062516118712 ], [ 66.07091344847224, -29.70401979081954 ], [ 69.681759200756375, -29.026513285868113 ], [ 72.306957935948361, -29.833113287258158 ], [ 73.930726176685781, -32.213548671299087 ], [ 73.822122144854319, -35.01216979227668 ], [ 73.612926494236618, -39.351160488991788 ], [ 74.719380878962511, -42.518083154467632 ], [ 76.265983840625324, -44.91659323972749 ], [ 79.940617330478702, -47.133130980952437 ], [ 85.743315367403653, -48.556929729068436 ], [ 92.745024224641512, -49.951909428198235 ], [ 101.952455066909607, -51.671166398543768 ], [ 112.967352084616095, -52.984594831188112 ], [ 119.762953603949583, -53.616994832544712 ], [ 127.553539969167005, -53.635733146799978 ], [ 133.877422316783083, -54.659627068082933 ], [ 137.366915098158017, -56.311007246162042 ], [ 140.269093442831775, -58.406772232516204 ], [ 143.324245279948201, -61.868297420800985 ], [ 146.707665773875874, -64.661311960343724 ], [ 152.902617975659183, -65.930516134442058 ], [ 158.645427640724677, -66.344106901890243 ], [ 160.955514616187088, -66.478360103996806 ], [ 161.631672005485996, -68.622703543763748 ], [ 162.113154414435968, -72.31459087689116 ], [ 160.847910720361739, -75.883662092728969 ], [ 161.846498220988764, -79.669582617916689 ], [ 165.840730816721901, -80.160262718304509 ], [ 169.53949466296632, -80.032367569769036 ], [ 169.894409198233006, -77.090840469004505 ], [ 168.638116865775856, -74.776679219745702 ], [ 167.727418723336854, -70.939074252442111 ], [ 167.453996967123231, -67.246225604529371 ], [ 167.125320269120721, -66.964370547323739 ], [ 169.989642214690548, -67.263577173555916 ], [ 175.544015588292751, -67.14188247046954 ], [ 180.0, -66.617163269854402 ], [ 180.0, -67.063711910999942 ], [ 180.0, -67.562326869999907 ], [ 180.0, -68.060941827999869 ], [ 180.0, -68.559556786999934 ], [ 180.0, -69.058171744999896 ], [ 180.0, -69.556786703999947 ], [ 180.0, -70.055401661999909 ], [ 180.0, -70.554016619999885 ], [ 180.0, -71.052631578999922 ], [ 180.0, -71.551246536999898 ], [ 180.0, -72.049861495999949 ], [ 180.0, -72.548476453999911 ], [ 180.0, -73.04709141299989 ], [ 180.0, -73.545706370999937 ], [ 180.0, -74.044321329999903 ], [ 180.0, -74.542936287999865 ], [ 180.0, -75.041551246999916 ], [ 180.0, -75.540166204999977 ], [ 180.0, -76.038781162999939 ], [ 180.0, -76.537396121999905 ], [ 180.0, -77.036011079999952 ], [ 180.0, -77.534626038999932 ], [ 180.0, -78.033240996999979 ], [ 180.0, -78.531855955999859 ], [ 180.0, -79.03047091399992 ], [ 180.0, -79.529085872999957 ], [ 180.0, -80.027700830999933 ], [ 180.0, -80.526315788999895 ], [ 180.0, -81.024930747999946 ], [ 180.0, -81.523545705999908 ], [ 180.0, -82.022160664999973 ], [ 180.0, -82.520775622999935 ], [ 180.0, -83.0193905819999 ], [ 180.0, -83.518005539999962 ], [ 180.0, -84.016620498999913 ], [ 180.0, -84.35279298899988 ], [ 180.0, -84.352796352999889 ], [ 180.0, -84.353381669999905 ], [ 180.0, -84.515235456999889 ], [ 180.0, -85.01385041599994 ], [ 180.0, -85.512465373999902 ], [ 180.0, -86.011080331999963 ], [ 180.0, -86.509695290999929 ], [ 180.0, -87.008310248999891 ], [ 180.0, -87.506925207999942 ], [ 180.0, -88.005540165999918 ], [ 180.0, -88.504155124999869 ], [ 180.0, -89.00277008299993 ], [ 180.0, -89.501385041999896 ], [ 180.0, -90.0 ] ], [ [ 65.587576114406261, -47.800052896543335 ], [ 66.284324487763385, -49.796722201085551 ], [ 67.593708633888156, -51.428020115015507 ], [ 69.212476867137227, -52.46867568079842 ], [ 71.028125883102263, -52.918688898434269 ], [ 71.971874113897883, -52.046788289264803 ], [ 72.928152201374076, -50.047052519981726 ], [ 72.040655622782936, -47.515728170780058 ], [ 70.843774781067196, -46.278191822281471 ], [ 69.618768113249487, -45.490668691418726 ], [ 67.999999880000075, -45.350039560907518 ], [ 66.459476723575719, -45.687549474134414 ], [ 65.756331071019702, -46.546920754623301 ], [ 65.587576114406261, -47.800052896543335 ] ], [ [ 49.0, -47.0 ], [ 53.0, -47.0 ], [ 53.0, -45.0 ], [ 49.0, -45.0 ], [ 49.0, -47.0 ] ], [ [ -138.055697582193829, -77.454552403398267 ], [ -124.632654363657537, -79.873118749080476 ], [ -104.074840425358715, -78.542907258955253 ], [ -91.256438793242992, -73.947631202159045 ], [ -86.782091053730895, -67.538430386101183 ], [ -90.168083937685992, -65.361720674987197 ], [ -95.368001580902757, -68.626785241658183 ], [ -101.656274079676507, -72.254634760181503 ], [ -115.321173932781022, -73.222061298454378 ], [ -124.51172604637344, -71.287208221908614 ], [ -135.274346284659288, -71.891849808329169 ], [ -138.902195803182622, -73.947631202159045 ], [ -138.055697582193829, -77.454552403398267 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "GLOBAL-STABLE-1", "REGION": "GLOBAL STABLE", "UPPER DEPTH": 0.0, "LOWER DEPTH": 40.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -179.999999999999886, -69.978558771550126 ], [ -179.999999999999886, -69.556786703999947 ], [ -179.999999999999886, -69.058171744999896 ], [ -179.999999999999886, -68.559556786999934 ], [ -179.999999999999886, -68.060941827999869 ], [ -179.999999999999886, -67.562326869999907 ], [ -179.999999999999886, -67.063711910999942 ], [ -179.999999999999886, -66.56509695299988 ], [ -179.999999999999886, -66.066481993999929 ], [ -179.999999999999886, -65.567867035999953 ], [ -179.999999999999886, -65.069252077999892 ], [ -179.999999999999886, -64.57063711899994 ], [ -179.999999999999886, -64.072022160999978 ], [ -179.999999999999886, -63.573407201999913 ], [ -179.999999999999886, -63.074792243999951 ], [ -179.999999999999886, -62.576177284999893 ], [ -179.999999999999886, -62.077562326999931 ], [ -179.999999999999886, -61.578947367999966 ], [ -179.999999999999886, -61.080332409999912 ], [ -179.999999999999886, -60.581717451999943 ], [ -179.999999999999886, -60.083102492999892 ], [ -179.999999999999886, -59.584487534999923 ], [ -179.999999999999886, -59.085872575999957 ], [ -179.999999999999886, -58.587257617999903 ], [ -179.999999999999886, -58.088642658999937 ], [ -179.999999999999886, -57.590027700999975 ], [ -179.999999999999886, -57.091412741999918 ], [ -179.999999999999886, -56.592797783999863 ], [ -179.999999999999886, -56.094182824999898 ], [ -179.999999999999886, -55.595567866999936 ], [ -179.999999999999886, -55.096952908999882 ], [ -179.999999999999886, -54.598337949999916 ], [ -179.999999999999886, -54.099722991999947 ], [ -179.999999999999886, -53.601108032999981 ], [ -179.999999999999886, -53.102493074999927 ], [ -179.999999999999886, -52.603878115999876 ], [ -179.999999999999886, -52.105263157999907 ], [ -179.999999999999886, -51.606648198999942 ], [ -179.999999999999886, -51.108033240999887 ], [ -179.999999999999886, -50.609418282999926 ], [ -179.999999999999886, -50.110803323999868 ], [ -179.999999999999886, -49.612188365999906 ], [ -179.999999999999886, -49.113573406999933 ], [ -179.999999999999886, -48.614958448999886 ], [ -179.999999999999886, -48.116343489999899 ], [ -179.999999999999886, -47.617728531999958 ], [ -179.999999999999886, -47.119113572999893 ], [ -179.999999999999886, -46.620498614999931 ], [ -179.999999999999886, -46.12188365699997 ], [ -179.999999999999886, -45.623268697999919 ], [ -179.999999999999886, -45.124653739999943 ], [ -179.999999999999886, -44.626038780999892 ], [ -179.999999999999886, -44.12742382299993 ], [ -179.999999999999886, -43.628808863999964 ], [ -179.999999999999886, -43.130193905999903 ], [ -179.999999999999886, -42.631578946999937 ], [ -179.999999999999886, -42.13296398899989 ], [ -179.999999999999886, -42.000009808739598 ], [ -174.787023560569139, -41.662707133537467 ], [ -172.875660189757326, -36.63028399991461 ], [ -169.66269156965069, -31.121062648628772 ], [ -167.58267967216716, -25.855149731150838 ], [ -165.775124329020201, -20.96431073805131 ], [ -164.931875648515756, -17.674598876680836 ], [ -164.831340458511221, -14.807553726141917 ], [ -165.505943438588673, -9.94377539572244 ], [ -171.839976392782717, -9.999990364393877 ], [ -176.843251421673898, -12.212959341920369 ], [ -179.999999999999886, -12.999997876044786 ], [ -179.999999999999886, -12.714681439999879 ], [ -179.999999999999886, -12.216066481999917 ], [ -179.999999999999886, -11.717451523999955 ], [ -179.999999999999886, -11.21883656499989 ], [ -179.999999999999886, -10.720221606999928 ], [ -179.999999999999886, -10.221606647999877 ], [ -179.999999999999886, -9.722991689999915 ], [ -179.999999999999886, -9.22437673099995 ], [ -179.999999999999886, -8.725761772999888 ], [ -179.999999999999886, -8.227146813999923 ], [ -179.999999999999886, -7.728531855999961 ], [ -179.999999999999886, -7.2299168979999 ], [ -179.999999999999886, -6.731301938999934 ], [ -179.999999999999886, -6.232686980999887 ], [ -179.999999999999886, -5.734072021999921 ], [ -179.999999999999886, -5.235457063999959 ], [ -179.999999999999886, -4.736842104999894 ], [ -179.999999999999886, -4.238227146999932 ], [ -179.999999999999886, -3.739612187999882 ], [ -179.999999999999886, -3.2409972299999 ], [ -179.999999999999886, -2.742382270999954 ], [ -179.999999999999886, -2.243767312999893 ], [ -179.999999999999886, -1.745152354999931 ], [ -179.999999999999886, -1.246537395999965 ], [ -179.999999999999886, -0.747922437999904 ], [ -179.999999999999886, -0.249307478999938 ], [ -179.999999999999886, 0.249307479000024 ], [ -179.999999999999886, 0.747922438000074 ], [ -179.999999999999886, 1.246537396000036 ], [ -179.999999999999886, 1.745152355000101 ], [ -179.999999999999886, 2.243767313000063 ], [ -179.999999999999886, 2.742382271000025 ], [ -179.999999999999886, 3.240997230000076 ], [ -179.999999999999886, 3.739612188000137 ], [ -179.999999999999886, 4.238227147000103 ], [ -179.999999999999886, 4.736842105000065 ], [ -179.999999999999886, 5.23545706400003 ], [ -179.999999999999886, 5.734072022000092 ], [ -179.999999999999886, 6.232686981000143 ], [ -179.999999999999886, 6.731301939000019 ], [ -179.999999999999886, 7.22991689800007 ], [ -179.999999999999886, 7.728531856000131 ], [ -179.999999999999886, 8.227146814000093 ], [ -179.999999999999886, 8.725761773000059 ], [ -179.999999999999886, 9.224376731000106 ], [ -179.999999999999886, 9.722991690000072 ], [ -179.999999999999886, 10.221606648000133 ], [ -179.999999999999886, 10.720221607000099 ], [ -179.999999999999886, 11.218836565000061 ], [ -179.999999999999886, 11.717451524000111 ], [ -179.999999999999886, 12.216066482000087 ], [ -179.999999999999886, 12.714681440000049 ], [ -179.999999999999886, 13.2132963990001 ], [ -179.999999999999886, 13.711911357000062 ], [ -179.999999999999886, 14.210526316000127 ], [ -179.999999999999886, 14.709141274000075 ], [ -179.999999999999886, 15.207756233000055 ], [ -179.999999999999886, 15.706371191000102 ], [ -179.999999999999886, 16.204986150000082 ], [ -179.999999999999886, 16.703601108000043 ], [ -179.999999999999886, 17.202216066000091 ], [ -179.999999999999886, 17.70083102500007 ], [ -179.999999999999886, 18.199445983000118 ], [ -179.999999999999886, 18.698060942000069 ], [ -179.999999999999886, 19.196675900000031 ], [ -179.999999999999886, 19.695290859000096 ], [ -179.999999999999886, 20.193905817000058 ], [ -179.999999999999886, 20.692520776000038 ], [ -179.999999999999886, 21.191135734000085 ], [ -179.999999999999886, 21.689750693000036 ], [ -179.999999999999886, 22.188365651000112 ], [ -179.999999999999886, 22.686980609000074 ], [ -179.999999999999886, 23.185595568000025 ], [ -179.999999999999886, 23.684210526000101 ], [ -179.999999999999886, 24.182825485000052 ], [ -179.999999999999886, 24.681440443000014 ], [ -179.999999999999886, 25.180055402000079 ], [ -179.999999999999886, 25.678670360000041 ], [ -179.999999999999886, 26.177285319000106 ], [ -179.999999999999886, 26.675900277000068 ], [ -179.999999999999886, 27.174515235000115 ], [ -179.999999999999886, 27.673130194000066 ], [ -179.999999999999886, 28.171745152000142 ], [ -179.999999999999886, 28.670360111 ], [ -179.999999999999886, 29.168975069000055 ], [ -179.999999999999886, 29.66759002800012 ], [ -179.999999999999886, 30.166204986000082 ], [ -179.999999999999886, 30.664819945000147 ], [ -179.999999999999886, 31.163434903000109 ], [ -179.999999999999886, 31.662049861000071 ], [ -179.999999999999886, 32.160664820000136 ], [ -179.999999999999886, 32.659279778000098 ], [ -179.999999999999886, 33.157894737000049 ], [ -179.999999999999886, 33.656509695000096 ], [ -179.999999999999886, 34.155124654000076 ], [ -179.999999999999886, 34.653739612000038 ], [ -179.999999999999886, 35.152354571000103 ], [ -179.999999999999886, 35.650969529000065 ], [ -179.999999999999886, 36.149584488000102 ], [ -179.999999999999886, 36.648199446000092 ], [ -179.999999999999886, 37.146814404000054 ], [ -179.999999999999886, 37.64542936300009 ], [ -179.999999999999886, 38.144044321000052 ], [ -179.999999999999886, 38.642659280000117 ], [ -179.999999999999886, 39.141274238000079 ], [ -179.999999999999886, 39.639889197000059 ], [ -179.999999999999886, 40.138504155000106 ], [ -179.999999999999886, 40.637119114000058 ], [ -179.999999999999886, 41.135734072000048 ], [ -179.999999999999886, 41.634349030000095 ], [ -179.999999999999886, 42.132963989000046 ], [ -179.999999999999886, 42.631578947 ], [ -179.999999999999886, 43.130193906000073 ], [ -179.999999999999886, 43.628808864000035 ], [ -179.999999999999886, 44.1274238230001 ], [ -179.999999999999886, 44.626038781000062 ], [ -179.999999999999886, 45.124653740000014 ], [ -179.999999999999886, 45.623268698000089 ], [ -179.999999999999886, 46.121883657000041 ], [ -179.999999999999886, 46.389463346427213 ], [ -169.318385934632232, 46.971504140220951 ], [ -160.491522966059478, 48.494650445870732 ], [ -151.2885470881738, 51.135490826621378 ], [ -144.676348878412881, 53.396274107110429 ], [ -140.018327998850793, 53.205088004048463 ], [ -136.158483472444175, 52.284915474882894 ], [ -133.975643032130932, 50.343435835781385 ], [ -133.236543454450043, 47.143902172285223 ], [ -132.819399371817298, 42.621476345401831 ], [ -130.717011948178623, 39.641306003752334 ], [ -127.911862611644125, 37.73799682860998 ], [ -125.934297524105304, 35.962862220690774 ], [ -123.292984136937406, 34.437825405537438 ], [ -121.795090812781382, 32.766205825870991 ], [ -119.237819279921652, 30.781268918010852 ], [ -117.285118527563455, 29.002109332257746 ], [ -115.213839731517382, 26.786160428562241 ], [ -113.921723746018245, 25.223995580029122 ], [ -112.794229991581361, 23.771100326949753 ], [ -111.712781694767429, 22.2872174500081 ], [ -111.122223402050466, 20.559382134044277 ], [ -110.743507112677676, 19.741838165839145 ], [ -111.285507144995734, 19.714009526660984 ], [ -111.295721090472128, 18.337060200720984 ], [ -110.448930272618028, 18.500483328343279 ], [ -110.47014123349858, 19.151716663523789 ], [ -110.339111620906948, 18.868859885411737 ], [ -109.072225813097106, 17.523983512735125 ], [ -106.581263272304298, 15.024362990873923 ], [ -105.662710765532523, 11.875288031227941 ], [ -105.550277724702596, 7.827698561350931 ], [ -105.943793389488263, 3.892541913494518 ], [ -106.337308907718679, 1.630282417627104 ], [ -107.00000885149484, 0.000005008317626 ], [ -108.831358193469896, -2.449726092946821 ], [ -110.662708012190421, -4.562158874244036 ], [ -112.499702044679466, -6.557353098263129 ], [ -114.718925311891283, -9.281076612728372 ], [ -116.606492011628362, -11.61837575119676 ], [ -118.156759651469812, -13.562159507426911 ], [ -119.61542585046341, -16.962862940556459 ], [ -120.278518341448006, -19.092091061015783 ], [ -120.593750162821493, -22.214627783607099 ], [ -120.283018899974735, -25.747337806251835 ], [ -118.941877877299675, -28.247328141248769 ], [ -118.114556141092706, -30.819274075235874 ], [ -116.533303514407422, -33.791063444978882 ], [ -114.932962315728872, -36.288954488399533 ], [ -113.856170487541988, -39.451765103665799 ], [ -114.719268994916234, -43.674765916636247 ], [ -115.655782697371023, -46.047207545061958 ], [ -117.112442977511051, -48.538364271847904 ], [ -121.402144612731192, -50.843238657623871 ], [ -127.979477207028708, -51.718907358720486 ], [ -138.000000107225674, -51.999990028999974 ], [ -144.0, -51.999990028999974 ], [ -147.393517527113005, -52.618372106473345 ], [ -150.485429024687392, -53.606475097464937 ], [ -154.000004724759123, -55.011888996340844 ], [ -156.494057046565132, -56.33729151382429 ], [ -159.759464280319378, -58.097586391813934 ], [ -165.154994674762236, -59.683171435274133 ], [ -172.494427084666398, -60.514521613169222 ], [ -179.996645484413193, -60.994525899741369 ], [ -179.999999999999886, -69.978558771550126 ] ], [ [ -158.096303006491667, 23.000000001000032 ], [ -159.878651641610361, 23.505965062503094 ], [ -161.17183522181773, 23.88720157507494 ], [ -163.054462268823045, 24.091433031906078 ], [ -164.696186577251666, 23.761877861290333 ], [ -164.262673557870329, 22.629798755243673 ], [ -162.432023209337189, 21.746272518226487 ], [ -160.745977488710309, 20.951098904911028 ], [ -159.340885416947316, 20.184655538193425 ], [ -158.104253297281559, 19.549986782364147 ], [ -156.774993248182, 18.337509795226932 ], [ -156.140629104511135, 17.859370751488836 ], [ -155.196880873715656, 17.774993273182115 ], [ -154.365635771329039, 18.140629012511244 ], [ -153.915622553693169, 18.690615677875378 ], [ -153.859370901488688, 19.606238434568628 ], [ -154.000000031999889, 20.578112491466449 ], [ -154.718741829977574, 21.253132317920226 ], [ -155.999999973999934, 21.999999766000045 ], [ -156.851120627361439, 22.53409065360535 ], [ -158.096303006491667, 23.000000001000032 ] ], [ [ -142.0, -30.0 ], [ -138.637215048147652, -30.241856634568222 ], [ -138.274430096295333, -27.758143365431778 ], [ -141.637215048147652, -27.395358413579448 ], [ -142.0, -30.0 ] ], [ [ -149.04499609795721, -18.628403885988948 ], [ -147.708656314732053, -18.556176700120165 ], [ -147.387646599759677, -17.609918458447495 ], [ -148.092120678972606, -16.961556460661154 ], [ -150.090712613410233, -16.654914556404712 ], [ -150.933363115212728, -17.430207755924044 ], [ -149.526510670415746, -18.304959229223751 ], [ -149.04499609795721, -18.628403885988948 ] ], [ [ -141.0, -10.293778627060794 ], [ -139.297942175470951, -11.264012019750023 ], [ -137.695040770776245, -10.887646599759671 ], [ -138.0, -8.5 ], [ -141.064201942994487, -7.071506768372973 ], [ -142.519969036243424, -7.993985390015116 ], [ -141.0, -10.293778627060794 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "GLOBAL-STABLE-2", "REGION": "GLOBAL STABLE", "UPPER DEPTH": 0.0, "LOWER DEPTH": 40.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -179.999999999999886, 59.17005481506375 ], [ -179.999999999999886, 59.584487535000079 ], [ -179.999999999999886, 60.083102493000041 ], [ -179.999999999999886, 60.581717452000106 ], [ -179.999999999999886, 61.080332410000068 ], [ -179.999999999999886, 61.57894736800003 ], [ -179.999999999999886, 62.077562327000095 ], [ -179.999999999999886, 62.576177285000057 ], [ -179.999999999999886, 63.074792244000037 ], [ -179.999999999999886, 63.573407202000084 ], [ -179.999999999999886, 64.072022161000035 ], [ -179.999999999999886, 64.570637119000111 ], [ -179.999999999999886, 65.066229475000085 ], [ -179.999999999999886, 65.069252078000062 ], [ -179.999999999999886, 65.567867036000024 ], [ -179.999999999999886, 66.066481994000071 ], [ -179.999999999999886, 66.565096953000051 ], [ -179.999999999999886, 67.063711911000013 ], [ -179.999999999999886, 67.562326870000078 ], [ -179.999999999999886, 68.06094182800004 ], [ -179.999999999999886, 68.559556787000076 ], [ -179.999999999999886, 68.982369810000051 ], [ -179.999999999999886, 69.058171745000067 ], [ -179.999999999999886, 69.556786704000018 ], [ -179.999999999999886, 70.055401662000065 ], [ -179.999999999999886, 70.554016620000141 ], [ -179.999999999999886, 70.992010355000076 ], [ -179.999999999999886, 71.052631579 ], [ -179.999999999999886, 71.53668798800004 ], [ -179.999999999999886, 71.551246537000054 ], [ -179.999999999999886, 72.049861496000119 ], [ -179.999999999999886, 72.548476454000081 ], [ -179.999999999999886, 73.047091413000032 ], [ -179.999999999999886, 73.545706371000108 ], [ -179.999999999999886, 74.044321330000059 ], [ -179.999999999999886, 74.542936288000107 ], [ -179.999999999999886, 75.041551247 ], [ -179.999999999999886, 75.540166205000048 ], [ -179.999999999999886, 76.038781163000095 ], [ -179.999999999999886, 76.537396122000075 ], [ -179.999999999999886, 77.036011080000037 ], [ -179.999999999999886, 77.534626039000102 ], [ -179.999999999999886, 78.033240997000064 ], [ -179.999999999999886, 78.531855956000101 ], [ -179.999999999999886, 79.030470914000063 ], [ -179.999999999999886, 79.529085873000042 ], [ -179.999999999999886, 80.027700831000089 ], [ -179.999999999999886, 80.526315789000051 ], [ -179.999999999999886, 81.024930748000031 ], [ -179.999999999999886, 81.523545706000078 ], [ -179.999999999999886, 82.022160665000058 ], [ -179.999999999999886, 82.520775623000105 ], [ -179.999999999999886, 83.019390582000057 ], [ -179.999999999999886, 83.518005540000019 ], [ -179.999999999999886, 84.016620499000084 ], [ -179.999999999999886, 84.515235457000045 ], [ -179.999999999999886, 85.01385041600011 ], [ -179.999999999999886, 85.512465374000072 ], [ -179.999999999999886, 86.011080332000034 ], [ -179.999999999999886, 86.509695291000099 ], [ -179.999999999999886, 87.008310249000061 ], [ -179.999999999999886, 87.506925208000013 ], [ -179.999999999999886, 88.005540166000088 ], [ -179.999999999999886, 88.504155125000125 ], [ -179.999999999999886, 89.002770083 ], [ -179.999999999999886, 89.501385042000067 ], [ -179.999999999999886, 90.000000000000114 ], [ -179.500693480999928, 90.000000000000114 ], [ -179.001386962999931, 90.000000000000114 ], [ -178.502080443999944, 90.000000000000114 ], [ -178.002773924999872, 90.000000000000114 ], [ -177.503467405999885, 90.000000000000114 ], [ -177.004160887999888, 90.000000000000114 ], [ -176.504854368999901, 90.000000000000114 ], [ -176.005547849999914, 90.000000000000114 ], [ -175.506241330999927, 90.000000000000114 ], [ -175.006934812999873, 90.000000000000114 ], [ -174.507628293999858, 90.000000000000114 ], [ -174.008321774999899, 90.000000000000114 ], [ -173.509015256999902, 90.000000000000114 ], [ -173.009708737999915, 90.000000000000114 ], [ -172.510402218999928, 90.000000000000114 ], [ -172.011095699999942, 90.000000000000114 ], [ -171.511789181999944, 90.000000000000114 ], [ -171.012482662999872, 90.000000000000114 ], [ -170.513176143999885, 90.000000000000114 ], [ -170.013869625999916, 90.000000000000114 ], [ -169.514563106999901, 90.000000000000114 ], [ -169.015256587999943, 90.000000000000114 ], [ -168.515950068999928, 90.000000000000114 ], [ -168.016643550999873, 90.000000000000114 ], [ -167.517337031999887, 90.000000000000114 ], [ -167.0180305129999, 90.000000000000114 ], [ -166.518723993999913, 90.000000000000114 ], [ -166.019417475999916, 90.000000000000114 ], [ -165.520110956999929, 90.000000000000114 ], [ -165.020804437999942, 90.000000000000114 ], [ -164.52149791999986, 90.000000000000114 ], [ -164.022191400999873, 90.000000000000114 ], [ -163.522884881999886, 90.000000000000114 ], [ -163.023578362999899, 90.000000000000114 ], [ -162.52427184499993, 90.000000000000114 ], [ -162.024965325999915, 90.000000000000114 ], [ -161.525658806999957, 90.000000000000114 ], [ -161.026352287999885, 90.000000000000114 ], [ -160.527045769999887, 90.000000000000114 ], [ -160.0277392509999, 90.000000000000114 ], [ -159.528432731999914, 90.000000000000114 ], [ -159.029126213999916, 90.000000000000114 ], [ -158.529819694999958, 90.000000000000114 ], [ -158.030513175999943, 90.000000000000114 ], [ -157.531206656999984, 90.000000000000114 ], [ -157.031900138999902, 90.000000000000114 ], [ -156.532593619999886, 90.000000000000114 ], [ -156.033287100999928, 90.000000000000114 ], [ -155.533980582999931, 90.000000000000114 ], [ -155.034674063999944, 90.000000000000114 ], [ -154.535367544999957, 90.000000000000114 ], [ -154.036061025999885, 90.000000000000114 ], [ -153.536754507999888, 90.000000000000114 ], [ -153.037447988999901, 90.000000000000114 ], [ -152.538141469999914, 90.000000000000114 ], [ -152.038834950999927, 90.000000000000114 ], [ -151.53952843299993, 90.000000000000114 ], [ -151.040221913999858, 90.000000000000114 ], [ -150.540915394999899, 90.000000000000114 ], [ -150.041608876999902, 90.000000000000114 ], [ -149.542302357999915, 90.000000000000114 ], [ -149.042995838999929, 90.000000000000114 ], [ -148.543689319999942, 90.000000000000114 ], [ -148.044382801999944, 90.000000000000114 ], [ -147.545076282999958, 90.000000000000114 ], [ -147.045769763999886, 90.000000000000114 ], [ -146.546463244999899, 90.000000000000114 ], [ -146.047156726999901, 90.000000000000114 ], [ -145.547850207999943, 90.000000000000114 ], [ -145.048543688999928, 90.000000000000114 ], [ -144.549237170999959, 90.000000000000114 ], [ -144.049930651999887, 90.000000000000114 ], [ -143.550624132999872, 90.000000000000114 ], [ -143.051317613999913, 90.000000000000114 ], [ -142.552011095999916, 90.000000000000114 ], [ -142.052704576999929, 90.000000000000114 ], [ -141.553398057999942, 90.000000000000114 ], [ -141.054091539999945, 90.000000000000114 ], [ -140.554785020999873, 90.000000000000114 ], [ -140.055478501999914, 90.000000000000114 ], [ -139.556171982999899, 90.000000000000114 ], [ -139.05686546499993, 90.000000000000114 ], [ -138.557558945999915, 90.000000000000114 ], [ -138.058252426999843, 90.000000000000114 ], [ -137.558945907999941, 90.000000000000114 ], [ -137.059639389999887, 90.000000000000114 ], [ -136.5603328709999, 90.000000000000114 ], [ -136.061026351999914, 90.000000000000114 ], [ -135.561719833999916, 90.000000000000114 ], [ -135.062413314999958, 90.000000000000114 ], [ -134.563106795999943, 90.000000000000114 ], [ -134.063800276999984, 90.000000000000114 ], [ -133.564493758999902, 90.000000000000114 ], [ -133.065187239999887, 90.000000000000114 ], [ -132.565880720999928, 90.000000000000114 ], [ -132.066574201999913, 90.000000000000114 ], [ -131.567267683999944, 90.000000000000114 ], [ -131.067961164999957, 90.000000000000114 ], [ -130.568654645999885, 90.000000000000114 ], [ -130.069348128, 90.000000000000114 ], [ -129.570041608999901, 90.000000000000114 ], [ -129.070735089999914, 90.000000000000114 ], [ -128.571428570999927, 90.000000000000114 ], [ -128.07212205299993, 90.000000000000114 ], [ -127.572815533999872, 90.000000000000114 ], [ -127.073509014999885, 90.000000000000114 ], [ -126.574202496999902, 90.000000000000114 ], [ -126.074895977999915, 90.000000000000114 ], [ -125.575589458999929, 90.000000000000114 ], [ -125.076282939999942, 90.000000000000114 ], [ -124.576976421999859, 90.000000000000114 ], [ -124.077669902999872, 90.000000000000114 ], [ -123.578363383999886, 90.000000000000114 ], [ -123.079056864999899, 90.000000000000114 ], [ -122.579750346999916, 90.000000000000114 ], [ -122.080443827999929, 90.000000000000114 ], [ -121.581137308999942, 90.000000000000114 ], [ -121.081830790999859, 90.000000000000114 ], [ -120.582524271999972, 90.000000000000114 ], [ -120.083217752999886, 90.000000000000114 ], [ -119.583911233999899, 90.000000000000114 ], [ -119.084604715999916, 90.000000000000114 ], [ -118.585298196999929, 90.000000000000114 ], [ -118.085991677999942, 90.000000000000114 ], [ -117.586685159999959, 90.000000000000114 ], [ -117.087378640999887, 90.000000000000114 ], [ -116.5880721219999, 90.000000000000114 ], [ -116.088765602999914, 90.000000000000114 ], [ -115.589459084999916, 90.000000000000114 ], [ -115.090152565999929, 90.000000000000114 ], [ -114.590846046999857, 90.000000000000114 ], [ -114.091539527999956, 90.000000000000114 ], [ -113.592233009999887, 90.000000000000114 ], [ -113.092926490999901, 90.000000000000114 ], [ -112.593619971999914, 90.000000000000114 ], [ -112.094313453999931, 90.000000000000114 ], [ -111.595006934999844, 90.000000000000114 ], [ -111.095700415999957, 90.000000000000114 ], [ -110.596393896999871, 90.000000000000114 ], [ -110.097087378999888, 90.000000000000114 ], [ -109.597780859999901, 90.000000000000114 ], [ -109.098474340999914, 90.000000000000114 ], [ -108.599167821999927, 90.000000000000114 ], [ -108.099861303999944, 90.000000000000114 ], [ -107.600554784999957, 90.000000000000114 ], [ -107.101248265999885, 90.000000000000114 ], [ -106.601941747999888, 90.000000000000114 ], [ -106.102635228999901, 90.000000000000114 ], [ -105.603328709999914, 90.000000000000114 ], [ -105.104022190999842, 90.000000000000114 ], [ -104.604715672999944, 90.000000000000114 ], [ -104.105409153999872, 90.000000000000114 ], [ -103.606102634999885, 90.000000000000114 ], [ -103.106796116999902, 90.000000000000114 ], [ -102.607489597999916, 90.000000000000114 ], [ -102.108183078999929, 90.000000000000114 ], [ -101.608876559999942, 90.000000000000114 ], [ -101.109570041999859, 90.000000000000114 ], [ -100.610263522999873, 90.000000000000114 ], [ -100.110957003999886, 90.000000000000114 ], [ -99.611650484999899, 90.000000000000114 ], [ -99.112343966999916, 90.000000000000114 ], [ -98.613037447999915, 90.000000000000114 ], [ -98.113730928999928, 90.000000000000114 ], [ -97.614424410999874, 90.000000000000114 ], [ -97.115117891999972, 90.000000000000114 ], [ -96.6158113729999, 90.000000000000114 ], [ -96.116504853999913, 90.000000000000114 ], [ -95.617198335999916, 90.000000000000114 ], [ -95.117891816999929, 90.000000000000114 ], [ -94.618585297999942, 90.000000000000114 ], [ -94.11927877899987, 90.000000000000114 ], [ -93.619972260999873, 90.000000000000114 ], [ -93.120665741999886, 90.000000000000114 ], [ -92.621359222999899, 90.000000000000114 ], [ -92.12205270499993, 90.000000000000114 ], [ -91.622746185999944, 90.000000000000114 ], [ -91.123439666999872, 90.000000000000114 ], [ -90.62413314799997, 90.000000000000114 ], [ -90.124826629999887, 90.000000000000114 ], [ -89.625520110999901, 90.000000000000114 ], [ -89.126213591999914, 90.000000000000114 ], [ -88.626907073999917, 90.000000000000114 ], [ -88.127600554999844, 90.000000000000114 ], [ -87.628294035999943, 90.000000000000114 ], [ -87.128987516999871, 90.000000000000114 ], [ -86.629680998999902, 90.000000000000114 ], [ -86.130374479999915, 90.000000000000114 ], [ -85.631067960999928, 90.000000000000114 ], [ -85.131761441999942, 90.000000000000114 ], [ -84.632454923999944, 90.000000000000114 ], [ -84.133148404999957, 90.000000000000114 ], [ -83.633841885999885, 90.000000000000114 ], [ -83.134535367999888, 90.000000000000114 ], [ -82.635228848999901, 90.000000000000114 ], [ -82.135922329999914, 90.000000000000114 ], [ -81.636615810999842, 90.000000000000114 ], [ -81.137309292999959, 90.000000000000114 ], [ -80.638002773999858, 90.000000000000114 ], [ -80.138696254999871, 90.000000000000114 ], [ -79.639389735999885, 90.000000000000114 ], [ -79.140083217999916, 90.000000000000114 ], [ -78.640776698999929, 90.000000000000114 ], [ -78.141470179999942, 90.000000000000114 ], [ -77.642163661999859, 90.000000000000114 ], [ -77.142857142999873, 90.000000000000114 ], [ -76.643550623999886, 90.000000000000114 ], [ -76.144244104999899, 90.000000000000114 ], [ -75.644937586999902, 90.000000000000114 ], [ -75.145631067999915, 90.000000000000114 ], [ -74.646324548999928, 90.000000000000114 ], [ -74.147018030999874, 90.000000000000114 ], [ -73.647711511999972, 90.000000000000114 ], [ -73.1484049929999, 90.000000000000114 ], [ -72.649098473999913, 90.000000000000114 ], [ -72.149791955999916, 90.000000000000114 ], [ -71.650485436999929, 90.000000000000114 ], [ -71.151178917999943, 90.000000000000114 ], [ -70.65187239899987, 90.000000000000114 ], [ -70.152565880999873, 90.000000000000114 ], [ -69.653259361999886, 90.000000000000114 ], [ -69.1539528429999, 90.000000000000114 ], [ -68.654646324999931, 90.000000000000114 ], [ -68.155339805999944, 90.000000000000114 ], [ -67.656033286999872, 90.000000000000114 ], [ -67.15672676799997, 90.000000000000114 ], [ -66.657420249999888, 90.000000000000114 ], [ -66.158113730999901, 90.000000000000114 ], [ -65.658807211999914, 90.000000000000114 ], [ -65.159500692999927, 90.000000000000114 ], [ -64.660194174999845, 90.000000000000114 ], [ -64.160887655999943, 90.000000000000114 ], [ -63.661581136999871, 90.000000000000114 ], [ -63.162274618999902, 90.000000000000114 ], [ -62.662968099999915, 90.000000000000114 ], [ -62.163661580999928, 90.000000000000114 ], [ -61.664355061999942, 90.000000000000114 ], [ -61.165048543999944, 90.000000000000114 ], [ -60.665742024999957, 90.000000000000114 ], [ -60.166435505999885, 90.000000000000114 ], [ -59.667128987999888, 90.000000000000114 ], [ -59.167822468999901, 90.000000000000114 ], [ -58.668515949999914, 90.000000000000114 ], [ -58.169209430999842, 90.000000000000114 ], [ -57.669902912999959, 90.000000000000114 ], [ -57.170596393999858, 90.000000000000114 ], [ -56.671289874999871, 90.000000000000114 ], [ -56.171983355999885, 90.000000000000114 ], [ -55.672676837999916, 90.000000000000114 ], [ -55.173370318999929, 90.000000000000114 ], [ -54.674063799999942, 90.000000000000114 ], [ -54.17475728199986, 90.000000000000114 ], [ -53.675450762999873, 90.000000000000114 ], [ -53.176144243999886, 90.000000000000114 ], [ -52.676837724999899, 90.000000000000114 ], [ -52.17753120699993, 90.000000000000114 ], [ -51.678224687999943, 90.000000000000114 ], [ -51.178918168999957, 90.000000000000114 ], [ -50.679611649999856, 90.000000000000114 ], [ -50.180305131999972, 90.000000000000114 ], [ -49.6809986129999, 90.000000000000114 ], [ -49.181692093999914, 90.000000000000114 ], [ -48.682385575999916, 90.000000000000114 ], [ -48.183079056999929, 90.000000000000114 ], [ -47.683772537999943, 90.000000000000114 ], [ -47.184466018999956, 90.000000000000114 ], [ -46.685159500999873, 90.000000000000114 ], [ -46.185852981999886, 90.000000000000114 ], [ -45.6865464629999, 90.000000000000114 ], [ -45.187239944999931, 90.000000000000114 ], [ -44.687933425999944, 90.000000000000114 ], [ -44.188626906999957, 90.000000000000114 ], [ -43.68932038799997, 90.000000000000114 ], [ -43.190013869999888, 90.000000000000114 ], [ -42.690707350999901, 90.000000000000114 ], [ -42.191400831999914, 90.000000000000114 ], [ -41.692094312999927, 90.000000000000114 ], [ -41.192787794999845, 90.000000000000114 ], [ -40.693481275999943, 90.000000000000114 ], [ -40.194174756999871, 90.000000000000114 ], [ -39.694868238999902, 90.000000000000114 ], [ -39.195561719999915, 90.000000000000114 ], [ -38.696255200999929, 90.000000000000114 ], [ -38.196948681999942, 90.000000000000114 ], [ -37.697642163999944, 90.000000000000114 ], [ -37.198335644999958, 90.000000000000114 ], [ -36.699029125999886, 90.000000000000114 ], [ -36.199722606999984, 90.000000000000114 ], [ -35.700416088999901, 90.000000000000114 ], [ -35.201109569999915, 90.000000000000114 ], [ -34.701803050999928, 90.000000000000114 ], [ -34.202496532999959, 90.000000000000114 ], [ -33.703190013999887, 90.000000000000114 ], [ -33.203883494999985, 90.000000000000114 ], [ -32.704576975999913, 90.000000000000114 ], [ -32.205270457999916, 90.000000000000114 ], [ -31.705963938999929, 90.000000000000114 ], [ -31.206657419999942, 90.000000000000114 ], [ -30.70735090199986, 90.000000000000114 ], [ -30.208044382999958, 90.000000000000114 ], [ -29.708737863999886, 90.000000000000114 ], [ -29.209431344999899, 90.000000000000114 ], [ -28.71012482699993, 90.000000000000114 ], [ -28.210818307999943, 90.000000000000114 ], [ -27.711511788999957, 90.000000000000114 ], [ -27.212205269999856, 90.000000000000114 ], [ -26.712898751999887, 90.000000000000114 ], [ -26.2135922329999, 90.000000000000114 ], [ -25.714285713999914, 90.000000000000114 ], [ -25.214979195999916, 90.000000000000114 ], [ -24.71567267699993, 90.000000000000114 ], [ -24.216366157999857, 90.000000000000114 ], [ -23.717059638999956, 90.000000000000114 ], [ -23.217753120999873, 90.000000000000114 ], [ -22.718446601999887, 90.000000000000114 ], [ -22.2191400829999, 90.000000000000114 ], [ -21.719833563999913, 90.000000000000114 ], [ -21.220527045999944, 90.000000000000114 ], [ -20.721220526999957, 90.000000000000114 ], [ -20.22191400799997, 90.000000000000114 ], [ -19.722607489999888, 90.000000000000114 ], [ -19.223300970999901, 90.000000000000114 ], [ -18.723994451999914, 90.000000000000114 ], [ -18.224687932999927, 90.000000000000114 ], [ -17.72538141499993, 90.000000000000114 ], [ -17.226074895999943, 90.000000000000114 ], [ -16.726768376999871, 90.000000000000114 ], [ -16.227461858999987, 90.000000000000114 ], [ -15.728155339999915, 90.000000000000114 ], [ -15.228848820999929, 90.000000000000114 ], [ -14.729542301999942, 90.000000000000114 ], [ -14.230235783999944, 90.000000000000114 ], [ -13.730929264999872, 90.000000000000114 ], [ -13.231622745999886, 90.000000000000114 ], [ -12.732316226999899, 90.000000000000114 ], [ -12.233009708999901, 90.000000000000114 ], [ -11.733703189999915, 90.000000000000114 ], [ -11.234396670999928, 90.000000000000114 ], [ -10.735090152999959, 90.000000000000114 ], [ -10.235783633999887, 90.000000000000114 ], [ -9.736477114999985, 90.000000000000114 ], [ -9.237170595999913, 90.000000000000114 ], [ -8.737864077999916, 90.000000000000114 ], [ -8.238557558999929, 90.000000000000114 ], [ -7.739251039999942, 90.000000000000114 ], [ -7.23994452099987, 90.000000000000114 ], [ -6.740638002999958, 90.000000000000114 ], [ -6.241331483999886, 90.000000000000114 ], [ -5.742024964999899, 90.000000000000114 ], [ -5.24271844699993, 90.000000000000114 ], [ -4.743411927999944, 90.000000000000114 ], [ -4.244105408999957, 90.000000000000114 ], [ -3.744798889999856, 90.000000000000114 ], [ -3.245492371999887, 90.000000000000114 ], [ -2.746185852999901, 90.000000000000114 ], [ -2.246879333999914, 90.000000000000114 ], [ -1.747572815999916, 90.000000000000114 ], [ -1.24826629699993, 90.000000000000114 ], [ -0.748959777999858, 90.000000000000114 ], [ -0.249653258999956, 90.000000000000114 ], [ 0.249653259000127, 90.000000000000114 ], [ 0.748959778000113, 90.000000000000114 ], [ 1.2482662970001, 90.000000000000114 ], [ 1.747572816000087, 90.000000000000114 ], [ 2.246879334000141, 90.000000000000114 ], [ 2.746185853000043, 90.000000000000114 ], [ 3.245492372000115, 90.000000000000114 ], [ 3.744798890000112, 90.000000000000114 ], [ 4.244105409000099, 90.000000000000114 ], [ 4.743411928000086, 90.000000000000114 ], [ 5.242718447000073, 90.000000000000114 ], [ 5.74202496500007, 90.000000000000114 ], [ 6.241331484000057, 90.000000000000114 ], [ 6.740638003000129, 90.000000000000114 ], [ 7.239944521000098, 90.000000000000114 ], [ 7.739251040000084, 90.000000000000114 ], [ 8.238557559000071, 90.000000000000114 ], [ 8.737864078000058, 90.000000000000114 ], [ 9.237170596000055, 90.000000000000114 ], [ 9.736477115000127, 90.000000000000114 ], [ 10.235783634000114, 90.000000000000114 ], [ 10.735090153000101, 90.000000000000114 ], [ 11.234396671000098, 90.000000000000114 ], [ 11.733703190000085, 90.000000000000114 ], [ 12.233009709000072, 90.000000000000114 ], [ 12.732316227000041, 90.000000000000114 ], [ 13.231622746000113, 90.000000000000114 ], [ 13.730929265000015, 90.000000000000114 ], [ 14.230235784000087, 90.000000000000114 ], [ 14.729542302000084, 90.000000000000114 ], [ 15.228848821000071, 90.000000000000114 ], [ 15.728155340000058, 90.000000000000114 ], [ 16.22746185900013, 90.000000000000114 ], [ 16.726768377000042, 90.000000000000114 ], [ 17.226074896000114, 90.000000000000114 ], [ 17.725381415000101, 90.000000000000114 ], [ 18.22468793300007, 90.000000000000114 ], [ 18.723994452000056, 90.000000000000114 ], [ 19.223300971000043, 90.000000000000114 ], [ 19.722607490000144, 90.000000000000114 ], [ 20.221914008000113, 90.000000000000114 ], [ 20.721220527000099, 90.000000000000114 ], [ 21.220527046000086, 90.000000000000114 ], [ 21.719833564000083, 90.000000000000114 ], [ 22.21914008300007, 90.000000000000114 ], [ 22.718446602000142, 90.000000000000114 ], [ 23.217753121000044, 90.000000000000114 ], [ 23.717059639000126, 90.000000000000114 ], [ 24.216366158000113, 90.000000000000114 ], [ 24.7156726770001, 90.000000000000114 ], [ 25.214979196000087, 90.000000000000114 ], [ 25.714285714000141, 90.000000000000114 ], [ 26.213592233000043, 90.000000000000114 ], [ 26.712898752000115, 90.000000000000114 ], [ 27.212205270000112, 90.000000000000114 ], [ 27.711511789000099, 90.000000000000114 ], [ 28.210818308000086, 90.000000000000114 ], [ 28.710124827000072, 90.000000000000114 ], [ 29.209431345000041, 90.000000000000114 ], [ 29.708737864000057, 90.000000000000114 ], [ 30.208044383000129, 90.000000000000114 ], [ 30.707350902000087, 90.000000000000114 ], [ 31.206657420000113, 90.000000000000114 ], [ 31.705963939000071, 90.000000000000114 ], [ 32.205270458000086, 90.000000000000114 ], [ 32.704576976000055, 90.000000000000114 ], [ 33.203883495000127, 90.000000000000114 ], [ 33.703190014000143, 90.000000000000114 ], [ 34.202496533000101, 90.000000000000114 ], [ 34.70180305100007, 90.000000000000114 ], [ 35.201109570000085, 90.000000000000114 ], [ 35.700416089000043, 90.000000000000114 ], [ 36.199722607000069, 90.000000000000114 ], [ 36.699029126000141, 90.000000000000114 ], [ 37.198335645000043, 90.000000000000114 ], [ 37.697642164000115, 90.000000000000114 ], [ 38.196948682000084, 90.000000000000114 ], [ 38.696255201000099, 90.000000000000114 ], [ 39.195561720000057, 90.000000000000114 ], [ 39.69486823900013, 90.000000000000114 ], [ 40.194174757000042, 90.000000000000114 ], [ 40.693481276000114, 90.000000000000114 ], [ 41.192787795000072, 90.000000000000114 ], [ 41.692094313000098, 90.000000000000114 ], [ 42.191400832000056, 90.000000000000114 ], [ 42.690707351000071, 90.000000000000114 ], [ 43.190013870000143, 90.000000000000114 ], [ 43.689320388000112, 90.000000000000114 ], [ 44.188626907000128, 90.000000000000114 ], [ 44.687933426000086, 90.000000000000114 ], [ 45.187239945000101, 90.000000000000114 ], [ 45.68654646300007, 90.000000000000114 ], [ 46.185852982000142, 90.000000000000114 ], [ 46.685159501000044, 90.000000000000114 ], [ 47.184466019000126, 90.000000000000114 ], [ 47.683772538000085, 90.000000000000114 ], [ 48.1830790570001, 90.000000000000114 ], [ 48.682385576000058, 90.000000000000114 ], [ 49.181692094000141, 90.000000000000114 ], [ 49.680998613000042, 90.000000000000114 ], [ 50.180305132000115, 90.000000000000114 ], [ 50.679611650000084, 90.000000000000114 ], [ 51.178918169000099, 90.000000000000114 ], [ 51.678224688000057, 90.000000000000114 ], [ 52.177531207000072, 90.000000000000114 ], [ 52.676837725000041, 90.000000000000114 ], [ 53.176144244000056, 90.000000000000114 ], [ 53.675450763000129, 90.000000000000114 ], [ 54.174757282000087, 90.000000000000114 ], [ 54.674063800000113, 90.000000000000114 ], [ 55.173370319000071, 90.000000000000114 ], [ 55.672676838000086, 90.000000000000114 ], [ 56.171983356000055, 90.000000000000114 ], [ 56.671289875000127, 90.000000000000114 ], [ 57.170596394000142, 90.000000000000114 ], [ 57.669902913000101, 90.000000000000114 ], [ 58.16920943100007, 90.000000000000114 ], [ 58.668515950000085, 90.000000000000114 ], [ 59.167822469000043, 90.000000000000114 ], [ 59.667128988000059, 90.000000000000114 ], [ 60.166435506000141, 90.000000000000114 ], [ 60.665742025000043, 90.000000000000114 ], [ 61.165048544000115, 90.000000000000114 ], [ 61.664355062000084, 90.000000000000114 ], [ 62.163661581000099, 90.000000000000114 ], [ 62.662968100000057, 90.000000000000114 ], [ 63.162274619000129, 90.000000000000114 ], [ 63.661581137000042, 90.000000000000114 ], [ 64.160887656000114, 90.000000000000114 ], [ 64.660194175000072, 90.000000000000114 ], [ 65.159500693000098, 90.000000000000114 ], [ 65.658807212000056, 90.000000000000114 ], [ 66.158113731000071, 90.000000000000114 ], [ 66.65742025000003, 90.000000000000114 ], [ 67.156726768000112, 90.000000000000114 ], [ 67.656033287000128, 90.000000000000114 ], [ 68.155339806000086, 90.000000000000114 ], [ 68.654646325000101, 90.000000000000114 ], [ 69.15395284300007, 90.000000000000114 ], [ 69.653259362000142, 90.000000000000114 ], [ 70.152565881000044, 90.000000000000114 ], [ 70.651872399000126, 90.000000000000114 ], [ 71.151178918000085, 90.000000000000114 ], [ 71.6504854370001, 90.000000000000114 ], [ 72.149791956000058, 90.000000000000114 ], [ 72.649098474000141, 90.000000000000114 ], [ 73.148404993000042, 90.000000000000114 ], [ 73.647711512000114, 90.000000000000114 ], [ 74.14701803100013, 90.000000000000114 ], [ 74.646324549000099, 90.000000000000114 ], [ 75.145631068000057, 90.000000000000114 ], [ 75.644937587000072, 90.000000000000114 ], [ 76.144244105000041, 90.000000000000114 ], [ 76.643550624000056, 90.000000000000114 ], [ 77.142857143000128, 90.000000000000114 ], [ 77.64216366200003, 90.000000000000114 ], [ 78.141470180000113, 90.000000000000114 ], [ 78.640776699000071, 90.000000000000114 ], [ 79.140083218000086, 90.000000000000114 ], [ 79.639389736000055, 90.000000000000114 ], [ 80.138696255000127, 90.000000000000114 ], [ 80.638002774000029, 90.000000000000114 ], [ 81.137309293000101, 90.000000000000114 ], [ 81.63661581100007, 90.000000000000114 ], [ 82.135922330000085, 90.000000000000114 ], [ 82.635228849000043, 90.000000000000114 ], [ 83.134535368000058, 90.000000000000114 ], [ 83.633841886000141, 90.000000000000114 ], [ 84.133148405000043, 90.000000000000114 ], [ 84.632454924000115, 90.000000000000114 ], [ 85.131761442000084, 90.000000000000114 ], [ 85.631067961000099, 90.000000000000114 ], [ 86.130374480000057, 90.000000000000114 ], [ 86.629680999000129, 90.000000000000114 ], [ 87.128987517000041, 90.000000000000114 ], [ 87.628294036000113, 90.000000000000114 ], [ 88.127600555000072, 90.000000000000114 ], [ 88.626907074000087, 90.000000000000114 ], [ 89.126213592000056, 90.000000000000114 ], [ 89.625520111000071, 90.000000000000114 ], [ 90.12482663000003, 90.000000000000114 ], [ 90.624133148000112, 90.000000000000114 ], [ 91.123439667000127, 90.000000000000114 ], [ 91.622746186000086, 90.000000000000114 ], [ 92.122052705000101, 90.000000000000114 ], [ 92.62135922300007, 90.000000000000114 ], [ 93.120665742000028, 90.000000000000114 ], [ 93.619972261000044, 90.000000000000114 ], [ 94.119278779000126, 90.000000000000114 ], [ 94.618585298000028, 90.000000000000114 ], [ 95.1178918170001, 90.000000000000114 ], [ 95.617198336000058, 90.000000000000114 ], [ 96.116504854000084, 90.000000000000114 ], [ 96.615811373000042, 90.000000000000114 ], [ 97.115117892000114, 90.000000000000114 ], [ 97.61442441100013, 90.000000000000114 ], [ 98.113730929000099, 90.000000000000114 ], [ 98.613037448000057, 90.000000000000114 ], [ 99.112343967000072, 90.000000000000114 ], [ 99.611650485000041, 90.000000000000114 ], [ 100.110957004000056, 90.000000000000114 ], [ 100.610263523000128, 90.000000000000114 ], [ 101.10957004200003, 90.000000000000114 ], [ 101.608876560000112, 90.000000000000114 ], [ 102.108183079000071, 90.000000000000114 ], [ 102.607489598000086, 90.000000000000114 ], [ 103.106796117000044, 90.000000000000114 ], [ 103.606102635000127, 90.000000000000114 ], [ 104.105409154000029, 90.000000000000114 ], [ 104.604715673000101, 90.000000000000114 ], [ 105.10402219100007, 90.000000000000114 ], [ 105.603328710000085, 90.000000000000114 ], [ 106.102635229000043, 90.000000000000114 ], [ 106.601941748000058, 90.000000000000114 ], [ 107.101248266000027, 90.000000000000114 ], [ 107.600554785000043, 90.000000000000114 ], [ 108.099861304000115, 90.000000000000114 ], [ 108.599167822000084, 90.000000000000114 ], [ 109.098474341000099, 90.000000000000114 ], [ 109.597780860000057, 90.000000000000114 ], [ 110.097087379000129, 90.000000000000114 ], [ 110.596393897000041, 90.000000000000114 ], [ 111.095700416000113, 90.000000000000114 ], [ 111.595006935000072, 90.000000000000114 ], [ 112.094313454000087, 90.000000000000114 ], [ 112.593619972000056, 90.000000000000114 ], [ 113.092926491000071, 90.000000000000114 ], [ 113.592233010000143, 90.000000000000114 ], [ 114.091539528000055, 90.000000000000114 ], [ 114.590846047000014, 90.000000000000114 ], [ 115.090152566000086, 90.000000000000114 ], [ 115.589459085000101, 90.000000000000114 ], [ 116.08876560300007, 90.000000000000114 ], [ 116.588072122000142, 90.000000000000114 ], [ 117.0873786410001, 90.000000000000114 ], [ 117.58668516, 90.000000000000114 ], [ 118.085991678000028, 90.000000000000114 ], [ 118.5852981970001, 90.000000000000114 ], [ 119.084604716000058, 90.000000000000114 ], [ 119.583911234000141, 90.000000000000114 ], [ 120.083217753000156, 90.000000000000114 ], [ 120.582524272000057, 90.000000000000114 ], [ 121.081830791000016, 90.000000000000114 ], [ 121.581137309000098, 90.000000000000114 ], [ 122.080443828000057, 90.000000000000114 ], [ 122.579750347000072, 90.000000000000114 ], [ 123.079056865000155, 90.000000000000114 ], [ 123.578363384000056, 90.000000000000114 ], [ 124.077669903000015, 90.000000000000114 ], [ 124.57697642200003, 90.000000000000114 ], [ 125.076282940000112, 90.000000000000114 ], [ 125.575589459000071, 90.000000000000114 ], [ 126.074895978000086, 90.000000000000114 ], [ 126.574202497000158, 90.000000000000114 ], [ 127.073509015000013, 90.000000000000114 ], [ 127.572815534000028, 90.000000000000114 ], [ 128.072122053000101, 90.000000000000114 ], [ 128.571428571000069, 90.000000000000114 ], [ 129.070735090000085, 90.000000000000114 ], [ 129.570041609000157, 90.000000000000114 ], [ 130.069348128000058, 90.000000000000114 ], [ 130.568654646000027, 90.000000000000114 ], [ 131.067961165000042, 90.000000000000114 ], [ 131.567267684000115, 90.000000000000114 ], [ 132.066574202000083, 90.000000000000114 ], [ 132.565880721000156, 90.000000000000114 ], [ 133.065187240000057, 90.000000000000114 ], [ 133.564493759000015, 90.000000000000114 ], [ 134.063800277000041, 90.000000000000114 ], [ 134.563106796000113, 90.000000000000114 ], [ 135.062413315000072, 90.000000000000114 ], [ 135.561719834000087, 90.000000000000114 ], [ 136.061026352, 90.000000000000114 ], [ 136.560332871000071, 90.000000000000114 ], [ 137.059639390000029, 90.000000000000114 ], [ 137.558945908000112, 90.000000000000114 ], [ 138.058252427000127, 90.000000000000114 ], [ 138.557558946000086, 90.000000000000114 ], [ 139.056865465000158, 90.000000000000114 ], [ 139.55617198300007, 90.000000000000114 ], [ 140.055478502000028, 90.000000000000114 ], [ 140.554785021000043, 90.000000000000114 ], [ 141.054091540000115, 90.000000000000114 ], [ 141.553398058000084, 90.000000000000114 ], [ 142.0527045770001, 90.000000000000114 ], [ 142.552011096, 90.000000000000114 ], [ 143.051317614000084, 90.000000000000114 ], [ 143.550624133000042, 90.000000000000114 ], [ 144.049930652000114, 90.000000000000114 ], [ 144.549237171000129, 90.000000000000114 ], [ 145.048543689000098, 90.000000000000114 ], [ 145.547850208, 90.000000000000114 ], [ 146.047156727000072, 90.000000000000114 ], [ 146.546463245000041, 90.000000000000114 ], [ 147.045769764000056, 90.000000000000114 ], [ 147.545076283000128, 90.000000000000114 ], [ 148.044382802000086, 90.000000000000114 ], [ 148.54368932, 90.000000000000114 ], [ 149.042995839000071, 90.000000000000114 ], [ 149.542302358000086, 90.000000000000114 ], [ 150.041608877000044, 90.000000000000114 ], [ 150.540915395000127, 90.000000000000114 ], [ 151.040221914000085, 90.000000000000114 ], [ 151.5395284330001, 90.000000000000114 ], [ 152.038834951000013, 90.000000000000114 ], [ 152.538141470000085, 90.000000000000114 ], [ 153.037447989000043, 90.000000000000114 ], [ 153.536754508000058, 90.000000000000114 ], [ 154.036061026000141, 90.000000000000114 ], [ 154.535367545000099, 90.000000000000114 ], [ 155.034674064, 90.000000000000114 ], [ 155.533980583000016, 90.000000000000114 ], [ 156.033287101000042, 90.000000000000114 ], [ 156.532593620000057, 90.000000000000114 ], [ 157.031900139000129, 90.000000000000114 ], [ 157.531206657000098, 90.000000000000114 ], [ 158.030513176, 90.000000000000114 ], [ 158.529819695000015, 90.000000000000114 ], [ 159.029126214000087, 90.000000000000114 ], [ 159.528432732000056, 90.000000000000114 ], [ 160.027739251000071, 90.000000000000114 ], [ 160.527045770000143, 90.000000000000114 ], [ 161.026352288, 90.000000000000114 ], [ 161.525658807000013, 90.000000000000114 ], [ 162.024965326000085, 90.000000000000114 ], [ 162.524271845000101, 90.000000000000114 ], [ 163.02357836300007, 90.000000000000114 ], [ 163.522884882000142, 90.000000000000114 ], [ 164.0221914010001, 90.000000000000114 ], [ 164.52149792, 90.000000000000114 ], [ 165.020804438000027, 90.000000000000114 ], [ 165.520110957000099, 90.000000000000114 ], [ 166.019417476000058, 90.000000000000114 ], [ 166.51872399400014, 90.000000000000114 ], [ 167.018030513000156, 90.000000000000114 ], [ 167.517337032000057, 90.000000000000114 ], [ 168.016643551000016, 90.000000000000114 ], [ 168.515950069000098, 90.000000000000114 ], [ 169.015256588000057, 90.000000000000114 ], [ 169.514563107000072, 90.000000000000114 ], [ 170.013869626000144, 90.000000000000114 ], [ 170.513176144000056, 90.000000000000114 ], [ 171.012482663000014, 90.000000000000114 ], [ 171.51178918200003, 90.000000000000114 ], [ 172.011095700000112, 90.000000000000114 ], [ 172.510402219000071, 90.000000000000114 ], [ 173.009708738000143, 90.000000000000114 ], [ 173.509015257000215, 90.000000000000114 ], [ 174.008321775000127, 90.000000000000114 ], [ 174.507628294000085, 90.000000000000114 ], [ 175.0069348130001, 90.000000000000114 ], [ 175.506241331000183, 90.000000000000114 ], [ 176.005547850000141, 90.000000000000114 ], [ 176.504854369000157, 90.000000000000114 ], [ 177.004160887999944, 90.000000000000114 ], [ 177.503467406000027, 90.000000000000114 ], [ 178.002773925000042, 90.000000000000114 ], [ 178.502080444000171, 90.000000000000114 ], [ 179.001386963000186, 90.000000000000114 ], [ 179.500693481000042, 90.000000000000114 ], [ 180.0, 90.000000000000114 ], [ 180.0, 89.501385042000067 ], [ 180.0, 89.002770083 ], [ 180.0, 88.504155125000125 ], [ 180.0, 88.005540166000088 ], [ 180.0, 87.506925208000013 ], [ 180.0, 87.008310249000061 ], [ 180.0, 86.509695291000099 ], [ 180.0, 86.011080332000034 ], [ 180.0, 85.512465374000072 ], [ 180.0, 85.01385041600011 ], [ 180.0, 84.515235457000045 ], [ 180.0, 84.016620499000084 ], [ 180.0, 83.518005540000019 ], [ 180.0, 83.019390582000057 ], [ 180.0, 82.520775623000105 ], [ 180.0, 82.022160665000058 ], [ 180.0, 81.523545706000078 ], [ 180.0, 81.024930748000031 ], [ 180.0, 80.526315789000051 ], [ 180.0, 80.027700831000089 ], [ 180.0, 79.529085873000042 ], [ 180.0, 79.030470914000063 ], [ 180.0, 78.531855956000101 ], [ 180.0, 78.033240997000064 ], [ 180.0, 77.534626039000102 ], [ 180.0, 77.036011080000037 ], [ 180.0, 76.537396122000075 ], [ 180.0, 76.038781163000095 ], [ 180.0, 75.540166205000048 ], [ 180.0, 75.041551247 ], [ 180.0, 74.542936288000107 ], [ 180.0, 74.044321330000059 ], [ 180.0, 73.545706371000108 ], [ 180.0, 73.047091413000032 ], [ 180.0, 72.548476454000081 ], [ 180.0, 72.049861496000119 ], [ 180.0, 71.551246537000054 ], [ 180.0, 71.536419634000112 ], [ 180.0, 71.052631579 ], [ 180.0, 70.99242290799999 ], [ 180.0, 70.554016620000141 ], [ 180.0, 70.055401662000065 ], [ 180.0, 69.556786704000018 ], [ 180.0, 69.058171745000067 ], [ 180.0, 68.981050321000026 ], [ 180.0, 68.559556787000076 ], [ 180.0, 68.06094182800004 ], [ 180.0, 67.562326870000078 ], [ 180.0, 67.063711911000013 ], [ 180.0, 66.565096953000051 ], [ 180.0, 66.066481994000071 ], [ 180.0, 65.567867036000024 ], [ 180.0, 65.069252078000062 ], [ 180.0, 65.066189513000069 ], [ 180.0, 64.570637119000111 ], [ 180.0, 64.072022161000035 ], [ 180.0, 63.573407202000084 ], [ 180.0, 63.074792244000037 ], [ 180.0, 62.576177285000057 ], [ 180.0, 62.077562327000095 ], [ 180.0, 61.57894736800003 ], [ 180.0, 61.080332410000068 ], [ 180.0, 60.581717452000106 ], [ 180.0, 60.083102493000041 ], [ 180.0, 59.584487535000079 ], [ 180.0, 59.085872576000042 ], [ 180.0, 58.587257618000081 ], [ 180.0, 58.088642659000101 ], [ 180.0, 57.590027701000054 ], [ 180.0, 57.091412742000074 ], [ 180.0, 56.592797784000112 ], [ 180.0, 56.094182825000075 ], [ 180.0, 55.595567867000113 ], [ 180.0, 55.096952909000038 ], [ 180.0, 54.598337950000086 ], [ 180.0, 54.099722992000125 ], [ 180.0, 53.60110803300006 ], [ 180.0, 53.102493075000098 ], [ 180.0, 52.603878116000033 ], [ 180.0, 52.105263158000071 ], [ 180.0, 51.606648199000119 ], [ 180.0, 51.108033241000044 ], [ 180.0, 50.609418283000082 ], [ 180.0, 50.11080332400013 ], [ 180.0, 49.612188366000083 ], [ 180.0, 49.113573407000018 ], [ 180.0, 48.614958449000142 ], [ 180.0, 48.116343490000077 ], [ 180.0, 47.617728532000029 ], [ 180.0, 47.119113573000078 ], [ 180.0, 46.620498615000088 ], [ 180.0, 46.121883657000041 ], [ 180.0, 45.623268698000089 ], [ 180.0, 45.124653740000014 ], [ 180.0, 44.626038781000062 ], [ 180.0, 44.1274238230001 ], [ 180.0, 43.628808864000035 ], [ 180.0, 43.130193906000073 ], [ 180.0, 42.631578947 ], [ 180.0, 42.132963989000046 ], [ 180.0, 41.634349030000095 ], [ 180.0, 41.135734072000048 ], [ 180.0, 40.637119114000058 ], [ 180.0, 40.138504155000106 ], [ 180.0, 39.639889197000059 ], [ 180.0, 39.141274238000079 ], [ 180.0, 38.642659280000117 ], [ 180.0, 38.144044321000052 ], [ 180.0, 37.64542936300009 ], [ 180.0, 37.146814404000054 ], [ 180.0, 36.648199446000092 ], [ 180.0, 36.149584488000102 ], [ 180.0, 35.650969529000065 ], [ 180.0, 35.152354571000103 ], [ 180.0, 34.653739612000038 ], [ 180.0, 34.155124654000076 ], [ 180.0, 33.656509695000096 ], [ 180.0, 33.157894737000049 ], [ 180.0, 32.659279778000098 ], [ 180.0, 32.160664820000136 ], [ 180.0, 31.662049861000071 ], [ 180.0, 31.163434903000109 ], [ 180.0, 30.664819945000147 ], [ 180.0, 30.166204986000082 ], [ 180.0, 29.66759002800012 ], [ 180.0, 29.168975069000055 ], [ 180.0, 28.670360111 ], [ 180.0, 28.171745152000142 ], [ 180.0, 27.673130194000066 ], [ 180.0, 27.174515235000115 ], [ 180.0, 26.675900277000068 ], [ 180.0, 26.177285319000106 ], [ 180.0, 25.678670360000041 ], [ 180.0, 25.180055402000079 ], [ 180.0, 24.681440443000014 ], [ 180.0, 24.182825485000052 ], [ 180.0, 23.684210526000101 ], [ 180.0, 23.185595568000025 ], [ 180.0, 22.686980609000074 ], [ 180.0, 22.188365651000112 ], [ 180.0, 21.689750693000036 ], [ 180.0, 21.191135734000085 ], [ 180.0, 20.692520776000038 ], [ 180.0, 20.193905817000058 ], [ 180.0, 19.695290859000096 ], [ 180.0, 19.196675900000031 ], [ 180.0, 18.698060942000069 ], [ 180.0, 18.199445983000118 ], [ 180.0, 17.70083102500007 ], [ 180.0, 17.202216066000091 ], [ 180.0, 16.703601108000043 ], [ 180.0, 16.204986150000082 ], [ 180.0, 15.706371191000102 ], [ 180.0, 15.207756233000055 ], [ 180.0, 14.709141274000075 ], [ 180.0, 14.210526316000127 ], [ 180.0, 13.711911357000062 ], [ 180.0, 13.2132963990001 ], [ 180.0, 12.714681440000049 ], [ 180.0, 12.216066482000087 ], [ 180.0, 11.717451524000111 ], [ 180.0, 11.218836565000061 ], [ 180.0, 10.720221607000099 ], [ 180.0, 10.221606648000133 ], [ 180.0, 9.722991690000072 ], [ 180.0, 9.224376731000106 ], [ 180.0, 8.725761773000059 ], [ 180.0, 8.227146814000093 ], [ 180.0, 7.728531856000131 ], [ 180.0, 7.22991689800007 ], [ 180.0, 6.731301939000019 ], [ 180.0, 6.232686981000143 ], [ 180.0, 5.734072022000092 ], [ 180.0, 5.23545706400003 ], [ 180.0, 4.736842105000065 ], [ 180.0, 4.238227147000103 ], [ 180.0, 3.739612188000137 ], [ 180.0, 3.240997230000076 ], [ 180.0, 2.742382271000025 ], [ 180.0, 2.243767313000063 ], [ 180.0, 1.745152355000101 ], [ 180.0, 1.246537396000036 ], [ 180.0, 0.747922438000074 ], [ 180.0, 0.249307479000024 ], [ 180.0, -0.249307478999938 ], [ 180.0, -0.747922437999904 ], [ 180.0, -1.246537395999965 ], [ 180.0, -1.745152354999931 ], [ 180.0, -2.243767312999893 ], [ 180.0, -2.742382270999954 ], [ 180.0, -3.2409972299999 ], [ 180.0, -3.739612187999882 ], [ 180.0, -4.238227146999932 ], [ 180.0, -4.736842104999894 ], [ 180.0, -5.235457063999959 ], [ 180.0, -5.734072021999921 ], [ 180.0, -6.232686980999887 ], [ 180.0, -6.731301938999934 ], [ 180.0, -7.2299168979999 ], [ 180.0, -7.728531855999961 ], [ 180.0, -8.227146813999923 ], [ 180.0, -8.725761772999888 ], [ 180.0, -9.22437673099995 ], [ 180.0, -9.722991689999915 ], [ 180.0, -10.221606647999877 ], [ 180.0, -10.720221606999928 ], [ 180.0, -11.21883656499989 ], [ 180.0, -11.717451523999955 ], [ 180.0, -12.216066481999917 ], [ 180.0, -12.714681439999879 ], [ 180.0, -13.21329639899993 ], [ 180.0, -13.711911356999906 ], [ 180.0, -14.210526315999871 ], [ 180.0, -14.709141273999919 ], [ 180.0, -15.207756232999969 ], [ 180.0, -15.706371190999945 ], [ 180.0, -16.149111724999983 ], [ 180.0, -16.168951069999963 ], [ 180.0, -16.204986149999911 ], [ 180.0, -16.489518921999931 ], [ 180.0, -16.541274866999885 ], [ 180.0, -16.703601107999958 ], [ 180.0, -16.785348846999881 ], [ 180.0, -16.962782392999912 ], [ 180.0, -17.20221606599992 ], [ 180.0, -17.700831024999985 ], [ 180.0, -18.199445982999947 ], [ 180.0, -18.698060941999913 ], [ 180.0, -19.1966759 ], [ 180.0, -19.695290858999925 ], [ 180.0, -20.193905816999902 ], [ 180.0, -20.692520775999952 ], [ 180.0, -21.191135733999914 ], [ 180.0, -21.689750692999965 ], [ 180.0, -22.188365650999941 ], [ 180.0, -22.686980608999903 ], [ 180.0, -23.185595567999954 ], [ 180.0, -23.684210525999916 ], [ 180.0, -24.182825484999881 ], [ 180.0, -24.681440442999943 ], [ 180.0, -25.180055401999908 ], [ 180.0, -25.678670359999956 ], [ 180.0, -26.177285318999921 ], [ 180.0, -26.675900276999897 ], [ 180.0, -27.174515234999944 ], [ 180.0, -27.67313019399991 ], [ 180.0, -28.171745151999872 ], [ 180.0, -28.670360110999937 ], [ 180.0, -29.168975068999899 ], [ 180.0, -29.66759002799995 ], [ 180.0, -30.166204985999912 ], [ 180.0, -30.664819944999877 ], [ 180.0, -31.163434902999938 ], [ 180.0, -31.662049860999986 ], [ 180.0, -32.160664819999866 ], [ 180.0, -32.659279777999927 ], [ 180.0, -33.157894736999893 ], [ 180.0, -33.65650969499994 ], [ 180.0, -34.155124653999906 ], [ 180.0, -34.653739611999967 ], [ 180.0, -35.152354570999933 ], [ 180.0, -35.65096952899998 ], [ 180.0, -36.14958448799986 ], [ 180.0, -36.648199445999907 ], [ 180.0, -37.146814403999969 ], [ 180.0, -37.645429362999934 ], [ 180.0, -38.144044320999896 ], [ 180.0, -38.642659279999947 ], [ 180.0, -39.141274237999923 ], [ 180.0, -39.639889196999974 ], [ 180.0, -40.138504154999936 ], [ 180.0, -40.637119113999901 ], [ 180.0, -41.135734071999963 ], [ 180.0, -41.634349029999925 ], [ 180.0, -42.13296398899989 ], [ 180.0, -42.631578946999937 ], [ 180.0, -43.130193905999903 ], [ 180.0, -43.628808863999964 ], [ 180.0, -44.12742382299993 ], [ 180.0, -44.626038780999892 ], [ 180.0, -45.124653739999943 ], [ 180.0, -45.623268697999919 ], [ 180.0, -46.12188365699997 ], [ 180.0, -46.620498614999931 ], [ 180.0, -47.119113572999893 ], [ 180.0, -47.617728531999958 ], [ 180.0, -48.116343489999899 ], [ 180.0, -48.614958448999886 ], [ 180.0, -49.113573406999933 ], [ 180.0, -49.612188365999906 ], [ 180.0, -50.110803323999868 ], [ 180.0, -50.609418282999926 ], [ 180.0, -51.108033240999887 ], [ 180.0, -51.606648198999942 ], [ 180.0, -52.105263157999907 ], [ 180.0, -52.603878115999876 ], [ 180.0, -53.102493074999927 ], [ 180.0, -53.601108032999981 ], [ 180.0, -54.099722991999947 ], [ 180.0, -54.598337949999916 ], [ 180.0, -55.096952908999882 ], [ 180.0, -55.595567866999936 ], [ 180.0, -56.094182824999898 ], [ 180.0, -56.592797783999863 ], [ 180.0, -57.091412741999918 ], [ 180.0, -57.590027700999975 ], [ 180.0, -58.088642658999937 ], [ 180.0, -58.587257617999903 ], [ 180.0, -59.085872575999957 ], [ 180.0, -59.584487534999923 ], [ 180.0, -60.083102492999892 ], [ 180.0, -60.581717451999943 ], [ 180.0, -60.99999293104333 ], [ 175.383377078388833, -61.71563842443264 ], [ 165.011904888770886, -60.718907474823531 ], [ 163.854122950546952, -57.44803956372715 ], [ 164.720374803215577, -54.171552988113866 ], [ 168.650807866253416, -51.550276566386458 ], [ 170.899470438219936, -49.674606717097696 ], [ 172.269190722400225, -48.887575225950918 ], [ 174.405419107012335, -47.43784325115957 ], [ 178.349202402182783, -44.831359048294225 ], [ 180.0, -41.109986097344191 ], [ 180.0, -13.409146178330142 ], [ 175.585965449340307, -11.538361376818989 ], [ 171.680903067215155, -9.408764336038024 ], [ 167.32244475020596, -6.838696049433485 ], [ 161.782910786618402, -4.024756600411582 ], [ 157.494273699217217, -1.914734925572398 ], [ 153.954514029155519, 0.192230571937166 ], [ 152.063846055969606, 1.029828552008871 ], [ 149.928025195685251, 1.736948288454386 ], [ 147.460152652549766, 2.070803043158341 ], [ 145.111605339041887, 1.845622125472298 ], [ 143.344604983920931, 1.609585148698811 ], [ 141.300029183920657, 0.853551383438099 ], [ 138.261224364717776, 1.03861016334648 ], [ 134.87562033203244, 2.262326170489284 ], [ 131.938274988747906, 3.680441209296824 ], [ 130.314803609037256, 5.683102096281036 ], [ 130.624382590386887, 8.857055052119465 ], [ 129.636163942183117, 12.363550963151027 ], [ 127.793225215686917, 14.210545427117214 ], [ 125.577232437507803, 16.159996438809568 ], [ 124.909579010702657, 17.563241037618393 ], [ 125.041355358247557, 19.464108727780758 ], [ 125.972702788349167, 20.525060668528226 ], [ 127.843444679533974, 21.561208886504513 ], [ 129.463316855225628, 22.592822466691704 ], [ 131.161370847949343, 24.502394235519411 ], [ 132.8409964410653, 25.761810878321526 ], [ 133.972297726044928, 27.08780201393698 ], [ 134.570051884696198, 28.733384658657776 ], [ 135.336043473599119, 29.045888128273756 ], [ 136.318938027323497, 28.659602075800802 ], [ 136.766135643406017, 27.158122618133845 ], [ 137.588819108429306, 25.336525879478131 ], [ 138.729779213667598, 23.344954123667332 ], [ 140.536375935653439, 21.265937905604524 ], [ 142.380770491117346, 19.211176907231653 ], [ 143.015351975868327, 17.442906117110013 ], [ 142.456181937969376, 15.797752112446583 ], [ 140.540027543636683, 14.889448916765247 ], [ 138.152562626664434, 13.581735120581127 ], [ 137.01013301167319, 12.543121819668704 ], [ 135.510814370456131, 11.366407480663792 ], [ 134.440979441152905, 9.552503142400386 ], [ 133.901988715498589, 7.787308040691136 ], [ 135.009800874194838, 6.124882176402387 ], [ 136.979813183015636, 5.708912973736107 ], [ 138.665196850402708, 5.934273015259862 ], [ 140.255417275888249, 6.725870647910087 ], [ 141.811303951293638, 7.69426242151293 ], [ 143.850307324921062, 8.380403626020669 ], [ 146.004394695319746, 8.90048591939463 ], [ 148.051064313695633, 9.86456394538923 ], [ 150.008894823164837, 11.850464138692223 ], [ 150.815899785026744, 15.393496009718428 ], [ 150.734064859028962, 19.954925814114191 ], [ 149.289288360813686, 22.874717302732893 ], [ 147.88040444702105, 24.441310738438695 ], [ 146.503513468006844, 25.930934848256104 ], [ 144.94379293274477, 27.763239464314942 ], [ 143.775144314245409, 29.674600459363667 ], [ 143.882715436478662, 32.079089704013079 ], [ 144.735343290966114, 34.787206917017691 ], [ 146.009623560590342, 36.643597191158172 ], [ 146.796989871767266, 38.842006570822136 ], [ 147.77028302437634, 40.543405692794472 ], [ 149.282530373488896, 41.47116442764311 ], [ 150.750640402074083, 42.244497399998124 ], [ 152.289007986333644, 42.881077023733226 ], [ 153.697661561796849, 43.809901927001746 ], [ 155.661262268336486, 45.000169774391445 ], [ 158.100388111821076, 46.862859444478318 ], [ 160.738117584301534, 48.877574829252509 ], [ 163.676666972056609, 51.230877407752587 ], [ 165.570063360246564, 53.06585514847 ], [ 167.427871806663603, 52.31145980860336 ], [ 170.225789308371077, 51.152914792346671 ], [ 172.502539973595532, 49.932338137618977 ], [ 173.787909012565819, 49.086734075742477 ], [ 176.720923680415638, 48.62086007434818 ], [ 180.0, 48.345555799494768 ], [ 180.0, 53.281243418162191 ], [ 177.148668782941257, 53.43331441640531 ], [ 173.233050827163737, 54.224689124340941 ], [ 170.327881457481965, 55.302276415700597 ], [ 167.402648442432877, 56.712933271499047 ], [ 165.889179833264507, 57.48315176016726 ], [ 167.529819522514089, 58.423272611733793 ], [ 172.243201124660374, 58.982383248291242 ], [ 175.978586073310623, 59.851584812328127 ], [ 180.0, 61.645148321534421 ], [ 180.0, 66.221311480326008 ], [ 173.169700282238836, 64.830364414626416 ], [ 167.68964155023869, 62.988672254579193 ], [ 163.541044235453541, 62.030335060217155 ], [ 160.717174808270101, 61.51222865377391 ], [ 157.42336154148569, 61.601600770339687 ], [ 154.998472195795046, 61.721556271405028 ], [ 152.163303716502156, 63.610525211433036 ], [ 149.23986379292549, 65.430260444624167 ], [ 145.712896411143561, 67.530835440718789 ], [ 142.762881122467405, 69.708620832800619 ], [ 138.960606412584326, 71.729596586818758 ], [ 136.701005156320349, 75.323008580636397 ], [ 132.499636112378994, 78.848273826995552 ], [ 128.227008805380109, 82.090483786873932 ], [ 122.756597447304983, 84.891010164340898 ], [ 111.70634513460304, 86.828919675166773 ], [ 105.396788482595824, 87.337309106760472 ], [ 99.409002553926044, 87.772703078125417 ], [ 21.647209258033776, 87.643621756339584 ], [ 10.166878021252726, 87.234651518029935 ], [ -4.563831243178425, 85.794077451316113 ], [ -8.30038346331442, 84.344966365706611 ], [ -9.501066481790172, 83.067043243878572 ], [ -9.098240095054175, 81.198665568062339 ], [ -8.000004673256452, 80.147329135006487 ], [ -6.976819186359613, 79.606475394758647 ], [ -5.429783871595647, 79.129714860906063 ], [ -4.000008320656458, 78.499992480129549 ], [ -2.25222241021214, 76.836436709495189 ], [ -2.836450029029726, 75.102466693902883 ], [ -5.026298965268562, 74.211929936591076 ], [ -8.61560693288917, 74.210872544662877 ], [ -11.735037385177961, 74.199838874881607 ], [ -15.459903506443563, 73.562271956032447 ], [ -18.009070120338588, 72.677615356275155 ], [ -19.423007978539086, 71.21211622227851 ], [ -20.640454470728606, 70.023988906948588 ], [ -23.044320599969367, 68.77514376062976 ], [ -25.169105430587301, 67.773783486746808 ], [ -27.372641883092228, 66.73999325490675 ], [ -30.187095654976474, 64.188628982151812 ], [ -32.140759019779949, 62.52077097483042 ], [ -33.792169175262117, 60.946468480267036 ], [ -35.407639305376868, 59.290438112209465 ], [ -37.000009433369875, 57.269188284401658 ], [ -37.876724156243739, 55.90821120685375 ], [ -38.158708302153229, 54.325453134416222 ], [ -38.009800980599316, 53.078273711954886 ], [ -37.250162447380923, 51.892788247349138 ], [ -34.99105429393201, 50.836389851051102 ], [ -33.652679661914263, 49.550269596323567 ], [ -33.398138115657986, 48.083372076181263 ], [ -33.534828109684895, 46.064381089444147 ], [ -33.629081178236213, 44.06153857864696 ], [ -34.142342569839954, 41.325639577034515 ], [ -35.000010043000032, 38.899467867805882 ], [ -36.056223917116036, 37.449738650111996 ], [ -37.505955085530658, 36.156759345184909 ], [ -39.056221325384016, 35.044327391241438 ], [ -40.662704574082227, 34.393524627733804 ], [ -41.775139087870024, 33.662708960512688 ], [ -43.000004746564798, 33.00000850722963 ], [ -44.000007253393122, 32.000006938101656 ], [ -45.12433785178785, 30.831357075982787 ], [ -46.000008567630005, 30.000004848784688 ], [ -47.056225742117398, 28.236767308607309 ], [ -48.224875590427068, 25.201074269036791 ], [ -48.893831561158393, 21.881490871623161 ], [ -49.434885149013034, 19.214091401359568 ], [ -49.552433515055242, 16.58133339483966 ], [ -49.122085315287109, 14.870514451559384 ], [ -48.362710204558454, 13.279858064876386 ], [ -47.071477565208305, 11.571157674654755 ], [ -45.683187373898505, 10.381069327785184 ], [ -44.286431625751753, 9.314106512773776 ], [ -43.170096887346396, 8.397648529681186 ], [ -41.509186167273789, 7.302453963959884 ], [ -39.912319867822433, 6.259330415160579 ], [ -38.5391040288767, 5.44083618839238 ], [ -37.192912075650277, 4.714102324591741 ], [ -35.447992838242648, 3.915599548065417 ], [ -34.232721651263269, 2.877438437748404 ], [ -33.060369714359169, 1.447629444438465 ], [ -31.597779757140575, -0.026618954096272 ], [ -29.695910714184411, -1.543612662545944 ], [ -27.186349035298928, -2.196603277443544 ], [ -24.863773302129498, -2.229736572530713 ], [ -22.023796926599967, -2.224876107659819 ], [ -19.437840108963432, -2.718926401853352 ], [ -17.576954445397998, -3.459833380144812 ], [ -16.620539501457358, -4.881710545486203 ], [ -16.660729001111836, -6.263988373367412 ], [ -17.09098389031087, -8.293833531377842 ], [ -17.588065317860849, -10.281696980509714 ], [ -17.914742452563242, -13.305848690810915 ], [ -17.472046577131682, -17.589621708200188 ], [ -16.419802505196309, -20.551344062195302 ], [ -16.118712228756962, -23.850856487679899 ], [ -17.254209390958376, -26.997355684945777 ], [ -19.235725125631188, -29.670072147071981 ], [ -21.29096735766846, -32.150603818774201 ], [ -22.084675433757308, -35.097632040859551 ], [ -22.101705652172097, -37.417811639038781 ], [ -21.732184672480852, -40.466277805685664 ], [ -20.609926259956779, -43.003424738630073 ], [ -19.58405772313899, -46.233621079704356 ], [ -17.06918231652983, -49.039147767320358 ], [ -13.731398265130611, -50.852175912570907 ], [ -10.056224128537249, -52.93189252730695 ], [ -9.140552328470463, -54.297294757952642 ], [ -9.574070694412162, -55.562156750425551 ], [ -12.55354108159414, -56.16863997638125 ], [ -16.049225135302166, -55.315119590545294 ], [ -20.365256786668983, -54.172560957889857 ], [ -24.660786783447744, -51.767638493758284 ], [ -26.65691135826258, -50.12312191095706 ], [ -32.399820907193238, -49.025583346857466 ], [ -41.771554452040014, -49.5334480613053 ], [ -51.013191166432023, -50.603707223886659 ], [ -55.282184442161522, -52.006010290814586 ], [ -57.623103826927789, -52.552851796847825 ], [ -59.469483988542599, -53.026423012489936 ], [ -60.486417243853914, -53.092670730629912 ], [ -62.022097717105282, -53.072198431792017 ], [ -63.309541248104352, -53.036462289430006 ], [ -64.929999852103549, -52.96499 ], [ -64.999999189948824, -52.962919013673172 ], [ -66.388996043143962, -52.811990371090623 ], [ -68.208005500663731, -52.412854222704773 ], [ -70.304221053436436, -51.50799111681286 ], [ -71.46950591106777, -50.689221382715793 ], [ -71.87786452485696, -49.508445540001915 ], [ -71.879224207788127, -48.000863415678729 ], [ -71.246630816586404, -45.788394991660198 ], [ -70.580752122291159, -43.34536619485408 ], [ -69.142976488205619, -40.493700562248563 ], [ -67.677861039177017, -37.220698871896452 ], [ -66.777066225226307, -35.291661979611341 ], [ -63.88331544861348, -33.917365602853351 ], [ -62.762365898986268, -31.730693960780396 ], [ -62.222473350682719, -29.145021189366627 ], [ -62.228251140049039, -27.29331888258119 ], [ -62.374908745231309, -25.948557221581375 ], [ -62.375975469541608, -24.298619393444856 ], [ -62.114653164231882, -22.403886658423858 ], [ -61.623296517000348, -19.493608909705479 ], [ -61.004249557166041, -17.239252236122681 ], [ -62.44163145737835, -15.018202786539465 ], [ -65.069677462160058, -12.57297235893471 ], [ -67.722019776166576, -9.958182965840363 ], [ -69.341759608302965, -7.615302083651136 ], [ -70.292136690840465, -3.652047909891619 ], [ -70.006310461801149, 0.969448951682238 ], [ -69.361436807936499, 4.13971626996353 ], [ -68.255967582890264, 6.042636029793499 ], [ -65.894939298944522, 7.542316389486104 ], [ -62.790612248402226, 8.10622867922797 ], [ -60.82802060550928, 8.567938603939481 ], [ -58.72785592893495, 9.336088365144555 ], [ -57.367021966212221, 10.606976305606281 ], [ -56.836512493151538, 12.425436524835346 ], [ -56.691627448171054, 14.259912918779355 ], [ -56.966814212039061, 16.27569482618113 ], [ -57.439061622140549, 18.198465593335513 ], [ -58.562766484305627, 19.730276613948373 ], [ -61.151008482454941, 20.722347241654877 ], [ -64.989386086428226, 20.947791330445604 ], [ -67.847926948125988, 20.722347241654873 ], [ -70.083068870671269, 21.057845873078342 ], [ -71.835848725620508, 21.340549244290649 ], [ -73.61981990515217, 21.6578496601688 ], [ -74.795107681516768, 21.858155537502249 ], [ -75.987939160668603, 22.100326917264706 ], [ -77.07984296236836, 22.465080454151494 ], [ -77.99697795737211, 22.862097782376416 ], [ -79.016511263948942, 23.166658543373494 ], [ -80.100678405773564, 23.475092307195613 ], [ -81.462998226435531, 23.684009844920666 ], [ -82.988100236245714, 24.00000967601602 ], [ -84.325403571653482, 24.112442753211088 ], [ -85.29948639555154, 23.591802278730306 ], [ -85.886269562425056, 22.755356411276342 ], [ -86.171899517532964, 21.518060738918756 ], [ -86.494240690741563, 20.429735947720513 ], [ -86.66270992527528, 19.437838527619832 ], [ -86.775143379916713, 18.393520037851911 ], [ -87.458685092374395, 17.662709479309225 ], [ -88.199000130222771, 17.445010385107484 ], [ -89.224862846233663, 17.71892664370289 ], [ -90.718911882388142, 18.393524243599611 ], [ -92.292973958699108, 19.650810789963565 ], [ -93.289702000319252, 20.325409213935266 ], [ -95.088630243407565, 22.076746647139839 ], [ -96.144847892216518, 23.313511293088155 ], [ -97.618178346612964, 24.550275124024285 ], [ -98.370993596333378, 25.02200778839979 ], [ -99.382992712440256, 26.099006847735108 ], [ -100.131108085372674, 27.308314659548902 ], [ -100.537530873054592, 28.358081756670256 ], [ -100.999396003366954, 29.20007491095943 ], [ -102.099861874241313, 29.600228530663923 ], [ -104.499818936340915, 31.699961416634636 ], [ -105.350067490967746, 33.249848862403326 ], [ -105.550060188499515, 33.850100001345687 ], [ -105.550151311823498, 34.350123193467461 ], [ -105.20019230425531, 34.999871422558009 ], [ -105.219987839953049, 35.950213432276115 ], [ -105.170179706560148, 36.590135887977986 ], [ -105.119881927737964, 36.810120971595552 ], [ -105.089852035597545, 37.289899419289902 ], [ -105.279792260802225, 37.679733821386854 ], [ -105.619836662562435, 38.0799943031436 ], [ -105.900090953973816, 38.300093132318139 ], [ -106.249923896226477, 38.550262303248822 ], [ -107.499868682974281, 38.400303362228527 ], [ -107.800466026997057, 37.849878683723297 ], [ -107.750136318720948, 37.550014335676138 ], [ -107.549818503498315, 37.300340834488374 ], [ -106.999876286468947, 37.000308788597231 ], [ -106.850279718952521, 36.650224965412505 ], [ -106.899903075859058, 36.250165869747029 ], [ -107.150111043939233, 35.89987179381037 ], [ -107.600034562498479, 35.499853309137897 ], [ -108.44991446477917, 34.999744905532097 ], [ -109.000124608052928, 34.699959206795853 ], [ -109.29994804768485, 34.549875680660037 ], [ -109.700110028415679, 34.549715965701786 ], [ -110.249840249243263, 34.799731374353435 ], [ -110.999888211592122, 35.250068935540916 ], [ -111.349957141672959, 35.700195922554677 ], [ -111.500134507210035, 36.200337802300432 ], [ -110.899985861720367, 36.800189389287951 ], [ -110.900008526691195, 37.049776863095936 ], [ -111.400083996592357, 37.44983432640452 ], [ -111.599945512420064, 37.949914207885605 ], [ -111.499726784220726, 38.500196788223626 ], [ -111.000103247333229, 39.399923096963533 ], [ -110.700387325206307, 39.549715909986062 ], [ -110.719717195090269, 42.180037374047039 ], [ -110.280225195187398, 43.169912526222745 ], [ -109.850106025534046, 44.149763896975493 ], [ -109.899996087692585, 44.550306412490336 ], [ -110.100124735573985, 44.89983162275815 ], [ -109.999941420528089, 45.499944500705389 ], [ -110.449868699243893, 45.750045248542399 ], [ -110.900403931257927, 46.449990789328524 ], [ -112.200287027152328, 47.550232015655723 ], [ -113.350126588044603, 49.00030362343756 ], [ -113.700034766405849, 49.999984177203963 ], [ -114.414801744653559, 51.036464700429974 ], [ -115.234037583534644, 51.882770725127124 ], [ -116.11715334220429, 52.613777082104789 ], [ -117.304238002527299, 53.526318285505681 ], [ -118.586682896755732, 54.712532494845689 ], [ -119.850345013186399, 55.625898226339039 ], [ -120.817456921154758, 56.92696567588019 ], [ -121.81815178636775, 58.275277242836559 ], [ -123.386240911066707, 59.489574935899277 ], [ -123.73712255105778, 60.431870603900286 ], [ -123.215038229328229, 62.14359815049999 ], [ -122.947606310395784, 63.425484534716226 ], [ -123.212040952671444, 64.538648893219715 ], [ -125.248707048270717, 65.489187017266474 ], [ -128.334557111720358, 65.891117075535547 ], [ -130.634562266585789, 65.765935103577362 ], [ -131.678206518262726, 65.727345056765174 ], [ -133.2304776294867, 66.017303407488882 ], [ -134.132344498778991, 66.572655408379461 ], [ -134.848514034979729, 67.123088235645469 ], [ -135.231377346098412, 67.709673083130113 ], [ -135.346498402387596, 68.302175116998598 ], [ -135.914396787463374, 68.839915990385975 ], [ -136.971451101389988, 69.529629636130935 ], [ -138.93401078019599, 70.14080353512783 ], [ -141.674417987509486, 70.696117905764922 ], [ -149.543354928590816, 71.031465555933394 ], [ -157.039119309472625, 71.626110512305544 ], [ -165.358502311710538, 70.075517258131711 ], [ -173.584312209700755, 67.955922031338659 ], [ -176.153395857311438, 64.061160563932333 ], [ -179.999999999999886, 59.17005481506375 ] ], [ [ 162.590642348147043, 4.140629130511204 ], [ 164.0, 4.225006608817925 ], [ 164.028125826102269, 6.381231825750705 ], [ 162.209410522396354, 7.196880782715686 ], [ 160.156225216932768, 8.02812582610224 ], [ 158.362169207589318, 8.180141643399887 ], [ 157.0, 8.0 ], [ 156.946405678534092, 6.15518587703064 ], [ 157.225006608817921, 5.0 ], [ 161.156225216932768, 4.803119217284316 ], [ 162.590642348147043, 4.140629130511204 ] ], [ [ -30.0, -21.5 ], [ -28.0, -21.5 ], [ -28.0, -19.5 ], [ -30.0, -19.5 ], [ -30.0, -21.5 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "GLOBAL-STABLE-3", "REGION": "GLOBAL STABLE", "UPPER DEPTH": 0.0, "LOWER DEPTH": 40.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 59.451076274757625, 13.838876760339151 ], [ 58.476322610681059, 15.466073486719431 ], [ 56.986582136876763, 16.311318813966164 ], [ 54.697945191733353, 16.488293580523955 ], [ 52.985584506890483, 16.250683736658345 ], [ 50.853314228246177, 14.999552193358557 ], [ 48.240331954252525, 13.982011655608366 ], [ 45.688436334876272, 14.38217178811586 ], [ 44.341023192229514, 16.133670520797246 ], [ 43.064133680855797, 17.115774705036774 ], [ 40.832278404124651, 18.310936797991076 ], [ 39.226759703783195, 22.081793233063536 ], [ 38.718991806676833, 23.660202696172654 ], [ 37.377151753673459, 26.744435540319913 ], [ 36.192615389029555, 28.501989215570006 ], [ 35.85470620974278, 30.621838852655515 ], [ 36.329006660368023, 32.333992516915046 ], [ 37.343866558809829, 34.120688526202443 ], [ 38.153254040019789, 35.785895828108558 ], [ 40.085968745849982, 36.553934078674452 ], [ 41.523682672873967, 36.323007626208941 ], [ 42.557145620461441, 35.528652402337265 ], [ 43.655245151694359, 34.004549832937478 ], [ 44.802012740601754, 32.919335185667485 ], [ 46.67304722085828, 31.80379882959712 ], [ 48.467886492485739, 30.019154092293757 ], [ 49.713368073265009, 28.865064921964816 ], [ 50.827726995771158, 27.274617281647295 ], [ 52.919708491874999, 25.688260913291504 ], [ 55.27879484426326, 24.958499289971556 ], [ 56.8452251372128, 23.959716929674283 ], [ 58.220597530326266, 23.564676043730071 ], [ 59.52599463775779, 23.352117357501012 ], [ 60.550506558135851, 23.283092074217585 ], [ 61.771356882532402, 23.208570979464717 ], [ 62.953245665241937, 23.278635467666277 ], [ 64.184530068399951, 23.365840232172967 ], [ 65.480001402067302, 23.44475163990888 ], [ 66.452467162571565, 23.762781420388393 ], [ 67.26412996363635, 24.258207159355631 ], [ 68.002205024552808, 24.820143275123407 ], [ 68.300752247190616, 25.416570179672718 ], [ 68.321836835660008, 25.997258210242492 ], [ 67.998804949858481, 26.452890909838796 ], [ 68.044449721706627, 27.020587586499484 ], [ 68.520208476185402, 27.512490962196335 ], [ 69.240108481224638, 27.74797703243501 ], [ 69.973452962753171, 28.150578304340442 ], [ 70.580736709628724, 28.651498683013781 ], [ 70.882390213967497, 29.231074957962896 ], [ 71.090391372719026, 29.973230453005709 ], [ 71.039737765834417, 30.686733336301817 ], [ 71.043093731779891, 31.456921912068328 ], [ 71.284609124123719, 31.899229678033464 ], [ 72.048691209304323, 32.136134064875279 ], [ 72.935048734763583, 32.332469291152918 ], [ 74.1279463390361, 32.563439438690665 ], [ 75.017046892170967, 32.136804856550945 ], [ 75.522996350862371, 31.56157071139495 ], [ 75.979659960160319, 30.972859863122167 ], [ 76.638897094267662, 30.480808399551524 ], [ 77.435041267829448, 29.879948728977872 ], [ 78.22375395617334, 29.405900450743562 ], [ 79.225085943923446, 28.860758170279244 ], [ 80.0601858001274, 28.467187209039867 ], [ 81.04085778812609, 28.026611406445916 ], [ 82.044375259224324, 27.591900075084133 ], [ 82.927991388018796, 27.283042571594045 ], [ 83.662799764241328, 27.037662355026566 ], [ 84.544699796093937, 26.815616184289503 ], [ 85.472972780647737, 26.62332511427746 ], [ 86.213558742829903, 26.449216513642096 ], [ 86.920067611527884, 26.365048653141955 ], [ 87.557142387838667, 26.333136303887859 ], [ 88.162472689787975, 26.26699409422698 ], [ 88.920734949189949, 25.526948390842378 ], [ 89.696478182311367, 24.076638289142632 ], [ 90.434511686941704, 22.61143404525869 ], [ 91.037817596282295, 21.602401763823718 ], [ 91.607166264619423, 20.748187142424296 ], [ 92.299278135393152, 19.283894208865572 ], [ 92.771409438975098, 17.804617774460727 ], [ 92.534099165733267, 16.163960527346163 ], [ 91.102337955384641, 13.10239977312431 ], [ 90.035976891706142, 9.804743194089891 ], [ 90.48370321947678, 5.8821911178937 ], [ 91.679681899761846, 2.197381786592383 ], [ 92.921949234213585, -0.243207320677297 ], [ 94.105432292104652, -2.281479799949079 ], [ 97.25545818942804, -6.130134388413673 ], [ 100.70671658097983, -9.113794106742636 ], [ 103.339249110660177, -11.060996118293113 ], [ 106.705079586999446, -12.35714391455725 ], [ 111.186615439239347, -13.045888595843218 ], [ 115.807859176371139, -13.202640940654824 ], [ 120.849439349193602, -13.253060400934082 ], [ 123.815999424165554, -12.786177461103305 ], [ 126.127867799850037, -11.863624479244491 ], [ 127.777256629606114, -10.709811801522788 ], [ 129.899467918800923, -9.852870776680319 ], [ 131.46796194455078, -8.990235921862146 ], [ 133.233790388236741, -8.440821969998526 ], [ 134.965654862417438, -8.284254067070421 ], [ 137.674592981192632, -9.056224920189232 ], [ 139.381615594235654, -9.449741943351876 ], [ 141.517843788674611, -10.056226521594953 ], [ 144.168648527852895, -10.337309534869661 ], [ 146.111449905976286, -10.180292420302187 ], [ 148.424611087594457, -10.771146738908138 ], [ 150.918838136221098, -11.022727470685458 ], [ 150.939093213261231, -11.02055470812131 ], [ 150.9415414494039, -11.028409117327088 ], [ 153.944437763532392, -11.825601876556174 ], [ 156.538164708370743, -13.21192979009655 ], [ 158.872116315319431, -14.583378163481848 ], [ 161.510153610530381, -16.173549988204378 ], [ 162.829225827166994, -18.649942390611013 ], [ 163.712767841587151, -20.574457156757965 ], [ 165.142549896481739, -22.930846337443935 ], [ 167.707015720029545, -24.78704115681705 ], [ 171.212576025144216, -25.816297913833687 ], [ 174.132592477193327, -26.357306286749104 ], [ 175.56702896342324, -28.286843289618794 ], [ 176.887944221640311, -30.840322471104198 ], [ 177.100984476726325, -33.650803072944008 ], [ 174.82096820936107, -36.009882883435992 ], [ 171.634583479772516, -39.156744149979865 ], [ 169.078758347248851, -41.136403131441654 ], [ 166.211715135991625, -42.639372830700289 ], [ 163.481475463178356, -44.446358028594311 ], [ 160.851379460413341, -46.791134091912305 ], [ 157.567325230006048, -49.912117241588241 ], [ 155.879132882700475, -53.295448605717027 ], [ 153.113056685927916, -54.910334182232553 ], [ 149.287415295623731, -53.85223124818026 ], [ 145.984863594574875, -52.429925742885686 ], [ 142.146080647274687, -49.925495880852154 ], [ 138.048233990437694, -48.37365995736581 ], [ 129.490502922847725, -47.41951932652109 ], [ 120.859468571325536, -47.011682975333628 ], [ 114.383534210425225, -46.282599295539484 ], [ 108.837787091572963, -45.481554575020382 ], [ 104.225052345179492, -44.534607583053187 ], [ 99.128175841587193, -42.978584535532619 ], [ 93.654445965527856, -40.359154329114062 ], [ 90.784056211106943, -39.140430798782234 ], [ 88.240795889293111, -37.956720744205043 ], [ 86.033290048312253, -36.807839127144909 ], [ 84.041161391783533, -35.642353524081933 ], [ 82.088644047473025, -33.313496228182721 ], [ 80.349204266142308, -31.683217542939506 ], [ 79.498950751943056, -29.928717064318416 ], [ 78.71278419329208, -27.786163751834835 ], [ 76.864358759382469, -25.833359239849845 ], [ 75.128363254776659, -24.287115401634345 ], [ 73.775139860635804, -23.224858131949354 ], [ 72.211826831637907, -22.263036955211202 ], [ 70.852560889016942, -20.391495378600183 ], [ 69.712886358420874, -18.003260754342538 ], [ 69.412715305071586, -15.55890257036822 ], [ 69.522270231986965, -13.388526724101743 ], [ 70.02821811659939, -11.248952679415725 ], [ 71.169962690218256, -9.319080579965535 ], [ 72.138762943860925, -7.347467594920467 ], [ 72.340654971408597, -5.828323893941514 ], [ 72.116700528487868, -4.608558117622081 ], [ 71.506120553720166, -3.084194653368107 ], [ 70.552150767249969, -0.857969427121118 ], [ 69.74968878121102, 0.958032312060573 ], [ 68.751925797497265, 2.605338850012898 ], [ 67.710463474247973, 3.971912250049976 ], [ 66.110720823647554, 4.952681226006754 ], [ 64.213392106505907, 6.164500961169071 ], [ 62.541235247921755, 7.431244475909464 ], [ 61.109868912317758, 8.484434568173295 ], [ 60.087210776314535, 9.812267886024662 ], [ 59.462938378771725, 11.09809545104066 ], [ 59.55027748194999, 12.477837893886246 ], [ 59.451076274757625, 13.838876760339151 ] ], [ [ 141.409077314450144, -38.431845371099719 ], [ 142.733573002654168, -38.500037385262111 ], [ 144.04538657225072, -38.25 ], [ 143.999813073689438, -37.363690742199431 ], [ 143.279105509382788, -36.971528692619692 ], [ 141.68184537109974, -36.840885300287745 ], [ 141.141437288862448, -37.629437339527179 ], [ 141.409077314450144, -38.431845371099719 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "GLOBAL-STABLE-4", "REGION": "GLOBAL STABLE", "UPPER DEPTH": 0.0, "LOWER DEPTH": 40.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 104.974617995970277, -0.004429474647064 ], [ 103.554285336780453, 1.84584569242951 ], [ 101.568324643193108, 4.248243992567877 ], [ 100.499486154285151, 6.136087780987674 ], [ 98.863470678328738, 8.752879230747224 ], [ 98.516714044540265, 11.484403666131184 ], [ 98.791055594980563, 13.522653239514469 ], [ 99.74464103584809, 14.508100673011187 ], [ 100.681538815598756, 15.42457500488822 ], [ 102.903296232496615, 15.866009635129002 ], [ 105.148382231095383, 16.187867421679201 ], [ 106.822884500080207, 17.543140104342971 ], [ 107.581474740961781, 19.435312323196186 ], [ 106.645344722535171, 21.968447448675128 ], [ 105.374350625028868, 22.948622029584762 ], [ 104.581426542159122, 24.363791138060318 ], [ 104.836134006528496, 26.440512557778327 ], [ 105.022010000000108, 28.475999515426377 ], [ 105.251193873970607, 29.448212058571634 ], [ 105.984598552295026, 30.172125312627017 ], [ 107.084116210342629, 30.443086727844999 ], [ 108.566589899262198, 30.654111660764183 ], [ 110.210821418080229, 30.670463148777802 ], [ 112.34798459923887, 30.69714356844219 ], [ 113.696569741339374, 30.585950376035996 ], [ 114.524772966221718, 30.544026500580571 ], [ 116.015455276677983, 30.324259134028726 ], [ 116.830739746186111, 30.708751204885377 ], [ 117.491000004526754, 31.547888902863075 ], [ 118.016097627111051, 32.918243894078891 ], [ 118.384027639646177, 34.005069519659074 ], [ 118.639009463711787, 35.207996769186003 ], [ 118.978009137865868, 36.200995814717153 ], [ 120.022400542967134, 37.056206295121939 ], [ 121.405413544147336, 37.140530919653123 ], [ 123.465946756715212, 36.999990364970245 ], [ 125.798931270393311, 37.971881755658096 ], [ 127.935503195201022, 38.608273999972567 ], [ 129.089892451390199, 38.494220751290172 ], [ 129.705249158892627, 38.130651291322991 ], [ 130.024078950398973, 37.631722935560951 ], [ 130.184761457193872, 37.058521309172882 ], [ 130.090212655988353, 36.150870765584273 ], [ 129.58421176039613, 35.322068215530877 ], [ 128.940097408138712, 34.328463538291494 ], [ 128.032461868093179, 33.103687337022407 ], [ 126.68633411514746, 31.651758427162385 ], [ 125.396632421465526, 30.403442299125125 ], [ 124.271823892512685, 29.301169735264772 ], [ 123.236375075795735, 28.352673874591819 ], [ 121.811701326798868, 27.338450831797168 ], [ 120.631570217667573, 26.382423207253179 ], [ 119.803235182750427, 25.469532816541179 ], [ 119.089199330705426, 24.514994763643472 ], [ 118.364752614026926, 23.223388801030882 ], [ 117.847928660373768, 21.895277681859955 ], [ 117.161509446621196, 20.220171620631472 ], [ 116.527375257056164, 17.734672355434956 ], [ 116.418298578382306, 14.761957129584532 ], [ 116.495720309036287, 12.318527256879946 ], [ 116.974208742584864, 10.101257843528201 ], [ 117.340720162922096, 8.095690349883359 ], [ 117.460245023979823, 6.067433456847943 ], [ 117.265544467273045, 3.54985696421138 ], [ 116.880188589546563, 1.494981127085317 ], [ 116.577519631232519, -0.480224255632347 ], [ 115.453423555360246, -2.02879764500694 ], [ 113.346135648285937, -3.005694653195392 ], [ 111.252128279556118, -3.243568367656781 ], [ 108.304036369310268, -2.572941432760432 ], [ 106.057047676154411, -0.86826980769953 ], [ 104.974617995970277, -0.004429474647064 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "GLOBAL-STABLE-5", "REGION": "GLOBAL STABLE", "UPPER DEPTH": 0.0, "LOWER DEPTH": 40.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.380379749685454, 44.000010008421533 ], [ -9.606493551395172, 43.943787041909921 ], [ -9.71892413609203, 42.252966849478319 ], [ -9.719918671012669, 38.88071608676308 ], [ -9.893907410254721, 38.055936538626852 ], [ -10.685831352996857, 38.042706583230988 ], [ -12.099588982400361, 38.611324624364173 ], [ -14.4146244318301, 39.037789556529447 ], [ -19.999990734255512, 39.000009578370445 ], [ -22.51265823551315, 39.545163866278443 ], [ -24.199216480969444, 40.586698755641862 ], [ -24.629207337945889, 42.57540050083584 ], [ -24.4661549154158, 45.58760143909781 ], [ -24.952758930944658, 48.051494773307162 ], [ -25.296143253262375, 50.037961991082838 ], [ -26.165022444666583, 52.461006939886246 ], [ -27.824809303908356, 53.624477221822971 ], [ -30.347646537975368, 54.450648477446144 ], [ -31.249379229914528, 55.718912247560446 ], [ -30.381610996464044, 56.999992649932189 ], [ -27.718910729671805, 59.662692916724517 ], [ -26.38161456950316, 60.662690814588075 ], [ -19.250764582676712, 62.265344447034664 ], [ -19.038425743773651, 62.324980249546222 ], [ -18.071847892625993, 62.324980249546215 ], [ -16.987470179319281, 62.296854423443975 ], [ -15.521861109261827, 62.481205349478955 ], [ -14.353105917648364, 62.818715262705851 ], [ -13.184351078034961, 63.493735089159628 ], [ -12.780030894163845, 64.667732674283911 ], [ -11.526846386969353, 65.473314492265615 ], [ -9.301675487880919, 67.246591909779582 ], [ -6.209909512402293, 67.824484318804267 ], [ -3.024315996639397, 67.973377491751137 ], [ 1.467897268171533, 68.912697673902002 ], [ 5.112006325736772, 69.289546498612779 ], [ 8.369405955154665, 69.743267929251445 ], [ 12.007026400775368, 71.177270647307665 ], [ 14.69069062063628, 73.452342223831934 ], [ 16.557650259892746, 74.322507864046898 ], [ 18.877540179762921, 75.099686174637213 ], [ 21.333623716002197, 76.1879636801293 ], [ 26.660369064296301, 78.327518716915293 ], [ 29.972958679384874, 80.633073742426888 ], [ 32.170071433945211, 82.169990020666788 ], [ 35.281083936441696, 82.647090177452199 ], [ 38.597858915556849, 82.943773136029193 ], [ 69.999989998000132, 82.999989655081819 ], [ 69.999999946157516, 82.9076126959975 ], [ 72.048999921119403, 82.896990000274741 ], [ 78.279999797523999, 82.830990001583913 ], [ 84.731999582816698, 82.637990008006511 ], [ 89.395999214054086, 82.38799002777273 ], [ 96.759203649609873, 82.272757927157372 ], [ 106.46414674408301, 81.741865289768157 ], [ 113.029451413371945, 80.323366664079956 ], [ 116.876214830956499, 78.782294342344926 ], [ 118.894995631444544, 77.309990403732073 ], [ 121.21999001894649, 75.144995629993531 ], [ 123.585980997156213, 72.958464275446829 ], [ 125.705093839502624, 70.04058370609782 ], [ 127.166412698638567, 67.263326254510119 ], [ 128.217397845671513, 65.287089674868952 ], [ 131.525380821200315, 64.127931420506869 ], [ 134.278122165607527, 63.46853866973273 ], [ 136.043255041333282, 61.90993681717579 ], [ 135.677626757411701, 59.237406779480949 ], [ 134.49778435353889, 58.509755290180671 ], [ 132.29045895178632, 57.609545722011738 ], [ 129.4906595908312, 57.920930501629364 ], [ 126.51433908246976, 58.280186633453383 ], [ 123.273755104029334, 58.696684366008746 ], [ 120.094944824657617, 58.786481462247693 ], [ 116.295397837769414, 58.558533541506371 ], [ 113.630385317466008, 58.045356082937282 ], [ 109.041530342857683, 56.759451902348417 ], [ 104.117247341148797, 54.876626013198205 ], [ 97.936652513643523, 54.851644712237466 ], [ 94.655599128905962, 55.198809315590637 ], [ 91.898120153292865, 55.045696643662822 ], [ 89.483829141750419, 54.081203852860121 ], [ 86.042774236649251, 51.962835814914058 ], [ 82.440180259855822, 50.483772996741614 ], [ 79.568535276146818, 49.897217652828786 ], [ 76.778137960826371, 48.620715936746265 ], [ 75.340995302255649, 47.350817743118952 ], [ 71.608568167370137, 45.980940181052141 ], [ 67.92652790494364, 45.20319465945758 ], [ 63.864451636233085, 44.339194509312826 ], [ 59.847053654045169, 43.18417252101203 ], [ 55.786164660392124, 43.140449800847954 ], [ 52.177574485213633, 43.667600128656609 ], [ 49.629061770606349, 44.351250964708235 ], [ 46.903778345725357, 44.646500170542211 ], [ 45.489739500557846, 44.787041467515934 ], [ 44.000000833834378, 45.000009684996527 ], [ 39.72650321981687, 45.337308882716258 ], [ 37.421625534293518, 45.690818877682283 ], [ 35.03927330903722, 45.891901725416602 ], [ 33.413999662454067, 45.837009994301717 ], [ 30.318978168282921, 46.34719204660238 ], [ 27.831353984719119, 47.550276739163579 ], [ 24.683418527536976, 47.598439061574567 ], [ 22.498941936705794, 47.967010278021732 ], [ 20.887566508265294, 48.381628040736388 ], [ 19.482153400214852, 48.393525482388782 ], [ 17.843246833159668, 48.393525401494308 ], [ 16.469403636994087, 48.173563148892697 ], [ 15.055998818229567, 48.029009931698759 ], [ 13.895999217353017, 47.913009971611061 ], [ 11.904998759652653, 47.807009922778768 ], [ 10.072998759652654, 47.578009922778982 ], [ 8.840997783788964, 47.298009751328557 ], [ 7.169995096057214, 46.595008715007104 ], [ 6.240992355369354, 45.842006467378425 ], [ 5.760332075126272, 45.262239523483373 ], [ 5.258990759379628, 44.462003822425523 ], [ 5.052089538506761, 43.698069182267297 ], [ 4.365404988220198, 43.148515052023569 ], [ 3.774056613999063, 43.084334848405923 ], [ 2.297758077115814, 43.162551388090762 ], [ 1.460326451730376, 43.259009876632135 ], [ 0.699702616776757, 43.425442904165926 ], [ -0.801998156604293, 43.707092517475282 ], [ -1.65940598882856, 43.837767768039292 ], [ -2.756521131092524, 43.90533478970211 ], [ -4.380379749685454, 44.000010008421533 ] ], [ [ 6.75, 50.15 ], [ 7.0, 50.15 ], [ 7.0, 50.33 ], [ 6.75, 50.33 ], [ 6.75, 50.15 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "GLOBAL-STABLE-6", "REGION": "GLOBAL STABLE", "UPPER DEPTH": 0.0, "LOWER DEPTH": 40.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 125.044812080164462, 54.395110703031889 ], [ 131.195393474594084, 53.722506956940727 ], [ 135.139321031638559, 52.967192186371719 ], [ 137.289933378212794, 51.406655615454035 ], [ 136.478218701056534, 50.18683147585481 ], [ 135.943851463849199, 48.792196060032211 ], [ 133.205293873136668, 46.831347367247474 ], [ 129.682974383242708, 45.935508838916526 ], [ 125.610395132409906, 43.290660110978209 ], [ 119.509166216051483, 42.464357826795371 ], [ 116.679634201866705, 41.940210607830224 ], [ 114.999996043332274, 41.920571206496547 ], [ 111.923957033832579, 41.669385367748582 ], [ 110.091999271595327, 41.721009986072545 ], [ 108.009193177516039, 41.414630272750472 ], [ 106.945918326975615, 41.672826403109589 ], [ 105.645007625703386, 42.691006469053299 ], [ 105.013008201740035, 43.436005790022705 ], [ 104.200009723531508, 45.445002507335225 ], [ 104.065009984351775, 47.18399932777988 ], [ 104.177009942614433, 48.176998930225032 ], [ 104.494006153691558, 49.275990286831401 ], [ 105.275627827921937, 49.68614976223104 ], [ 106.297949261009251, 49.982256563460915 ], [ 107.529471143079363, 50.346026096274151 ], [ 108.809913289466095, 50.808007625167363 ], [ 111.077305370212045, 52.255274554297408 ], [ 113.869334809627006, 53.370700531614034 ], [ 116.867524068159298, 54.517162033407345 ], [ 119.866710508613551, 54.812214158426016 ], [ 125.044812080164462, 54.395110703031889 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "GLOBAL-STABLE-7", "REGION": "GLOBAL STABLE", "UPPER DEPTH": 0.0, "LOWER DEPTH": 40.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.972942738182113, -49.51203415748401 ], [ 3.487602544693773, -50.513549564081458 ], [ -0.412436997552843, -50.091031265434914 ], [ -3.997614933623762, -48.284459492587295 ], [ -6.45783890478493, -46.548058356452252 ], [ -8.789287837391532, -42.829993501738969 ], [ -10.247474371718564, -39.866254182550705 ], [ -10.351599959034644, -35.887587890483992 ], [ -9.883542420471933, -32.715855244371177 ], [ -9.431452598465691, -29.480232535296672 ], [ -8.928712916461416, -25.997882128921809 ], [ -8.645717330084251, -21.821750669486299 ], [ -9.474952856892106, -16.794515952744693 ], [ -8.943773395159779, -10.313504402547974 ], [ -8.526006998340765, -3.143137826990546 ], [ -10.792964304784459, 0.811404939396695 ], [ -15.968517349510257, 2.157625539251566 ], [ -20.798063604374725, 2.872515880620025 ], [ -23.807553613103053, 3.056226539383124 ], [ -26.116195266048912, 3.213559514335893 ], [ -28.52252177111923, 4.355326348826416 ], [ -29.998373902201273, 5.664149233607286 ], [ -31.43782875500564, 7.000007827577604 ], [ -33.068108290351148, 8.212976372173864 ], [ -34.718912343972605, 9.168658145679061 ], [ -36.686494175647596, 9.943793021097882 ], [ -38.811395739557646, 10.850448070046301 ], [ -40.686250393543283, 12.082612157667082 ], [ -42.703846401605965, 13.838158985588729 ], [ -43.430159234056994, 15.81743717825217 ], [ -43.648109512819794, 17.818813538039961 ], [ -43.42993550413842, 20.119515809645261 ], [ -42.943773417788009, 23.763233756073973 ], [ -42.224857579513646, 25.281077413203146 ], [ -41.494043351447715, 26.325395298888719 ], [ -40.156745036225018, 27.887559250019425 ], [ -38.730809474414897, 28.999991657907444 ], [ -37.406315270283152, 30.22531017728306 ], [ -35.76341129982201, 31.751055107691943 ], [ -33.50076563555691, 33.257910673118715 ], [ -30.67595517366626, 34.802545156019363 ], [ -27.357821098282159, 34.789287341149198 ], [ -23.008488573714942, 34.497626911526552 ], [ -18.814383911913058, 34.203297384912588 ], [ -17.574753180774877, 33.240593170163592 ], [ -17.800207977390741, 32.915051347649985 ], [ -17.795498728037042, 32.227306713874647 ], [ -16.930232313299769, 32.026842950801971 ], [ -16.224652648582403, 32.192097485095196 ], [ -16.164939281695904, 32.145723747711564 ], [ -14.220268693677912, 30.155886134868073 ], [ -14.174966231637086, 30.082735633593803 ], [ -15.681312691891597, 29.797362447696425 ], [ -17.229241694651776, 30.214271468516841 ], [ -19.0, 30.0 ], [ -19.522805441911689, 28.623280897586824 ], [ -19.0, 27.0 ], [ -16.795578520800909, 26.837562396760738 ], [ -15.113802897985769, 26.954538657225068 ], [ -14.04546134277493, 27.295349186988595 ], [ -12.949089314653298, 28.103295511838244 ], [ -12.46965000348052, 27.329138338851198 ], [ -8.562297217008418, 26.996787842790798 ], [ -3.855609954069497, 26.714220455097315 ], [ -0.271894834720308, 26.034944224989754 ], [ 3.286449470153279, 24.525440368438897 ], [ 7.107280532919497, 23.235899551240522 ], [ 10.707411928940262, 22.8001998874634 ], [ 13.329907703069491, 22.300732212365631 ], [ 15.147922474913816, 20.958197248796466 ], [ 15.681920141623943, 19.86376551272366 ], [ 16.964768215811979, 19.045461342774928 ], [ 18.954538657225068, 18.681770600575494 ], [ 19.038288724031148, 18.820803331417622 ], [ 20.973222532428501, 18.078034751713826 ], [ 24.940442928159896, 15.942901625965515 ], [ 24.386421413586902, 15.704501271962959 ], [ 23.351736785032159, 13.690734902302854 ], [ 23.65903992918803, 12.318154628900281 ], [ 25.011425886974486, 11.977194558088311 ], [ 27.0, 12.750037385262113 ], [ 27.922445959766257, 14.923430698433425 ], [ 27.505239798198204, 15.606729646164908 ], [ 28.661175920939197, 15.496092854819207 ], [ 31.570983978084236, 14.426472861573757 ], [ 32.8482467008361, 12.821502976361469 ], [ 33.436716857498446, 10.577628416707872 ], [ 33.404828707466301, 8.221924108730516 ], [ 32.925521893084635, 6.209345360563063 ], [ 32.339217585767258, 4.200009693419628 ], [ 28.362728743912996, 0.377386693300497 ], [ 25.808463690554415, -6.035872276815345 ], [ 27.323109020394636, -12.633589539157683 ], [ 27.621000861305451, -18.78409157295113 ], [ 24.901981664523916, -22.601412498977595 ], [ 19.949717566386255, -26.044886474292593 ], [ 16.745820462179537, -27.826459717392563 ], [ 15.652340088219006, -30.132039691156763 ], [ 15.65494178093927, -33.013482407212216 ], [ 16.612516074107262, -35.103848532588508 ], [ 20.162892058807117, -36.523630038340841 ], [ 24.969644070933423, -35.717203248317311 ], [ 28.205996472738622, -34.477735055592923 ], [ 31.585437188407038, -32.50805491535646 ], [ 34.129929996664558, -29.757136083475263 ], [ 36.454755770528692, -26.024306340059095 ], [ 37.558975393436207, -23.987447131154038 ], [ 37.58797138588703, -22.098590763068763 ], [ 38.639793272170536, -20.896548545248923 ], [ 40.259127220598842, -21.487839201874646 ], [ 42.156569788854505, -25.305592270237067 ], [ 44.284353285917625, -26.927153686596835 ], [ 47.668545271829757, -26.959603808426216 ], [ 49.879119055790099, -26.355786877513598 ], [ 52.661095254375134, -25.977629470718082 ], [ 56.546842068469289, -27.104483677234104 ], [ 57.3270662741404, -28.757556051752736 ], [ 56.544979295036761, -30.103669831038495 ], [ 53.055348455732428, -32.420751089907142 ], [ 49.786449944088986, -33.634583013632863 ], [ 45.476700779496667, -34.904762413602995 ], [ 42.702719313548741, -36.276087405855058 ], [ 39.774677870697296, -38.370225160330563 ], [ 35.724166460501834, -41.19544223445493 ], [ 30.563569536294089, -45.028112998982316 ], [ 27.046773157646719, -47.897379732807956 ], [ 22.62434355535834, -49.634513405574147 ], [ 15.909430467780687, -49.07347985081546 ], [ 9.972942738182113, -49.51203415748401 ] ], [ [ 8.606238434568631, 1.031192172843149 ], [ 9.156225216932778, 2.409357651852947 ], [ 9.91562252169328, 3.106238434568631 ], [ 10.662490086773111, 3.359370869488796 ], [ 11.112503304408964, 4.128099390830538 ], [ 11.415622521693276, 4.831245043386556 ], [ 12.034390695942573, 5.409357651852943 ], [ 13.022187256468385, 5.606238434568629 ], [ 14.774993391182075, 5.66249008677311 ], [ 15.225006608817925, 6.875231212127437 ], [ 14.887496695591039, 8.225006608817925 ], [ 13.35969716969527, 8.309384087124648 ], [ 12.421887391533613, 8.084377478306722 ], [ 11.746867565079832, 7.337509913226889 ], [ 11.196880782715688, 6.718741738977592 ], [ 10.831245043386556, 6.253132434920166 ], [ 10.253132434920168, 5.606238434568629 ], [ 9.662490086773111, 4.815648956964981 ], [ 9.0, 4.0 ], [ 7.479963119185845, 2.930345251789419 ], [ 6.087046603743477, 2.210940424731946 ], [ 5.535533632944865, 0.965375249455462 ], [ 6.00248220633717, -0.548247957019247 ], [ 7.871710482822472, -0.484335508636916 ], [ 8.606238434568631, 1.031192172843149 ] ], [ [ -25.795423957512817, 14.261402720955843 ], [ -24.317620736866647, 13.857454323830552 ], [ -23.149967355557667, 13.929271052997059 ], [ -22.125018692631059, 14.511440106217957 ], [ -21.828377819618584, 15.609477242877182 ], [ -21.909256496810091, 16.986072500569311 ], [ -22.500074770524225, 17.784058621819089 ], [ -23.503881766154848, 17.651379200600978 ], [ -24.446691773248592, 17.574226749794978 ], [ -25.359668564455852, 17.824480427113766 ], [ -26.0, 17.545386572250706 ], [ -26.102288021243591, 16.75787043333024 ], [ -25.873236233774101, 15.791529942104395 ], [ -25.795423957512817, 14.261402720955843 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "GLOBAL-STABLE-8", "REGION": "GLOBAL STABLE", "UPPER DEPTH": 0.0, "LOWER DEPTH": 40.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 60.482073705952196, -11.835734133797001 ], [ 57.992365181855021, -11.249695280887959 ], [ 55.034745767063612, -9.707886805187893 ], [ 51.771071839040225, -8.289329742464702 ], [ 48.37526655526046, -7.375135188915549 ], [ 45.745226982033223, -7.154437712493285 ], [ 41.115536120950125, -6.573731115269091 ], [ 40.935471862174587, -5.098019693373384 ], [ 41.840753952944773, -2.930314289319781 ], [ 43.821126570999766, -1.273539306554878 ], [ 46.170544702515286, 0.685305302856031 ], [ 49.460316691343252, 3.703141962063158 ], [ 50.620600533135928, 5.797469784627719 ], [ 50.956382161974389, 7.349321090841364 ], [ 51.682725354385852, 9.079592155825653 ], [ 52.481316219066244, 10.571425285360204 ], [ 53.999991838139394, 10.536374511894381 ], [ 55.0363404041995, 9.660871061845912 ], [ 55.967299936522409, 8.005872045536023 ], [ 56.896174039391276, 6.434812147831386 ], [ 57.988817153274958, 5.238051950675989 ], [ 59.027958472851168, 4.153300261484771 ], [ 60.154160466275741, 3.407981488467217 ], [ 61.411735048418684, 2.61549551011984 ], [ 63.544647873055204, 1.431395232661308 ], [ 64.81086221075374, 0.047133596709774 ], [ 65.817145370093698, -1.417027381705836 ], [ 66.403090901570692, -3.495449304324096 ], [ 66.14771341458831, -5.687929316732364 ], [ 65.114539138642769, -7.622405198725518 ], [ 63.724723155958159, -10.209535619821454 ], [ 62.354146714134558, -11.234702557650074 ], [ 60.482073705952196, -11.835734133797001 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "GLOBAL-STABLE-9", "REGION": "GLOBAL STABLE", "UPPER DEPTH": 0.0, "LOWER DEPTH": 40.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.494058919413092, -17.124337432844488 ], [ -77.000010074295659, -19.000003670011363 ], [ -75.745840121966623, -20.622891079078403 ], [ -74.783574114326427, -22.416714858207659 ], [ -75.062382874647469, -25.351064154733621 ], [ -75.979439498941431, -29.065337065569462 ], [ -77.056226591307009, -32.75728572714025 ], [ -77.105888516344152, -32.910308481021879 ], [ -77.646346174174468, -32.766663914981983 ], [ -79.602398810360498, -32.996002258849487 ], [ -81.431807985837608, -33.090922685549863 ], [ -81.63273599038682, -33.864004092145123 ], [ -80.658965158663804, -34.545461342774928 ], [ -77.65918947023647, -34.5 ], [ -77.615992178160042, -34.482085391356684 ], [ -77.674606571539215, -34.662693289364533 ], [ -78.446142184243314, -37.046474281040055 ], [ -79.749856663928654, -39.085274993010088 ], [ -81.000004338282366, -39.886108831272061 ], [ -83.129597434307911, -39.860821410937206 ], [ -85.107622219460595, -39.332483983715811 ], [ -88.730809449005221, -37.393507466886106 ], [ -90.943777786973683, -36.100527054066056 ], [ -93.775127744548442, -34.011889946529031 ], [ -96.662694882898563, -32.32539362291562 ], [ -99.119617072925806, -31.176696804939944 ], [ -102.064263713333716, -29.904718250822256 ], [ -104.549873006531257, -28.159815199175338 ], [ -107.202519435024783, -24.426725789583131 ], [ -107.757948128463795, -19.352743869131455 ], [ -106.999989993572257, -15.316778032664079 ], [ -105.292972334965256, -12.112439084703407 ], [ -103.192480199313493, -9.332916949557369 ], [ -101.297778897722736, -6.414881626921136 ], [ -100.071463795365702, -2.628838854402115 ], [ -98.023376968166602, -1.714121464389426 ], [ -94.030306177291351, -1.998653478540265 ], [ -91.773313383568862, -3.407751177318345 ], [ -87.596747640682025, -4.08934007449214 ], [ -85.269193963247702, -5.819458523465418 ], [ -84.787040162877148, -7.618387228169804 ], [ -84.000008768152867, -9.000004667373936 ], [ -83.000009006272222, -11.000004543135313 ], [ -82.00000864260889, -12.49405659534313 ], [ -81.16865846586785, -14.124335663257689 ], [ -80.381625290209641, -15.00000683017543 ], [ -79.381625629785702, -16.05622354385655 ], [ -78.494058919413092, -17.124337432844488 ] ], [ [ -81.0, -27.0 ], [ -80.055419933734257, -27.090922685549859 ], [ -79.0, -27.0 ], [ -78.863615971675216, -26.2030984889781 ], [ -79.0, -25.5 ], [ -80.078150605121706, -25.386346643062677 ], [ -81.0, -25.5 ], [ -81.136384028324798, -26.248559831753031 ], [ -81.0, -27.0 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "GLOBAL-STABLE-10", "REGION": "GLOBAL STABLE", "UPPER DEPTH": 0.0, "LOWER DEPTH": 40.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -93.618388899127254, 11.494043358147605 ], [ -92.505957452682111, 9.662695342753079 ], [ -91.550276276328503, 8.112427470915149 ], [ -90.281091255148041, 6.550262142937852 ], [ -89.411394209384454, 4.67795466569466 ], [ -90.011488403056958, 3.929148864583483 ], [ -91.537161595649835, 3.722151728123552 ], [ -94.893121144715479, 3.415782190724565 ], [ -97.045285130954213, 3.161638346293884 ], [ -99.493626660506592, 3.142954136702732 ], [ -99.999990009999891, 4.735791060923452 ], [ -99.999990009999891, 7.883914738977175 ], [ -100.015047025678172, 10.367497058446766 ], [ -99.606475735737504, 12.662691281314805 ], [ -97.18054839312822, 12.887556541634533 ], [ -95.100539145681381, 12.224856729566516 ], [ -93.618388899127254, 11.494043358147605 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "GLOBAL-STABLE-11", "REGION": "GLOBAL STABLE", "UPPER DEPTH": 0.0, "LOWER DEPTH": 40.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 83.762510439326846, 41.153263474308048 ], [ 85.242754644461556, 41.421264259083372 ], [ 86.471200735365983, 41.02089067860787 ], [ 87.750411347576474, 40.64467861728204 ], [ 89.405304323395285, 40.145122400341059 ], [ 89.393186387591925, 39.589045630154608 ], [ 88.713113863589797, 39.317477402088954 ], [ 87.626971065012668, 39.003320130134966 ], [ 86.78951260959056, 38.474720018751867 ], [ 85.763818206582073, 37.918066707692439 ], [ 84.557568702165426, 37.437482048404178 ], [ 83.245551706240448, 37.070471950349344 ], [ 81.714102750362471, 37.118292805335876 ], [ 80.421981684960954, 37.376359342119599 ], [ 78.979064492370512, 37.642826207536842 ], [ 77.418160310543456, 38.187900375455712 ], [ 77.274576632629405, 39.054352637788121 ], [ 78.390579064062777, 39.513093950768045 ], [ 79.245142293710259, 39.850820116010141 ], [ 80.557408526354166, 40.145085877269693 ], [ 81.080971874754709, 40.645184329889538 ], [ 81.744762581644821, 41.03502418674055 ], [ 83.178413278125319, 41.446826176428161 ], [ 83.762510439326846, 41.153263474308048 ] ] ] } } +] +} diff --git a/shakyground2/regionalization_files/volcanic.geojson b/shakyground2/regionalization_files/volcanic.geojson new file mode 100644 index 0000000..6cd7418 --- /dev/null +++ b/shakyground2/regionalization_files/volcanic.geojson @@ -0,0 +1,50 @@ +{ +"type": "FeatureCollection", +"features": [ +{ "type": "Feature", "properties": { "id": "VOLC-0", "REGION": "GLOBAL VOLCANIC", "UPPER DEPTH": 0.0, "LOWER DEPTH": 15.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -130.863466430626772, 46.159114699712255 ], [ -130.363391660102536, 47.090773144501412 ], [ -129.727157172826168, 47.477194558088314 ], [ -128.955026620063336, 47.126433410020873 ], [ -129.045340803868214, 46.387744929506738 ], [ -129.283660281985334, 45.620043153016397 ], [ -129.304940537606569, 44.646831839229641 ], [ -130.180481471953016, 44.308149813255653 ], [ -130.844263268989835, 44.683028980513583 ], [ -130.977344099136729, 45.477194558088314 ], [ -130.863466430626772, 46.159114699712255 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "VOLC-1", "REGION": "GLOBAL VOLCANIC", "UPPER DEPTH": 0.0, "LOWER DEPTH": 15.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.0, 28.25 ], [ -114.0, 28.75 ], [ -114.25, 28.75 ], [ -114.25, 29.0 ], [ -114.75, 29.0 ], [ -114.75, 30.0 ], [ -114.25, 30.0 ], [ -114.25, 29.5 ], [ -114.0, 29.5 ], [ -114.0, 29.0 ], [ -113.5, 29.0 ], [ -113.5, 28.25 ], [ -114.0, 28.25 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "VOLC-2", "REGION": "GLOBAL VOLCANIC", "UPPER DEPTH": 0.0, "LOWER DEPTH": 15.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -111.295721090472128, 18.337060200720984 ], [ -111.285507144995734, 19.714009526660984 ], [ -110.489786054523606, 19.754865308566558 ], [ -110.448930272618028, 18.500483328343279 ], [ -111.295721090472128, 18.337060200720984 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "VOLC-3", "REGION": "GLOBAL VOLCANIC", "UPPER DEPTH": 0.0, "LOWER DEPTH": 15.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -171.0, -15.0 ], [ -171.474200174332253, -14.769074235492822 ], [ -172.0, -14.33 ], [ -172.439074235492825, -14.210755633036555 ], [ -173.0, -14.0 ], [ -173.087814847098571, -13.630763217098526 ], [ -173.087814847098571, -13.314629767543696 ], [ -173.0, -13.0 ], [ -171.844847085492376, -12.876661365463251 ], [ -169.052364466772531, -12.894622183481726 ], [ -168.0, -13.0 ], [ -167.844983085727335, -13.492403474399875 ], [ -167.877059214062001, -14.263030116208185 ], [ -168.0, -15.0 ], [ -168.772675730302126, -15.098137007748617 ], [ -170.035890754276437, -15.105377816518278 ], [ -171.0, -15.0 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "VOLC-4", "REGION": "GLOBAL VOLCANIC", "UPPER DEPTH": 0.0, "LOWER DEPTH": 15.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -17.795498728037042, 32.227306713874647 ], [ -17.800207977390741, 32.915051347649985 ], [ -17.363615971675216, 33.545461342774928 ], [ -16.295498728037042, 33.545461342774928 ], [ -15.850168371437032, 32.942360062058803 ], [ -15.977269328612536, 32.250037385262118 ], [ -16.930232313299769, 32.026842950801971 ], [ -17.795498728037042, 32.227306713874647 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "VOLC-5", "REGION": "GLOBAL VOLCANIC", "UPPER DEPTH": 0.0, "LOWER DEPTH": 15.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -19.0, 27.0 ], [ -19.522805441911689, 28.623280897586824 ], [ -19.0, 30.0 ], [ -17.229241694651776, 30.214271468516841 ], [ -15.681312691891597, 29.797362447696425 ], [ -13.863242696880111, 30.141790798245474 ], [ -12.704501271962959, 29.840885300287745 ], [ -12.749962614737889, 28.250037385262111 ], [ -14.04546134277493, 27.295349186988595 ], [ -15.113802897985769, 26.954538657225068 ], [ -16.795578520800909, 26.837562396760738 ], [ -19.0, 27.0 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "VOLC-6", "REGION": "GLOBAL VOLCANIC", "UPPER DEPTH": 0.0, "LOWER DEPTH": 15.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -25.795423957512817, 14.261402720955843 ], [ -25.873236233774101, 15.791529942104395 ], [ -26.102288021243591, 16.75787043333024 ], [ -26.0, 17.545386572250706 ], [ -25.359668564455852, 17.824480427113766 ], [ -24.446691773248592, 17.574226749794978 ], [ -23.503881766154848, 17.651379200600978 ], [ -22.500074770524225, 17.784058621819089 ], [ -21.909256496810091, 16.986072500569311 ], [ -21.828377819618584, 15.609477242877182 ], [ -22.125018692631059, 14.511440106217957 ], [ -23.149967355557667, 13.929271052997059 ], [ -24.317620736866647, 13.857454323830552 ], [ -25.795423957512817, 14.261402720955843 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "VOLC-7", "REGION": "GLOBAL VOLCANIC", "UPPER DEPTH": 0.0, "LOWER DEPTH": 15.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.0, -8.5 ], [ -15.0, -7.5 ], [ -14.0, -7.5 ], [ -14.0, -8.5 ], [ -15.0, -8.5 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "VOLC-8", "REGION": "GLOBAL VOLCANIC", "UPPER DEPTH": 0.0, "LOWER DEPTH": 15.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -30.0, -21.5 ], [ -30.0, -19.5 ], [ -28.0, -19.5 ], [ -28.0, -21.5 ], [ -30.0, -21.5 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "VOLC-9", "REGION": "GLOBAL VOLCANIC", "UPPER DEPTH": 0.0, "LOWER DEPTH": 15.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.428019053321968, -38.223740143794096 ], [ -13.591442180944263, -36.0 ], [ -11.36770203715016, -36.0 ], [ -11.204278909527872, -38.223740143794096 ], [ -13.428019053321968, -38.223740143794096 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "VOLC-10", "REGION": "GLOBAL VOLCANIC", "UPPER DEPTH": 0.0, "LOWER DEPTH": 15.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.581711563811147, -55.245134691433435 ], [ 2.336576872377705, -53.459144218094423 ], [ 6.124500659089835, -53.254865308566558 ], [ 6.165356440995408, -55.040855781905577 ], [ 2.581711563811147, -55.245134691433435 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "VOLC-11", "REGION": "GLOBAL VOLCANIC", "UPPER DEPTH": 0.0, "LOWER DEPTH": 15.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 54.326846255244583, -21.795721090472128 ], [ 54.245134691433442, -20.511663930506231 ], [ 55.780662915030973, -19.69766878921255 ], [ 56.87549934091016, -20.307385020978359 ], [ 57.324912941871467, -21.509730617133112 ], [ 56.101781302029664, -22.136013559324606 ], [ 54.326846255244583, -21.795721090472128 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "VOLC-12", "REGION": "GLOBAL VOLCANIC", "UPPER DEPTH": 0.0, "LOWER DEPTH": 15.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.079519964594013, -39.397786749280634 ], [ 76.568730137763524, -38.641246434239129 ], [ 76.6625042199001, -37.58543586933213 ], [ 77.306826678468667, -37.12494392210683 ], [ 78.011402720955843, -37.306789293206542 ], [ 78.420554805930209, -37.949172928450359 ], [ 78.337284028676606, -38.865013281592816 ], [ 77.988672049568379, -39.386421413586902 ], [ 77.079519964594013, -39.397786749280634 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "VOLC-13", "REGION": "GLOBAL VOLCANIC", "UPPER DEPTH": 0.0, "LOWER DEPTH": 15.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.040855781905577, -48.0 ], [ 36.877432654283282, -45.785990473339012 ], [ 39.200412282781635, -45.54085578190557 ], [ 39.404691192309507, -47.836576872377705 ], [ 37.040855781905577, -48.0 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "VOLC-14", "REGION": "GLOBAL VOLCANIC", "UPPER DEPTH": 0.0, "LOWER DEPTH": 15.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.0, -47.0 ], [ 49.0, -45.0 ], [ 53.0, -45.0 ], [ 53.0, -47.0 ], [ 49.0, -47.0 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "VOLC-15", "REGION": "GLOBAL VOLCANIC", "UPPER DEPTH": 0.0, "LOWER DEPTH": 15.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.75, 50.15 ], [ 6.75, 50.33 ], [ 7.0, 50.33 ], [ 7.0, 50.15 ], [ 6.75, 50.15 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "VOLC-16", "REGION": "GLOBAL VOLCANIC", "UPPER DEPTH": 0.0, "LOWER DEPTH": 15.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.681920141623943, 19.86376551272366 ], [ 14.772693286125353, 21.727231943350425 ], [ 15.779506602948013, 22.51957831684458 ], [ 17.665621911385337, 22.540845800356568 ], [ 19.318229399424506, 21.454463886700847 ], [ 19.765558342832346, 20.028137068769407 ], [ 18.954538657225068, 18.681770600575494 ], [ 16.964768215811979, 19.045461342774928 ], [ 15.681920141623943, 19.86376551272366 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "VOLC-17", "REGION": "GLOBAL VOLCANIC", "UPPER DEPTH": 0.0, "LOWER DEPTH": 15.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.65903992918803, 12.318154628900281 ], [ 23.351736785032159, 13.690734902302854 ], [ 24.386421413586902, 15.704501271962959 ], [ 25.866768461117584, 16.341507689394163 ], [ 27.181845371099719, 16.136384028324787 ], [ 27.922445959766257, 14.923430698433425 ], [ 27.0, 12.750037385262113 ], [ 25.011425886974486, 11.977194558088311 ], [ 23.65903992918803, 12.318154628900281 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "VOLC-18", "REGION": "GLOBAL VOLCANIC", "UPPER DEPTH": 0.0, "LOWER DEPTH": 15.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.859370869488792, 7.931218608114854 ], [ 37.803119217284319, 9.140629130511204 ], [ 38.253132434920168, 10.112503304408961 ], [ 38.859370869488906, 11.603172087827723 ], [ 38.890970423458718, 14.398663052152543 ], [ 39.028125826102354, 15.774993391182075 ], [ 39.644750018592546, 16.129822784246862 ], [ 40.831245043386545, 16.02812582610224 ], [ 41.478139043738089, 15.534390695942689 ], [ 42.112503304408968, 14.971874173897874 ], [ 42.646894000351537, 14.450013217635965 ], [ 43.05625165220448, 13.606238434568743 ], [ 43.450013217635849, 12.871900609169463 ], [ 44.0, 12.0 ], [ 44.112503304408968, 11.112503304408964 ], [ 44.096907217987386, 10.409357651852945 ], [ 44.012529739680673, 9.606238434568631 ], [ 43.521860956261911, 8.84684112980813 ], [ 42.762463651501406, 8.606238434568631 ], [ 41.843774783067218, 8.521860956261907 ], [ 40.831245043386552, 8.05625165220448 ], [ 40.112503304409081, 7.746867565079832 ], [ 39.73968051354224, 7.254347665871662 ], [ 39.450228481948699, 6.510257664460067 ], [ 38.915622521693393, 5.028125826102354 ], [ 38.533906568043683, 3.439968989962945 ], [ 38.11708682713153, 1.358950415936606 ], [ 37.972878854550679, -0.147817278878589 ], [ 38.121979736170445, -2.389903532421867 ], [ 37.771485746380208, -3.487913638531165 ], [ 35.913983094999487, -4.28312529635209 ], [ 35.087367413281882, -4.083196708553078 ], [ 34.723911833419457, -3.195692645205494 ], [ 34.399988842803324, -1.675729143279439 ], [ 34.374034866878951, -0.295914821464984 ], [ 34.452797159546222, 1.482249052286459 ], [ 34.776730886038962, 3.330645217318002 ], [ 35.459769562504228, 5.052791420915666 ], [ 36.048948214450057, 6.614717214349866 ], [ 36.859370869488792, 7.931218608114854 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "VOLC-19", "REGION": "GLOBAL VOLCANIC", "UPPER DEPTH": 0.0, "LOWER DEPTH": 15.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.606238434568631, 1.031192172843149 ], [ 7.871710482822472, -0.484335508636916 ], [ 6.00248220633717, -0.548247957019247 ], [ 5.535533632944865, 0.965375249455462 ], [ 6.087046603743477, 2.210940424731946 ], [ 7.479963119185845, 2.930345251789419 ], [ 9.0, 4.0 ], [ 9.662490086773111, 4.815648956964981 ], [ 10.253132434920168, 5.606238434568629 ], [ 10.831245043386556, 6.253132434920166 ], [ 11.196880782715688, 6.718741738977592 ], [ 11.746867565079832, 7.337509913226889 ], [ 12.421887391533613, 8.084377478306722 ], [ 13.35969716969527, 8.309384087124648 ], [ 14.887496695591039, 8.225006608817925 ], [ 15.225006608817925, 6.875231212127437 ], [ 14.774993391182075, 5.66249008677311 ], [ 13.022187256468385, 5.606238434568629 ], [ 12.034390695942573, 5.409357651852943 ], [ 11.415622521693276, 4.831245043386556 ], [ 11.112503304408964, 4.128099390830538 ], [ 10.662490086773111, 3.359370869488796 ], [ 9.91562252169328, 3.106238434568631 ], [ 9.156225216932778, 2.409357651852947 ], [ 8.606238434568631, 1.031192172843149 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "VOLC-20", "REGION": "GLOBAL VOLCANIC", "UPPER DEPTH": 0.0, "LOWER DEPTH": 15.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.704576042487183, -13.363541201150989 ], [ 42.102082937183184, -12.248457055200793 ], [ 42.38634664306268, -10.772693286125353 ], [ 43.863167348529878, -10.363541201150987 ], [ 45.266214394867198, -11.268404758497363 ], [ 45.295199645940144, -12.772543745076906 ], [ 43.974498049704998, -13.544330640516025 ], [ 42.704576042487183, -13.363541201150989 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "VOLC-21", "REGION": "GLOBAL VOLCANIC", "UPPER DEPTH": 0.0, "LOWER DEPTH": 15.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 141.409077314450144, -38.431845371099719 ], [ 141.141437288862448, -37.629437339527179 ], [ 141.68184537109974, -36.840885300287745 ], [ 143.279105509382788, -36.971528692619692 ], [ 143.999813073689438, -37.363690742199431 ], [ 144.04538657225072, -38.25 ], [ 142.733573002654168, -38.500037385262111 ], [ 141.409077314450144, -38.431845371099719 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "VOLC-22", "REGION": "GLOBAL VOLCANIC", "UPPER DEPTH": 0.0, "LOWER DEPTH": 15.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 162.590642348147043, 4.140629130511204 ], [ 161.156225216932768, 4.803119217284316 ], [ 157.225006608817921, 5.0 ], [ 156.946405678534092, 6.15518587703064 ], [ 157.0, 8.0 ], [ 158.362169207589318, 8.180141643399887 ], [ 160.156225216932768, 8.02812582610224 ], [ 162.209410522396354, 7.196880782715686 ], [ 164.028125826102269, 6.381231825750705 ], [ 164.0, 4.225006608817925 ], [ 162.590642348147043, 4.140629130511204 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "VOLC-23", "REGION": "GLOBAL VOLCANIC", "UPPER DEPTH": 0.0, "LOWER DEPTH": 15.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -149.04499609795721, -18.628403885988948 ], [ -149.526510670415746, -18.304959229223751 ], [ -150.933363115212728, -17.430207755924044 ], [ -150.090712613410233, -16.654914556404712 ], [ -148.092120678972606, -16.961556460661154 ], [ -147.387646599759677, -17.609918458447495 ], [ -147.708656314732053, -18.556176700120165 ], [ -149.04499609795721, -18.628403885988948 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "VOLC-24", "REGION": "GLOBAL VOLCANIC", "UPPER DEPTH": 0.0, "LOWER DEPTH": 15.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -141.0, -10.293778627060794 ], [ -142.519969036243424, -7.993985390015116 ], [ -141.064201942994487, -7.071506768372973 ], [ -138.0, -8.5 ], [ -137.695040770776245, -10.887646599759671 ], [ -139.297942175470951, -11.264012019750023 ], [ -141.0, -10.293778627060794 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "VOLC-25", "REGION": "GLOBAL VOLCANIC", "UPPER DEPTH": 0.0, "LOWER DEPTH": 15.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -142.0, -30.0 ], [ -141.637215048147652, -27.395358413579448 ], [ -138.274430096295333, -27.758143365431778 ], [ -138.637215048147652, -30.241856634568222 ], [ -142.0, -30.0 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "VOLC-26", "REGION": "GLOBAL VOLCANIC", "UPPER DEPTH": 0.0, "LOWER DEPTH": 15.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.0, 70.5 ], [ -10.0, 71.5 ], [ -7.0, 71.5 ], [ -7.0, 70.5 ], [ -10.0, 70.5 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "VOLC-27", "REGION": "GLOBAL VOLCANIC", "UPPER DEPTH": 0.0, "LOWER DEPTH": 15.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -81.0, -27.0 ], [ -81.136384028324798, -26.248559831753031 ], [ -81.0, -25.5 ], [ -80.078150605121706, -25.386346643062677 ], [ -79.0, -25.5 ], [ -78.863615971675216, -26.2030984889781 ], [ -79.0, -27.0 ], [ -80.055419933734257, -27.090922685549859 ], [ -81.0, -27.0 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "VOLC-28", "REGION": "GLOBAL VOLCANIC", "UPPER DEPTH": 0.0, "LOWER DEPTH": 15.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -110.0, -28.0 ], [ -110.0, -26.5 ], [ -108.5, -26.5 ], [ -108.5, -28.0 ], [ -110.0, -28.0 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "VOLC-29", "REGION": "GLOBAL VOLCANIC", "UPPER DEPTH": 0.0, "LOWER DEPTH": 15.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.658965158663804, -34.545461342774928 ], [ -81.63273599038682, -33.864004092145123 ], [ -81.431807985837608, -33.090922685549863 ], [ -79.602398810360498, -32.996002258849487 ], [ -77.646346174174468, -32.766663914981983 ], [ -76.340810529763516, -33.11365335693732 ], [ -76.338413560170636, -33.952253083538544 ], [ -77.65918947023647, -34.5 ], [ -80.658965158663804, -34.545461342774928 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "VOLC-30", "REGION": "GLOBAL VOLCANIC", "UPPER DEPTH": 0.0, "LOWER DEPTH": 15.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -143.032573461727111, -55.120928317284111 ], [ -143.032573461727111, -52.362784951852333 ], [ -137.758143365431778, -52.483713269136445 ], [ -137.758143365431778, -55.241856634568215 ], [ -143.032573461727111, -55.120928317284111 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "VOLC-31", "REGION": "GLOBAL VOLCANIC", "UPPER DEPTH": 0.0, "LOWER DEPTH": 15.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 161.846498220988764, -79.669582617916689 ], [ 160.847910720361739, -75.883662092728969 ], [ 162.113154414435968, -72.31459087689116 ], [ 161.631672005485996, -68.622703543763748 ], [ 160.818607524073855, -66.044177427778493 ], [ 162.088385916969003, -65.197679206789715 ], [ 165.065146923454222, -65.197679206789729 ], [ 167.453996967123231, -67.246225604529371 ], [ 167.727418723336854, -70.939074252442111 ], [ 168.638116865775856, -74.776679219745702 ], [ 169.894409198233006, -77.090840469004505 ], [ 169.53949466296632, -80.032367569769036 ], [ 165.840730816721901, -80.160262718304509 ], [ 161.846498220988764, -79.669582617916689 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "VOLC-32", "REGION": "GLOBAL VOLCANIC", "UPPER DEPTH": 0.0, "LOWER DEPTH": 15.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 65.587576114406261, -47.800052896543335 ], [ 65.756331071019702, -46.546920754623301 ], [ 66.459476723575719, -45.687549474134414 ], [ 67.999999880000075, -45.350039560907518 ], [ 69.618768113249487, -45.490668691418726 ], [ 70.843774781067196, -46.278191822281471 ], [ 72.040655622782936, -47.515728170780058 ], [ 72.928152201374076, -50.047052519981726 ], [ 71.971874113897883, -52.046788289264803 ], [ 71.028125883102263, -52.918688898434269 ], [ 69.212476867137227, -52.46867568079842 ], [ 67.593708633888156, -51.428020115015507 ], [ 66.284324487763385, -49.796722201085551 ], [ 65.587576114406261, -47.800052896543335 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "VOLC-33", "REGION": "GLOBAL VOLCANIC", "UPPER DEPTH": 0.0, "LOWER DEPTH": 15.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -158.096303006491667, 23.000000001000032 ], [ -156.851120627361439, 22.53409065360535 ], [ -155.999999973999934, 21.999999766000045 ], [ -154.718741829977574, 21.253132317920226 ], [ -154.000000031999889, 20.578112491466449 ], [ -153.859370901488688, 19.606238434568628 ], [ -153.915622553693169, 18.690615677875378 ], [ -154.365635771329039, 18.140629012511244 ], [ -155.196880873715656, 17.774993273182115 ], [ -156.140629104511135, 17.859370751488836 ], [ -156.774993248182, 18.337509795226932 ], [ -158.104253297281559, 19.549986782364147 ], [ -159.340885416947316, 20.184655538193425 ], [ -160.745977488710309, 20.951098904911028 ], [ -162.432023209337189, 21.746272518226487 ], [ -164.262673557870329, 22.629798755243673 ], [ -164.696186577251666, 23.761877861290333 ], [ -163.054462268823045, 24.091433031906078 ], [ -161.17183522181773, 23.88720157507494 ], [ -159.878651641610361, 23.505965062503094 ], [ -158.096303006491667, 23.000000001000032 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "VOLC-34", "REGION": "GLOBAL VOLCANIC", "UPPER DEPTH": 0.0, "LOWER DEPTH": 15.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.521861109261827, 62.481205349478955 ], [ -16.987470179319281, 62.296854423443975 ], [ -18.071847892625993, 62.324980249546215 ], [ -19.493735167159556, 62.324980249546222 ], [ -20.831244963386432, 62.381231901750709 ], [ -22.112503459408913, 62.565582827785683 ], [ -23.646894038351476, 63.099973523728252 ], [ -24.743801256338866, 63.846840795808241 ], [ -24.940682039054551, 65.296854424444007 ], [ -24.42735019866512, 66.506264946840361 ], [ -23.293788155703027, 67.068781468885177 ], [ -22.040655485782786, 67.378165556009819 ], [ -20.253132471920054, 67.293788077703084 ], [ -18.493735284159602, 67.293788077703084 ], [ -17.015596005421521, 67.237536425498604 ], [ -15.578112761466308, 67.237536425498618 ], [ -14.043721830523715, 67.096907294987417 ], [ -12.959344469217033, 66.337509990226906 ], [ -12.762463686501349, 64.718741404977706 ], [ -13.184351078034961, 63.493735089159628 ], [ -14.353105917648364, 62.818715262705851 ], [ -15.521861109261827, 62.481205349478955 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "VOLC-35", "REGION": "GLOBAL VOLCANIC", "UPPER DEPTH": 0.0, "LOWER DEPTH": 15.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.693581466708167, -2.153209250145879 ], [ -91.673153810755309, -1.877432722283255 ], [ -92.326846321244489, -1.040856142905508 ], [ -92.347274212197277, 0.020427941952788 ], [ -91.918288502188744, 0.877432412283323 ], [ -90.662939630278984, 1.142994994669552 ], [ -88.835610163691072, 1.347273904197421 ], [ -85.966458258511111, 1.367701795150208 ], [ -85.190198402305214, 0.623050725060001 ], [ -86.262662677326531, -0.519944923609442 ], [ -87.876466062596677, -1.530158576085879 ], [ -89.458660837751069, -2.132781359193092 ], [ -90.693581466708167, -2.153209250145879 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "VOLC-36", "REGION": "GLOBAL VOLCANIC", "UPPER DEPTH": 0.0, "LOWER DEPTH": 15.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -26.824370228802806, 39.789243963963543 ], [ -26.051599574335444, 39.421510980073045 ], [ -25.070251858678738, 38.89462189748167 ], [ -24.754118409123912, 38.140503762357788 ], [ -24.683866531445059, 37.210755229036607 ], [ -24.894622164481611, 36.351259101394255 ], [ -25.824370345802819, 36.175629407197128 ], [ -26.754118351123953, 36.175629407197128 ], [ -27.772770577467295, 36.437984574569242 ], [ -28.613614713766282, 36.64874020760579 ], [ -29.754118352123974, 36.824369901802925 ], [ -31.210755616036476, 37.473110924408701 ], [ -32.175629736197052, 38.297480937211432 ], [ -32.999999924999969, 38.999999713999941 ], [ -32.999999924999969, 39.999999597000098 ], [ -32.105377858518203, 40.281007107715503 ], [ -30.859496227642222, 40.245881168876075 ], [ -29.105377857518242, 40.140503352357797 ], [ -27.999999981999906, 39.999999597000098 ], [ -26.824370228802806, 39.789243963963543 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "VOLC-37", "REGION": "GLOBAL VOLCANIC", "UPPER DEPTH": 0.0, "LOWER DEPTH": 15.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -111.071497574334686, 43.407591171369127 ], [ -112.173027994169914, 44.063856136754644 ], [ -112.009575808411952, 45.17709704717192 ], [ -111.040855737905503, 45.6128364445836 ], [ -110.347274219197331, 45.112353116240328 ], [ -110.04085585490553, 44.459627555437649 ], [ -110.167139625134155, 43.573820100354439 ], [ -111.071497574334686, 43.407591171369127 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "VOLC-38", "REGION": "GLOBAL VOLCANIC", "UPPER DEPTH": 0.0, "LOWER DEPTH": 15.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -138.055697582193829, -77.454552403398267 ], [ -138.902195803182622, -73.947631202159045 ], [ -135.274346284659288, -71.891849808329169 ], [ -124.51172604637344, -71.287208221908614 ], [ -115.321173932781022, -73.222061298454378 ], [ -101.656274079676507, -72.254634760181503 ], [ -95.368001580902757, -68.626785241658183 ], [ -90.168083937685992, -65.361720674987197 ], [ -86.782091053730895, -67.538430386101183 ], [ -91.256438793242992, -73.947631202159045 ], [ -104.074840425358715, -78.542907258955253 ], [ -124.632654363657537, -79.873118749080476 ], [ -138.055697582193829, -77.454552403398267 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "VOLC-39", "REGION": "GLOBAL VOLCANIC", "UPPER DEPTH": 0.0, "LOWER DEPTH": 15.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.067532054463555, -17.495654257922723 ], [ -113.425512624518831, -16.644978513245952 ], [ -112.542735908344824, -16.901786285223846 ], [ -112.061221335886273, -18.169774659364691 ], [ -113.602067967753626, -18.153724173616069 ], [ -114.067532054463555, -17.495654257922723 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "VOLC-40", "REGION": "GLOBAL VOLCANIC", "UPPER DEPTH": 0.0, "LOWER DEPTH": 15.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -104.585342814700311, 10.143282201197945 ], [ -103.992933977069498, 10.398630838107781 ], [ -103.482236703249825, 10.051356691910403 ], [ -103.604804048966542, 9.530445472614339 ], [ -104.350422068743271, 9.387450235944829 ], [ -104.738551996846212, 9.68365465476024 ], [ -104.585342814700311, 10.143282201197945 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "VOLC-41", "REGION": "GLOBAL VOLCANIC", "UPPER DEPTH": 0.0, "LOWER DEPTH": 15.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.378556073288195, -11.388383412197868 ], [ 50.378855155385089, -11.592959454685049 ], [ 50.51523918370988, -13.411413165682225 ], [ 49.651473670986221, -15.252597548066866 ], [ 48.355825401900731, -15.388981576391654 ], [ 47.469329217789607, -13.09318376625772 ], [ 48.378556073288195, -11.388383412197868 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "VOLC-42", "REGION": "GLOBAL VOLCANIC", "UPPER DEPTH": 0.0, "LOWER DEPTH": 15.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.310064977028908, -18.207584828437277 ], [ 47.696635931664254, -18.025739457337558 ], [ 48.424017416063123, -19.321387726423048 ], [ 47.855750631376509, -20.435190624408818 ], [ 46.605563705065947, -20.412459953021351 ], [ 45.969104906216941, -19.480502426135299 ], [ 46.310064977028908, -18.207584828437277 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "VOLC-43", "REGION": "GLOBAL VOLCANIC", "UPPER DEPTH": 0.0, "LOWER DEPTH": 15.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.597815685016037, -60.526412284049762 ], [ -55.710870877759575, -60.230913556012723 ], [ -52.710422254614244, -60.640065640987089 ], [ -52.301270169639878, -63.617783592744956 ], [ -54.665259993936203, -66.163618788141008 ], [ -58.938626214779561, -67.231960343351844 ], [ -62.120920209024618, -67.254691014739308 ], [ -63.643875191984748, -64.004205006331858 ], [ -63.007416393135735, -61.708407196197925 ], [ -59.597815685016037, -60.526412284049762 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "VOLC-44", "REGION": "GLOBAL VOLCANIC", "UPPER DEPTH": 0.0, "LOWER DEPTH": 15.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.120972206748412, -3.265339664223954 ], [ 28.067492322773479, -2.071294604175834 ], [ 28.446426558331027, -0.53609385703281 ], [ 29.413843314794523, 1.112825379882243 ], [ 30.515577955851164, 2.250011061997426 ], [ 31.609053733873491, 2.117339495499356 ], [ 31.559172951820624, 1.018059928635793 ], [ 31.301268469247507, -0.915155770047486 ], [ 30.412113826679715, -2.677793698592406 ], [ 29.218867465716428, -3.530683134450907 ], [ 28.120972206748412, -3.265339664223954 ] ] ] } } +] +} diff --git a/shakyground2/shakemap.py b/shakyground2/shakemap.py index 9a460d2..9b8e46c 100644 --- a/shakyground2/shakemap.py +++ b/shakyground2/shakemap.py @@ -31,7 +31,7 @@ class Shakemap(object): self, earthquake: Earthquake, site_model: SiteModel, - ground_motion_model: Dict, + ground_motion_model: List, tectonic_region: str, cache_file: Optional[str] = None, num_rupture_samples: int = 100, @@ -48,8 +48,9 @@ class Shakemap(object): Target sites used for calculation of the ground motion values, as instances of :class:shakyground2.site_model.SiteModel ground_motion_model: - Set of ground motion models and their respective weights as a dictionary - {"GMMs": [...], "weights": [...]} + Set of ground motion models and their respective weights as a list of tuples + of (ID, GMM, Weight) where ID is the unique ID of the GMM and its associated + weight tectonic_region: Tectonic region to which the earthquake is assigned cache_file: @@ -116,7 +117,9 @@ class Shakemap(object): Construct the rupture, site and distances contexts from the earthquake, site and ground motion models """ - cmaker = ContextMaker(self.tectonic_region, self.ground_motion_model["GMMs"]) + cmaker = ContextMaker( + self.tectonic_region, [gmm[1] for gmm in self.ground_motion_model] + ) if not self.earthquake.rupture: # Use the finite rupture sampler to generate the rupture and corresponding @@ -143,7 +146,7 @@ class Shakemap(object): ctxt = grp.create_group("contexts") rup_ctxt = ctxt.create_group("rupture") dist_ctxt = ctxt.create_group("distances") - for gmm in self.ground_motion_model["GMMs"]: + for gmm in [gmm[1] for gmm in self.ground_motion_model]: for rup_attr in gmm.REQUIRES_RUPTURE_PARAMETERS: if rup_attr not in rup_ctxt.attrs: rup_ctxt.attrs[rup_attr] = getattr(self.rctx, rup_attr) @@ -153,7 +156,9 @@ class Shakemap(object): dist_dset = dist_ctxt.create_dataset(attr, distance.shape, dtype="f") dist_dset[:] = distance site_ctxt = ctxt.create_dataset( - "sites", self.site_model.site_array.shape, dtype=self.site_model.site_array.dtype + "sites", + self.site_model.site_array.shape, + dtype=self.site_model.site_array.dtype, ) site_ctxt[:] = self.site_model.site_array if self.site_model.bbox_properties: @@ -209,11 +214,8 @@ class Shakemap(object): # Pre-allocate the aggregated shakemaps with zeros aggregated_means = np.zeros(self.site_model.shape, dtype=shakemap_dtypes) aggregated_stddevs = np.zeros(self.site_model.shape, dtype=shakemap_dtypes) - for weight, gmm in zip( - self.ground_motion_model["weights"], self.ground_motion_model["GMMs"] - ): - gmm_str = gmm.__class__.__name__ - shakemaps[gmm_str] = { + for gmm_id, gmm, weight in self.ground_motion_model: + shakemaps[gmm_id] = { "weight": weight, "mean": np.zeros(self.site_model.shape, dtype=shakemap_dtypes), "stddev": np.zeros(self.site_model.shape, dtype=shakemap_dtypes), @@ -232,8 +234,8 @@ class Shakemap(object): continue aggregated_means[intensity_measure_type] += weight * mean aggregated_stddevs[intensity_measure_type] += weight * stddev - shakemaps[gmm_str]["mean"][intensity_measure_type] = mean - shakemaps[gmm_str]["stddev"][intensity_measure_type] = stddev + shakemaps[gmm_id]["mean"][intensity_measure_type] = mean + shakemaps[gmm_id]["stddev"][intensity_measure_type] = stddev if self.caching: self._cache_shakemap( fle_eq, shakemaps, aggregated_means, aggregated_stddevs, shakemap_dtypes @@ -263,17 +265,17 @@ class Shakemap(object): shakemap_dtypes: IMT-dependent data type of the shakemaps """ shakemap_grp = fle.create_group("shakemaps") - for gmm_string in shakemaps: - gmm_grp = shakemap_grp.create_group(gmm_string) - gmm_grp.attrs["weight"] = shakemaps[gmm_string]["weight"] + for gmm_id in shakemaps: + gmm_grp = shakemap_grp.create_group(gmm_id) + gmm_grp.attrs["weight"] = shakemaps[gmm_id]["weight"] mean_dset = gmm_grp.create_dataset( - "mean", shakemaps[gmm_string]["mean"].shape, dtype=shakemap_dtypes + "mean", shakemaps[gmm_id]["mean"].shape, dtype=shakemap_dtypes ) - mean_dset[:] = shakemaps[gmm_string]["mean"] + mean_dset[:] = shakemaps[gmm_id]["mean"] stddev_dset = gmm_grp.create_dataset( - "stddev", shakemaps[gmm_string]["stddev"].shape, dtype=shakemap_dtypes + "stddev", shakemaps[gmm_id]["stddev"].shape, dtype=shakemap_dtypes ) - stddev_dset[:] = shakemaps[gmm_string]["stddev"] + stddev_dset[:] = shakemaps[gmm_id]["stddev"] # Store the agregated results aggregated_grp = fle.create_group("aggregated") aggregated_mean_dset = aggregated_grp.create_dataset( diff --git a/shakyground2/synthetic_rupture_generator.py b/shakyground2/synthetic_rupture_generator.py index e628cb8..f914481 100644 --- a/shakyground2/synthetic_rupture_generator.py +++ b/shakyground2/synthetic_rupture_generator.py @@ -101,9 +101,13 @@ class FiniteRuptureSampler(object): the rupture surface """ # Sample the rupture surfaces - rupture_surfaces, strikes, dips, rakes, hypo_locs = self.sample_rupture_surfaces( - nsamples, earthquake - ) + ( + rupture_surfaces, + strikes, + dips, + rakes, + hypo_locs, + ) = self.sample_rupture_surfaces(nsamples, earthquake) if site_model: target_lons = site_model["lon"] @@ -253,7 +257,11 @@ class FiniteRuptureSampler(object): areas = np.empty(nsamples) thickness = earthquake.lsd - earthquake.usd for i, (dip, rake, epsilon) in enumerate(zip(dips, rakes, msr_epsilons)): - areas[i], lengths[i], widths[i] = earthquake.mag_scale_rel.get_rupture_dimensions( + ( + areas[i], + lengths[i], + widths[i], + ) = earthquake.mag_scale_rel.get_rupture_dimensions( earthquake.mag, rake, dip, diff --git a/shakyground2/valid.py b/shakyground2/valid.py index 99424cd..398ea88 100644 --- a/shakyground2/valid.py +++ b/shakyground2/valid.py @@ -2,9 +2,20 @@ Defines a set of input validation methods to check physically correct or consistent quantities """ +import numpy as np +from copy import deepcopy +from geopandas import GeoDataFrame from typing import Tuple, Optional, Union, Dict from openquake.hazardlib.geo.nodalplane import NodalPlane -from shakyground2.magnitude_scaling_relations import BaseScalingRelation, PEERScalingRelation +from openquake.hazardlib.gsim import get_available_gsims +from shakyground2.magnitude_scaling_relations import ( + BaseScalingRelation, + PEERScalingRelation, +) + + +# OpenQuake GMPE List +GSIM_LIST = get_available_gsims() def longitude(lon: float) -> float: @@ -95,7 +106,9 @@ def focal_mechanism(focal_mech: Optional[Dict]) -> Dict: focal_mechanism = {} for plane in ["nodal_plane_1", "nodal_plane_2"]: focal_mechanism[plane] = mechanism( - focal_mech[plane]["strike"], focal_mech[plane]["dip"], focal_mech[plane]["rake"] + focal_mech[plane]["strike"], + focal_mech[plane]["dip"], + focal_mech[plane]["rake"], ) return focal_mechanism @@ -144,3 +157,54 @@ def scaling_relation(msr: Optional[BaseScalingRelation]): "Magnitude Scaling Relation %s not instance of BaseScalingRelation" % str(msr) ) return msr + + +def regionalization_mapping(mapping: Dict) -> Dict: + """ + Velidates a ground motion mapping to parse the ground motion model strings to instances + of the ground motion models. Also checks the weights sum correctly to 1.0 + """ + new_mapping = {} + for key in mapping: + new_mapping[key] = [] + # Verify that weights sum to 1.0 + weight_sum = sum([gmm["weight"] for gmm in mapping[key]]) + weight_check = np.isclose(weight_sum, 1.0) + assert ( + weight_check + ), "Ground motion model weights for region %s do not sum to 1 " "(sum = %.6f)" % ( + key, + weight_sum, + ) + for gmm in deepcopy(mapping[key]): + gmm_id = gmm.pop("id") + gmm_weight = gmm.pop("weight") + gmm_name = gmm.pop("model") + new_mapping[key].append((gmm_id, GSIM_LIST[gmm_name](**gmm), gmm_weight)) + return new_mapping + + +def regionalization(regions: GeoDataFrame, mapping: Dict) -> Tuple[GeoDataFrame, Dict]: + """ + A regionalisation is represented by a geometry set (as a geopandas.GeoDataFrame) and a + corresponding dictionary to map the regions in the geometry set to a set of ground motion + models (as strings of the OpenQuake input names) and respective weights. Function verifies + that the region file has the necessary information and that a mapping for each region is + present. Returns the region set and the mapping with instantiated ground motion model. + """ + if not regions.crs: + # If no coordinate reference system is defined then assume WGS84 + regions.crs = {"init": "epsg:4326"} + if str(regions.crs) != "+init=epsg:4326 +type=crs": + regions = regions.to_crs({"init": "epsg:4326"}) + # Verify that the region set has the necessary columns + for col in ["REGION", "UPPER DEPTH", "LOWER DEPTH", "geometry"]: + if col not in regions.columns: + raise IOError("Regionalization has missing attribute %s" % col) + # Verify that every region in the regionalization has a corresponding mapping + for region in regions.REGION.unique(): + if region not in mapping: + raise IOError( + "Region %s has no corresponding ground motion model in mapping" % region + ) + return regions, regionalization_mapping(mapping) diff --git a/tests/data/dummy_regionalization1.json b/tests/data/dummy_regionalization1.json new file mode 100644 index 0000000..72fb8cb --- /dev/null +++ b/tests/data/dummy_regionalization1.json @@ -0,0 +1,8 @@ +{ +"type": "FeatureCollection", +"features": [ +{ "type": "Feature", "properties": { "id": "Z1L", "REGION": "Zone 1 Left", "UPPER DEPTH": 0.0, "LOWER DEPTH": 40.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.0, 0.0 ], [ -1.0, 1.0 ], [ 0.0, 1.0 ], [ 0.0, 0.0 ], [ -1.0, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "Z1R", "REGION": "Zone 1 Right", "UPPER DEPTH": 0.0, "LOWER DEPTH": 40.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.0, 0.0 ], [ 0.0, 1.0 ], [ 1.0, 1.0 ], [ 1.0, 0.0 ], [ 0.0, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "ZD1", "REGION": "Zone 1 Deep", "UPPER DEPTH": 40.0, "LOWER DEPTH": 80.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.2, 0.2 ], [ 0.2, 0.4 ], [ 0.4, 0.4 ], [ 0.4, 0.2 ], [ 0.2, 0.2 ] ] ] } } +] +} diff --git a/tests/data/dummy_regionalization2.json b/tests/data/dummy_regionalization2.json new file mode 100644 index 0000000..702c656 --- /dev/null +++ b/tests/data/dummy_regionalization2.json @@ -0,0 +1,7 @@ +{ +"type": "FeatureCollection", +"features": [ +{ "type": "Feature", "properties": { "id": "Z2L", "REGION": "Zone 2 Left", "UPPER DEPTH": 0.0, "LOWER DEPTH": 40.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.0, 0.0 ], [ -2.0, 2.0 ], [ 0.0, 2.0 ], [ 0.0, 0.0 ], [ -2.0, 0.0 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "Z2R", "REGION": "Zone 2 Right", "UPPER DEPTH": 0.0, "LOWER DEPTH": 40.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.0, 0.0 ], [ 0.0, 2.0 ], [ 2.0, 2.0 ], [ 2.0, 0.0 ], [ 0.0, 0.0 ] ] ] } } +] +} diff --git a/tests/data/gsim_mapping_test1.json b/tests/data/gsim_mapping_test1.json new file mode 100644 index 0000000..73e6d0a --- /dev/null +++ b/tests/data/gsim_mapping_test1.json @@ -0,0 +1 @@ +{"Zone 1 Left": [{"id": "Bo14", "model": "BooreEtAl2014", "weight": 0.75}, {"id": "Bi14HighStress", "model": "BindiEtAl2014Rjb", "adjustment_factor": 1.25, "weight": 0.25}], "Zone 1 Right": [{"id": "C03", "model": "Campbell2003", "weight": 0.4}, {"id": "ESHM20CratonHighStress", "model": "ESHM20Craton", "epsilon": 1.0, "weight": 0.6}], "Zone 1 Deep": [{"id": "BCHydroSlabErgodic", "model": "AbrahamsonEtAl2015SSlab", "ergodic": false, "weight": 0.5}, {"id": "Zhao2016Slab", "model": "ZhaoEtAl2016SSlab", "weight": 0.5}]} \ No newline at end of file diff --git a/tests/data/gsim_mapping_test2.json b/tests/data/gsim_mapping_test2.json new file mode 100644 index 0000000..a86be04 --- /dev/null +++ b/tests/data/gsim_mapping_test2.json @@ -0,0 +1 @@ +{"Zone 2 Left": [{"id": "C15", "model": "CauzziEtAl2014", "weight": 0.75}, {"id": "B14LowStress", "model": "BindiEtAl2014Rjb", "adjustment_factor": 0.8, "weight": 0.25}], "Zone 2 Right": [{"id": "P11", "model": "PezeshkEtAl2011", "weight": 0.6}, {"id": "ESHM20CratonLowStress", "model": "ESHM20Craton", "epsilon": -1.0, "weight": 0.4}]} \ No newline at end of file diff --git a/tests/regionalization_test.py b/tests/regionalization_test.py new file mode 100644 index 0000000..e8cd5a1 --- /dev/null +++ b/tests/regionalization_test.py @@ -0,0 +1,320 @@ +""" +Unittests for Regionalization class +""" +import os +import unittest +import numpy as np +from pandas import Series +from shakyground2.earthquake import Earthquake +from shakyground2.regionalization import Regionalization, RegionalizationSet, GSIM_LIST + + +DATA_PATH = os.path.join(os.path.dirname(__file__), "data") + + +class RegionalizationTestCase(unittest.TestCase): + """ + Test case for a single regionalisation + """ + + def setUp(self): + self.region_file = os.path.join(DATA_PATH, "dummy_regionalization1.json") + self.gmm_mapping_file = os.path.join(DATA_PATH, "gsim_mapping_test1.json") + + def test_instantiation_from_json(self): + # Basic test of the instantiation from json + regionalization1 = Regionalization.from_json( + "DUMMY1", self.region_file, self.gmm_mapping_file + ) + # Basic verification that the regionalisation has the expected name, number of zones + # region properties + self.assertEqual(regionalization1.name, "DUMMY1") + self.assertEqual(str(regionalization1.regions.crs), "+init=epsg:4326 +type=crs") + self.assertEqual(len(regionalization1), 3) + self.assertEqual( + str(regionalization1), + "DUMMY1 (3 Polygons - BBOX [-1.0000, 0.0000, 1.0000, 1.0000])", + ) + self.assertListEqual(regionalization1["id"].to_list(), ["Z1L", "Z1R", "ZD1"]) + np.testing.assert_array_almost_equal( + regionalization1.bounds, np.array([-1.0, 0.0, 1.0, 1.0]) + ) + # Check that the correct regions are present in the file + target_region_list = ["Zone 1 Left", "Zone 1 Right", "Zone 1 Deep"] + self.assertListEqual(regionalization1["REGION"].to_list(), target_region_list) + self.assertListEqual(list(regionalization1.gsims), target_region_list) + # Check row slicing + row = regionalization1[1] + self.assertIsInstance(row, Series) + self.assertEqual(row["id"], "Z1R") + self.assertEqual(row["REGION"], "Zone 1 Right") + self.assertAlmostEqual(row["UPPER DEPTH"], 0.0) + self.assertAlmostEqual(row["LOWER DEPTH"], 40.0) + self.assertEqual(row["geometry"].wkt, "POLYGON ((0 0, 0 1, 1 1, 1 0, 0 0))") + + def test_raises_index_error(self): + regionalization1 = Regionalization.from_json( + "DUMMY1", self.region_file, self.gmm_mapping_file + ) + with self.assertRaises(TypeError) as te: + # Index using a float - should raise an error + regionalization1[12.34] + self.assertEqual( + str(te.exception), + "Unrecognised data type used for indexing", + ) + + def _check_region(self, region1, region2, gmm1, gmm2): + """ + Verifies that two region outputs are the same in terms of both the region names + (region1, region2) and the ground motion models (gmm1, gmm2) + """ + self.assertEqual(region1, region2) + ids1, gmms1, weights1 = zip(*gmm1) + ids2, gmms2, weights2 = zip(*gmm2) + # Verify the IDs are the same + self.assertTupleEqual(ids1, ids2) + # Verify the weights are the same + np.testing.assert_array_almost_equal(np.array(weights1), np.array(weights2)) + self.assertEqual(len(gmms1), len(gmms2)) + for model1, model2 in zip(gmms1, gmms2): + self.assertEqual(str(model1), str(model2)) + self.assertListEqual(list(model1.kwargs), list(model2.kwargs)) + + def test_event_within_bounds(self): + # Tests that an event falls withing the region bounds or not + regionalization1 = Regionalization.from_json( + "DUMMY1", self.region_file, self.gmm_mapping_file + ) + in_bounds_event = Earthquake("XYZ", 0.5, 0.5, 10.0, 6.0) + self.assertTrue(in_bounds_event in regionalization1) + out_bounds_event = Earthquake("XYZ", 1.5, 0.5, 10.0, 6.0) + self.assertFalse(out_bounds_event in regionalization1) + + def test_event_location_cases(self): + # Test that the correct regions and ground motion models are defined for + # various cases + regionalization1 = Regionalization.from_json( + "DUMMY1", self.region_file, self.gmm_mapping_file + ) + + # Region 1 case (left zone) + region, gmm = regionalization1(Earthquake("XYZ", -0.5, 0.5, 10.0, 6.0)) + target_gmm = [ + ("Bo14", GSIM_LIST["BooreEtAl2014"](), 0.75), + ("Bi14HighStress", GSIM_LIST["BindiEtAl2014Rjb"](adjustment_factor=1.25), 0.25), + ] + self._check_region(region, "Zone 1 Left", gmm, target_gmm) + + # Region 2 case (right zone) + region, gmm = regionalization1(Earthquake("XYZ", 0.5, 0.5, 10.0, 6.0)) + target_gmm = [ + ("C03", GSIM_LIST["Campbell2003"](), 0.4), + ("ESHM20CratonHighStress", GSIM_LIST["ESHM20Craton"](epsilon=1.0), 0.6), + ] + self._check_region(region, "Zone 1 Right", gmm, target_gmm) + + # Region 3 case (deep zone) + region, gmm = regionalization1(Earthquake("XYZ", 0.3, 0.3, 60.0, 6.0)) + target_gmm = [ + ("BCHydroSlabErgodic", GSIM_LIST["AbrahamsonEtAl2015SSlab"](ergodic=False), 0.5), + ("Zhao2016Slab", GSIM_LIST["ZhaoEtAl2016SSlab"](), 0.5), + ] + self._check_region(region, "Zone 1 Deep", gmm, target_gmm) + + # Region 4 case (in shallow zone directly above the deep zone) + region, gmm = regionalization1(Earthquake("XYZ", 0.3, 0.3, 10.0, 6.0)) + target_gmm = [ + ("C03", GSIM_LIST["Campbell2003"](), 0.4), + ("ESHM20CratonHighStress", GSIM_LIST["ESHM20Craton"](epsilon=1.0), 0.6), + ] + self._check_region(region, "Zone 1 Right", gmm, target_gmm) + + # Region 5 case (outside the bounds - should return None) + region, gmm = regionalization1(Earthquake("XYZ", 1.5, 0.5, 10.0, 6.0)) + self.assertIsNone(region) + self.assertIsNone(gmm) + + +class RegionalizationSetTestCase(unittest.TestCase): + """ + Test case for multiple regions + + (-2.0, 2.0) --------------------- (0.0, 2.0) ------------------------ (2.0, 2.0) + | | | + | | | + | | | + | Z2L | Z2R | + | | | + | | | + | | | + (-2.0, 1.0) ----------- (0.0, 1.0) ------------ (2.0, 1.0) + | | | | | + | | Z1L | Z1R | | + | | | | | + (-2.0, 0.5) | | ______ | | + | | | | | | | + | | | | Z1D| | | + | | | ------ | | + | | | | | + (-2.0, 0.0)---------------------- (0.0, 0.0) ------------------------ (2.0, 0.0) + + A complete regionalization set comprises multiple regionalizations, some of + which may overlap geographically. In the case of geographical overlap the priority + order is determined from ther order of regionalisations in the list. The test set + considers two regionalisations that overlap spatially: + + Geographic regionalization 1 contains three regions: Z1L, Z1R and Z1D. Two of the zones + (Z1L and Z1R) have depth limits of 0 to 40 km. Z1D overlaps spatially with Z1R but has + a different depth range, meaning that an earthquake in this polygon will be assigned to + Z1R if it is shallow, and Z1D if it is deep. + + Geographic regionalisation 2 covers a larger area and contains two shallow zones (Z2L and + Z2R), but overlaps with Z1L and Z1R. + + If an earthquake occurs outside of either regionalizations then a default region type + and ground motion model is assigned depending on whether the event depth is shallow + (<= 40 km) or deep (> 40 km) + """ + + def setUp(self): + self.names = ["ABC", "DEF"] + self.regionalization_files = [ + os.path.join(DATA_PATH, "dummy_regionalization1.json"), + os.path.join(DATA_PATH, "dummy_regionalization2.json"), + ] + self.mapping_files = [ + os.path.join(DATA_PATH, "gsim_mapping_test1.json"), + os.path.join(DATA_PATH, "gsim_mapping_test2.json"), + ] + + def test_load_from_json(self): + regionalization_set1 = RegionalizationSet.from_json( + self.names, self.regionalization_files, self.mapping_files + ) + self.assertEqual(len(regionalization_set1), 2) + target_strings = [ + "ABC (3 Polygons - BBOX [-1.0000, 0.0000, 1.0000, 1.0000])", + "DEF (2 Polygons - BBOX [-2.0000, 0.0000, 2.0000, 2.0000])", + ] + string_set = [ + str(regionalization_set1.regionalizations[0]), + str(regionalization_set1.regionalizations[1]), + ] + self.assertListEqual(string_set, target_strings) + + def test_incorrect_fileset(self): + # Tests that correst the IOErrors are raised when missing or incorrect files are parsed + + # Bad or missing regionalization file + bad_fileset = [ + os.path.join(DATA_PATH, "dummy_regionalization1.json"), + os.path.join(DATA_PATH, "dummy_regionalization_bad.json"), + ] + + with self.assertRaises(IOError) as ioe: + RegionalizationSet.from_json(self.names, bad_fileset, self.mapping_files) + self.assertEqual( + str(ioe.exception), "Regionalization file %s not found" % bad_fileset[1] + ) + # Bad or missing GSIM mapping file + bad_fileset = [ + os.path.join(DATA_PATH, "gsim_mapping_test_bad.json"), + os.path.join(DATA_PATH, "gsim_mapping_test2.json"), + ] + + with self.assertRaises(IOError) as ioe: + RegionalizationSet.from_json(self.names, self.regionalization_files, bad_fileset) + self.assertEqual(str(ioe.exception), "GSIM mapping file %s not found" % bad_fileset[0]) + + def _check_region(self, region1, region2, gmm1, gmm2): + """ + Verifies that two region outputs are the same in terms of both the region names + (region1, region2) and the ground motion models (gmm1, gmm2) + """ + self.assertEqual(region1, region2) + ids1, gmms1, weights1 = zip(*gmm1) + ids2, gmms2, weights2 = zip(*gmm2) + # Verify the IDs are the same + self.assertTupleEqual(ids1, ids2) + # Verify the weights are the same + np.testing.assert_array_almost_equal(np.array(weights1), np.array(weights2)) + self.assertEqual(len(gmms1), len(gmms2)) + for model1, model2 in zip(gmms1, gmms2): + self.assertEqual(str(model1), str(model2)) + self.assertListEqual(list(model1.kwargs), list(model2.kwargs)) + + def test_event_location_cases(self): + regionalization_set1 = RegionalizationSet.from_json( + self.names, self.regionalization_files, self.mapping_files + ) + # Test Case 1 - Verifies that the regionalisation Z1L and Z1R are returned for + # shallow event falling within their respective polygons + + # Z1L + region, gmm = regionalization_set1(Earthquake("XYZ", -0.5, 0.5, 20.0, 6.0)) + target_gmm = [ + ("Bo14", GSIM_LIST["BooreEtAl2014"](), 0.75), + ("Bi14HighStress", GSIM_LIST["BindiEtAl2014Rjb"](adjustment_factor=1.25), 0.25), + ] + self._check_region(region, "Zone 1 Left", gmm, target_gmm) + # Z1R + region, gmm = regionalization_set1(Earthquake("XYZ", 0.5, 0.5, 20.0, 6.0)) + target_gmm = [ + ("C03", GSIM_LIST["Campbell2003"](), 0.4), + ("ESHM20CratonHighStress", GSIM_LIST["ESHM20Craton"](epsilon=1.0), 0.6), + ] + self._check_region(region, "Zone 1 Right", gmm, target_gmm) + # Z1D + region, gmm = regionalization_set1(Earthquake("XYZ", 0.3, 0.3, 60.0, 6.0)) + target_gmm = [ + ("BCHydroSlabErgodic", GSIM_LIST["AbrahamsonEtAl2015SSlab"](ergodic=False), 0.5), + ("Zhao2016Slab", GSIM_LIST["ZhaoEtAl2016SSlab"](), 0.5), + ] + self._check_region(region, "Zone 1 Deep", gmm, target_gmm) + + # Test Cases 2 - Verify that the regionalistions for Z2L and Z2R are returned for + # a shallow event falling within their respective polygons + + # Z2L + region, gmm = regionalization_set1(Earthquake("XYZ", -1.5, 0.5, 20.0, 6.0)) + target_gmm = [ + ("C15", GSIM_LIST["CauzziEtAl2014"](), 0.75), + ("B14LowStress", GSIM_LIST["BindiEtAl2014Rjb"](adjustment_factor=0.8), 0.25), + ] + self._check_region(region, "Zone 2 Left", gmm, target_gmm) + + # Z2R + region, gmm = regionalization_set1(Earthquake("XYZ", 1.5, 0.5, 20.0, 6.0)) + target_gmm = [ + ("P11", GSIM_LIST["PezeshkEtAl2011"](), 0.6), + ("ESHM20CratonLowStress", GSIM_LIST["ESHM20Craton"](epsilon=-1.0), 0.4), + ] + self._check_region(region, "Zone 2 Right", gmm, target_gmm) + + # Test Cases 3 - Verify that when the even falls outside of all the zone that the + # default regionalisation is returned + + # Shallow case + region, gmm = regionalization_set1(Earthquake("XYZ", 2.5, 0.5, 20.0, 6.0)) + # Default shallow regionalisation + target_gmm = [ + ("ASK14", GSIM_LIST["AbrahamsonEtAl2014"](), 0.25), + ("BSSA14", GSIM_LIST["BooreEtAl2014"](), 0.25), + ("CB14", GSIM_LIST["CampbellBozorgnia2014"](), 0.25), + ("CY14", GSIM_LIST["ChiouYoungs2014"](), 0.25), + ] + + self._check_region(region, "default shallow", gmm, target_gmm) + + # Deep case + region, gmm = regionalization_set1(Earthquake("XYZ", 2.5, 0.5, 60.0, 6.0)) + target_gmm = [ + ("BCHydroSlabLow", GSIM_LIST["AbrahamsonEtAl2015SSlabLow"](), 0.2), + ("BCHydroSlab", GSIM_LIST["AbrahamsonEtAl2015SSlab"](), 0.6), + ("BCHydroSlabHigh", GSIM_LIST["AbrahamsonEtAl2015SSlabHigh"](), 0.2), + ] + # Test Case 4 - Verify that if the event is within the polygons but outside of the + # depth range then the 'default deep' region is returned + region, gmm = regionalization_set1(Earthquake("XYZ", 0.5, 0.5, 60.0, 6.0)) + self._check_region(region, "default deep", gmm, target_gmm) diff --git a/tests/shakemap_test.py b/tests/shakemap_test.py index fdba4b7..cc5bc09 100644 --- a/tests/shakemap_test.py +++ b/tests/shakemap_test.py @@ -38,14 +38,11 @@ class ShakemapTestCase(unittest.TestCase): self.site_model = SiteModel.from_bbox( [28.0, 38.0, 32.0, 42.0], spcx=0.5, spcy=0.5, vs30=600.0, vs30measured=True ) - self.ground_motion_model = { - "GMMs": [ - GSIM_LIST["BindiEtAl2014Rjb"](), - GSIM_LIST["CauzziEtAl2014"](), - GSIM_LIST["ChiouYoungs2014"](), - ], - "weights": [0.3, 0.4, 0.3], - } + self.ground_motion_model = [ + ("Bi14Rjb", GSIM_LIST["BindiEtAl2014Rjb"](), 0.3), + ("C15", GSIM_LIST["CauzziEtAl2014"](), 0.4), + ("CY14", GSIM_LIST["ChiouYoungs2014"](), 0.3), + ] def test_shakemap_creation_with_caching(self): # Complete run through workflow with caching, verifying that the information stored in @@ -96,14 +93,12 @@ class ShakemapTestCase(unittest.TestCase): self.assertTupleEqual(agg_means.shape, self.site_model.site_array.shape) self.assertTupleEqual(agg_stddev.shape, self.site_model.site_array.shape) self.assertTupleEqual(agg_means.dtype.names, ("PGA", "SA(0.3)", "SA(1.0)")) - self.assertListEqual( - list(shakemaps), ["BindiEtAl2014Rjb", "CauzziEtAl2014", "ChiouYoungs2014"] - ) + self.assertListEqual(list(shakemaps), ["Bi14Rjb", "C15", "CY14"]) # Verify correct aggregation expected_aggregation_pga = ( - shakemaps["BindiEtAl2014Rjb"]["mean"]["PGA"] * 0.3 - + shakemaps["CauzziEtAl2014"]["mean"]["PGA"] * 0.4 - + shakemaps["ChiouYoungs2014"]["mean"]["PGA"] * 0.3 + shakemaps["Bi14Rjb"]["mean"]["PGA"] * 0.3 + + shakemaps["C15"]["mean"]["PGA"] * 0.4 + + shakemaps["CY14"]["mean"]["PGA"] * 0.3 ) np.testing.assert_array_almost_equal(agg_means["PGA"], expected_aggregation_pga) diff --git a/tests/valid_test.py b/tests/valid_test.py index 0de1767..f4cde89 100644 --- a/tests/valid_test.py +++ b/tests/valid_test.py @@ -3,9 +3,16 @@ Tests for validation methods """ import unittest +import numpy +from geopandas import GeoDataFrame, GeoSeries +from openquake.hazardlib.geo.nodalplane import NP +from shapely.geometry import Polygon +from openquake.hazardlib.gsim.bindi_2014 import BindiEtAl2014Rjb +from openquake.hazardlib.gsim.boore_2014 import BooreEtAl2014 +from openquake.hazardlib.gsim.cauzzi_2014 import CauzziEtAl2014 +from openquake.hazardlib.gsim.chiou_youngs_2014 import ChiouYoungs2014 from shakyground2 import valid from shakyground2.magnitude_scaling_relations import PEERScalingRelation, Stafford2014 -from openquake.hazardlib.geo.nodalplane import NP class AtomicValidationsTestCase(unittest.TestCase): @@ -127,13 +134,15 @@ class EarthquakeDomainTestCase(unittest.TestCase): with self.assertRaises(ValueError) as ve_as: valid.hypocenter_position([-0.1, 0.5]) self.assertEqual( - "Along strike position -0.100 should be in the range 0 to 1", str(ve_as.exception) + "Along strike position -0.100 should be in the range 0 to 1", + str(ve_as.exception), ) # Invalid down-dip position with self.assertRaises(ValueError) as ve_dd: valid.hypocenter_position([0.5, 1.2]) self.assertEqual( - "Down dip position 1.200 should be in the range 0 to 1", str(ve_dd.exception) + "Down dip position 1.200 should be in the range 0 to 1", + str(ve_dd.exception), ) def test_valid_scaling_relation(self): @@ -151,3 +160,220 @@ class EarthquakeDomainTestCase(unittest.TestCase): "Magnitude Scaling Relation XYZ not instance of BaseScalingRelation", str(te.exception), ) + + +class RegionalizationValidationTestCase(unittest.TestCase): + """ + Tests the validations of the regionalization inputs for different configurations + """ + + def setUp(self): + self.geometry = GeoSeries( + [ + Polygon([(0.0, 0.0), (0.0, 1.0), (1.0, 1.0), (1.0, 0.0), (0.0, 0.0)]), + Polygon([(1.0, 0.0), (1.0, 1.0), (2.0, 1.0), (2.0, 1.0), (1.0, 0.0)]), + ] + ) + self.upper_depths = [0.0, 5.0] + self.lower_depths = [20.0, 25.0] + self.regions = ["Region 1", "Region 2"] + self.ids = ["R1", "R2"] + + def test_valid_regionalization_mapping(self): + input_mapping = { + "Region 1": [ + {"id": "C15", "model": "CauzziEtAl2014", "weight": 0.7}, + { + "id": "B14Rjb", + "model": "BindiEtAl2014Rjb", + "adjustment_factor": 1.25, + "weight": 0.3, + }, + ] + } + ids, gmms, weights = zip(*valid.regionalization_mapping(input_mapping)["Region 1"]) + # Verify that the IDs are the same + self.assertTupleEqual(ids, ("C15", "B14Rjb")) + # Verify the correct weights + numpy.testing.assert_array_almost_equal(numpy.array(weights), numpy.array([0.7, 0.3])) + # Verify the correct GMPEs and adjustment factors have been added passed + self.assertIsInstance(gmms[0], CauzziEtAl2014) + self.assertIsInstance(gmms[1], BindiEtAl2014Rjb) + self.assertAlmostEqual(gmms[1].adjustment_factor, numpy.log(1.25)) + + def test_invalid_regionalization_mapping_weights(self): + # Tests that the correct AssertionError is raised when weights don't sum to 1 + input_mapping = { + "Region 1": [ + {"id": "C15", "model": "CauzziEtAl2014", "weight": 0.7}, + { + "id": "B14Rjb", + "model": "BindiEtAl2014Rjb", + "adjustment_factor": 1.25, + "weight": 0.2, + }, + ] + } + with self.assertRaises(AssertionError) as ae: + valid.regionalization_mapping(input_mapping) + self.assertEqual( + str(ae.exception), + "Ground motion model weights for region Region 1 do not sum to 1 " + "(sum = 0.900000)", + ) + + def test_valid_regionalization(self): + input_regions = GeoDataFrame( + { + "id": self.ids, + "REGION": self.regions, + "UPPER DEPTH": self.upper_depths, + "LOWER DEPTH": self.lower_depths, + "geometry": self.geometry, + } + ) + input_regions.crs = {"init": "epsg:4326"} + input_mapping = { + "Region 1": [ + {"id": "C15", "model": "CauzziEtAl2014", "weight": 0.7}, + { + "id": "B14Rjb", + "model": "BindiEtAl2014Rjb", + "adjustment_factor": 1.25, + "weight": 0.3, + }, + ], + "Region 2": [ + {"id": "Bo14", "model": "BooreEtAl2014", "weight": 0.4}, + {"id": "CY14", "model": "ChiouYoungs2014", "weight": 0.6}, + ], + } + regionalization, mapping = valid.regionalization(input_regions, input_mapping) + # Verify input regions + self.assertEqual(regionalization.shape[0], 2) + self.assertEqual(regionalization["REGION"].tolist(), self.regions) + self.assertEqual(str(regionalization.crs), "+init=epsg:4326 +type=crs") + # Verify Region 1 + ids1, gmms1, weights1 = zip(*mapping["Region 1"]) + self.assertTupleEqual(ids1, ("C15", "B14Rjb")) + self.assertIsInstance(gmms1[0], CauzziEtAl2014) + self.assertIsInstance(gmms1[1], BindiEtAl2014Rjb) + self.assertAlmostEqual(gmms1[1].adjustment_factor, numpy.log(1.25)) + numpy.testing.assert_array_almost_equal(numpy.array(weights1), numpy.array([0.7, 0.3])) + # Verify Region 2 + ids2, gmms2, weights2 = zip(*mapping["Region 2"]) + self.assertTupleEqual(ids1, ("C15", "B14Rjb")) + self.assertIsInstance(gmms2[0], BooreEtAl2014) + self.assertIsInstance(gmms2[1], ChiouYoungs2014) + numpy.testing.assert_array_almost_equal(numpy.array(weights2), numpy.array([0.4, 0.6])) + + def test_coordinate_transformation(self): + # Build dataframe omitting to specify a CRS - should be automatically assigned to + # EPSG:4326 + input_regions = GeoDataFrame( + { + "id": self.ids, + "REGION": self.regions, + "UPPER DEPTH": self.upper_depths, + "LOWER DEPTH": self.lower_depths, + "geometry": self.geometry, + } + ) + + input_mapping = { + "Region 1": [ + {"id": "C15", "model": "CauzziEtAl2014", "weight": 0.7}, + { + "id": "B14Rjb", + "model": "BindiEtAl2014Rjb", + "adjustment_factor": 1.25, + "weight": 0.3, + }, + ], + "Region 2": [ + {"id": "Bo14", "model": "BooreEtAl2014", "weight": 0.4}, + {"id": "CY14", "model": "ChiouYoungs2014", "weight": 0.6}, + ], + } + regionalization, mapping = valid.regionalization(input_regions, input_mapping) + self.assertEqual(str(regionalization.crs), "+init=epsg:4326 +type=crs") + + # Build dataframe assigning a different CRS + input_regions = GeoDataFrame( + { + "id": self.ids, + "REGION": self.regions, + "UPPER DEPTH": self.upper_depths, + "LOWER DEPTH": self.lower_depths, + "geometry": self.geometry, + } + ) + input_regions.crs = {"init": "epsg:9019"} # Using IGS14 + + regionalization, mapping = valid.regionalization(input_regions, input_mapping) + self.assertEqual(str(regionalization.crs), "+init=epsg:4326 +type=crs") + + def test_regionalization_missing_attribute(self): + # Test that regionalization with a missing column raises the correct error + + # Omit the "LOWER DEPTH" column + input_regions = GeoDataFrame( + { + "id": self.ids, + "REGION": self.regions, + "UPPER DEPTH": self.upper_depths, + "geometry": self.geometry, + } + ) + input_regions.crs = {"init": "epsg:4326"} + input_mapping = { + "Region 1": [ + {"id": "C15", "model": "CauzziEtAl2014", "weight": 0.7}, + { + "id": "B14Rjb", + "model": "BindiEtAl2014Rjb", + "adjustment_factor": 1.25, + "weight": 0.3, + }, + ], + "Region 2": [ + {"id": "Bo14", "model": "BooreEtAl2014", "weight": 0.4}, + {"id": "CY14", "model": "ChiouYoungs2014", "weight": 0.6}, + ], + } + with self.assertRaises(IOError) as ioe: + valid.regionalization(input_regions, input_mapping) + self.assertEqual( + str(ioe.exception), "Regionalization has missing attribute LOWER DEPTH" + ) + + def test_regionalization_missing_region_mapping(self): + # If a region is input that does not have a corresponding mapping then should raise + # an IOError + input_regions = GeoDataFrame( + { + "id": self.ids, + "REGION": self.regions, + "UPPER DEPTH": self.upper_depths, + "LOWER DEPTH": self.lower_depths, + "geometry": self.geometry, + } + ) + input_regions.crs = {"init": "epsg:4326"} + input_mapping = { + "Region 1": [ + {"id": "C15", "model": "CauzziEtAl2014", "weight": 0.7}, + { + "id": "B14Rjb", + "model": "BindiEtAl2014Rjb", + "adjustment_factor": 1.25, + "weight": 0.3, + }, + ], + } + with self.assertRaises(IOError) as ioe: + valid.regionalization(input_regions, input_mapping) + self.assertEqual( + str(ioe.exception), + "Region Region 2 has no corresponding ground motion model in mapping", + ) -- GitLab From 37a4d8cc555726853695e500a1fcee89f3185b1e Mon Sep 17 00:00:00 2001 From: Peter Evans Date: Sat, 10 Apr 2021 00:42:24 +0200 Subject: [PATCH 6/9] Use type hints - Also, silence mypy. --- shakyground2/import_fdsnws_eq.py | 85 +++++++++++++++++++++++--------- 1 file changed, 63 insertions(+), 22 deletions(-) diff --git a/shakyground2/import_fdsnws_eq.py b/shakyground2/import_fdsnws_eq.py index ec88ae5..b131ba8 100644 --- a/shakyground2/import_fdsnws_eq.py +++ b/shakyground2/import_fdsnws_eq.py @@ -20,24 +20,33 @@ Can run standalone: import datetime import os import sys +from typing import List, Optional, Union import urllib.request as ul from xml.etree import ElementTree as ET import yaml -FDSNWS_ENDPOINT = "http://geofon.gfz-potsdam.de/fdsnws/event/1/" -QUAKEML_NS = {"ns": "http://quakeml.org/xmlns/bed/1.2"} +FDSNWS_ENDPOINT: str = "http://geofon.gfz-potsdam.de/fdsnws/event/1/" +QUAKEML_NS: dict = {"ns": "http://quakeml.org/xmlns/bed/1.2"} -def fetch_fm(root, ns, preferredfmID): +def _perror(msg: str) -> None: + print(msg, file=sys.stderr) + + +def fetch_fm(root: ET.Element, ns: dict, preferredfmID: str) -> list: """ Extract interesting properties from the focal mechanism with the given publicID. root: ElementTree root element. - ns (string): string, its namespace. + ns (dict): its namespace. preferredfmID (string): the focal mechanism to hunt for. + Returns a list of one dictionary filled from each of the + and components of the + element. + """ for fm in root[0][0].findall("ns:focalMechanism", ns): if fm.attrib["publicID"] != preferredfmID: @@ -47,23 +56,33 @@ def fetch_fm(root, ns, preferredfmID): np = fm.find("ns:nodalPlanes", ns) # Expect there's only one ! + if not np: + _perror("Oops: no object seen") + break - d = [None, None] + d: List[dict] = [] for k in range(2): plane = np.find("ns:nodalPlane" + str(k + 1), ns) d[k] = dict() + if not plane: + continue for child in plane: - v = child.find("ns:value", ns).text + found = child.find("ns:value", ns) + if not found: + continue + v = found.text tag = child.tag tag = tag[tag.index("}") + 1 :] try: - d[k][tag] = float(v) + d[k][tag] = float(str(v)) except ValueError: pass return d -def fetch_magnitude(root, ns, preferredmagnitudeID): +def fetch_magnitude( + root: ET.Element, ns: dict, preferredmagnitudeID: str +) -> Union[float, None]: for m in root[0][0].findall("ns:magnitude", ns): if m.attrib["publicID"] != preferredmagnitudeID: continue @@ -71,20 +90,23 @@ def fetch_magnitude(root, ns, preferredmagnitudeID): child = m.find("ns:mag", ns) if not child: return None - v = child.find("ns:value", ns).text + value = child.find("ns:value", ns) + if not value: + return None + v = value.text try: - mag = float(v) + mag = float(str(v)) except ValueError: - mag = None + return None return mag -def fetch_origin(root, ns, preferredoriginID): +def fetch_origin(root, ns: dict, preferredoriginID: str) -> dict: """ Extract interesting properties from the origin with given publicID. root: ElementTree root element. - ns (string): the XML object's namespace. + ns (dict): the XML object's namespace. preferredoriginID (string): the origin to hunt for. """ for o in root[0][0].findall("ns:origin", ns): @@ -111,7 +133,7 @@ def fetch_origin(root, ns, preferredoriginID): return d -def fetch_quakeml_ws(evid): +def fetch_quakeml_ws(evid: str) -> str: """ Query fdsnws-event web service, and return string to fetch_quakeml() for parsing. @@ -142,7 +164,7 @@ def fetch_quakeml_ws(evid): return buf -def fetch_quakeml(path): +def fetch_quakeml(path: str) -> Union[dict, None]: """ Prepare a dictionary holding the interesting things found by reading the QuakeML file served for a given event. @@ -176,15 +198,32 @@ def fetch_quakeml(path): # e.g. "smi:org.gfz-potsdam.de/geofon/gfz2021ekhv" evid = event.attrib["publicID"].split("/")[-1] except AttributeError: - print("Oops") + _perror("Oops, couldn't get event id from " + event.attrib["publicID"]) - preferredoriginID = root[0][0].find("ns:preferredOriginID", ns).text - preferredmagID = root[0][0].find("ns:preferredMagnitudeID", ns).text + preferredoriginIDElem = root[0][0].find("ns:preferredOriginID", ns) + if not preferredoriginIDElem: + return None + preferredoriginID = preferredoriginIDElem.text + + preferredmagID = None + preferredMagnitudeIDElem = root[0][0].find("ns:preferredMagnitudeID", ns) + if preferredMagnitudeIDElem: + try: + preferredmagID = preferredMagnitudeIDElem.text + except AttributeError: + pass + + preferredfmID = None try: - preferredfmID = root[0][0].find("ns:preferredFocalMechanismID", ns).text + preferredfmIDElem = root[0][0].find("ns:preferredFocalMechanismID", ns) + if preferredfmIDElem: + preferredfmID = preferredfmIDElem.text except AttributeError: - preferredfmID = None + pass + if not preferredoriginID: + print("Oops, no preferredOriginID was found") + return None origin = fetch_origin(root, ns, preferredoriginID) (d, t) = origin.pop("time").split("T", 2) @@ -195,14 +234,16 @@ def fetch_quakeml(path): # d = datetime.date(2020, 1, 1) # t = datetime.time(12, 0, 30, 123000) + focalmech = None if preferredfmID: focalmech = fetch_fm(root, ns, preferredfmID) - else: - focalmech = None # Should this be event's preferred magnitude, # or the preferred focal mechanism's ? # Probably they are the same thing... + if not preferredmagID: + print("Oops, no preferredMagnitudeID was found") + return None mag = fetch_magnitude(root, ns, preferredmagID) return { -- GitLab From 8f1f4fa4b0fbfc5c78715dd7ffca6d7771539d72 Mon Sep 17 00:00:00 2001 From: Peter Evans Date: Sat, 10 Apr 2021 00:43:52 +0200 Subject: [PATCH 7/9] Include pyyaml in setup.py --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 2255505..4f46c99 100644 --- a/setup.py +++ b/setup.py @@ -13,6 +13,7 @@ setup( install_requires=[ "openquake.engine", "geopandas", + "pyyaml", "Rtree", ], packages=find_packages(), -- GitLab From 5c5db22a6beb88873de34a38e79b113c2872da7f Mon Sep 17 00:00:00 2001 From: Peter Evans Date: Thu, 22 Apr 2021 21:43:35 +0200 Subject: [PATCH 8/9] Test ElementTree responses with '== None' instead of 'not' - Seems like behaviour of ET changed around Python 3.6-3.9. - Add test that dictionary has meaningful content. --- shakyground2/import_fdsnws_eq.py | 26 +++++++++++++++++--------- tests/test_quakexml.py | 18 ++++++++++++++++++ 2 files changed, 35 insertions(+), 9 deletions(-) diff --git a/shakyground2/import_fdsnws_eq.py b/shakyground2/import_fdsnws_eq.py index b131ba8..3bb17b3 100644 --- a/shakyground2/import_fdsnws_eq.py +++ b/shakyground2/import_fdsnws_eq.py @@ -60,15 +60,14 @@ def fetch_fm(root: ET.Element, ns: dict, preferredfmID: str) -> list: _perror("Oops: no object seen") break - d: List[dict] = [] + d: List[dict] = [dict(), dict()] for k in range(2): plane = np.find("ns:nodalPlane" + str(k + 1), ns) - d[k] = dict() - if not plane: + if plane == None: continue for child in plane: found = child.find("ns:value", ns) - if not found: + if found == None: continue v = found.text tag = child.tag @@ -88,10 +87,10 @@ def fetch_magnitude( continue child = m.find("ns:mag", ns) - if not child: + if child == None: return None value = child.find("ns:value", ns) - if not value: + if value == None: return None v = value.text try: @@ -197,17 +196,24 @@ def fetch_quakeml(path: str) -> Union[dict, None]: try: # e.g. "smi:org.gfz-potsdam.de/geofon/gfz2021ekhv" evid = event.attrib["publicID"].split("/")[-1] + # print("INFO Event ID from response:", evid) except AttributeError: _perror("Oops, couldn't get event id from " + event.attrib["publicID"]) + # descr = root[0][0].find("ns:description", ns) + # text = descr.find("ns:text", ns) + # print("INFO Found description:", text.text) + preferredoriginIDElem = root[0][0].find("ns:preferredOriginID", ns) - if not preferredoriginIDElem: + if preferredoriginIDElem == None: + _perror("Oops, couldn't find the preferred origin ID") return None preferredoriginID = preferredoriginIDElem.text + # print("DEBUG Found", preferredoriginID) preferredmagID = None preferredMagnitudeIDElem = root[0][0].find("ns:preferredMagnitudeID", ns) - if preferredMagnitudeIDElem: + if preferredMagnitudeIDElem != None: try: preferredmagID = preferredMagnitudeIDElem.text except AttributeError: @@ -216,7 +222,7 @@ def fetch_quakeml(path: str) -> Union[dict, None]: preferredfmID = None try: preferredfmIDElem = root[0][0].find("ns:preferredFocalMechanismID", ns) - if preferredfmIDElem: + if preferredfmIDElem != None: preferredfmID = preferredfmIDElem.text except AttributeError: pass @@ -277,6 +283,8 @@ http://geofon.gfz-potsdam.de/eqinfo/list.php sys.exit(1) ev_info = fetch_quakeml(evid) + if ev_info == None: + print("Got no dictionary from QuakeML") outfile = evid + ".yaml" with open(outfile, "w") as fid: fid.write(yaml.safe_dump(ev_info, default_flow_style=False)) diff --git a/tests/test_quakexml.py b/tests/test_quakexml.py index 2fe669a..bda56a6 100644 --- a/tests/test_quakexml.py +++ b/tests/test_quakexml.py @@ -41,6 +41,8 @@ class QuakeMLReadTestCase(unittest.TestCase): evid = "gfz2021ekhv" result = fetch_quakeml(evid) self.assertTrue(isinstance(result, dict)) + self.assertGreater(len(result), 3) + self.assertEqual(result["id"], evid) def test_read_no_eventid(self): """ @@ -51,6 +53,22 @@ class QuakeMLReadTestCase(unittest.TestCase): with self.assertRaises(IOError): result = fetch_quakeml(infile) + def test_read_good_eventid2(self): + """ + Might fail if the GEOFON fdsnws-event webservice is unavailable. + Does the dictionary have the values expected for this event? + """ + evid = "gfz2021htpl" + result = fetch_quakeml(evid) + self.assertTrue(isinstance(result, dict)) + self.assertGreater(len(result), 3) + self.assertEqual(result["date"], "2021-04-21") + self.assertEqual(len(result["focalmechanism"]), 2) + self.assertEqual(result["id"], "gfz2021htpl") + self.assertLess(abs(float(result["magnitude"]) - 4.465), 0.01) + self.assertEqual(len(result["origin"]), 3) + self.assertTrue(result["time"].startswith("08:08:23")) + def tearDown(self): try: os.unlink(self.outfile) -- GitLab From cfc499e3d89c3f3dbbbeebd27c9e1b5f637db4cd Mon Sep 17 00:00:00 2001 From: g-weatherill Date: Wed, 28 Apr 2021 12:06:49 +0200 Subject: [PATCH 9/9] Edits tag index to find compatible solution for both flake8 and black --- shakyground2/import_fdsnws_eq.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/shakyground2/import_fdsnws_eq.py b/shakyground2/import_fdsnws_eq.py index 30a419e..e7e9b8d 100644 --- a/shakyground2/import_fdsnws_eq.py +++ b/shakyground2/import_fdsnws_eq.py @@ -70,7 +70,8 @@ def fetch_fm(root: ET.Element, ns: dict, preferredfmID: str) -> list: continue v = found.text tag = child.tag - tag = tag[tag.index("}") + 1 :] + tag_idx = tag.index("}") + 1 + tag = tag[tag_idx:] try: d[k][tag] = float(str(v)) except ValueError: @@ -114,7 +115,8 @@ def fetch_origin(root, ns: dict, preferredoriginID: str) -> dict: d = dict() for child in o: tag = child.tag - tag = tag[tag.index("}") + 1 :] + tag_idx = tag.index("}") + 1 + tag = tag[tag_idx:] if tag in ("depth", "latitude", "longitude", "time"): v = child.find("ns:value", ns).text -- GitLab