from IPython.core.display import HTML
from owslib.wfs import WebFeatureService
from owslib.util import Authentication
import requests
import xml.etree.ElementTree as ET
import xml.dom.minidom as xmlmd
import xmltodict
import warnings
warnings.filterwarnings('ignore')
service_url = 'https://data.geoscience.earth/api/wxsBorehole?'
wfs = WebFeatureService(service_url, version='2.0.0', auth=Authentication(verify=False))
list(wfs.contents)
['epos-gsmlp:BoreholeView', 'epos-gsmlp:BoreholeView_Cluster', 'epos-gsmlp:BoreholeView_PointStacker']
Check for available format types
Check for available properties
Define format and set filters
# select format
format_option = 'text/html'
#filters
BBOX = 'BBOX(location_wgs84,53.37,-1.50,53.42,-1.42)'
depth = 'boreholelength_m>\'2000\''
purpose = 'purpose=\'multidisciplinary scientific research\''
# CQL filters
filter = depth + ' AND ' + purpose
#filter = BBOX + ' AND ' + depth
# Configuration of the query
payload = {
'service' : 'WFS',
'request' : API_method,
'srsName' : 'EPSG:4326',
'version' : '2.0.0',
'typenames' : [target_layer],
'CQL_FILTER' : filter
}
response = requests.get(service_url, params=payload, verify=False)
print(response.url)
https://data.geoscience.earth/api/wxsBorehole?service=WFS&request=GetFeature&srsName=EPSG%3A4326&version=2.0.0&typenames=epos-gsmlp%3ABoreholeView_PointStacker&CQL_FILTER=boreholelength_m%3E%272000%27+AND+purpose%3D%27multidisciplinary+scientific+research%27
Show the returned data
print(xmlmd.parseString(response.text).toprettyxml())
<?xml version="1.0" ?> <wfs:FeatureCollection xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:epos-gsmlp="https://data.geoscience.earth/def/epos-geosciml-lite" xmlns:wfs="http://www.opengis.net/wfs/2.0" xmlns:gml="http://www.opengis.net/gml/3.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" numberMatched="3" numberReturned="3" timeStamp="2023-09-12T09:58:33.076Z" xsi:schemaLocation="http://www.opengis.net/wfs/2.0 http://schemas.opengis.net/wfs/2.0/wfs.xsd https://data.geoscience.earth/def/epos-geosciml-lite https://epos.brgm-rec.fr/geoserver/epos-gsmlp/wfs?service=WFS&version=2.0.0&request=DescribeFeatureType&typeName=epos-gsmlp%3ABoreholeView_PointStacker http://www.opengis.net/gml/3.2 http://schemas.opengis.net/gml/3.2.1/gml.xsd"> <wfs:member> <epos-gsmlp:BoreholeView_PointStacker gml:id="BoreholeView_PointStacker.SD-5054_1_A"> <gml:description>The Collisional Orogeny in the Scandinavian Caledonides (COSC) scientific drilling project focuses on mountain building processes in a major mid-Paleozoic orogen in western Scandinavia and its comparison with modern analogues. The transport and emplacement of subduction-related highgrade continent-ocean transition (COT) complexes onto the Baltoscandian platform and their influence on the underlying allochthons and basement will be studied in a section provided by two fully cored 2.5 km deep drill holes. This operational report concerns the first drill hole, COSC-1 (ICDP 5054-1-A), drilled from early May to late August 2014. COSC-1 is located in the vicinity of the abandoned Fröå mine, close to the town of Åre in Jämtland, Sweden and was planned to sample a thick section of the Seve Nappe and to penetrate its basal thrust zone into the underlying lower grade metamorphosed allochthon. Despite substantial technical problems, the drill hole reached 2495.8 m driller's depth and nearly 100 % core recovery was achieved. Surprising was the homogeneity of the Seve Nappe rocks, the unexpected thickness of its basal thrust zone (> 500 m) and that the drill hole, therefore, did not penetrate the bottom of the thrust zone. However, lower grade metasedimentary rocks were encountered in the lowermost part of the drill hole together with tens of metres thick mylonites that are, unexpectedly, rich in large garnets. The drill core was documented on-site and XRF scanned off site. During various stages of the drilling, the borehole was documented by comprehensive downhole logging. This operational report provides an overview over the COSC-1 operations from drilling preparations to the sampling party and describes the available datasets and sample material.</gml:description> <gml:name>COSC-1 A</gml:name> <epos-gsmlp:gmlidentifier>https://www.geodata.rocks/BoreholeView/SD-5054_1_A</epos-gsmlp:gmlidentifier> <epos-gsmlp:gsmlpidentifier>https://www.geodata.rocks/Boreholes/SD-5054_1_A</epos-gsmlp:gsmlpidentifier> <epos-gsmlp:purpose_href>https://data.geoscience.earth/ncl/BoreholePurpose/_multiDisciplinaryScientificResearch</epos-gsmlp:purpose_href> <epos-gsmlp:purpose>multidisciplinary scientific research</epos-gsmlp:purpose> <epos-gsmlp:boreholeuse>multidisciplinary scientific research</epos-gsmlp:boreholeuse> <epos-gsmlp:boreholeuse_href>https://data.geoscience.earth/ncl/BoreholePurpose/_multiDisciplinaryScientificResearch</epos-gsmlp:boreholeuse_href> <epos-gsmlp:status_href>https://data.geoscience.earth/ncl/BoreholeStatus/drillingCompleted</epos-gsmlp:status_href> <epos-gsmlp:status>drilling completed</epos-gsmlp:status> <epos-gsmlp:drillingmethod_href>https://data.geoscience.earth/ncl/DrillingMethod/diamondCore</epos-gsmlp:drillingmethod_href> <epos-gsmlp:drillingmethod>diamond core</epos-gsmlp:drillingmethod> <epos-gsmlp:operator>Uppsala University, Sweden</epos-gsmlp:operator> <epos-gsmlp:driller>Lund University, Sweden / Protek Norr AB</epos-gsmlp:driller> <epos-gsmlp:drillstartdate>2013-09-04Z</epos-gsmlp:drillstartdate> <epos-gsmlp:drillenddate>2014-08-25Z</epos-gsmlp:drillenddate> <epos-gsmlp:startpoint_href>https://data.geoscience.earth/ncl/StartPoint/naturalLandSurface</epos-gsmlp:startpoint_href> <epos-gsmlp:startpoint>natural land surface</epos-gsmlp:startpoint> <epos-gsmlp:inclinationtype_href>https://data.geoscience.earth/ncl/BoreholeInclinationType/vertical</epos-gsmlp:inclinationtype_href> <epos-gsmlp:inclinationtype>vertical</epos-gsmlp:inclinationtype> <epos-gsmlp:boreholematerialcustodian>Federal Institute for Geosciences and Natural Resources (BGR), Core archive for research drilling</epos-gsmlp:boreholematerialcustodian> <epos-gsmlp:boreholelength_m>2495.8</epos-gsmlp:boreholelength_m> <epos-gsmlp:elevation_m>522.51</epos-gsmlp:elevation_m> <epos-gsmlp:elevation_srs>5613</epos-gsmlp:elevation_srs> <epos-gsmlp:source>COSC-1 operational report - Operational data sets. Lorenz, Henning; Rosberg, Jan-Erik; Juhlin, Christopher; Bjelm, Leif; Almqvist, Bjarne; Berthet, Théo; Conze, Ronald; Gee, David G.; Klonowska, Iwona; Pascal, Christophe; Pedersen, Karsten; Roberts, Nick; Tsang, Chinfu (2015): COSC-1 operational report - Operational data sets. GFZ Data Services. https://doi.org/10.1594/GFZ.SDDB.ICDP.5054.2015</epos-gsmlp:source> <epos-gsmlp:metadata_uri>https://epos.brgm-rec.fr/geonetwork/srv/eng/catalog.search#/metadata/e435e013-944d-45e3-b2b7-a009889300d2</epos-gsmlp:metadata_uri> <epos-gsmlp:cored>true</epos-gsmlp:cored> <epos-gsmlp:accesstophysicaldrillcore>true</epos-gsmlp:accesstophysicaldrillcore> <epos-gsmlp:detaileddescription>Borehole SD-5054_1_A</epos-gsmlp:detaileddescription> <epos-gsmlp:detaileddescription_href>https://www.geodata.rocks/Boreholes/SD-5054_1_A</epos-gsmlp:detaileddescription_href> <epos-gsmlp:geophysicallogs>COSC-1 operational data sets</epos-gsmlp:geophysicallogs> <epos-gsmlp:geophysicallogs_href>https://doi.org/10.5880/ICDP.5054.002</epos-gsmlp:geophysicallogs_href> <epos-gsmlp:geologicaldescription>lithology</epos-gsmlp:geologicaldescription> <epos-gsmlp:geologicaldescription_href>https://www.geodata.rocks/GeologyLogs/SD-5054_1_A_on-site_full</epos-gsmlp:geologicaldescription_href> <epos-gsmlp:groundwaterlevel>inapplicable</epos-gsmlp:groundwaterlevel> <epos-gsmlp:groundwaterlevel_href>http://www.opengis.net/def/nil/ogc/0/inapplicable</epos-gsmlp:groundwaterlevel_href> <epos-gsmlp:groundwaterchemistry>inapplicable</epos-gsmlp:groundwaterchemistry> <epos-gsmlp:groundwaterchemistry_href>http://www.opengis.net/def/nil/ogc/0/inapplicable</epos-gsmlp:groundwaterchemistry_href> <epos-gsmlp:rockgeochemistry>XRF</epos-gsmlp:rockgeochemistry> <epos-gsmlp:rockgeochemistry_href>https://doi.org/10.5880/ICDP.5054.002</epos-gsmlp:rockgeochemistry_href> <epos-gsmlp:poregaschemistry>inapplicable</epos-gsmlp:poregaschemistry> <epos-gsmlp:poregaschemistry_href>http://www.opengis.net/def/nil/ogc/0/inapplicable</epos-gsmlp:poregaschemistry_href> <epos-gsmlp:geotechnicalinfo>inapplicable</epos-gsmlp:geotechnicalinfo> <epos-gsmlp:geotechnicalinfo_href>http://www.opengis.net/def/nil/ogc/0/inapplicable</epos-gsmlp:geotechnicalinfo_href> <epos-gsmlp:location_wgs84> <gml:Point srsName="http://www.opengis.net/gml/srs/epsg.xml#4326" srsDimension="2" gml:id="BoreholeView_PointStacker.SD-5054_1_A.location_wgs84"> <gml:pos>13.20292 63.40163</gml:pos> </gml:Point> </epos-gsmlp:location_wgs84> <epos-gsmlp:positionalaccuracy>0.1</epos-gsmlp:positionalaccuracy> <epos-gsmlp:countryid>2</epos-gsmlp:countryid> </epos-gsmlp:BoreholeView_PointStacker> </wfs:member> <wfs:member> <epos-gsmlp:BoreholeView_PointStacker gml:id="BoreholeView_PointStacker.SD-5054_2_A"> <gml:description>The Collisional Orogeny in the Scandinavian Caledonides (COSC) scientific drilling project aims to characterise the structure and orogenic processes involved in a major collisional mountain belt by multi-disciplinary geoscientific research. Located in western central Sweden, the project has drilled two fully cored deep boreholes into the bedrock of the deeply eroded Early Paleozoic Caledonide Orogen. COSC-2 successfully recovered a continuous drill core to 2276 m depth from two boreholes (100 m to TD in COSC-2 A and 6 - 116 m in COSC-2 B). The retrieved geological section includes the lower part of the allochthons, the main décollement and basement rocks. Turbiditic greywackes were drilled from the bedrock surface at c. 5 m depth and down to c. 780 m (light blue in Fig. 2). Here, the borehole encountered a strongly sheared black shale formation, which is in accordance with the magnetotelluric site investigations. After c. 45 m, the black shales give way to a tectonically disturbed unit of sandstone, conglomerate and tuff, which extends downwards to c. 1250 m. At this depth, ignimbrites and volcanic porphyries were encountered for the first time in the borehole. They show only minor signs of deformation and are present in different varieties (green to reddish, different grain size) down to the total depth, interrupted by major (and some minor) dolerite intrusions between c. 1600 and c. 1930 m, which show clear signs of deformation (cataclasite, breccia). partially different from the expected geological section with respect to the depth to the main décollement and the expected rock types. COSC-2 was surveyed by a comprehensive post-drilling downhole logging campaign and a combined borehole/land seismic survey in autumn 2022.</gml:description> <gml:name>COSC-2 A</gml:name> <epos-gsmlp:gmlidentifier>https://www.geodata.rocks/BoreholeView/SD-5054_2_A</epos-gsmlp:gmlidentifier> <epos-gsmlp:gsmlpidentifier>https://www.geodata.rocks/Boreholes/SD-5054_2_A</epos-gsmlp:gsmlpidentifier> <epos-gsmlp:purpose_href>https://data.geoscience.earth/ncl/BoreholePurpose/_multiDisciplinaryScientificResearch</epos-gsmlp:purpose_href> <epos-gsmlp:purpose>multidisciplinary scientific research</epos-gsmlp:purpose> <epos-gsmlp:boreholeuse>multidisciplinary scientific research</epos-gsmlp:boreholeuse> <epos-gsmlp:boreholeuse_href>https://data.geoscience.earth/ncl/BoreholePurpose/_multiDisciplinaryScientificResearch</epos-gsmlp:boreholeuse_href> <epos-gsmlp:status_href>https://data.geoscience.earth/ncl/BoreholeStatus/drillingCompleted</epos-gsmlp:status_href> <epos-gsmlp:status>drilling completed</epos-gsmlp:status> <epos-gsmlp:drillingmethod_href>https://data.geoscience.earth/ncl/DrillingMethod/diamondCore</epos-gsmlp:drillingmethod_href> <epos-gsmlp:drillingmethod>diamond core</epos-gsmlp:drillingmethod> <epos-gsmlp:operator>Uppsala University, Sweden (for I-EDDA-TC)</epos-gsmlp:operator> <epos-gsmlp:driller>Lund University, Sweden / Jämtborr AB</epos-gsmlp:driller> <epos-gsmlp:drillstartdate>2020-04-16Z</epos-gsmlp:drillstartdate> <epos-gsmlp:drillenddate>2020-08-07Z</epos-gsmlp:drillenddate> <epos-gsmlp:startpoint_href>https://data.geoscience.earth/ncl/StartPoint/naturalLandSurface</epos-gsmlp:startpoint_href> <epos-gsmlp:startpoint>natural land surface</epos-gsmlp:startpoint> <epos-gsmlp:inclinationtype_href>https://data.geoscience.earth/ncl/BoreholeInclinationType/vertical</epos-gsmlp:inclinationtype_href> <epos-gsmlp:inclinationtype>vertical</epos-gsmlp:inclinationtype> <epos-gsmlp:boreholematerialcustodian>Federal Institute for Geosciences and Natural Resources (BGR), Core archive for research drilling</epos-gsmlp:boreholematerialcustodian> <epos-gsmlp:boreholelength_m>2276.05</epos-gsmlp:boreholelength_m> <epos-gsmlp:elevation_m>320.25</epos-gsmlp:elevation_m> <epos-gsmlp:elevation_srs>5613</epos-gsmlp:elevation_srs> <epos-gsmlp:metadata_uri>https://epos.brgm-rec.fr/geonetwork/srv/eng/catalog.search#/metadata/e435e013-944d-45e3-b2b7-a009889300d2</epos-gsmlp:metadata_uri> <epos-gsmlp:cored>true</epos-gsmlp:cored> <epos-gsmlp:accesstophysicaldrillcore>false</epos-gsmlp:accesstophysicaldrillcore> <epos-gsmlp:detaileddescription>Borehole SD-5054_2_A</epos-gsmlp:detaileddescription> <epos-gsmlp:detaileddescription_href>https://www.geodata.rocks/Boreholes/SD-5054_2_A</epos-gsmlp:detaileddescription_href> <epos-gsmlp:geophysicallogs>COSC-2 operational data sets</epos-gsmlp:geophysicallogs> <epos-gsmlp:geophysicallogs_href>https://doi.org/10.5880/ICDP.5054.003</epos-gsmlp:geophysicallogs_href> <epos-gsmlp:geologicaldescription>lithology</epos-gsmlp:geologicaldescription> <epos-gsmlp:geologicaldescription_href>https://www.geodata.rocks/GeologyLogs/SD-5054_2_A_full</epos-gsmlp:geologicaldescription_href> <epos-gsmlp:groundwaterlevel>inapplicable</epos-gsmlp:groundwaterlevel> <epos-gsmlp:groundwaterlevel_href>http://www.opengis.net/def/nil/ogc/0/inapplicable</epos-gsmlp:groundwaterlevel_href> <epos-gsmlp:groundwaterchemistry>inapplicable</epos-gsmlp:groundwaterchemistry> <epos-gsmlp:groundwaterchemistry_href>http://www.opengis.net/def/nil/ogc/0/inapplicable</epos-gsmlp:groundwaterchemistry_href> <epos-gsmlp:rockgeochemistry>inapplicable</epos-gsmlp:rockgeochemistry> <epos-gsmlp:rockgeochemistry_href>http://www.opengis.net/def/nil/ogc/0/inapplicable</epos-gsmlp:rockgeochemistry_href> <epos-gsmlp:poregaschemistry>inapplicable</epos-gsmlp:poregaschemistry> <epos-gsmlp:poregaschemistry_href>http://www.opengis.net/def/nil/ogc/0/inapplicable</epos-gsmlp:poregaschemistry_href> <epos-gsmlp:geotechnicalinfo>inapplicable</epos-gsmlp:geotechnicalinfo> <epos-gsmlp:geotechnicalinfo_href>http://www.opengis.net/def/nil/ogc/0/inapplicable</epos-gsmlp:geotechnicalinfo_href> <epos-gsmlp:location_wgs84> <gml:Point srsName="http://www.opengis.net/gml/srs/epsg.xml#4326" srsDimension="2" gml:id="BoreholeView_PointStacker.SD-5054_2_A.location_wgs84"> <gml:pos>13.52648 63.31245</gml:pos> </gml:Point> </epos-gsmlp:location_wgs84> <epos-gsmlp:positionalaccuracy>0.1</epos-gsmlp:positionalaccuracy> <epos-gsmlp:countryid>2</epos-gsmlp:countryid> </epos-gsmlp:BoreholeView_PointStacker> </wfs:member> <wfs:member> <epos-gsmlp:BoreholeView_PointStacker gml:id="BoreholeView_PointStacker.SD-5016_1_A"> <gml:name>Kola SG-3</gml:name> <epos-gsmlp:gmlidentifier>https://www.geodata.rocks/BoreholeView/SD-5016_1_A</epos-gsmlp:gmlidentifier> <epos-gsmlp:gsmlpidentifier>https://www.geodata.rocks/Boreholes/SD-5016_1_A</epos-gsmlp:gsmlpidentifier> <epos-gsmlp:purpose_href>https://data.geoscience.earth/ncl/BoreholePurpose/_multiDisciplinaryScientificResearch</epos-gsmlp:purpose_href> <epos-gsmlp:purpose>multidisciplinary scientific research</epos-gsmlp:purpose> <epos-gsmlp:boreholeuse>multidisciplinary scientific research</epos-gsmlp:boreholeuse> <epos-gsmlp:boreholeuse_href>https://data.geoscience.earth/ncl/BoreholePurpose/_multiDisciplinaryScientificResearch</epos-gsmlp:boreholeuse_href> <epos-gsmlp:status_href>https://data.geoscience.earth/ncl/BoreholeStatus/drillingCompleted</epos-gsmlp:status_href> <epos-gsmlp:status>drilling completed</epos-gsmlp:status> <epos-gsmlp:drillingmethod_href>https://data.geoscience.earth/ncl/DrillingMethod/coreDrilling</epos-gsmlp:drillingmethod_href> <epos-gsmlp:drillingmethod>core drilling</epos-gsmlp:drillingmethod> <epos-gsmlp:operator>Russian Academy of Sciences, Kola Science Centre, Geological Institute</epos-gsmlp:operator> <epos-gsmlp:driller>NEDRA</epos-gsmlp:driller> <epos-gsmlp:drillstartdate>1970-04-30Z</epos-gsmlp:drillstartdate> <epos-gsmlp:drillenddate>1989-12-30Z</epos-gsmlp:drillenddate> <epos-gsmlp:startpoint_href>https://data.geoscience.earth/ncl/StartPoint/naturalLandSurface</epos-gsmlp:startpoint_href> <epos-gsmlp:startpoint>natural land surface</epos-gsmlp:startpoint> <epos-gsmlp:inclinationtype_href>https://data.geoscience.earth/ncl/BoreholeInclinationType/vertical</epos-gsmlp:inclinationtype_href> <epos-gsmlp:inclinationtype>vertical</epos-gsmlp:inclinationtype> <epos-gsmlp:boreholematerialcustodian>Russian Academy of Sciences, Kola Science Centre, Geological Institute</epos-gsmlp:boreholematerialcustodian> <epos-gsmlp:boreholelength_m>12261.0</epos-gsmlp:boreholelength_m> <epos-gsmlp:elevation_m>346.0</epos-gsmlp:elevation_m> <epos-gsmlp:elevation_srs>5613</epos-gsmlp:elevation_srs> <epos-gsmlp:source>International Continental Scientific Drilling Program (ICDP), direct communication</epos-gsmlp:source> <epos-gsmlp:metadata_uri>https://epos.brgm-rec.fr/geonetwork/srv/eng/catalog.search#/metadata/e435e013-944d-45e3-b2b7-a009889300d2</epos-gsmlp:metadata_uri> <epos-gsmlp:cored>true</epos-gsmlp:cored> <epos-gsmlp:accesstophysicaldrillcore>false</epos-gsmlp:accesstophysicaldrillcore> <epos-gsmlp:detaileddescription>Borehole SD-5016_1_A</epos-gsmlp:detaileddescription> <epos-gsmlp:detaileddescription_href>https://www.geodata.rocks/Boreholes/SD-5016_1_A</epos-gsmlp:detaileddescription_href> <epos-gsmlp:geophysicallogs>unkown</epos-gsmlp:geophysicallogs> <epos-gsmlp:geophysicallogs_href>http://www.opengis.net/def/nil/ogc/0/unkown</epos-gsmlp:geophysicallogs_href> <epos-gsmlp:geologicaldescription>unkown</epos-gsmlp:geologicaldescription> <epos-gsmlp:geologicaldescription_href>http://www.opengis.net/def/nil/ogc/0/unkown</epos-gsmlp:geologicaldescription_href> <epos-gsmlp:groundwaterlevel>inapplicable</epos-gsmlp:groundwaterlevel> <epos-gsmlp:groundwaterlevel_href>http://www.opengis.net/def/nil/ogc/0/inapplicable</epos-gsmlp:groundwaterlevel_href> <epos-gsmlp:groundwaterchemistry>inapplicable</epos-gsmlp:groundwaterchemistry> <epos-gsmlp:groundwaterchemistry_href>http://www.opengis.net/def/nil/ogc/0/inapplicable</epos-gsmlp:groundwaterchemistry_href> <epos-gsmlp:rockgeochemistry>unknown</epos-gsmlp:rockgeochemistry> <epos-gsmlp:rockgeochemistry_href>http://www.opengis.net/def/nil/ogc/0/unknown</epos-gsmlp:rockgeochemistry_href> <epos-gsmlp:poregaschemistry>unknown</epos-gsmlp:poregaschemistry> <epos-gsmlp:poregaschemistry_href>http://www.opengis.net/def/nil/ogc/0/unknown</epos-gsmlp:poregaschemistry_href> <epos-gsmlp:geotechnicalinfo>inapplicable</epos-gsmlp:geotechnicalinfo> <epos-gsmlp:geotechnicalinfo_href>http://www.opengis.net/def/nil/ogc/0/inapplicable</epos-gsmlp:geotechnicalinfo_href> <epos-gsmlp:location_wgs84> <gml:Point srsName="http://www.opengis.net/gml/srs/epsg.xml#4326" srsDimension="2" gml:id="BoreholeView_PointStacker.SD-5016_1_A.location_wgs84"> <gml:pos>29.28 69.17</gml:pos> </gml:Point> </epos-gsmlp:location_wgs84> <epos-gsmlp:countryid>2</epos-gsmlp:countryid> </epos-gsmlp:BoreholeView_PointStacker> </wfs:member> </wfs:FeatureCollection>
Extract LinkedData URL and location for full borehole data and keep it in an associative array (Python dictionary)
boreholes = {}
# method to convert lonlat (GML pos) to a GML point feature
def gmlpointfromlonlat(coordin):
lonlat = re.match(r"(^\S+) (\S+$)", coordin)
coordtrans = 'POINT(' + lonlat[2] + ' ' + lonlat[1] + ')'
return(coordtrans)
for feature in xml.findall(".//{http://www.opengis.net/wfs/2.0}member"):
name = feature.find(".//{http://www.opengis.net/gml/3.2}name").text
details = feature.find(".//{https://data.geoscience.earth/def/epos-geosciml-lite}detaileddescription_href").text
location = feature.find(".//{http://www.opengis.net/gml/3.2}pos").text
boreholes[name] = {}
boreholes[name]['details'] = details
boreholes[name]['GML'] = gmlpointfromlonlat(location)
# boreholes[name]['location'] = location
# Initialize keys that will be needed later, to avoid runtime errors while updating dictonaries
boreholes[name]['lithologygeologicunit'] = None
pp.pprint(boreholes)
{ 'COSC-1 A': { 'GML': 'POINT(63.40163 13.20292)', 'details': 'https://www.geodata.rocks/Boreholes/SD-5054_1_A', 'lithologygeologicunit': None}, 'COSC-2 A': { 'GML': 'POINT(63.31245 13.52648)', 'details': 'https://www.geodata.rocks/Boreholes/SD-5054_2_A', 'lithologygeologicunit': None}, 'Kola SG-3': { 'GML': 'POINT(69.17 29.28)', 'details': 'https://www.geodata.rocks/Boreholes/SD-5016_1_A', 'lithologygeologicunit': None}}
Access the data in the full borehole data service. From this point, any linked data can be dereferenced using the same method.
for key, value in boreholes.items():
for subkey, subvalue in value.items():
if subkey == 'details':
content = requests.get(subvalue)
print(xmlmd.parseString(content.text).toprettyxml())
<?xml version="1.0" ?> <wfs:FeatureCollection xmlns:wfs="http://www.opengis.net/wfs/2.0" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:gwml2="http://www.opengis.net/gwml-main/2.2" xmlns:swe="http://www.opengis.net/swe/2.0" xmlns:sams="http://www.opengis.net/samplingSpatial/2.0" xmlns:gsmlp="https://forge.brgm.fr/svnrepository/epos/trunk/schemas" xmlns:gml="http://www.opengis.net/gml/3.2" xmlns:gwml2wc="http://www.opengis.net/gwml-wellconstruction/2.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:eposb="https://data.geoscience.earth/def/eposb" xmlns:gco="http://www.isotc211.org/2005/gco" xmlns:gwml2w="http://www.opengis.net/gwml-well/2.2" xmlns:om="http://www.opengis.net/om/2.0" xmlns:sam="http://www.opengis.net/sampling/2.0" xmlns:gmd="http://www.isotc211.org/2005/gmd" xmlns:xlink="http://www.w3.org/1999/xlink" numberMatched="0" numberReturned="1" timeStamp="2023-09-12T10:04:07.002Z" xsi:schemaLocation="http://www.opengis.net/wfs/2.0 http://schemas.opengis.net/wfs/2.0/wfs.xsd https://data.geoscience.earth/def/eposb https://data.geoscience.earth/def/eposb.xsd http://www.opengis.net/gml/3.2 http://schemas.opengis.net/gml/3.2.1/gml.xsd"> <wfs:member> <eposb:Borehole gml:id="SD-5054_1_A"> <gml:description>The Collisional Orogeny in the Scandinavian Caledonides (COSC) scientific drilling project focuses on mountain building processes in a major mid-Paleozoic orogen in western Scandinavia and its comparison with modern analogues. The transport and emplacement of subduction-related highgrade continent-ocean transition (COT) complexes onto the Baltoscandian platform and their influence on the underlying allochthons and basement will be studied in a section provided by two fully cored 2.5 km deep drill holes. This operational report concerns the first drill hole, COSC-1 (ICDP 5054-1-A), drilled from early May to late August 2014. COSC-1 is located in the vicinity of the abandoned Fröå mine, close to the town of Åre in Jämtland, Sweden and was planned to sample a thick section of the Seve Nappe and to penetrate its basal thrust zone into the underlying lower grade metamorphosed allochthon. Despite substantial technical problems, the drill hole reached 2495.8 m driller's depth and nearly 100 % core recovery was achieved. Surprising was the homogeneity of the Seve Nappe rocks, the unexpected thickness of its basal thrust zone (> 500 m) and that the drill hole, therefore, did not penetrate the bottom of the thrust zone. However, lower grade metasedimentary rocks were encountered in the lowermost part of the drill hole together with tens of metres thick mylonites that are, unexpectedly, rich in large garnets. The drill core was documented on-site and XRF scanned off site. During various stages of the drilling, the borehole was documented by comprehensive downhole logging. This operational report provides an overview over the COSC-1 operations from drilling preparations to the sampling party and describes the available datasets and sample material.</gml:description> <gml:descriptionReference xlink:href="https://igsn.org/ICDP5054EHW1001" xlink:title="IGSN registry entry"/> <gml:identifier codeSpace="https://tools.ietf.org/html/rfc3629">https://www.geodata.rocks/Boreholes/SD-5054_1_A</gml:identifier> <sam:sampledFeature xlink:href="https://sweet.jpl.nasa.gov/2.3/realmEarthReference.owl#EarthLithosphere" xlink:title="Lithosphere"/> <sam:relatedSamplingFeature> <sam:SamplingFeatureComplex> <sam:role xlink:href="https://data.geoscience.earth/ncl/RelatedSamplingFeatureRole/boreholeSegment" xlink:title="borehole segment"/> <sam:relatedSamplingFeature xlink:href="https://www.geodata.rocks/Segments/SD-5054_1_A-1" xlink:title="SD-5054_1_A-1_0.00-103.00"/> </sam:SamplingFeatureComplex> </sam:relatedSamplingFeature> <sam:relatedSamplingFeature> <sam:SamplingFeatureComplex> <sam:role xlink:href="https://data.geoscience.earth/ncl/RelatedSamplingFeatureRole/boreholeSegment" xlink:title="borehole segment"/> <sam:relatedSamplingFeature xlink:href="https://www.geodata.rocks/Segments/SD-5054_1_A-2" xlink:title="SD-5054_1_A-2_103.00-1616.00"/> </sam:SamplingFeatureComplex> </sam:relatedSamplingFeature> <sam:relatedSamplingFeature> <sam:SamplingFeatureComplex> <sam:role xlink:href="https://data.geoscience.earth/ncl/RelatedSamplingFeatureRole/boreholeSegment" xlink:title="borehole segment"/> <sam:relatedSamplingFeature xlink:href="https://www.geodata.rocks/Segments/SD-5054_1_A-3" xlink:title="SD-5054_1_A-3_1616.00-1709.00"/> </sam:SamplingFeatureComplex> </sam:relatedSamplingFeature> <sam:relatedSamplingFeature> <sam:SamplingFeatureComplex> <sam:role xlink:href="https://data.geoscience.earth/ncl/RelatedSamplingFeatureRole/boreholeSegment" xlink:title="borehole segment"/> <sam:relatedSamplingFeature xlink:href="https://www.geodata.rocks/Segments/SD-5054_1_A-4" xlink:title="SD-5054_1_A-4_1709.00-2495.80"/> </sam:SamplingFeatureComplex> </sam:relatedSamplingFeature> <sams:shape> <gml:LineString srsDimension="3" srsName="http://www.opengis.net/gml/srs/epsg.xml#4979"> <gml:posList>13.202917 63.40163 522.51 13.20291703 63.40163043 519.44 13.20291722 63.40163054 516.37 13.20291752 63.40163051 513.3 13.20291779 63.40163047 510.22 13.20291784 63.40163033 507.15 13.20291775 63.40163013 504.08 13.20291764 63.40162995 501.01 13.20291771 63.40162978 497.94 13.2029178 63.40162959 494.87 13.20291792 63.40162937 491.79 13.20291811 63.40162921 488.72 13.20291844 63.40162905 485.65 13.20291889 63.40162887 482.58 13.2029192 63.40162876 479.51 13.20291952 63.40162863 476.44 13.20291991 63.40162851 473.37 13.20292018 63.4016284 470.29 13.20292057 63.40162826 467.22 13.20292091 63.40162818 464.15 13.20292126 63.40162806 461.08 13.20292171 63.40162794 458.01 13.2029221 63.40162782 454.94 13.20292245 63.40162769 451.87 13.20292273 63.4016276 448.79 13.20292296 63.40162748 445.72 13.20292314 63.40162741 442.65 13.20292333 63.40162733 439.58 13.20292358 63.40162725 436.51 13.2029237 63.40162721 433.44 13.20292388 63.40162715 430.36 13.2029241 63.40162712 427.29 13.20292438 63.40162713 424.22 13.20292482 63.40162719 421.15 13.20292514 63.40162728 418.08 13.20292539 63.40162739 415.01 13.20292556 63.40162754 411.93 13.20292567 63.40162764 408.86 13.20292603 63.40162777 405.79 13.2029265 63.40162794 402.72 13.20292679 63.40162808 399.65 13.2029271 63.40162823 396.58 13.20292737 63.40162836 393.51 13.20292766 63.4016285 390.43 13.20292809 63.40162871 387.36 13.20292842 63.40162889 384.29 13.20292885 63.40162907 381.22 13.20292928 63.40162927 378.15 13.20292973 63.40162945 375.08 13.20293023 63.40162966 372.01 13.2029307 63.40162986 368.93 13.20293123 63.40163008 365.86 13.20293167 63.40163032 362.79 13.20293214 63.40163054 359.72 13.20293266 63.40163081 356.65 13.20293313 63.40163107 353.58 13.20293369 63.40163133 350.51 13.20293421 63.40163165 347.43 13.20293462 63.4016319 344.36 13.20293512 63.40163218 341.29 13.2029356 63.40163252 338.22 13.20293604 63.40163282 335.15 13.2029366 63.40163316 332.08 13.20293712 63.40163354 329.01 13.20293766 63.40163387 325.94 13.2029383 63.40163422 322.86 13.20293887 63.40163459 319.79 13.20293949 63.40163496 316.72 13.20294007 63.40163535 313.65 13.20294065 63.40163571 310.58 13.2029413 63.40163612 307.51 13.20294187 63.40163657 304.44 13.20294245 63.40163694 301.37 13.20294309 63.40163729 298.3 13.20294377 63.40163771 295.22 13.20294436 63.40163816 292.15 13.20294491 63.40163862 289.08 13.20294546 63.40163912 286.01 13.20294599 63.40163958 282.94 13.2029466 63.40164007 279.87 13.20294713 63.40164056 276.8 13.20294768 63.40164103 273.73 13.20294825 63.40164155 270.66 13.20294882 63.40164205 267.58 13.20294947 63.40164258 264.51 13.20295009 63.40164312 261.44 13.2029508 63.40164362 258.37 13.20295159 63.40164417 255.3 13.2029523 63.40164475 252.23 13.20295302 63.4016453 249.16 13.20295379 63.40164589 246.09 13.20295455 63.40164649 243.02 13.2029554 63.40164702 239.95 13.20295638 63.4016476 236.88 13.20295739 63.40164822 233.81 13.20295847 63.40164879 230.74 13.2029597 63.40164937 227.67 13.20296094 63.40165001 224.6 13.20296223 63.40165072 221.53 13.20296364 63.40165137 218.46 13.20296512 63.40165203 215.39 13.20296657 63.40165277 212.32 13.20296799 63.40165348 209.25 13.20296947 63.40165419 206.18 13.2029709 63.40165499 203.11 13.20297225 63.40165585 200.04 13.20297353 63.4016567 196.97 13.20297487 63.40165749 193.9 13.20297642 63.40165824 190.83 13.2029781 63.40165898 187.76 13.20297969 63.40165977 184.69 13.20298124 63.40166053 181.62 13.20298284 63.40166126 178.55 13.20298445 63.40166206 175.48 13.202986 63.40166289 172.41 13.20298758 63.40166367 169.34 13.20298923 63.40166447 166.28 13.20299083 63.40166533 163.21 13.20299249 63.40166612 160.14 13.20299428 63.40166685 157.07 13.20299616 63.40166765 154 13.20299795 63.40166844 150.93 13.20299975 63.40166914 147.86 13.20300152 63.40166986 144.79 13.20300336 63.40167055 141.72 13.20300536 63.40167125 138.65 13.20300734 63.40167201 135.58 13.20300931 63.40167273 132.52 13.20301133 63.40167346 129.45 13.20301329 63.40167423 126.38 13.20301522 63.40167502 123.31 13.20301725 63.4016758 120.24 13.20301933 63.40167659 117.17 13.20302146 63.40167739 114.1 13.20302355 63.4016782 111.03 13.20302575 63.40167895 107.97 13.20302806 63.40167972 104.9 13.20303034 63.40168047 101.83 13.20303257 63.40168123 98.76 13.20303478 63.40168202 95.69 13.20303696 63.40168281 92.62 13.20303923 63.40168362 89.56 13.20304148 63.4016845 86.49 13.20304371 63.40168535 83.42 13.20304602 63.40168616 80.35 13.20304847 63.40168706 77.28 13.20305091 63.40168803 74.22 13.20305329 63.40168894 71.15 13.20305574 63.4016898 68.08 13.20305829 63.40169065 65.01 13.2030609 63.40169158 61.95 13.2030635 63.40169251 58.88 13.20306609 63.40169343 55.81 13.20306869 63.40169442 52.75 13.20307129 63.40169546 49.68 13.20307383 63.40169644 46.61 13.20307641 63.40169745 43.55 13.20307901 63.40169846 40.48 13.20308165 63.40169944 37.41 13.20308437 63.40170047 34.35 13.20308707 63.40170148 31.28 13.20308987 63.40170245 28.21 13.20309273 63.40170349 25.15 13.20309559 63.40170455 22.08 13.20309855 63.40170555 19.01 13.20310157 63.4017066 15.95 13.20310452 63.40170767 12.88 13.20310752 63.40170869 9.82 13.2031106 63.40170973 6.75 13.2031137 63.40171077 3.69 13.20311678 63.40171183 0.62 13.20311986 63.40171289 -2.45 13.20312299 63.40171394 -5.51 13.20312617 63.401715 -8.58 13.20312931 63.40171609 -11.64 13.20313246 63.40171722 -14.71 13.20313555 63.40171833 -17.77 13.20313873 63.40171949 -20.84 13.20314186 63.40172067 -23.9 13.20314499 63.40172182 -26.97 13.2031482 63.401723 -30.03 13.20315139 63.40172423 -33.09 13.20315453 63.40172542 -36.16 13.20315769 63.40172657 -39.22 13.20316096 63.40172771 -42.29 13.20316425 63.40172887 -45.35 13.20316756 63.40172998 -48.42 13.20317096 63.40173111 -51.48 13.20317433 63.40173223 -54.55 13.20317769 63.40173334 -57.61 13.203181 63.40173451 -60.68 13.20318431 63.40173568 -63.74 13.20318766 63.40173683 -66.8 13.20319103 63.401738 -69.87 13.20319448 63.4017392 -72.93 13.20319789 63.40174039 -76 13.2032013 63.4017416 -79.06 13.20320474 63.40174287 -82.12 13.20320811 63.40174416 -85.19 13.20321145 63.40174541 -88.25 13.2032148 63.40174668 -91.32 13.2032181 63.40174797 -94.38 13.20322138 63.40174927 -97.44 13.20322465 63.40175058 -100.51 13.20322794 63.40175195 -103.57 13.20323116 63.40175332 -106.63 13.2032343 63.40175468 -109.7 13.20323748 63.40175607 -112.76 13.20324061 63.40175748 -115.82 13.20324377 63.40175884 -118.89 13.20324699 63.40176022 -121.95 13.20325026 63.40176167 -125.01 13.20325352 63.40176312 -128.08 13.20325683 63.40176455 -131.14 13.2032602 63.40176602 -134.2 13.20326357 63.40176752 -137.27 13.20326689 63.40176896 -140.33 13.20327026 63.4017704 -143.39 13.20327361 63.40177186 -146.45 13.20327693 63.40177331 -149.52 13.20328024 63.40177474 -152.58 13.20328362 63.40177616 -155.64 13.20328697 63.40177759 -158.71 13.20329033 63.401779 -161.77 13.20329373 63.40178038 -164.83 13.20329714 63.40178175 -167.9 13.20330056 63.40178315 -170.96 13.20330396 63.40178452 -174.02 13.20330742 63.40178591 -177.08 13.20331085 63.4017873 -180.15 13.20331431 63.40178868 -183.21 13.20331785 63.40179009 -186.27 13.20332131 63.40179146 -189.34 13.20332477 63.40179282 -192.4 13.20332826 63.40179418 -195.46 13.20333176 63.40179553 -198.52 13.20333532 63.40179689 -201.59 13.20333892 63.40179824 -204.65 13.2033425 63.40179958 -207.71 13.20334609 63.4018009 -210.77 13.20334971 63.4018022 -213.84 13.20335331 63.40180347 -216.9 13.20335688 63.4018047 -219.96 13.20336045 63.40180589 -223.03 13.20336404 63.40180706 -226.09 13.20336754 63.40180819 -229.16 13.20337101 63.4018093 -232.22 13.20337445 63.40181039 -235.28 13.20337785 63.40181143 -238.35 13.20338125 63.40181245 -241.41 13.20338453 63.40181342 -244.48 13.20338779 63.40181435 -247.54 13.20339106 63.40181524 -250.61 13.20339431 63.40181616 -253.68 13.20339746 63.40181707 -256.74 13.20340055 63.40181794 -259.81 13.2034036 63.4018188 -262.87 13.20340663 63.40181963 -265.94 13.20340958 63.40182043 -269.01 13.20341259 63.40182123 -272.07 13.20341557 63.40182203 -275.14 13.20341848 63.40182283 -278.21 13.20342142 63.40182359 -281.27 13.20342434 63.40182433 -284.34 13.20342726 63.40182502 -287.41 13.20343024 63.40182569 -290.48 13.20343318 63.40182635 -293.54 13.20343606 63.40182701 -296.61 13.2034389 63.4018277 -299.68 13.20344174 63.40182836 -302.75 13.20344459 63.40182902 -305.81 13.20344745 63.40182966 -308.88 13.20345029 63.4018303 -311.95 13.20345312 63.40183095 -315.01 13.20345598 63.40183157 -318.08 13.20345887 63.40183219 -321.15 13.20346177 63.4018328 -324.22 13.20346468 63.40183341 -327.28 13.20346756 63.40183407 -330.35 13.20347038 63.40183478 -333.42 13.20347316 63.40183547 -336.49 13.203476 63.40183618 -339.55 13.20347883 63.40183691 -342.62 13.20348167 63.40183762 -345.69 13.20348457 63.40183833 -348.76 13.20348755 63.40183906 -351.82 13.20349049 63.40183982 -354.89 13.2034934 63.40184058 -357.96 13.20349632 63.40184136 -361.02 13.20349921 63.40184212 -364.09 13.20350215 63.40184287 -367.16 13.20350515 63.40184362 -370.22 13.20350814 63.40184438 -373.29 13.2035112 63.40184513 -376.36 13.20351426 63.40184589 -379.42 13.20351733 63.40184665 -382.49 13.20352045 63.40184742 -385.56 13.20352352 63.40184821 -388.62 13.20352664 63.40184898 -391.69 13.20352977 63.40184977 -394.76 13.20353293 63.40185055 -397.82 13.2035361 63.40185134 -400.89 13.20353924 63.40185213 -403.96 13.20354243 63.40185291 -407.02 13.20354562 63.4018537 -410.09 13.20354882 63.40185448 -413.15 13.20355199 63.40185527 -416.22 13.20355517 63.40185605 -419.29 13.20355834 63.40185685 -422.35 13.2035615 63.40185765 -425.42 13.20356465 63.40185846 -428.49 13.20356782 63.40185928 -431.55 13.20357105 63.40186011 -434.62 13.20357432 63.40186096 -437.68 13.20357773 63.40186187 -440.75 13.20358118 63.40186279 -443.81 13.20358457 63.40186368 -446.88 13.20358786 63.40186453 -449.94 13.20359113 63.40186536 -453.01 13.2035944 63.40186619 -456.08 13.20359777 63.40186706 -459.14 13.20360116 63.40186795 -462.21 13.20360441 63.40186879 -465.27 13.20360762 63.40186962 -468.34 13.2036109 63.40187044 -471.41 13.20361413 63.40187125 -474.47 13.20361744 63.40187205 -477.54 13.20362078 63.40187285 -480.6 13.20362411 63.40187366 -483.67 13.20362746 63.40187447 -486.73 13.20363082 63.40187528 -489.8 13.20363417 63.40187609 -492.87 13.20363757 63.40187687 -495.93 13.203641 63.40187764 -499 13.2036444 63.40187841 -502.06 13.20364783 63.40187919 -505.13 13.20365125 63.40187997 -508.19 13.20365468 63.40188075 -511.26 13.20365816 63.40188152 -514.33 13.20366164 63.40188228 -517.39 13.20366519 63.40188304 -520.46 13.20366871 63.40188381 -523.52 13.20367227 63.40188459 -526.59 13.20367584 63.40188538 -529.65 13.20367943 63.40188619 -532.72 13.20368297 63.40188703 -535.78 13.20368652 63.40188785 -538.85 13.20369011 63.40188869 -541.91 13.2036937 63.40188953 -544.98 13.20369729 63.40189037 -548.04 13.20370087 63.4018912 -551.11 13.20370448 63.40189201 -554.17 13.20370815 63.40189283 -557.24 13.20371183 63.40189366 -560.3 13.20371554 63.40189447 -563.37 13.20371929 63.40189528 -566.43 13.20372305 63.40189612 -569.49 13.20372682 63.40189697 -572.56 13.20373065 63.40189779 -575.62 13.20373448 63.40189861 -578.69 13.2037383 63.40189942 -581.75 13.20374215 63.40190023 -584.82 13.20374602 63.40190107 -587.88 13.20374991 63.40190194 -590.94 13.20375381 63.4019028 -594.01 13.20375773 63.40190369 -597.07 13.20376168 63.40190457 -600.14 13.20376567 63.40190545 -603.2 13.20376962 63.40190632 -606.26 13.20377362 63.40190719 -609.33 13.20377763 63.40190805 -612.39 13.20378168 63.40190889 -615.45 13.20378573 63.40190973 -618.52 13.2037898 63.40191056 -621.58 13.2037939 63.40191139 -624.64 13.20379799 63.40191223 -627.71 13.2038021 63.40191304 -630.77 13.20380622 63.40191386 -633.83 13.20381035 63.40191466 -636.9 13.20381449 63.40191547 -639.96 13.20381862 63.40191625 -643.02 13.20382286 63.40191702 -646.09 13.2038271 63.4019178 -649.15 13.20383133 63.40191856 -652.21 13.20383567 63.40191931 -655.28 13.20384005 63.40192006 -658.34 13.20384447 63.40192083 -661.4 13.20384891 63.40192158 -664.46 13.20385343 63.40192231 -667.53 13.20385801 63.40192305 -670.59 13.20386259 63.40192377 -673.65 13.20386725 63.40192446 -676.71 13.20387195 63.40192517 -679.77 13.20387661 63.40192586 -682.84 13.20388131 63.40192657 -685.9 13.20388605 63.40192728 -688.96 13.20389086 63.40192798 -692.02 13.20389568 63.40192869 -695.08 13.20390052 63.40192941 -698.14 13.20390538 63.4019301 -701.2 13.20391032 63.40193081 -704.26 13.20391529 63.4019315 -707.32 13.20392029 63.40193218 -710.38 13.20392529 63.40193285 -713.44 13.2039303 63.40193352 -716.51 13.20393524 63.40193417 -719.57 13.20394017 63.40193483 -722.63 13.20394523 63.4019355 -725.69 13.20395028 63.40193618 -728.75 13.20395532 63.40193684 -731.81 13.20396036 63.4019375 -734.87 13.20396541 63.40193816 -737.93 13.20397057 63.40193883 -740.99 13.20397572 63.4019395 -744.05 13.20398072 63.40194015 -747.11 13.20398571 63.40194077 -750.17 13.20399068 63.40194138 -753.23 13.20399567 63.40194199 -756.29 13.20400061 63.4019426 -759.35 13.20400558 63.40194322 -762.41 13.20401053 63.40194384 -765.47 13.20401554 63.40194445 -768.53 13.20402052 63.40194506 -771.6 13.20402545 63.40194566 -774.66 13.20403044 63.40194624 -777.72 13.20403543 63.40194682 -780.78 13.20404036 63.40194738 -783.84 13.20404534 63.40194789 -786.9 13.20405033 63.40194836 -789.96 13.20405539 63.40194881 -793.02 13.20406041 63.40194926 -796.08 13.20406541 63.40194969 -799.14 13.20407047 63.40195012 -802.2 13.20407555 63.40195055 -805.26 13.20408069 63.40195098 -808.33 13.20408583 63.40195141 -811.39 13.20409093 63.40195183 -814.45 13.20409609 63.40195223 -817.51 13.20410117 63.40195264 -820.57 13.20410621 63.40195304 -823.63 13.20411135 63.40195344 -826.69 13.20411645 63.40195384 -829.75 13.20412155 63.40195422 -832.81 13.20412668 63.40195459 -835.87 13.20413176 63.40195498 -838.93 13.20413686 63.40195537 -841.99 13.20414194 63.40195576 -845.05 13.20414701 63.40195612 -848.11 13.20415203 63.40195647 -851.18 13.20415699 63.40195681 -854.24 13.20416186 63.40195714 -857.3 13.20416673 63.40195742 -860.36 13.20417158 63.40195772 -863.42 13.20417638 63.40195801 -866.48 13.20418121 63.40195829 -869.55 13.2041861 63.40195857 -872.61 13.20419095 63.40195885 -875.67 13.2041958 63.40195912 -878.73 13.20420071 63.40195938 -881.79 13.20420545 63.40195965 -884.86 13.20421018 63.40195992 -887.92 13.20421503 63.40196018 -890.98 13.20421992 63.40196043 -894.04 13.20422481 63.40196068 -897.1 13.20422966 63.40196092 -900.17 13.20423445 63.40196116 -903.23 13.20423925 63.40196139 -906.29 13.204244 63.40196162 -909.35 13.20424871 63.40196185 -912.41 13.20425336 63.40196204 -915.48 13.204258 63.40196221 -918.54 13.20426269 63.40196239 -921.6 13.20426733 63.40196257 -924.67 13.20427198 63.40196271 -927.73 13.20427666 63.40196285 -930.79 13.20428132 63.40196299 -933.85 13.204286 63.4019631 -936.92 13.20429069 63.40196322 -939.98 13.20429537 63.40196332 -943.04 13.20430011 63.40196339 -946.1 13.20430484 63.40196346 -949.17 13.20430956 63.40196352 -952.23 13.20431432 63.40196356 -955.29 13.20431908 63.4019636 -958.35 13.20432389 63.40196364 -961.42 13.20432871 63.40196368 -964.48 13.20433351 63.40196371 -967.54 13.20433842 63.40196375 -970.6 13.2043433 63.40196378 -973.66 13.20434821 63.40196379 -976.73 13.20435313 63.40196382 -979.79 13.20435804 63.40196384 -982.85 13.20436302 63.40196385 -985.91 13.20436801 63.40196386 -988.97 13.20437299 63.40196386 -992.03 13.20437802 63.40196386 -995.1 13.20438306 63.40196386 -998.16 13.20438811 63.40196385 -1001.22 13.20439314 63.40196384 -1004.28 13.20439822 63.40196382 -1007.34 13.20440333 63.40196382 -1010.4 13.20440844 63.40196379 -1013.46 13.20441359 63.40196376 -1016.52 13.20441876 63.40196371 -1019.58 13.20442394 63.40196369 -1022.64 13.20442915 63.40196366 -1025.7 13.20443442 63.40196362 -1028.77 13.20443971 63.40196361 -1031.83 13.20444508 63.40196359 -1034.89 13.20445046 63.40196359 -1037.94 13.20445587 63.40196358 -1041 13.20446136 63.40196357 -1044.06 13.20446684 63.40196355 -1047.12 13.20447237 63.40196353 -1050.18 13.2044779 63.40196352 -1053.24 13.20448341 63.40196351 -1056.3 13.20448895 63.4019635 -1059.36 13.20449448 63.4019635 -1062.42 13.20450001 63.40196347 -1065.48 13.2045056 63.40196343 -1068.54 13.20451119 63.40196341 -1071.6 13.20451673 63.40196339 -1074.66 13.20452234 63.40196336 -1077.71 13.20452797 63.40196335 -1080.77 13.20453358 63.40196334 -1083.83 13.20453924 63.40196333 -1086.89 13.20454499 63.40196334 -1089.95 13.20455064 63.40196336 -1093.01 13.20455618 63.40196335 -1096.07 13.20456163 63.40196338 -1099.13 13.20456693 63.40196341 -1102.19 13.20457214 63.40196341 -1105.25 13.20457731 63.4019634 -1108.31 13.20458231 63.40196339 -1111.37 13.20458728 63.40196338 -1114.43 13.20459224 63.40196338 -1117.49 13.20459715 63.40196337 -1120.55 13.20460198 63.40196332 -1123.62 13.20460681 63.40196326 -1126.68 13.20461152 63.40196319 -1129.74 13.20461593 63.40196306 -1132.8 13.20462007 63.40196286 -1135.87 13.20462393 63.4019626 -1138.93 13.20462755 63.40196231 -1142 13.2046311 63.40196197 -1145.07 13.20463473 63.40196162 -1148.13 13.20463833 63.40196127 -1151.2 13.20464192 63.40196088 -1154.26 13.20464559 63.40196049 -1157.33 13.20464934 63.40196009 -1160.4 13.20465311 63.40195967 -1163.46 13.20465684 63.40195925 -1166.53 13.20466055 63.40195883 -1169.59 13.20466428 63.40195836 -1172.66 13.20466802 63.4019579 -1175.72 13.20467175 63.40195744 -1178.79 13.20467549 63.40195696 -1181.85 13.20467926 63.40195647 -1184.92 13.20468306 63.40195597 -1187.98 13.20468685 63.40195545 -1191.05 13.20469067 63.40195492 -1194.12 13.20469435 63.40195438 -1197.18 13.20469793 63.40195378 -1200.25 13.20470141 63.40195315 -1203.31 13.20470484 63.40195248 -1206.38 13.20470821 63.40195178 -1209.44 13.20471158 63.40195105 -1212.51 13.20471489 63.40195031 -1215.58 13.20471816 63.40194953 -1218.64 13.20472135 63.40194874 -1221.71 13.20472451 63.4019479 -1224.77 13.20472767 63.40194705 -1227.84 13.20473079 63.40194616 -1230.91 13.20473393 63.40194526 -1233.97 13.20473709 63.40194435 -1237.04 13.20474023 63.40194339 -1240.1 13.20474335 63.40194241 -1243.17 13.20474646 63.40194136 -1246.24 13.20474946 63.40194025 -1249.3 13.20475233 63.40193913 -1252.37 13.20475515 63.40193799 -1255.43 13.20475796 63.40193685 -1258.5 13.20476073 63.40193572 -1261.56 13.20476349 63.40193459 -1264.63 13.20476624 63.40193346 -1267.7 13.20476895 63.40193235 -1270.76 13.20477175 63.40193121 -1273.83 13.20477452 63.40193008 -1276.89 13.20477722 63.40192895 -1279.96 13.20477995 63.40192779 -1283.03 13.20478269 63.40192662 -1286.09 13.20478535 63.40192542 -1289.16 13.20478798 63.40192423 -1292.22 13.20479058 63.40192305 -1295.29 13.2047932 63.40192186 -1298.35 13.20479583 63.40192069 -1301.42 13.20479841 63.40191951 -1304.49 13.20480101 63.40191834 -1307.55 13.20480362 63.40191716 -1310.62 13.20480624 63.40191599 -1313.69 13.20480886 63.40191482 -1316.75 13.20481141 63.40191364 -1319.82 13.20481393 63.40191245 -1322.88 13.20481645 63.40191127 -1325.95 13.20481894 63.40191009 -1329.02 13.20482144 63.40190892 -1332.08 13.20482401 63.40190778 -1335.15 13.20482655 63.40190665 -1338.21 13.20482908 63.4019055 -1341.28 13.2048316 63.40190434 -1344.35 13.20483404 63.40190315 -1347.41 13.20483649 63.40190194 -1350.48 13.20483887 63.40190075 -1353.55 13.20484127 63.40189954 -1356.61 13.20484369 63.40189834 -1359.68 13.204846 63.40189716 -1362.75 13.20484834 63.40189595 -1365.81 13.2048507 63.40189473 -1368.88 13.20485304 63.40189354 -1371.94 13.20485532 63.40189233 -1375.01 13.20485761 63.40189112 -1378.08 13.20485989 63.40188991 -1381.14 13.20486213 63.40188867 -1384.21 13.20486439 63.40188746 -1387.28 13.20486663 63.40188626 -1390.34 13.20486881 63.40188502 -1393.41 13.20487103 63.40188376 -1396.48 13.20487321 63.40188253 -1399.54 13.20487529 63.4018813 -1402.61 13.20487739 63.40188004 -1405.68 13.20487955 63.40187881 -1408.74 13.20488167 63.40187758 -1411.81 13.20488375 63.40187634 -1414.88 13.20488591 63.40187508 -1417.94 13.20488817 63.40187381 -1421.01 13.20489049 63.40187254 -1424.08 13.20489274 63.40187126 -1427.14 13.20489498 63.40186996 -1430.21 13.20489726 63.40186865 -1433.27 13.20489955 63.40186734 -1436.34 13.20490177 63.40186601 -1439.41 13.20490402 63.40186466 -1442.47 13.20490635 63.40186331 -1445.54 13.20490865 63.40186198 -1448.6 13.20491084 63.40186066 -1451.67 13.20491293 63.40185932 -1454.74 13.20491501 63.40185796 -1457.8 13.20491716 63.40185658 -1460.87 13.20491937 63.40185523 -1463.93 13.2049215 63.40185388 -1467 13.2049235 63.40185252 -1470.07 13.20492549 63.40185116 -1473.13 13.20492744 63.4018498 -1476.2 13.20492928 63.40184844 -1479.27 13.20493105 63.40184706 -1482.33 13.20493286 63.40184568 -1485.4 13.20493473 63.40184428 -1488.46 13.2049366 63.40184292 -1491.53 13.2049383 63.40184158 -1494.6 13.20493993 63.40184023 -1497.66 13.2049415 63.40183888 -1500.73 13.20494306 63.4018375 -1503.8 13.20494467 63.40183613 -1506.87 13.20494616 63.40183476 -1509.93 13.20494752 63.4018334 -1513 13.20494881 63.40183202 -1516.07 13.20495012 63.40183064 -1519.13 13.20495133 63.40182929 -1522.2 13.20495239 63.40182797 -1525.27 13.20495329 63.40182664 -1528.34 13.2049541 63.40182529 -1531.4 13.20495491 63.40182392 -1534.47 13.20495571 63.40182258 -1537.54 13.20495641 63.40182126 -1540.61 13.20495702 63.40181993 -1543.67 13.2049575 63.40181856 -1546.74 13.20495789 63.40181718 -1549.81 13.20495826 63.40181579 -1552.88 13.20495854 63.4018144 -1555.95 13.20495871 63.40181298 -1559.01 13.20495874 63.40181154 -1562.08 13.2049587 63.40181006 -1565.15 13.20495863 63.40180858 -1568.21 13.20495856 63.4018071 -1571.28 13.20495849 63.40180563 -1574.35 13.20495846 63.40180419 -1577.42 13.20495845 63.40180273 -1580.48 13.20495843 63.40180124 -1583.55 13.2049584 63.40179974 -1586.62 13.20495837 63.40179825 -1589.68 13.20495839 63.40179675 -1592.75 13.20495846 63.40179527 -1595.82 13.20495857 63.40179382 -1598.89 13.20495864 63.40179238 -1601.95 13.20495867 63.40179092 -1605.02 13.20495868 63.40178947 -1608.09 13.20495857 63.401788 -1611.16 13.20495836 63.40178653 -1614.22 13.20495813 63.40178507 -1617.29 13.20495788 63.40178364 -1620.36 13.20495755 63.4017822 -1623.43 13.20495722 63.40178076 -1626.49 13.20495691 63.40177933 -1629.56 13.20495662 63.40177792 -1632.63 13.20495633 63.40177652 -1635.7 13.20495595 63.40177511 -1638.76 13.20495558 63.4017737 -1641.83 13.20495519 63.40177231 -1644.9 13.2049548 63.40177087 -1647.97 13.20495449 63.40176943 -1651.03 13.20495416 63.40176798 -1654.1 13.20495375 63.40176651 -1657.17 13.20495328 63.40176503 -1660.23 13.20495283 63.40176358 -1663.3 13.20495236 63.40176216 -1666.37 13.20495185 63.40176071 -1669.44 13.20495136 63.40175924 -1672.5 13.20495093 63.4017578 -1675.57 13.2049505 63.40175634 -1678.64 13.20495005 63.40175481 -1681.7 13.20494965 63.40175324 -1684.77 13.20494929 63.40175165 -1687.84 13.20494899 63.40175002 -1690.9 13.20494877 63.4017484 -1693.97 13.20494853 63.40174679 -1697.04 13.20494825 63.40174519 -1700.1 13.20494791 63.40174356 -1703.17 13.20494752 63.40174187 -1706.23 13.20494719 63.40174016 -1709.3 13.20494682 63.40173838 -1712.37 13.20494639 63.40173657 -1715.43 13.20494596 63.40173476 -1718.5 13.20494555 63.40173296 -1721.56 13.20494518 63.40173116 -1724.63 13.20494488 63.40172935 -1727.69 13.20494463 63.40172757 -1730.76 13.20494434 63.4017258 -1733.82 13.20494401 63.40172404 -1736.89 13.20494374 63.4017223 -1739.95 13.20494348 63.40172058 -1743.02 13.20494317 63.40171885 -1746.08 13.20494286 63.4017171 -1749.15 13.20494261 63.40171538 -1752.21 13.20494231 63.40171365 -1755.28 13.20494194 63.40171192 -1758.34 13.20494147 63.40171018 -1761.41 13.204941 63.40170845 -1764.48 13.20494058 63.40170675 -1767.54 13.20494007 63.40170502 -1770.61 13.20493954 63.40170329 -1773.67 13.20493894 63.40170159 -1776.74 13.20493827 63.40169991 -1779.8 13.20493749 63.40169824 -1782.87 13.20493671 63.40169658 -1785.93 13.20493597 63.40169495 -1789 13.20493525 63.40169335 -1792.07 13.20493457 63.40169174 -1795.13 13.20493397 63.40169013 -1798.2 13.20493337 63.40168851 -1801.27 13.20493281 63.40168691 -1804.33 13.20493227 63.4016853 -1807.4 13.20493169 63.4016837 -1810.46 13.20493117 63.40168212 -1813.53 13.20493065 63.40168054 -1816.6 13.20493005 63.40167896 -1819.66 13.20492943 63.40167735 -1822.73 13.20492883 63.40167572 -1825.8 13.20492821 63.40167409 -1828.86 13.20492761 63.40167247 -1831.93 13.20492705 63.40167085 -1834.99 13.20492653 63.40166922 -1838.06 13.20492605 63.40166763 -1841.13 13.20492557 63.40166605 -1844.19 13.20492506 63.40166447 -1847.26 13.20492456 63.40166289 -1850.33 13.20492408 63.40166132 -1853.39 13.20492362 63.40165978 -1856.46 13.20492321 63.40165823 -1859.53 13.20492285 63.40165666 -1862.59 13.20492253 63.40165512 -1865.66 13.20492224 63.40165359 -1868.73 13.20492192 63.40165205 -1871.79 13.20492161 63.40165054 -1874.86 13.20492132 63.40164902 -1877.93 13.20492102 63.40164748 -1880.99 13.20492064 63.40164592 -1884.06 13.20492025 63.40164435 -1887.13 13.20491985 63.4016428 -1890.19 13.20491945 63.40164126 -1893.26 13.20491906 63.40163973 -1896.33 13.20491862 63.40163821 -1899.39 13.20491815 63.40163664 -1902.46 13.20491771 63.40163505 -1905.53 13.20491731 63.4016335 -1908.59 13.20491695 63.40163192 -1911.66 13.20491659 63.4016303 -1914.73 13.20491629 63.40162872 -1917.79 13.20491603 63.40162712 -1920.86 13.20491577 63.40162548 -1923.93 13.20491553 63.40162386 -1926.99 13.20491527 63.40162224 -1930.06 13.20491501 63.40162062 -1933.12 13.20491473 63.40161899 -1936.19 13.20491445 63.40161735 -1939.26 13.20491417 63.40161574 -1942.32 13.20491388 63.4016141 -1945.39 13.20491358 63.40161244 -1948.45 13.20491332 63.4016108 -1951.52 13.20491316 63.40160916 -1954.59 13.20491308 63.40160753 -1957.65 13.20491303 63.40160588 -1960.72 13.20491317 63.40160368 -1964.71</gml:posList> </gml:LineString> </sams:shape> <eposb:boreholeUse> <eposb:BoreholeUse> <eposb:use xlink:href="https://data.geoscience.earth/ncl/BoreholePurpose/_multiDisciplinaryScientificResearch" xlink:title="multidisciplinary scientific research"/> <eposb:usePeriod> <gml:TimePeriod> <gml:begin> <gml:TimeInstant> <gml:timePosition>2014-04-28Z</gml:timePosition> </gml:TimeInstant> </gml:begin> <gml:end> <gml:TimeInstant> <gml:timePosition indeterminatePosition="unknown"/> </gml:TimeInstant> </gml:end> </gml:TimePeriod> </eposb:usePeriod> <eposb:useStatus xlink:href="http://www.opengis.net/def/nil/ogc/0/unknown" xlink:title="unknown"/> </eposb:BoreholeUse> </eposb:boreholeUse> <eposb:custodian> <eposb:Custodian> <eposb:custodian> <gmd:CI_ResponsibleParty id="BGR-CR-0.3690501996268786"> <gmd:individualName> <gco:CharacterString>Tina Kollaske</gco:CharacterString> </gmd:individualName> <gmd:organisationName> <gco:CharacterString>Federal Institute for Geosciences and Natural Resources (BGR), Core archive for research drilling</gco:CharacterString> </gmd:organisationName> <gmd:positionName> <gco:CharacterString>Curator</gco:CharacterString> </gmd:positionName> <gmd:contactInfo> <gmd:CI_Contact id="BGR-CR-0.29548150873296686"> <gmd:phone> <gmd:CI_Telephone id="BGR-CR-PH-0.13804361627026607"> <gmd:voice> <gco:CharacterString>+493036993413</gco:CharacterString> </gmd:voice> <gmd:facsimile> <gco:CharacterString>+493036993100</gco:CharacterString> </gmd:facsimile> </gmd:CI_Telephone> </gmd:phone> <gmd:address> <gmd:CI_Address id="BGR-CR-ADR-0.38767400148701114"> <gmd:deliveryPoint> <gco:CharacterString>Wilhelmstraße 25-30</gco:CharacterString> </gmd:deliveryPoint> <gmd:city> <gco:CharacterString>Berlin-Spandau</gco:CharacterString> </gmd:city> <gmd:postalCode> <gco:CharacterString>13593</gco:CharacterString> </gmd:postalCode> <gmd:country> <gco:CharacterString>Germany</gco:CharacterString> </gmd:country> <gmd:electronicMailAddress> <gco:CharacterString>tina.kollaske@bgr.de</gco:CharacterString> </gmd:electronicMailAddress> </gmd:CI_Address> </gmd:address> <gmd:onlineResource> <gmd:CI_OnlineResource id="BGR-CR-OR-0.7806757852958084"> <gmd:linkage> <gmd:URL>https://www.geozentrum-hannover.de/DE/Themen/Sammlungen-Grundlagen/Bohrkernlager/Bohrkernlager_kontinentale_Forschungsbohrungen/Bohrkernlager_kontinentale_Forschungsbohrungen_inhalt.html?nn=1554998</gmd:URL> </gmd:linkage> </gmd:CI_OnlineResource> </gmd:onlineResource> <gmd:hoursOfService> <gco:CharacterString>Office hours for phone contact</gco:CharacterString> </gmd:hoursOfService> </gmd:CI_Contact> </gmd:contactInfo> <gmd:role> <gmd:CI_RoleCode codeList="https://github.com/ISO-TC211/GOM/raw/master/isotc211_GOM_harmonizedOntology/19115/2006/iso19115CitationAndResponsiblePartyInformation.rdf" codeListValue="point Of Contact"/> </gmd:role> </gmd:CI_ResponsibleParty> </eposb:custodian> <eposb:custodianPeriod> <gml:TimePeriod> <gml:begin> <gml:TimeInstant> <gml:timePosition>2014-08-26Z</gml:timePosition> </gml:TimeInstant> </gml:begin> <gml:end> <gml:TimeInstant> <gml:timePosition indeterminatePosition="unknown"/> </gml:TimeInstant> </gml:end> </gml:TimePeriod> </eposb:custodianPeriod> </eposb:Custodian> </eposb:custodian> <eposb:custodian> <eposb:Custodian> <eposb:custodian> <gmd:CI_ResponsibleParty id="GFZ-ICDP-0.7434546114175876"> <gmd:individualName> <gco:CharacterString>Ronald Conze</gco:CharacterString> </gmd:individualName> <gmd:organisationName> <gco:CharacterString>International Continental Scientific Drilling Program (ICDP), GFZ German Research Centre for Geosciences</gco:CharacterString> </gmd:organisationName> <gmd:positionName> <gco:CharacterString>Data Management</gco:CharacterString> </gmd:positionName> <gmd:contactInfo> <gmd:CI_Contact id="GFZ-ICDP-0.6673700711215667"> <gmd:phone> <gmd:CI_Telephone id="GFZ-ICDP-PH-0.4021124987644924"> <gmd:voice> <gco:CharacterString>+493312881082</gco:CharacterString> </gmd:voice> </gmd:CI_Telephone> </gmd:phone> <gmd:address> <gmd:CI_Address id="GFZ-ICDP-ADR-0.2136704712666938"> <gmd:deliveryPoint> <gco:CharacterString> Telegrafenberg 69A</gco:CharacterString> </gmd:deliveryPoint> <gmd:city> <gco:CharacterString>Potsdam</gco:CharacterString> </gmd:city> <gmd:postalCode> <gco:CharacterString>14473</gco:CharacterString> </gmd:postalCode> <gmd:country> <gco:CharacterString>Germany</gco:CharacterString> </gmd:country> <gmd:electronicMailAddress> <gco:CharacterString>dm@icdp-online.org</gco:CharacterString> </gmd:electronicMailAddress> </gmd:CI_Address> </gmd:address> <gmd:onlineResource> <gmd:CI_OnlineResource id="GFZ-ICDP-OR-0.5830310096809925"> <gmd:linkage> <gmd:URL>https://www.icdp-online.org/contact/</gmd:URL> </gmd:linkage> </gmd:CI_OnlineResource> </gmd:onlineResource> <gmd:hoursOfService> <gco:CharacterString>Office hours for phone contact</gco:CharacterString> </gmd:hoursOfService> </gmd:CI_Contact> </gmd:contactInfo> <gmd:role> <gmd:CI_RoleCode codeList="https://github.com/ISO-TC211/GOM/raw/master/isotc211_GOM_harmonizedOntology/19115/2006/iso19115CitationAndResponsiblePartyInformation.rdf" codeListValue="point Of Contact"/> </gmd:role> </gmd:CI_ResponsibleParty> </eposb:custodian> <eposb:custodianPeriod> <gml:TimePeriod> <gml:begin> <gml:TimeInstant> <gml:timePosition>2014-04-28Z</gml:timePosition> </gml:TimeInstant> </gml:begin> <gml:end> <gml:TimeInstant> <gml:timePosition indeterminatePosition="unknown"/> </gml:TimeInstant> </gml:end> </gml:TimePeriod> </eposb:custodianPeriod> </eposb:Custodian> </eposb:custodian> <eposb:custodian> <eposb:Custodian> <eposb:custodian> <gmd:CI_ResponsibleParty id="UU-hl-0.29395763997482105"> <gmd:individualName> <gco:CharacterString>Henning Lorenz</gco:CharacterString> </gmd:individualName> <gmd:organisationName> <gco:CharacterString>Uppsala University, Department of Earth Sciences</gco:CharacterString> </gmd:organisationName> <gmd:positionName> <gco:CharacterString>Coordinator scientific drilling</gco:CharacterString> </gmd:positionName> <gmd:contactInfo> <gmd:CI_Contact id="UU-hl-0.11878810509892956"> <gmd:phone> <gmd:CI_Telephone id="UU-hl-PH-0.23649588336307037"> <gmd:voice> <gco:CharacterString>+464712324</gco:CharacterString> </gmd:voice> </gmd:CI_Telephone> </gmd:phone> <gmd:address> <gmd:CI_Address id="UU-hl-ADR-0.4861661940069918"> <gmd:deliveryPoint> <gco:CharacterString>Villavägen 16</gco:CharacterString> </gmd:deliveryPoint> <gmd:city> <gco:CharacterString>Uppsala</gco:CharacterString> </gmd:city> <gmd:postalCode> <gco:CharacterString>753 26</gco:CharacterString> </gmd:postalCode> <gmd:country> <gco:CharacterString>Sweden</gco:CharacterString> </gmd:country> <gmd:electronicMailAddress> <gco:CharacterString>henning.lorenz@geo.uu.se</gco:CharacterString> </gmd:electronicMailAddress> </gmd:CI_Address> </gmd:address> <gmd:onlineResource> <gmd:CI_OnlineResource id="UU-hl-OR-0.03214042262316463"> <gmd:linkage> <gmd:URL>https://katalog.uu.se/profile/?id=N0-558</gmd:URL> </gmd:linkage> </gmd:CI_OnlineResource> </gmd:onlineResource> <gmd:hoursOfService> <gco:CharacterString>Office hours for phone contact</gco:CharacterString> </gmd:hoursOfService> <gmd:contactInstructions> <gco:CharacterString>In case of problems, contact the organisation</gco:CharacterString> </gmd:contactInstructions> </gmd:CI_Contact> </gmd:contactInfo> <gmd:role> <gmd:CI_RoleCode codeList="https://github.com/ISO-TC211/GOM/raw/master/isotc211_GOM_harmonizedOntology/19115/2006/iso19115CitationAndResponsiblePartyInformation.rdf" codeListValue="point Of Contact"/> </gmd:role> </gmd:CI_ResponsibleParty> </eposb:custodian> <eposb:custodianPeriod> <gml:TimePeriod> <gml:begin> <gml:TimeInstant> <gml:timePosition>2014-04-28Z</gml:timePosition> </gml:TimeInstant> </gml:begin> <gml:end> <gml:TimeInstant> <gml:timePosition indeterminatePosition="unknown"/> </gml:TimeInstant> </gml:end> </gml:TimePeriod> </eposb:custodianPeriod> </eposb:Custodian> </eposb:custodian> <eposb:legalAccessLevel> <gmd:MD_LegalConstraints> <gmd:accessConstraints> <gmd:MD_RestrictionCode codeList="http://registry.it.csiro.au/def/isotc211/MD_RestrictionCode/licenceUnrestricted" codeListValue="http://registry.it.csiro.au/def/isotc211/MD_RestrictionCode/licenceUnrestricted"/> </gmd:accessConstraints> </gmd:MD_LegalConstraints> </eposb:legalAccessLevel> <eposb:length uom="http://qudt.org/vocab/unit/M">2495.8</eposb:length> <eposb:operator> <eposb:Operator> <eposb:operator> <gmd:CI_ResponsibleParty id="UU-hl-0.9143504675526685"> <gmd:individualName> <gco:CharacterString>Henning Lorenz</gco:CharacterString> </gmd:individualName> <gmd:organisationName> <gco:CharacterString>Uppsala University, Department of Earth Sciences</gco:CharacterString> </gmd:organisationName> <gmd:positionName> <gco:CharacterString>Coordinator scientific drilling</gco:CharacterString> </gmd:positionName> <gmd:contactInfo> <gmd:CI_Contact id="UU-hl-0.18274767816339588"> <gmd:phone> <gmd:CI_Telephone id="UU-hl-PH-0.7273875354447835"> <gmd:voice> <gco:CharacterString>+464712324</gco:CharacterString> </gmd:voice> </gmd:CI_Telephone> </gmd:phone> <gmd:address> <gmd:CI_Address id="UU-hl-ADR-0.1974118126204083"> <gmd:deliveryPoint> <gco:CharacterString>Villavägen 16</gco:CharacterString> </gmd:deliveryPoint> <gmd:city> <gco:CharacterString>Uppsala</gco:CharacterString> </gmd:city> <gmd:postalCode> <gco:CharacterString>753 26</gco:CharacterString> </gmd:postalCode> <gmd:country> <gco:CharacterString>Sweden</gco:CharacterString> </gmd:country> <gmd:electronicMailAddress> <gco:CharacterString>henning.lorenz@geo.uu.se</gco:CharacterString> </gmd:electronicMailAddress> </gmd:CI_Address> </gmd:address> <gmd:onlineResource> <gmd:CI_OnlineResource id="UU-hl-OR-0.6117317254600896"> <gmd:linkage> <gmd:URL>https://katalog.uu.se/profile/?id=N0-558</gmd:URL> </gmd:linkage> </gmd:CI_OnlineResource> </gmd:onlineResource> <gmd:hoursOfService> <gco:CharacterString>Office hours for phone contact</gco:CharacterString> </gmd:hoursOfService> <gmd:contactInstructions> <gco:CharacterString>In case of problems, contact the organisation</gco:CharacterString> </gmd:contactInstructions> </gmd:CI_Contact> </gmd:contactInfo> <gmd:role> <gmd:CI_RoleCode codeList="https://github.com/ISO-TC211/GOM/raw/master/isotc211_GOM_harmonizedOntology/19115/2006/iso19115CitationAndResponsiblePartyInformation.rdf" codeListValue="point Of Contact"/> </gmd:role> </gmd:CI_ResponsibleParty> </eposb:operator> <eposb:operatorPeriod> <gml:TimePeriod> <gml:begin> <gml:TimeInstant> <gml:timePosition>2014-04-28Z</gml:timePosition> </gml:TimeInstant> </gml:begin> <gml:end> <gml:TimeInstant> <gml:timePosition>2014-08-26Z</gml:timePosition> </gml:TimeInstant> </gml:end> </gml:TimePeriod> </eposb:operatorPeriod> </eposb:Operator> </eposb:operator> <eposb:purpose> <eposb:Purpose> <eposb:purpose xlink:href="https://data.geoscience.earth/ncl/BoreholePurpose/_multiDisciplinaryScientificResearch" xlink:title="multidisciplinary scientific research"/> <eposb:purposePeriod> <gml:TimePeriod> <gml:begin> <gml:TimeInstant> <gml:timePosition>2014-04-28Z</gml:timePosition> </gml:TimeInstant> </gml:begin> <gml:end> <gml:TimeInstant> <gml:timePosition indeterminatePosition="unknown"/> </gml:TimeInstant> </gml:end> </gml:TimePeriod> </eposb:purposePeriod> <eposb:purposeStatus xlink:href="http://www.opengis.net/def/nil/ogc/0/unknown" xlink:title="unknown"/> </eposb:Purpose> </eposb:purpose> <eposb:referenceElevation> <eposb:Elevation> <eposb:elevation axisLabels="elevation above sea level" srsDimension="3" srsName="https://epsg.io/4979" uomLabels="m">522.51</eposb:elevation> <eposb:elevationAccuracy> <gmd:DQ_AbsoluteExternalPositionalAccuracy id="SD-5054_1_A_collar-PosAcc"> <gmd:result> <gmd:DQ_QuantitativeResult id="SD-5054_1_A_collar-0.8607541881036749"> <gmd:valueUnit xlink:href="http://qudt.org/vocab/unit/M" xlink:title="m"/> <gmd:value> <gco:Record>0.1</gco:Record> </gmd:value> </gmd:DQ_QuantitativeResult> </gmd:result> </gmd:DQ_AbsoluteExternalPositionalAccuracy> </eposb:elevationAccuracy> <eposb:elevationMeasurementMethod xlink:href="https://dbpedia.org/resource/Real-time_kinematic_positioning" xlink:title="RTK GNSS"/> <eposb:elevationType xlink:href="https://data.geoscience.earth/ncl/ElevationType/naturalGroundSurface" xlink:title="natural ground surface"/> </eposb:Elevation> </eposb:referenceElevation> <eposb:startPoint xlink:href="natural land surface" xlink:title="https://data.geoscience.earth/ncl/StartPoint/naturalLandSurface"/> <eposb:status xlink:href="https://data.geoscience.earth/ncl/BoreholeStatus/drillingCompleted" xlink:title="drilling completed"/> <eposb:boreCollarPositionalAccuracy uom="http://qudt.org/vocab/unit/M">0.1</eposb:boreCollarPositionalAccuracy> <eposb:locationMeasurementMethod xlink:href="https://dbpedia.org/resource/Real-time_kinematic_positioning" xlink:title="RTK-GNSS"/> <eposb:accessibleDepth> <eposb:AccessibleDepth> <eposb:depthObservationTime> <gml:TimeInstant> <gml:description>Temperature logging probe lost in the hole, settled at bottom</gml:description> <gml:timePosition>2018-09-30Z</gml:timePosition> </gml:TimeInstant> </eposb:depthObservationTime> <eposb:depth uom="http://qudt.org/vocab/unit/M">2493.0</eposb:depth> </eposb:AccessibleDepth> </eposb:accessibleDepth> <eposb:locatedOnAdminUnit xlink:href="http://www.opengis.net/def/nil/ogc/0/unknown" xlink:title="unknown"/> <eposb:bholeHeadworks> <gwml2wc:BoreCollar gml:id="SD-5054_1_A_collar"> <gml:description>Casing in circular, shallow cellar made of concrete rings. Aluminum hood over cellar.</gml:description> <gml:name>5054_1_A_collar</gml:name> <gwml2wc:collarElevation axisLabels="elevation-depth" srsDimension="1" srsName="5613" uomLabels="m">522.510</gwml2wc:collarElevation> <gwml2wc:collarElevationType xlink:href="http://resource.gwml.org/def/collarElevationType/originElevation"/> <gwml2wc:collarHeadworkType xlink:href="https://data.geoscience.earth/ncl/CollarHeadworkType/hood" xlink:title="hood"/> <gwml2wc:collarLocation> <gml:Point srsDimension="3" srsName="http://www.opengis.net/gml/srs/epsg.xml#4979"> <gml:pos>13.202917 63.40163 522</gml:pos> </gml:Point> </gwml2wc:collarLocation> <gwml2wc:collarSeal> <gwml2wc:SealingComponent> <gwml2wc:sealingMaterial xlink:href="http://somedictionary/concrete" xlink:title="concrete"/> <gwml2wc:sealingType xlink:href="http://somedictionary/annularSealing" xlink:title="annular sealing"/> </gwml2wc:SealingComponent> </gwml2wc:collarSeal> </gwml2wc:BoreCollar> </eposb:bholeHeadworks> <eposb:bholeConstruction> <gwml2wc:Casing gml:id="SD-5054_1_A-casing-0.5873666952943014"> <gwml2wc:casingElement> <gwml2wc:CasingComponent gml:id="SD-5054_1_A-casing-0.000-3.000"> <gml:description>Surface casing</gml:description> <gwml2wc:from> <swe:Quantity> <swe:uom code="m"/> <swe:value>0.0</swe:value> </swe:Quantity> </gwml2wc:from> <gwml2wc:to> <swe:Quantity> <swe:uom code="m"/> <swe:value>3.0</swe:value> </swe:Quantity> </gwml2wc:to> <gwml2wc:casingMaterial xlink:href="http://www.sandre.eaufrance.fr/?urn=urn:sandre:donnees:154::CdElement:1:::referentiel:3.1:xml" xlink:title="steel"/> <gwml2wc:casingInternalDiameter> <swe:Quantity> <swe:uom code="m"/> <swe:value>0.1837</swe:value> </swe:Quantity> </gwml2wc:casingInternalDiameter> <gwml2wc:casingExternalDiameter> <swe:Quantity> <swe:uom code="m"/> <swe:value>0.1937</swe:value> </swe:Quantity> </gwml2wc:casingExternalDiameter> </gwml2wc:CasingComponent> </gwml2wc:casingElement> <gwml2wc:casingElement> <gwml2wc:CasingComponent gml:id="SD-5054_1_A-casing-0.000-103.000"> <gml:description>ODEX115 conductor casing</gml:description> <gwml2wc:from> <swe:Quantity> <swe:uom code="m"/> <swe:value>0.0</swe:value> </swe:Quantity> </gwml2wc:from> <gwml2wc:to> <swe:Quantity> <swe:uom code="m"/> <swe:value>103.0</swe:value> </swe:Quantity> </gwml2wc:to> <gwml2wc:casingMaterial xlink:href="http://www.sandre.eaufrance.fr/?urn=urn:sandre:donnees:154::CdElement:1:::referentiel:3.1:xml" xlink:title="steel"/> <gwml2wc:casingInternalDiameter> <swe:Quantity> <swe:uom code="m"/> <swe:value>0.1297</swe:value> </swe:Quantity> </gwml2wc:casingInternalDiameter> <gwml2wc:casingExternalDiameter> <swe:Quantity> <swe:uom code="m"/> <swe:value>0.1397</swe:value> </swe:Quantity> </gwml2wc:casingExternalDiameter> </gwml2wc:CasingComponent> </gwml2wc:casingElement> <gwml2wc:casingElement> <gwml2wc:CasingComponent gml:id="SD-5054_1_A-casing-0.000-109.700"> <gml:description>HWT casing</gml:description> <gwml2wc:from> <swe:Quantity> <swe:uom code="m"/> <swe:value>0.0</swe:value> </swe:Quantity> </gwml2wc:from> <gwml2wc:to> <swe:Quantity> <swe:uom code="m"/> <swe:value>109.7</swe:value> </swe:Quantity> </gwml2wc:to> <gwml2wc:casingMaterial xlink:href="http://www.sandre.eaufrance.fr/?urn=urn:sandre:donnees:154::CdElement:1:::referentiel:3.1:xml" xlink:title="steel"/> <gwml2wc:casingInternalDiameter> <swe:Quantity> <swe:uom code="m"/> <swe:value>0.1016</swe:value> </swe:Quantity> </gwml2wc:casingInternalDiameter> <gwml2wc:casingExternalDiameter> <swe:Quantity> <swe:uom code="m"/> <swe:value>0.1143</swe:value> </swe:Quantity> </gwml2wc:casingExternalDiameter> </gwml2wc:CasingComponent> </gwml2wc:casingElement> </gwml2wc:Casing> </eposb:bholeConstruction> <eposb:boreholeGeology xlink:href="https://www.geodata.rocks/GeologyLogs/SD-5054_1_A_on-site_full" xlink:title="SD-5054_1_A_on-site_full"/> <eposb:boreholeGeology xlink:href="https://www.geodata.rocks/GeologyLogs/SD-5054_1_A_on-site_lithology" xlink:title="SD-5054_1_A_on-site_lithology"/> <eposb:alias> <eposb:Alias gml:id="SD-5054_1_A-COSC-1"> <gml:identifier codeSpace="https://tools.ietf.org/html/rfc3629">https://www.geodata.rocks/Boreholes/SD-5054_1_A</gml:identifier> <gml:name>COSC-1 (Collisional Orogeny in the Scandinavian Caledonides)</gml:name> <eposb:origin> <gmd:CI_ResponsibleParty id="UU-hl-0.9817607635866358"> <gmd:individualName> <gco:CharacterString>Henning Lorenz</gco:CharacterString> </gmd:individualName> <gmd:organisationName> <gco:CharacterString>Uppsala University, Department of Earth Sciences</gco:CharacterString> </gmd:organisationName> <gmd:positionName> <gco:CharacterString>Coordinator scientific drilling</gco:CharacterString> </gmd:positionName> <gmd:contactInfo> <gmd:CI_Contact id="UU-hl-0.2523343104498188"> <gmd:phone> <gmd:CI_Telephone id="UU-hl-PH-0.6185493012925518"> <gmd:voice> <gco:CharacterString>+464712324</gco:CharacterString> </gmd:voice> </gmd:CI_Telephone> </gmd:phone> <gmd:address> <gmd:CI_Address id="UU-hl-ADR-0.20881476611055327"> <gmd:deliveryPoint> <gco:CharacterString>Villavägen 16</gco:CharacterString> </gmd:deliveryPoint> <gmd:city> <gco:CharacterString>Uppsala</gco:CharacterString> </gmd:city> <gmd:postalCode> <gco:CharacterString>753 26</gco:CharacterString> </gmd:postalCode> <gmd:country> <gco:CharacterString>Sweden</gco:CharacterString> </gmd:country> <gmd:electronicMailAddress> <gco:CharacterString>henning.lorenz@geo.uu.se</gco:CharacterString> </gmd:electronicMailAddress> </gmd:CI_Address> </gmd:address> <gmd:onlineResource> <gmd:CI_OnlineResource id="UU-hl-OR-0.35636354310312746"> <gmd:linkage> <gmd:URL>https://katalog.uu.se/profile/?id=N0-558</gmd:URL> </gmd:linkage> </gmd:CI_OnlineResource> </gmd:onlineResource> <gmd:hoursOfService> <gco:CharacterString>Office hours for phone contact</gco:CharacterString> </gmd:hoursOfService> <gmd:contactInstructions> <gco:CharacterString>In case of problems, contact the organisation</gco:CharacterString> </gmd:contactInstructions> </gmd:CI_Contact> </gmd:contactInfo> <gmd:role> <gmd:CI_RoleCode codeList="https://github.com/ISO-TC211/GOM/raw/master/isotc211_GOM_harmonizedOntology/19115/2006/iso19115CitationAndResponsiblePartyInformation.rdf" codeListValue="point Of Contact"/> </gmd:role> </gmd:CI_ResponsibleParty> </eposb:origin> <eposb:aliasValidityPeriod> <gml:TimePeriod> <gml:begin> <gml:TimeInstant> <gml:timePosition>2010-01-15Z</gml:timePosition> </gml:TimeInstant> </gml:begin> <gml:end> <gml:TimeInstant> <gml:timePosition indeterminatePosition="unknown"/> </gml:TimeInstant> </gml:end> </gml:TimePeriod> </eposb:aliasValidityPeriod> <eposb:borehole/> </eposb:Alias> </eposb:alias> </eposb:Borehole> </wfs:member> </wfs:FeatureCollection> <?xml version="1.0" ?> <wfs:FeatureCollection xmlns:wfs="http://www.opengis.net/wfs/2.0" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:gwml2="http://www.opengis.net/gwml-main/2.2" xmlns:swe="http://www.opengis.net/swe/2.0" xmlns:sams="http://www.opengis.net/samplingSpatial/2.0" xmlns:gsmlp="https://forge.brgm.fr/svnrepository/epos/trunk/schemas" xmlns:gml="http://www.opengis.net/gml/3.2" xmlns:gwml2wc="http://www.opengis.net/gwml-wellconstruction/2.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:eposb="https://data.geoscience.earth/def/eposb" xmlns:gco="http://www.isotc211.org/2005/gco" xmlns:gwml2w="http://www.opengis.net/gwml-well/2.2" xmlns:om="http://www.opengis.net/om/2.0" xmlns:sam="http://www.opengis.net/sampling/2.0" xmlns:gmd="http://www.isotc211.org/2005/gmd" xmlns:xlink="http://www.w3.org/1999/xlink" numberMatched="0" numberReturned="1" timeStamp="2023-09-12T10:04:09.511Z" xsi:schemaLocation="http://www.opengis.net/wfs/2.0 http://schemas.opengis.net/wfs/2.0/wfs.xsd https://data.geoscience.earth/def/eposb https://data.geoscience.earth/def/eposb.xsd http://www.opengis.net/gml/3.2 http://schemas.opengis.net/gml/3.2.1/gml.xsd"> <wfs:member> <eposb:Borehole gml:id="SD-5054_2_A"> <gml:description>The Collisional Orogeny in the Scandinavian Caledonides (COSC) scientific drilling project aims to characterise the structure and orogenic processes involved in a major collisional mountain belt by multi-disciplinary geoscientific research. Located in western central Sweden, the project has drilled two fully cored deep boreholes into the bedrock of the deeply eroded Early Paleozoic Caledonide Orogen. COSC-2 successfully recovered a continuous drill core to 2276 m depth from two boreholes (100 m to TD in COSC-2 A and 6 - 116 m in COSC-2 B). The retrieved geological section includes the lower part of the allochthons, the main décollement and basement rocks. Turbiditic greywackes were drilled from the bedrock surface at c. 5 m depth and down to c. 780 m (light blue in Fig. 2). Here, the borehole encountered a strongly sheared black shale formation, which is in accordance with the magnetotelluric site investigations. After c. 45 m, the black shales give way to a tectonically disturbed unit of sandstone, conglomerate and tuff, which extends downwards to c. 1250 m. At this depth, ignimbrites and volcanic porphyries were encountered for the first time in the borehole. They show only minor signs of deformation and are present in different varieties (green to reddish, different grain size) down to the total depth, interrupted by major (and some minor) dolerite intrusions between c. 1600 and c. 1930 m, which show clear signs of deformation (cataclasite, breccia). partially different from the expected geological section with respect to the depth to the main décollement and the expected rock types. COSC-2 was surveyed by a comprehensive post-drilling downhole logging campaign and a combined borehole/land seismic survey in autumn 2022.</gml:description> <gml:descriptionReference xlink:href="https://igsn.org/ICDP5054EH40001" xlink:title="IGSN registry entry"/> <gml:identifier codeSpace="https://tools.ietf.org/html/rfc3629">https://www.geodata.rocks/Boreholes/SD-5054_2_A</gml:identifier> <sam:sampledFeature xlink:href="https://sweet.jpl.nasa.gov/2.3/realmEarthReference.owl#EarthLithosphere" xlink:title="Lithosphere"/> <sam:relatedSamplingFeature> <sam:SamplingFeatureComplex> <sam:role xlink:href="https://data.geoscience.earth/ncl/RelatedSamplingFeatureRole/boreholeSegment" xlink:title="borehole segment"/> <sam:relatedSamplingFeature xlink:href="https://www.geodata.rocks/Segments/SD-5054_2_A-1" xlink:title="SD-5054_2_A-1_0.00-100.00"/> </sam:SamplingFeatureComplex> </sam:relatedSamplingFeature> <sam:relatedSamplingFeature> <sam:SamplingFeatureComplex> <sam:role xlink:href="https://data.geoscience.earth/ncl/RelatedSamplingFeatureRole/boreholeSegment" xlink:title="borehole segment"/> <sam:relatedSamplingFeature xlink:href="https://www.geodata.rocks/Segments/SD-5054_2_A-2" xlink:title="SD-5054_2_A-2_100.00-1575.75"/> </sam:SamplingFeatureComplex> </sam:relatedSamplingFeature> <sam:relatedSamplingFeature> <sam:SamplingFeatureComplex> <sam:role xlink:href="https://data.geoscience.earth/ncl/RelatedSamplingFeatureRole/boreholeSegment" xlink:title="borehole segment"/> <sam:relatedSamplingFeature xlink:href="https://www.geodata.rocks/Segments/SD-5054_2_A-3" xlink:title="SD-5054_2_A-3_1575.75-1877.75"/> </sam:SamplingFeatureComplex> </sam:relatedSamplingFeature> <sam:relatedSamplingFeature> <sam:SamplingFeatureComplex> <sam:role xlink:href="https://data.geoscience.earth/ncl/RelatedSamplingFeatureRole/boreholeSegment" xlink:title="borehole segment"/> <sam:relatedSamplingFeature xlink:href="https://www.geodata.rocks/Segments/SD-5054_2_A-4" xlink:title="SD-5054_2_A-4_1877.75-2276.05"/> </sam:SamplingFeatureComplex> </sam:relatedSamplingFeature> <sams:shape> <gml:LineString srsDimension="3" srsName="http://www.opengis.net/gml/srs/epsg.xml#4979"> <gml:posList>13.52647969 63.31244584 320.25 13.52647969 63.31244584 318.720068 13.52647979 63.31244583 317.72008 13.52647993 63.31244581 316.72011 13.5264801 63.31244579 315.72015 13.52648031 63.31244577 314.72021 13.52648055 63.31244575 313.72028 13.52648082 63.31244572 312.72038 13.52648113 63.31244569 311.72051 13.52648148 63.31244566 310.72066 13.52648186 63.31244563 309.72085 13.52648227 63.3124456 308.7211 13.52648272 63.31244557 307.7213 13.52648321 63.31244554 306.7216 13.52648373 63.31244551 305.722 13.52648428 63.31244548 304.7224 13.52648487 63.31244546 303.7228 13.5264855 63.31244543 302.7233 13.52648616 63.31244541 301.7239 13.52648686 63.31244539 300.7245 13.52648759 63.31244537 299.7252 13.52648836 63.31244535 298.7259 13.52648916 63.31244534 297.7267 13.52649 63.31244533 296.7276 13.52649087 63.31244533 295.7286 13.52649178 63.31244533 294.7296 13.52649272 63.31244534 293.7307 13.5264937 63.31244535 292.7319 13.52649471 63.31244537 291.7332 13.52649575 63.31244539 290.7346 13.52649683 63.31244542 289.736 13.52649795 63.31244546 288.7376 13.52649909 63.31244551 287.7393 13.52650027 63.31244556 286.741 13.52650148 63.31244562 285.7429 13.52650273 63.31244569 284.7449 13.52650401 63.31244577 283.747 13.52650532 63.31244585 282.7492 13.52650666 63.31244595 281.7515 13.52650803 63.31244605 280.7539 13.52650944 63.31244617 279.7565 13.52651087 63.3124463 278.7592 13.52651234 63.31244643 277.762 13.52651384 63.31244658 276.765 13.52651536 63.31244674 275.7681 13.52651692 63.31244691 274.7713 13.5265185 63.31244709 273.7747 13.52652012 63.31244729 272.7782 13.52652176 63.3124475 271.7818 13.52652343 63.31244772 270.7856 13.52652513 63.31244796 269.7896 13.52652684 63.3124482 268.7937 13.52652857 63.31244844 267.7978 13.52653029 63.31244868 266.8019 13.52653202 63.31244891 265.806 13.52653375 63.31244914 264.8101 13.52653549 63.31244937 263.8142 13.52653723 63.31244959 262.8183 13.52653897 63.31244981 261.8224 13.52654072 63.31245002 260.8266 13.52654247 63.31245023 259.8307 13.52654422 63.31245043 258.8348 13.52654597 63.31245063 257.8389 13.52654773 63.31245083 256.843 13.52654949 63.31245102 255.8472 13.52655125 63.31245121 254.8513 13.52655302 63.31245139 253.8554 13.52655478 63.31245157 252.8595 13.52655655 63.31245175 251.8637 13.52655833 63.31245192 250.8678 13.5265601 63.31245208 249.872 13.52656188 63.31245225 248.8761 13.52656366 63.3124524 247.8802 13.52656544 63.31245256 246.8844 13.52656723 63.31245271 245.8885 13.52656901 63.31245285 244.8927 13.5265708 63.31245299 243.8968 13.52657259 63.31245313 242.901 13.52657438 63.31245326 241.9051 13.52657618 63.31245339 240.9093 13.52657798 63.31245351 239.9134 13.52657977 63.31245363 238.9176 13.52658157 63.31245375 237.9218 13.52658338 63.31245386 236.9259 13.52658518 63.31245396 235.9301 13.52658699 63.31245406 234.9342 13.52658879 63.31245416 233.9384 13.5265906 63.31245425 232.9426 13.52659241 63.31245434 231.9468 13.52659422 63.31245443 230.9509 13.52659604 63.31245451 229.9551 13.52659785 63.31245458 228.9593 13.52659967 63.31245465 227.9635 13.52660148 63.31245472 226.9676 13.5266033 63.31245478 225.9718 13.52660512 63.31245484 224.976 13.52660694 63.31245489 223.9802 13.52660876 63.31245494 222.9844 13.52661059 63.31245498 221.9886 13.52661241 63.31245502 220.9928 13.52661424 63.31245506 219.997 13.52661606 63.3124551 219.0012 13.52661789 63.31245514 218.005 13.52661972 63.31245518 217.01 13.52662155 63.31245522 216.014 13.52662338 63.31245526 215.018 13.52662521 63.31245529 214.022 13.52662705 63.31245533 213.027 13.52662888 63.31245537 212.031 13.52663072 63.31245541 211.035 13.52663256 63.31245545 210.039 13.5266344 63.31245549 209.044 13.52663624 63.31245553 208.048 13.52663808 63.31245557 207.052 13.52663992 63.31245561 206.056 13.52664177 63.31245565 205.061 13.52664362 63.3124557 204.065 13.52664546 63.31245574 203.069 13.52664731 63.31245578 202.074 13.52664916 63.31245582 201.078 13.52665102 63.31245586 200.082 13.52665287 63.3124559 199.087 13.52665472 63.31245595 198.091 13.52665658 63.31245599 197.095 13.52665844 63.31245603 196.1 13.5266603 63.31245607 195.104 13.52666216 63.31245612 194.108 13.52666402 63.31245616 193.113 13.52666588 63.3124562 192.117 13.52666774 63.31245624 191.122 13.52666961 63.31245629 190.126 13.52667148 63.31245633 189.13 13.52667334 63.31245638 188.135 13.52667521 63.31245642 187.139 13.52667709 63.31245646 186.144 13.52667896 63.31245651 185.148 13.52668083 63.31245655 184.152 13.52668271 63.3124566 183.157 13.52668458 63.31245664 182.161 13.52668646 63.31245669 181.166 13.52668834 63.31245673 180.17 13.52669022 63.31245678 179.175 13.5266921 63.31245683 178.179 13.52669399 63.31245687 177.184 13.52669587 63.31245692 176.188 13.52669776 63.31245696 175.193 13.52669964 63.31245701 174.197 13.52670153 63.31245706 173.202 13.52670342 63.3124571 172.206 13.52670531 63.31245715 171.211 13.52670721 63.3124572 170.215 13.5267091 63.31245725 169.22 13.526711 63.31245729 168.224 13.52671289 63.31245734 167.229 13.52671479 63.31245739 166.233 13.52671669 63.31245744 165.238 13.52671859 63.31245749 164.242 13.52672049 63.31245754 163.247 13.5267224 63.31245758 162.252 13.5267243 63.31245763 161.256 13.52672621 63.31245768 160.261 13.52672812 63.31245773 159.265 13.52673003 63.31245778 158.27 13.52673195 63.31245782 157.275 13.52673387 63.31245787 156.279 13.52673579 63.31245791 155.284 13.52673772 63.31245795 154.289 13.52673965 63.31245799 153.293 13.52674158 63.31245803 152.298 13.52674352 63.31245807 151.303 13.52674545 63.31245811 150.307 13.5267474 63.31245815 149.312 13.52674934 63.31245818 148.317 13.52675129 63.31245822 147.322 13.52675324 63.31245825 146.327 13.52675519 63.31245828 145.331 13.52675715 63.31245831 144.336 13.52675911 63.31245834 143.341 13.52676108 63.31245837 142.346 13.52676304 63.3124584 141.351 13.52676501 63.31245842 140.356 13.52676698 63.31245845 139.361 13.52676896 63.31245847 138.365 13.52677094 63.31245849 137.37 13.52677292 63.31245852 136.375 13.52677491 63.31245854 135.38 13.52677689 63.31245856 134.385 13.52677889 63.31245857 133.39 13.52678088 63.31245859 132.395 13.52678288 63.31245861 131.4 13.52678488 63.31245862 130.405 13.52678688 63.31245863 129.41 13.52678889 63.31245864 128.416 13.5267909 63.31245865 127.421 13.52679291 63.31245866 126.426 13.52679493 63.31245867 125.431 13.52679695 63.31245868 124.436 13.52679897 63.31245868 123.441 13.52680099 63.31245869 122.446 13.52680302 63.31245869 121.451 13.52680505 63.31245869 120.457 13.52680709 63.3124587 119.462 13.52680912 63.3124587 118.467 13.52681115 63.3124587 117.472 13.52681319 63.3124587 116.477 13.52681523 63.3124587 115.483 13.52681727 63.3124587 114.488 13.52681931 63.3124587 113.493 13.52682136 63.31245871 112.498 13.5268234 63.31245871 111.504 13.52682545 63.31245871 110.509 13.52682749 63.31245871 109.514 13.52682954 63.31245871 108.52 13.52683159 63.31245871 107.525 13.52683365 63.31245871 106.53 13.5268357 63.31245871 105.535 13.52683776 63.31245871 104.541 13.52683981 63.31245871 103.546 13.52684187 63.31245871 102.551 13.52684393 63.31245871 101.557 13.52684599 63.3124587 100.562 13.52684806 63.3124587 99.567 13.52685012 63.3124587 98.573 13.52685219 63.3124587 97.578 13.52685426 63.3124587 96.584 13.52685633 63.3124587 95.589 13.5268584 63.31245869 94.594 13.52686047 63.31245869 93.6 13.52686254 63.31245869 92.605 13.52686462 63.31245869 91.611 13.52686669 63.31245869 90.616 13.52686877 63.31245868 89.622 13.52687085 63.31245868 88.627 13.52687293 63.31245868 87.632 13.52687502 63.31245867 86.638 13.5268771 63.31245867 85.643 13.52687919 63.31245867 84.649 13.52688128 63.31245866 83.654 13.52688337 63.31245866 82.66 13.52688546 63.31245865 81.665 13.52688755 63.31245865 80.671 13.52688964 63.31245865 79.676 13.52689174 63.31245864 78.682 13.52689384 63.31245864 77.687 13.52689594 63.31245863 76.693 13.52689804 63.31245863 75.699 13.52690014 63.31245862 74.704 13.52690224 63.31245862 73.71 13.52690435 63.31245861 72.715 13.52690645 63.31245861 71.721 13.52690856 63.3124586 70.726 13.52691067 63.31245859 69.732 13.52691278 63.31245859 68.738 13.5269149 63.31245858 67.743 13.52691701 63.31245857 66.749 13.52691913 63.31245857 65.755 13.52692124 63.31245856 64.76 13.52692336 63.31245855 63.766 13.52692548 63.31245855 62.772 13.5269276 63.31245854 61.777 13.52692973 63.31245853 60.783 13.52693185 63.31245853 59.789 13.52693398 63.31245852 58.794 13.52693611 63.31245851 57.8 13.52693824 63.31245851 56.806 13.52694037 63.3124585 55.811 13.52694251 63.3124585 54.817 13.52694465 63.3124585 53.823 13.52694678 63.3124585 52.829 13.52694893 63.31245849 51.834 13.52695107 63.31245849 50.84 13.52695321 63.31245849 49.846 13.52695536 63.31245849 48.852 13.52695751 63.3124585 47.858 13.52695966 63.3124585 46.863 13.52696182 63.3124585 45.869 13.52696397 63.3124585 44.875 13.52696613 63.31245851 43.881 13.52696829 63.31245851 42.887 13.52697045 63.31245852 41.893 13.52697261 63.31245853 40.899 13.52697478 63.31245853 39.905 13.52697694 63.31245854 38.91 13.52697911 63.31245855 37.916 13.52698129 63.31245856 36.922 13.52698346 63.31245857 35.928 13.52698563 63.31245858 34.934 13.52698781 63.31245859 33.94 13.52698999 63.3124586 32.946 13.52699217 63.31245862 31.952 13.52699435 63.31245863 30.958 13.52699654 63.31245864 29.964 13.52699872 63.31245866 28.97 13.52700091 63.31245868 27.976 13.5270031 63.31245869 26.982 13.5270053 63.31245871 25.988 13.52700749 63.31245873 24.994 13.52700969 63.31245875 24.001 13.52701189 63.31245877 23.007 13.52701409 63.31245879 22.013 13.52701629 63.31245881 21.019 13.5270185 63.31245883 20.025 13.5270207 63.31245885 19.031 13.52702291 63.31245887 18.037 13.52702513 63.31245889 17.043 13.52702734 63.31245891 16.05 13.52702956 63.31245892 15.056 13.52703178 63.31245894 14.062 13.527034 63.31245896 13.068 13.52703622 63.31245897 12.074 13.52703845 63.31245899 11.081 13.52704068 63.312459 10.087 13.52704291 63.31245901 9.093 13.52704514 63.31245903 8.1 13.52704738 63.31245904 7.106 13.52704961 63.31245905 6.112 13.52705186 63.31245906 5.118 13.5270541 63.31245907 4.125 13.52705634 63.31245908 3.131 13.52705859 63.31245909 2.138 13.52706084 63.3124591 1.144 13.52706309 63.3124591 0.15 13.52706535 63.31245911 -0.843 13.5270676 63.31245912 -1.837 13.52706986 63.31245912 -2.83 13.52707213 63.31245913 -3.824 13.52707439 63.31245913 -4.818 13.52707666 63.31245913 -5.811 13.52707893 63.31245914 -6.805 13.5270812 63.31245914 -7.798 13.52708347 63.31245914 -8.792 13.52708575 63.31245914 -9.785 13.52708802 63.31245914 -10.779 13.52709031 63.31245914 -11.772 13.52709259 63.31245914 -12.765 13.52709487 63.31245913 -13.759 13.52709716 63.31245913 -14.752 13.52709945 63.31245913 -15.746 13.52710174 63.31245912 -16.739 13.52710404 63.31245911 -17.732 13.52710634 63.31245911 -18.726 13.52710863 63.3124591 -19.719 13.52711093 63.31245909 -20.712 13.52711324 63.31245909 -21.706 13.52711555 63.31245908 -22.699 13.52711785 63.31245907 -23.692 13.52712017 63.31245906 -24.686 13.52712248 63.31245904 -25.679 13.52712479 63.31245903 -26.672 13.52712711 63.31245902 -27.665 13.52712943 63.31245901 -28.659 13.52713175 63.31245899 -29.652 13.52713408 63.31245898 -30.645 13.5271364 63.31245896 -31.638 13.52713873 63.31245894 -32.631 13.52714106 63.31245892 -33.624 13.52714339 63.3124589 -34.618 13.52714572 63.31245887 -35.611 13.52714805 63.31245885 -36.604 13.52715039 63.31245882 -37.597 13.52715272 63.31245879 -38.59 13.52715506 63.31245876 -39.583 13.5271574 63.31245873 -40.576 13.52715974 63.3124587 -41.569 13.52716209 63.31245866 -42.562 13.52716443 63.31245863 -43.556 13.52716678 63.31245859 -44.549 13.52716912 63.31245855 -45.542 13.52717147 63.31245851 -46.535 13.52717382 63.31245847 -47.528 13.52717617 63.31245842 -48.521 13.52717853 63.31245838 -49.514 13.52718088 63.31245833 -50.507 13.52718324 63.31245828 -51.5 13.52718559 63.31245823 -52.493 13.52718795 63.31245818 -53.486 13.52719031 63.31245813 -54.479 13.52719268 63.31245807 -55.472 13.52719504 63.31245802 -56.465 13.52719741 63.31245796 -57.457 13.52719977 63.3124579 -58.45 13.52720214 63.31245784 -59.443 13.52720451 63.31245778 -60.436 13.52720688 63.31245771 -61.429 13.52720926 63.31245765 -62.422 13.52721163 63.31245758 -63.415 13.527214 63.31245751 -64.408 13.52721638 63.31245744 -65.401 13.52721876 63.31245737 -66.393 13.52722114 63.3124573 -67.386 13.52722352 63.31245722 -68.379 13.5272259 63.31245715 -69.372 13.52722828 63.31245707 -70.365 13.52723067 63.31245699 -71.357 13.52723306 63.31245691 -72.35 13.52723544 63.31245682 -73.343 13.52723783 63.31245674 -74.336 13.52724023 63.31245665 -75.329 13.52724262 63.31245657 -76.321 13.52724501 63.31245648 -77.314 13.52724741 63.31245639 -78.307 13.5272498 63.31245629 -79.299 13.5272522 63.3124562 -80.292 13.52725459 63.3124561 -81.285 13.52725699 63.31245601 -82.278 13.52725938 63.31245591 -83.27 13.52726178 63.31245581 -84.263 13.52726418 63.31245571 -85.256 13.52726657 63.31245561 -86.248 13.52726897 63.3124555 -87.241 13.52727136 63.3124554 -88.234 13.52727376 63.31245529 -89.226 13.52727616 63.31245519 -90.219 13.52727855 63.31245508 -91.212 13.52728095 63.31245497 -92.205 13.52728335 63.31245485 -93.197 13.52728574 63.31245474 -94.19 13.52728814 63.31245463 -95.183 13.52729053 63.31245451 -96.175 13.52729293 63.31245439 -97.168 13.52729533 63.31245427 -98.161 13.52729772 63.31245415 -99.153 13.52730012 63.31245403 -100.146 13.52730252 63.31245391 -101.139 13.52730491 63.31245378 -102.131 13.52730731 63.31245366 -103.124 13.5273097 63.31245353 -104.117 13.5273121 63.3124534 -105.109 13.5273145 63.31245327 -106.102 13.52731689 63.31245314 -107.095 13.52731929 63.31245301 -108.087 13.52732169 63.31245287 -109.08 13.52732408 63.31245274 -110.073 13.52732648 63.3124526 -111.065 13.52732887 63.31245246 -112.058 13.52733127 63.31245232 -113.05 13.52733367 63.31245218 -114.043 13.52733606 63.31245204 -115.036 13.52733846 63.31245189 -116.028 13.52734085 63.31245175 -117.021 13.52734325 63.3124516 -118.014 13.52734564 63.31245145 -119.006 13.52734804 63.3124513 -119.999 13.52735044 63.31245115 -120.992 13.52735283 63.312451 -121.984 13.52735523 63.31245084 -122.977 13.52735762 63.31245069 -123.969 13.52736002 63.31245053 -124.962 13.52736241 63.31245037 -125.955 13.5273648 63.31245021 -126.947 13.5273672 63.31245005 -127.94 13.52736959 63.31244989 -128.932 13.52737199 63.31244973 -129.925 13.52737438 63.31244956 -130.918 13.52737678 63.31244939 -131.91 13.52737917 63.31244923 -132.903 13.52738156 63.31244906 -133.895 13.52738396 63.31244888 -134.888 13.52738635 63.31244871 -135.881 13.52738874 63.31244854 -136.873 13.52739114 63.31244836 -137.866 13.52739353 63.31244818 -138.858 13.52739592 63.31244801 -139.851 13.52739832 63.31244783 -140.844 13.52740071 63.31244764 -141.836 13.5274031 63.31244746 -142.829 13.52740549 63.31244728 -143.821 13.52740788 63.31244709 -144.814 13.52741028 63.3124469 -145.807 13.52741267 63.31244672 -146.799 13.52741506 63.31244653 -147.792 13.52741745 63.31244633 -148.784 13.52741984 63.31244614 -149.777 13.52742223 63.31244595 -150.769 13.52742462 63.31244575 -151.762 13.52742701 63.31244555 -152.754 13.5274294 63.31244535 -153.747 13.52743179 63.31244515 -154.74 13.52743418 63.31244495 -155.732 13.52743657 63.31244475 -156.725 13.52743896 63.31244454 -157.717 13.52744135 63.31244434 -158.71 13.52744373 63.31244413 -159.702 13.52744612 63.31244392 -160.695 13.52744851 63.31244371 -161.687 13.5274509 63.3124435 -162.68 13.52745328 63.31244329 -163.672 13.52745567 63.31244307 -164.665 13.52745806 63.31244285 -165.658 13.52746044 63.31244264 -166.65 13.52746283 63.31244242 -167.643 13.52746521 63.3124422 -168.635 13.5274676 63.31244198 -169.628 13.52746998 63.31244175 -170.62 13.52747237 63.31244153 -171.613 13.52747475 63.3124413 -172.605 13.52747714 63.31244107 -173.598 13.52747952 63.31244084 -174.59 13.5274819 63.31244061 -175.583 13.52748429 63.31244038 -176.575 13.52748667 63.31244015 -177.568 13.52748905 63.31243991 -178.56 13.52749143 63.31243968 -179.553 13.52749381 63.31243944 -180.545 13.52749618 63.3124392 -181.538 13.52749856 63.31243897 -182.53 13.52750093 63.31243873 -183.523 13.5275033 63.31243849 -184.515 13.52750566 63.31243825 -185.508 13.52750803 63.31243801 -186.501 13.52751039 63.31243777 -187.493 13.52751275 63.31243753 -188.486 13.52751511 63.31243729 -189.479 13.52751747 63.31243705 -190.471 13.52751982 63.31243681 -191.464 13.52752218 63.31243657 -192.456 13.52752453 63.31243632 -193.449 13.52752688 63.31243608 -194.442 13.52752922 63.31243584 -195.434 13.52753157 63.31243559 -196.427 13.52753391 63.31243535 -197.42 13.52753625 63.3124351 -198.413 13.52753859 63.31243485 -199.405 13.52754093 63.31243461 -200.398 13.52754326 63.31243436 -201.391 13.5275456 63.31243411 -202.384 13.52754793 63.31243386 -203.376 13.52755026 63.31243362 -204.369 13.52755258 63.31243337 -205.362 13.52755491 63.31243312 -206.355 13.52755723 63.31243287 -207.347 13.52755955 63.31243262 -208.34 13.52756187 63.31243236 -209.333 13.52756418 63.31243211 -210.326 13.5275665 63.31243186 -211.319 13.52756881 63.31243161 -212.312 13.52757112 63.31243135 -213.305 13.52757343 63.3124311 -214.298 13.52757574 63.31243085 -215.29 13.52757804 63.31243059 -216.283 13.52758034 63.31243034 -217.276 13.52758264 63.31243008 -218.269 13.52758494 63.31242982 -219.262 13.52758724 63.31242957 -220.255 13.52758953 63.31242931 -221.248 13.52759182 63.31242905 -222.241 13.52759411 63.31242879 -223.234 13.5275964 63.31242854 -224.227 13.52759869 63.31242828 -225.22 13.52760097 63.31242802 -226.213 13.52760325 63.31242776 -227.206 13.52760553 63.3124275 -228.199 13.52760781 63.31242724 -229.192 13.52761008 63.31242698 -230.185 13.52761235 63.31242673 -231.178 13.52761462 63.31242647 -232.171 13.52761688 63.31242622 -233.164 13.52761914 63.31242598 -234.158 13.5276214 63.31242573 -235.151 13.52762366 63.31242548 -236.144 13.52762591 63.31242524 -237.137 13.52762816 63.312425 -238.131 13.5276304 63.31242476 -239.124 13.52763265 63.31242453 -240.117 13.52763489 63.31242429 -241.11 13.52763713 63.31242406 -242.104 13.52763936 63.31242383 -243.097 13.52764159 63.3124236 -244.091 13.52764382 63.31242337 -245.084 13.52764605 63.31242315 -246.077 13.52764827 63.31242292 -247.071 13.52765049 63.3124227 -248.064 13.5276527 63.31242248 -249.058 13.52765491 63.31242227 -250.052 13.52765712 63.31242205 -251.045 13.52765933 63.31242184 -252.039 13.52766153 63.31242162 -253.032 13.52766373 63.31242141 -254.026 13.52766593 63.31242121 -255.02 13.52766812 63.312421 -256.013 13.52767031 63.3124208 -257.007 13.5276725 63.31242059 -258.001 13.52767469 63.31242039 -258.994 13.52767687 63.31242019 -259.988 13.52767904 63.31242 -260.982 13.52768122 63.3124198 -261.976 13.52768339 63.31241961 -262.97 13.52768556 63.31241942 -263.963 13.52768772 63.31241923 -264.957 13.52768988 63.31241904 -265.951 13.52769204 63.31241885 -266.945 13.5276942 63.31241867 -267.939 13.52769635 63.31241849 -268.933 13.5276985 63.31241831 -269.927 13.52770064 63.31241813 -270.921 13.52770278 63.31241795 -271.915 13.52770492 63.31241778 -272.909 13.52770706 63.3124176 -273.903 13.52770919 63.31241743 -274.897 13.52771132 63.31241726 -275.891 13.52771344 63.3124171 -276.885 13.52771557 63.31241693 -277.88 13.52771769 63.31241676 -278.874 13.52771981 63.31241659 -279.868 13.52772192 63.31241642 -280.862 13.52772404 63.31241625 -281.856 13.52772615 63.31241608 -282.85 13.52772826 63.31241591 -283.845 13.52773038 63.31241574 -284.839 13.52773249 63.31241557 -285.833 13.52773459 63.31241539 -286.827 13.5277367 63.31241522 -287.822 13.5277388 63.31241505 -288.816 13.5277409 63.31241487 -289.81 13.52774301 63.31241469 -290.804 13.5277451 63.31241452 -291.799 13.5277472 63.31241434 -292.793 13.5277493 63.31241416 -293.787 13.52775139 63.31241398 -294.781 13.52775348 63.3124138 -295.776 13.52775557 63.31241362 -296.77 13.52775766 63.31241344 -297.764 13.52775975 63.31241326 -298.759 13.52776183 63.31241308 -299.753 13.52776392 63.3124129 -300.747 13.527766 63.31241271 -301.742 13.52776808 63.31241253 -302.736 13.52777016 63.31241234 -303.73 13.52777224 63.31241216 -304.725 13.52777431 63.31241197 -305.719 13.52777639 63.31241179 -306.713 13.52777846 63.3124116 -307.708 13.52778053 63.31241141 -308.702 13.5277826 63.31241122 -309.696 13.52778466 63.31241103 -310.691 13.52778673 63.31241084 -311.685 13.52778879 63.31241065 -312.68 13.52779085 63.31241046 -313.674 13.52779291 63.31241027 -314.669 13.52779497 63.31241007 -315.663 13.52779703 63.31240988 -316.657 13.52779908 63.31240969 -317.652 13.52780113 63.31240949 -318.646 13.52780319 63.3124093 -319.641 13.52780524 63.3124091 -320.635 13.52780728 63.3124089 -321.63 13.52780933 63.31240871 -322.624 13.52781137 63.31240851 -323.619 13.52781342 63.31240831 -324.613 13.52781546 63.31240811 -325.608 13.5278175 63.31240791 -326.602 13.52781953 63.31240771 -327.597 13.52782157 63.31240751 -328.591 13.52782361 63.31240731 -329.586 13.52782564 63.3124071 -330.58 13.52782767 63.3124069 -331.575 13.52782969 63.3124067 -332.569 13.52783172 63.31240649 -333.564 13.52783375 63.31240629 -334.559 13.52783577 63.31240609 -335.553 13.52783779 63.31240588 -336.548 13.52783981 63.31240568 -337.542 13.52784182 63.31240547 -338.537 13.52784384 63.31240526 -339.532 13.52784585 63.31240506 -340.526 13.52784786 63.31240485 -341.521 13.52784987 63.31240464 -342.516 13.52785188 63.31240443 -343.51 13.52785389 63.31240422 -344.505 13.52785589 63.31240401 -345.5 13.52785789 63.31240381 -346.494 13.52785989 63.3124036 -347.489 13.52786189 63.31240338 -348.484 13.52786389 63.31240317 -349.478 13.52786588 63.31240296 -350.473 13.52786788 63.31240275 -351.468 13.52786987 63.31240254 -352.462 13.52787186 63.31240233 -353.457 13.52787384 63.31240211 -354.452 13.52787583 63.3124019 -355.447 13.52787781 63.31240168 -356.441 13.52787979 63.31240147 -357.436 13.52788177 63.31240125 -358.431 13.52788375 63.31240104 -359.426 13.52788572 63.31240082 -360.421 13.5278877 63.31240061 -361.415 13.52788967 63.31240039 -362.41 13.52789164 63.31240017 -363.405 13.52789361 63.31239995 -364.4 13.52789557 63.31239974 -365.395 13.52789754 63.31239952 -366.39 13.5278995 63.3123993 -367.384 13.52790146 63.31239908 -368.379 13.52790342 63.31239886 -369.374 13.52790538 63.31239864 -370.369 13.52790733 63.31239842 -371.364 13.52790928 63.3123982 -372.359 13.52791124 63.31239797 -373.354 13.52791319 63.31239775 -374.349 13.52791513 63.31239753 -375.344 13.52791708 63.31239731 -376.338 13.52791902 63.31239708 -377.333 13.52792096 63.31239686 -378.328 13.5279229 63.31239663 -379.323 13.52792483 63.3123964 -380.318 13.52792676 63.31239618 -381.313 13.52792868 63.31239595 -382.308 13.52793061 63.31239571 -383.303 13.52793253 63.31239548 -384.298 13.52793444 63.31239525 -385.293 13.52793635 63.31239501 -386.288 13.52793826 63.31239477 -387.284 13.52794016 63.31239454 -388.279 13.52794206 63.3123943 -389.274 13.52794396 63.31239405 -390.269 13.52794585 63.31239381 -391.264 13.52794774 63.31239357 -392.259 13.52794963 63.31239332 -393.254 13.52795151 63.31239308 -394.249 13.52795339 63.31239283 -395.245 13.52795526 63.31239258 -396.24 13.52795713 63.31239233 -397.235 13.527959 63.31239208 -398.23 13.52796086 63.31239183 -399.225 13.52796272 63.31239157 -400.221 13.52796458 63.31239132 -401.216 13.52796643 63.31239106 -402.211 13.52796828 63.3123908 -403.206 13.52797013 63.31239054 -404.202 13.52797197 63.31239028 -405.197 13.52797381 63.31239002 -406.192 13.52797564 63.31238976 -407.188 13.52797747 63.3123895 -408.183 13.5279793 63.31238923 -409.178 13.52798112 63.31238897 -410.174 13.52798294 63.3123887 -411.169 13.52798476 63.31238843 -412.165 13.52798657 63.31238816 -413.16 13.52798838 63.31238789 -414.155 13.52799018 63.31238762 -415.151 13.52799198 63.31238734 -416.146 13.52799378 63.31238707 -417.142 13.52799557 63.31238679 -418.137 13.52799736 63.31238652 -419.133 13.52799915 63.31238624 -420.128 13.52800093 63.31238596 -421.124 13.52800271 63.31238568 -422.119 13.52800448 63.3123854 -423.115 13.52800625 63.31238511 -424.11 13.52800802 63.31238483 -425.106 13.52800978 63.31238455 -426.102 13.52801155 63.31238426 -427.097 13.5280133 63.31238397 -428.093 13.52801506 63.31238369 -429.088 13.52801682 63.3123834 -430.084 13.52801858 63.31238311 -431.08 13.52802034 63.31238283 -432.075 13.52802209 63.31238254 -433.071 13.52802385 63.31238225 -434.066 13.5280256 63.31238196 -435.062 13.52802735 63.31238167 -436.058 13.52802911 63.31238138 -437.053 13.52803086 63.31238109 -438.049 13.52803261 63.3123808 -439.044 13.52803436 63.31238051 -440.04 13.52803611 63.31238022 -441.036 13.52803786 63.31237993 -442.031 13.52803961 63.31237964 -443.027 13.52804136 63.31237935 -444.023 13.52804311 63.31237906 -445.018 13.52804486 63.31237877 -446.014 13.52804661 63.31237848 -447.009 13.52804835 63.31237818 -448.005 13.5280501 63.31237789 -449.001 13.52805184 63.3123776 -449.996 13.52805359 63.3123773 -450.992 13.52805533 63.31237701 -451.988 13.52805708 63.31237672 -452.983 13.52805882 63.31237642 -453.979 13.52806056 63.31237613 -454.975 13.5280623 63.31237583 -455.97 13.52806404 63.31237554 -456.966 13.52806578 63.31237524 -457.961 13.52806752 63.31237494 -458.957 13.52806926 63.31237465 -459.953 13.528071 63.31237435 -460.948 13.52807274 63.31237405 -461.944 13.52807447 63.31237376 -462.94 13.52807621 63.31237346 -463.935 13.52807794 63.31237316 -464.931 13.52807968 63.31237286 -465.927 13.52808141 63.31237256 -466.922 13.52808315 63.31237227 -467.918 13.52808488 63.31237197 -468.914 13.52808661 63.31237167 -469.909 13.52808834 63.31237137 -470.905 13.52809008 63.31237107 -471.901 13.52809181 63.31237077 -472.896 13.52809354 63.31237047 -473.892 13.52809526 63.31237016 -474.888 13.52809699 63.31236986 -475.883 13.52809872 63.31236956 -476.879 13.52810045 63.31236926 -477.875 13.52810218 63.31236896 -478.87 13.52810391 63.31236866 -479.866 13.52810564 63.31236835 -480.862 13.52810737 63.31236805 -481.857 13.5281091 63.31236775 -482.853 13.52811083 63.31236745 -483.849 13.52811256 63.31236714 -484.844 13.52811429 63.31236684 -485.84 13.52811602 63.31236654 -486.836 13.52811776 63.31236623 -487.831 13.52811949 63.31236593 -488.827 13.52812122 63.31236562 -489.823 13.52812295 63.31236532 -490.818 13.52812469 63.31236502 -491.814 13.52812642 63.31236471 -492.809 13.52812815 63.31236441 -493.805 13.52812989 63.3123641 -494.801 13.52813162 63.3123638 -495.796 13.52813336 63.31236349 -496.792 13.5281351 63.31236318 -497.788 13.52813683 63.31236288 -498.783 13.52813857 63.31236257 -499.779 13.5281403 63.31236227 -500.775 13.52814204 63.31236196 -501.77 13.52814378 63.31236165 -502.766 13.52814552 63.31236135 -503.761 13.52814725 63.31236104 -504.757 13.52814899 63.31236073 -505.753 13.52815073 63.31236043 -506.748 13.52815247 63.31236012 -507.744 13.52815421 63.31235981 -508.739 13.52815595 63.3123595 -509.735 13.52815769 63.31235919 -510.731 13.52815943 63.31235889 -511.726 13.52816117 63.31235858 -512.722 13.52816291 63.31235827 -513.717 13.52816465 63.31235796 -514.713 13.52816639 63.31235765 -515.709 13.52816814 63.31235734 -516.704 13.52816988 63.31235703 -517.7 13.52817162 63.31235672 -518.695 13.52817336 63.31235641 -519.691 13.52817511 63.3123561 -520.686 13.52817685 63.31235579 -521.682 13.5281786 63.31235548 -522.678 13.52818034 63.31235517 -523.673 13.52818209 63.31235486 -524.669 13.52818383 63.31235455 -525.664 13.52818558 63.31235424 -526.66 13.52818732 63.31235393 -527.655 13.52818906 63.31235362 -528.651 13.52819081 63.3123533 -529.647 13.52819255 63.31235299 -530.642 13.52819429 63.31235267 -531.638 13.52819602 63.31235236 -532.633 13.52819776 63.31235204 -533.629 13.52819949 63.31235172 -534.625 13.52820123 63.31235141 -535.62 13.52820296 63.31235109 -536.616 13.52820469 63.31235077 -537.611 13.52820642 63.31235045 -538.607 13.52820814 63.31235012 -539.603 13.52820987 63.3123498 -540.598 13.52821159 63.31234948 -541.594 13.52821332 63.31234915 -542.589 13.52821504 63.31234883 -543.585 13.52821676 63.3123485 -544.581 13.52821847 63.31234818 -545.576 13.52822019 63.31234785 -546.572 13.52822191 63.31234752 -547.567 13.52822362 63.31234719 -548.563 13.52822533 63.31234686 -549.559 13.52822704 63.31234654 -550.554 13.52822875 63.3123462 -551.55 13.52823046 63.31234587 -552.546 13.52823217 63.31234554 -553.541 13.52823387 63.31234521 -554.537 13.52823557 63.31234487 -555.533 13.52823728 63.31234454 -556.528 13.52823897 63.3123442 -557.524 13.52824067 63.31234386 -558.52 13.52824237 63.31234353 -559.515 13.52824406 63.31234319 -560.511 13.52824576 63.31234285 -561.507 13.52824745 63.31234251 -562.502 13.52824914 63.31234217 -563.498 13.52825083 63.31234183 -564.494 13.52825252 63.31234149 -565.489 13.5282542 63.31234114 -566.485 13.52825589 63.3123408 -567.481 13.52825757 63.31234046 -568.476 13.52825925 63.31234011 -569.472 13.52826093 63.31233977 -570.468 13.52826261 63.31233942 -571.464 13.52826429 63.31233907 -572.459 13.52826596 63.31233872 -573.455 13.52826764 63.31233837 -574.451 13.52826931 63.31233802 -575.446 13.52827098 63.31233767 -576.442 13.52827265 63.31233732 -577.438 13.52827432 63.31233697 -578.434 13.52827599 63.31233662 -579.429 13.52827766 63.31233626 -580.425 13.52827932 63.31233591 -581.421 13.52828099 63.31233555 -582.416 13.52828266 63.3123352 -583.412 13.52828432 63.31233484 -584.408 13.52828599 63.31233448 -585.404 13.52828765 63.31233413 -586.399 13.52828932 63.31233377 -587.395 13.52829098 63.31233341 -588.391 13.52829264 63.31233305 -589.386 13.5282943 63.31233268 -590.382 13.52829596 63.31233232 -591.378 13.52829762 63.31233196 -592.374 13.52829928 63.3123316 -593.369 13.52830094 63.31233123 -594.365 13.5283026 63.31233086 -595.361 13.52830426 63.3123305 -596.356 13.52830592 63.31233013 -597.352 13.52830757 63.31232976 -598.348 13.52830923 63.31232939 -599.344 13.52831089 63.31232902 -600.339 13.52831254 63.31232865 -601.335 13.52831419 63.31232828 -602.331 13.52831585 63.31232791 -603.326 13.5283175 63.31232754 -604.322 13.52831915 63.31232717 -605.318 13.5283208 63.31232679 -606.313 13.52832246 63.31232642 -607.309 13.52832411 63.31232604 -608.305 13.52832576 63.31232566 -609.301 13.5283274 63.31232529 -610.296 13.52832905 63.31232491 -611.292 13.5283307 63.31232453 -612.288 13.52833235 63.31232415 -613.283 13.52833399 63.31232377 -614.279 13.52833564 63.31232339 -615.275 13.52833728 63.31232301 -616.27 13.52833893 63.31232262 -617.266 13.52834057 63.31232224 -618.262 13.52834222 63.31232185 -619.257 13.52834386 63.31232147 -620.253 13.5283455 63.31232108 -621.249 13.52834714 63.3123207 -622.244 13.52834878 63.31232031 -623.24 13.52835042 63.31231992 -624.236 13.52835206 63.31231953 -625.231 13.5283537 63.31231914 -626.227 13.52835534 63.31231875 -627.223 13.52835697 63.31231836 -628.218 13.52835862 63.31231796 -629.214 13.52836026 63.31231757 -630.21 13.5283619 63.31231717 -631.205 13.52836355 63.31231677 -632.201 13.52836519 63.31231637 -633.197 13.52836684 63.31231597 -634.192 13.52836849 63.31231557 -635.188 13.52837014 63.31231517 -636.183 13.52837179 63.31231476 -637.179 13.52837344 63.31231435 -638.174 13.52837509 63.31231395 -639.17 13.52837675 63.31231354 -640.165 13.5283784 63.31231313 -641.161 13.52838005 63.31231271 -642.156 13.52838171 63.3123123 -643.152 13.52838337 63.31231189 -644.147 13.52838503 63.31231147 -645.143 13.52838669 63.31231105 -646.138 13.52838835 63.31231063 -647.134 13.52839001 63.31231021 -648.129 13.52839168 63.31230979 -649.125 13.52839334 63.31230937 -650.12 13.52839501 63.31230894 -651.115 13.52839668 63.31230852 -652.111 13.52839834 63.31230809 -653.106 13.52840001 63.31230766 -654.101 13.52840168 63.31230723 -655.097 13.52840335 63.3123068 -656.092 13.52840503 63.31230636 -657.087 13.5284067 63.31230593 -658.083 13.52840837 63.31230549 -659.078 13.52841005 63.31230505 -660.073 13.52841172 63.31230461 -661.069 13.5284134 63.31230417 -662.064 13.52841508 63.31230373 -663.059 13.52841676 63.31230329 -664.054 13.52841844 63.31230284 -665.049 13.52842012 63.3123024 -666.045 13.5284218 63.31230195 -667.04 13.52842348 63.3123015 -668.035 13.52842517 63.31230105 -669.03 13.52842685 63.3123006 -670.025 13.52842854 63.31230014 -671.02 13.52843023 63.31229969 -672.016 13.52843192 63.31229923 -673.011 13.5284336 63.31229877 -674.006 13.52843529 63.31229832 -675.001 13.52843698 63.31229785 -675.996 13.52843867 63.31229739 -676.991 13.52844036 63.31229693 -677.986 13.52844205 63.31229646 -678.981 13.52844373 63.31229599 -679.976 13.52844542 63.31229552 -680.971 13.5284471 63.31229505 -681.97 13.52844878 63.31229458 -682.96 13.52845045 63.31229411 -683.96 13.52845213 63.31229363 -684.95 13.5284538 63.31229315 -685.95 13.52845547 63.31229267 -686.94 13.52845713 63.31229219 -687.94 13.5284588 63.31229171 -688.93 13.52846047 63.31229122 -689.93 13.52846213 63.31229073 -690.92 13.52846379 63.31229024 -691.92 13.52846544 63.31228975 -692.91 13.5284671 63.31228926 -693.91 13.52846875 63.31228877 -694.9 13.5284704 63.31228827 -695.9 13.52847205 63.31228777 -696.89 13.5284737 63.31228728 -697.89 13.52847534 63.31228677 -698.88 13.52847699 63.31228627 -699.88 13.52847863 63.31228577 -700.87 13.52848026 63.31228526 -701.87 13.5284819 63.31228475 -702.86 13.52848353 63.31228424 -703.86 13.52848516 63.31228373 -704.85 13.52848679 63.31228322 -705.85 13.52848843 63.3122827 -706.84 13.52849005 63.31228219 -707.84 13.52849168 63.31228167 -708.83 13.52849328 63.31228115 -709.83 13.5284949 63.31228063 -710.82 13.52849653 63.31228011 -711.82 13.52849813 63.31227958 -712.81 13.52849975 63.31227905 -713.81 13.52850136 63.31227853 -714.8 13.52850296 63.312278 -715.8 13.52850456 63.31227746 -716.79 13.52850617 63.31227693 -717.79 13.52850777 63.3122764 -718.78 13.52850936 63.31227586 -719.78 13.52851096 63.31227532 -720.77 13.52851255 63.31227478 -721.77 13.52851413 63.31227424 -722.76 13.52851571 63.31227369 -723.76 13.5285173 63.31227315 -724.75 13.52851888 63.3122726 -725.75 13.52852047 63.31227205 -726.74 13.52852205 63.3122715 -727.74 13.52852362 63.31227095 -728.73 13.5285252 63.3122704 -729.73 13.52852677 63.31226984 -730.72 13.52852833 63.31226928 -731.72 13.5285299 63.31226873 -732.71 13.52853147 63.31226817 -733.71 13.52853301 63.3122676 -734.7 13.52853458 63.31226704 -735.7 13.52853612 63.31226647 -736.69 13.52853769 63.3122659 -737.69 13.52853923 63.31226534 -738.68 13.52854078 63.31226476 -739.68 13.52854233 63.31226419 -740.67 13.52854387 63.31226362 -741.67 13.5285454 63.31226304 -742.66 13.52854695 63.31226246 -743.66 13.52854847 63.31226188 -744.65 13.52855 63.3122613 -745.65 13.52855153 63.31226072 -746.64 13.52855305 63.31226013 -747.64 13.52855458 63.31225955 -748.63 13.52855611 63.31225896 -749.63 13.52855761 63.31225837 -750.62 13.52855914 63.31225778 -751.62 13.52856065 63.31225718 -752.61 13.52856216 63.31225659 -753.61 13.52856366 63.31225599 -754.6 13.52856517 63.31225539 -755.6 13.52856666 63.31225479 -756.59 13.52856817 63.31225419 -757.59 13.52856965 63.31225359 -758.58 13.52857116 63.31225298 -759.58 13.52857265 63.31225238 -760.57 13.52857414 63.31225177 -761.57 13.52857563 63.31225116 -762.56 13.52857709 63.31225055 -763.56 13.52857858 63.31224993 -764.55 13.52858005 63.31224932 -765.55 13.52858152 63.3122487 -766.54 13.52858299 63.31224808 -767.53 13.52858446 63.31224746 -768.53 13.52858593 63.31224684 -769.52 13.52858739 63.31224622 -770.52 13.52858884 63.31224559 -771.51 13.52859031 63.31224497 -772.51 13.52859176 63.31224434 -773.5 13.52859321 63.31224371 -774.5 13.52859466 63.31224308 -775.49 13.52859609 63.31224244 -776.49 13.52859754 63.31224181 -777.48 13.52859899 63.31224118 -778.48 13.52860044 63.31224054 -779.47 13.52860189 63.31223991 -780.47 13.52860336 63.31223927 -781.46 13.52860481 63.31223863 -782.46 13.52860626 63.312238 -783.45 13.52860771 63.31223736 -784.45 13.52860918 63.31223672 -785.44 13.52861063 63.31223608 -786.44 13.5286121 63.31223544 -787.43 13.52861357 63.3122348 -788.43 13.52861504 63.31223416 -789.42 13.52861649 63.31223352 -790.42 13.52861796 63.31223287 -791.41 13.52861943 63.31223223 -792.41 13.5286209 63.31223159 -793.4 13.52862237 63.31223094 -794.39 13.52862386 63.3122303 -795.39 13.52862533 63.31222965 -796.38 13.5286268 63.312229 -797.38 13.52862829 63.31222836 -798.37 13.52862976 63.31222771 -799.37 13.52863125 63.31222706 -800.36 13.52863272 63.31222641 -801.36 13.52863421 63.31222576 -802.35 13.5286357 63.31222511 -803.35 13.52863717 63.31222446 -804.34 13.52863866 63.31222381 -805.34 13.52864015 63.31222316 -806.33 13.52864164 63.3122225 -807.32 13.52864315 63.31222185 -808.32 13.52864464 63.3122212 -809.31 13.52864613 63.31222054 -810.31 13.52864762 63.31221988 -811.3 13.52864913 63.31221923 -812.3 13.52865062 63.31221857 -813.29 13.52865213 63.31221791 -814.29 13.52865362 63.31221725 -815.28 13.52865513 63.3122166 -816.28 13.52865664 63.31221594 -817.27 13.52865815 63.31221528 -818.26 13.52865966 63.31221462 -819.26 13.52866118 63.31221395 -820.25 13.52866269 63.31221329 -821.25 13.5286642 63.31221263 -822.24 13.52866571 63.31221197 -823.24 13.52866724 63.3122113 -824.23 13.52866875 63.31221064 -825.22 13.52867026 63.31220997 -826.22 13.52867179 63.3122093 -827.21 13.5286733 63.31220864 -828.21 13.52867481 63.31220797 -829.2 13.52867633 63.3122073 -830.2 13.52867784 63.31220663 -831.19 13.52867935 63.31220596 -832.19 13.52868086 63.31220529 -833.18 13.52868237 63.31220462 -834.17 13.52868388 63.31220395 -835.17 13.52868539 63.31220328 -836.16 13.5286869 63.3122026 -837.16 13.52868842 63.31220193 -838.15 13.52868991 63.31220125 -839.15 13.52869142 63.31220058 -840.14 13.52869291 63.3121999 -841.13 13.52869442 63.31219922 -842.13 13.52869591 63.31219855 -843.12 13.52869742 63.31219787 -844.12 13.52869892 63.31219719 -845.11 13.52870041 63.31219651 -846.11 13.5287019 63.31219583 -847.1 13.52870341 63.31219515 -848.09 13.5287049 63.31219446 -849.09 13.5287064 63.31219378 -850.08 13.52870789 63.3121931 -851.08 13.52870936 63.31219241 -852.07 13.52871085 63.31219173 -853.07 13.52871234 63.31219104 -854.06 13.52871384 63.31219036 -855.05 13.52871531 63.31218967 -856.05 13.5287168 63.31218898 -857.04 13.52871829 63.31218829 -858.04 13.52871976 63.3121876 -859.03 13.52872124 63.31218691 -860.03 13.52872273 63.31218622 -861.02 13.5287242 63.31218553 -862.01 13.52872567 63.31218484 -863.01 13.52872717 63.31218415 -864 13.52872864 63.31218345 -865 13.52873011 63.31218276 -865.99 13.52873158 63.31218206 -866.99 13.52873306 63.31218137 -867.98 13.52873453 63.31218067 -868.97 13.52873598 63.31217997 -869.97 13.52873745 63.31217928 -870.96 13.52873893 63.31217858 -871.96 13.52874038 63.31217788 -872.95 13.52874185 63.31217718 -873.95 13.52874333 63.31217648 -874.94 13.52874478 63.31217577 -875.93 13.52874623 63.31217507 -876.93 13.5287477 63.31217437 -877.92 13.52874916 63.31217366 -878.92 13.52875061 63.31217295 -879.91 13.52875206 63.31217225 -880.9 13.52875354 63.31217154 -881.9 13.52875499 63.31217083 -882.89 13.52875644 63.31217011 -883.89 13.5287579 63.3121694 -884.88 13.52875933 63.31216868 -885.88 13.52876079 63.31216797 -886.87 13.52876224 63.31216725 -887.86 13.52876369 63.31216653 -888.86 13.52876513 63.31216581 -889.85 13.52876658 63.31216509 -890.85 13.52876802 63.31216436 -891.84 13.52876947 63.31216364 -892.83 13.5287709 63.31216291 -893.83 13.52877236 63.31216219 -894.82 13.52877379 63.31216146 -895.82 13.52877523 63.31216073 -896.81 13.52877666 63.31216 -897.8 13.5287781 63.31215927 -898.8 13.52877953 63.31215853 -899.79 13.52878096 63.3121578 -900.79 13.5287824 63.31215706 -901.78 13.52878383 63.31215632 -902.78 13.52878527 63.31215558 -903.77 13.5287867 63.31215484 -904.76 13.52878812 63.3121541 -905.76 13.52878955 63.31215336 -906.75 13.52879097 63.31215261 -907.75 13.5287924 63.31215187 -908.74 13.52879382 63.31215112 -909.73 13.52879524 63.31215037 -910.73 13.52879667 63.31214962 -911.72 13.52879809 63.31214887 -912.71 13.5287995 63.31214812 -913.71 13.52880092 63.31214736 -914.7 13.52880233 63.31214661 -915.7 13.52880375 63.31214585 -916.69 13.52880517 63.31214509 -917.68 13.52880658 63.31214434 -918.68 13.52880798 63.31214357 -919.67 13.52880939 63.31214281 -920.67 13.52881079 63.31214205 -921.66 13.52881221 63.31214129 -922.65 13.5288136 63.31214052 -923.65 13.52881502 63.31213975 -924.64 13.52881641 63.31213898 -925.64 13.52881781 63.31213821 -926.63 13.52881923 63.31213744 -927.62 13.52882062 63.31213667 -928.62 13.52882202 63.3121359 -929.61 13.52882342 63.31213513 -930.6 13.52882481 63.31213436 -931.6 13.52882621 63.31213358 -932.59 13.52882759 63.31213281 -933.59 13.52882898 63.31213203 -934.58 13.52883038 63.31213125 -935.57 13.52883178 63.31213048 -936.57 13.52883316 63.3121297 -937.56 13.52883455 63.31212892 -938.56 13.52883593 63.31212814 -939.55 13.52883733 63.31212736 -940.54 13.5288387 63.31212658 -941.54 13.52884008 63.3121258 -942.53 13.52884148 63.31212501 -943.52 13.52884286 63.31212423 -944.52 13.52884423 63.31212344 -945.51 13.52884561 63.31212266 -946.51 13.52884699 63.31212187 -947.5 13.52884837 63.31212109 -948.49 13.52884974 63.3121203 -949.49 13.52885112 63.31211951 -950.48 13.5288525 63.31211872 -951.47 13.52885386 63.31211793 -952.47 13.52885523 63.31211714 -953.46 13.52885661 63.31211635 -954.46 13.52885797 63.31211555 -955.45 13.52885935 63.31211476 -956.44 13.5288607 63.31211397 -957.44 13.52886208 63.31211317 -958.43 13.52886344 63.31211238 -959.42 13.5288648 63.31211158 -960.42 13.52886616 63.31211078 -961.41 13.52886753 63.31210998 -962.41 13.52886889 63.31210919 -963.4 13.52887025 63.31210839 -964.39 13.52887161 63.31210759 -965.39 13.52887295 63.31210678 -966.38 13.52887431 63.31210598 -967.37 13.52887566 63.31210518 -968.37 13.52887702 63.31210437 -969.36 13.52887836 63.31210357 -970.35 13.52887972 63.31210276 -971.35 13.52888108 63.31210196 -972.34 13.52888242 63.31210115 -973.34 13.52888375 63.31210034 -974.33 13.52888511 63.31209953 -975.32 13.52888645 63.31209872 -976.32 13.52888779 63.31209791 -977.31 13.52888913 63.3120971 -978.3 13.52889047 63.31209628 -979.3 13.52889179 63.31209546 -980.29 13.52889313 63.31209464 -981.28 13.52889445 63.31209382 -982.28 13.52889579 63.312093 -983.27 13.5288971 63.31209218 -984.27 13.52889842 63.31209135 -985.26 13.52889974 63.31209053 -986.25 13.52890104 63.3120897 -987.25 13.52890236 63.31208887 -988.24 13.52890366 63.31208803 -989.23 13.52890498 63.3120872 -990.23 13.52890628 63.31208637 -991.22 13.52890758 63.31208553 -992.21 13.52890888 63.31208469 -993.21 13.52891018 63.31208385 -994.2 13.52891148 63.31208301 -995.19 13.52891276 63.31208216 -996.19 13.52891407 63.31208132 -997.18 13.52891535 63.31208047 -998.17 13.52891663 63.31207962 -999.17 13.52891791 63.31207877 -1000.16 13.52891919 63.31207792 -1001.15 13.52892047 63.31207707 -1002.15 13.52892175 63.31207621 -1003.14 13.52892301 63.31207536 -1004.13 13.52892427 63.3120745 -1005.13 13.52892555 63.31207364 -1006.12 13.52892682 63.31207278 -1007.12 13.52892808 63.31207192 -1008.11 13.52892932 63.31207105 -1009.1 13.52893058 63.31207019 -1010.1 13.52893184 63.31206932 -1011.09 13.52893308 63.31206845 -1012.08 13.52893433 63.31206758 -1013.08 13.52893557 63.31206671 -1014.07 13.52893681 63.31206583 -1015.06 13.52893805 63.31206496 -1016.05 13.5289393 63.31206408 -1017.05 13.52894052 63.3120632 -1018.04 13.52894176 63.31206232 -1019.03 13.52894298 63.31206144 -1020.03 13.52894421 63.31206055 -1021.02 13.52894543 63.31205967 -1022.01 13.52894665 63.31205878 -1023.01 13.52894785 63.31205789 -1024 13.52894908 63.31205701 -1024.99 13.52895028 63.31205611 -1025.99 13.5289515 63.31205522 -1026.98 13.52895271 63.31205433 -1027.97 13.52895391 63.31205344 -1028.97 13.52895511 63.31205254 -1029.96 13.52895632 63.31205165 -1030.95 13.52895752 63.31205076 -1031.95 13.52895872 63.31204986 -1032.94 13.52895993 63.31204896 -1033.93 13.52896113 63.31204807 -1034.93 13.52896233 63.31204717 -1035.92 13.52896354 63.31204627 -1036.91 13.52896472 63.31204537 -1037.91 13.52896592 63.31204447 -1038.9 13.52896713 63.31204357 -1039.89 13.52896831 63.31204267 -1040.89 13.5289695 63.31204177 -1041.88 13.5289707 63.31204087 -1042.87 13.52897188 63.31203996 -1043.86 13.52897307 63.31203906 -1044.86 13.52897425 63.31203815 -1045.85 13.52897545 63.31203725 -1046.84 13.52897664 63.31203634 -1047.84 13.52897782 63.31203544 -1048.83 13.52897899 63.31203453 -1049.82 13.52898017 63.31203362 -1050.82 13.52898135 63.31203271 -1051.81 13.52898254 63.3120318 -1052.8 13.5289837 63.31203089 -1053.8 13.52898489 63.31202998 -1054.79 13.52898607 63.31202907 -1055.78 13.52898723 63.31202816 -1056.77 13.5289884 63.31202724 -1057.77 13.52898958 63.31202633 -1058.76 13.52899075 63.31202542 -1059.75 13.52899191 63.3120245 -1060.75 13.52899308 63.31202359 -1061.74 13.52899424 63.31202267 -1062.73 13.52899541 63.31202175 -1063.73 13.52899657 63.31202084 -1064.72 13.52899773 63.31201992 -1065.71 13.5289989 63.312019 -1066.71 13.52900006 63.31201808 -1067.7 13.52900121 63.31201716 -1068.69 13.52900237 63.31201624 -1069.68 13.52900354 63.31201531 -1070.68 13.52900468 63.31201439 -1071.67 13.52900585 63.31201347 -1072.66 13.52900699 63.31201255 -1073.66 13.52900814 63.31201162 -1074.65 13.52900928 63.3120107 -1075.64 13.52901045 63.31200977 -1076.64 13.52901159 63.31200884 -1077.63 13.52901274 63.31200792 -1078.62 13.52901388 63.31200699 -1079.61 13.52901503 63.31200606 -1080.61 13.52901617 63.31200513 -1081.6 13.52901732 63.31200421 -1082.59 13.52901844 63.31200328 -1083.59 13.52901959 63.31200235 -1084.58 13.52902073 63.31200142 -1085.57 13.52902186 63.31200049 -1086.57 13.529023 63.31199955 -1087.56 13.52902415 63.31199862 -1088.55 13.52902528 63.31199769 -1089.54 13.5290264 63.31199676 -1090.54 13.52902755 63.31199582 -1091.53 13.52902867 63.31199489 -1092.52 13.5290298 63.31199395 -1093.52 13.52903094 63.31199302 -1094.51 13.52903207 63.31199208 -1095.5 13.52903319 63.31199115 -1096.49 13.52903432 63.31199021 -1097.49 13.52903544 63.31198927 -1098.48 13.52903657 63.31198833 -1099.47 13.5290377 63.31198739 -1100.47 13.52903882 63.31198646 -1101.46 13.52903993 63.31198552 -1102.45 13.52904105 63.31198458 -1103.45 13.52904218 63.31198364 -1104.44 13.52904329 63.31198269 -1105.43 13.52904441 63.31198175 -1106.42 13.52904552 63.31198081 -1107.42 13.52904664 63.31197987 -1108.41 13.52904775 63.31197892 -1109.4 13.52904887 63.31197798 -1110.4 13.52904998 63.31197704 -1111.39 13.52905109 63.31197609 -1112.38 13.52905219 63.31197514 -1113.37 13.5290533 63.3119742 -1114.37 13.52905443 63.31197325 -1115.36 13.52905553 63.31197231 -1116.35 13.52905664 63.31197136 -1117.35 13.52905772 63.31197041 -1118.34 13.52905883 63.31196946 -1119.33 13.52905994 63.31196851 -1120.32 13.52906104 63.31196756 -1121.32 13.52906213 63.31196661 -1122.31 13.52906324 63.31196566 -1123.3 13.52906434 63.31196471 -1124.3 13.52906543 63.31196376 -1125.29 13.52906653 63.31196281 -1126.28 13.52906762 63.31196185 -1127.27 13.52906873 63.3119609 -1128.27 13.52906981 63.31195994 -1129.26 13.5290709 63.31195899 -1130.25 13.52907201 63.31195803 -1131.25 13.52907309 63.31195708 -1132.24 13.52907418 63.31195612 -1133.23 13.52907529 63.31195517 -1134.22 13.52907637 63.31195421 -1135.22 13.52907746 63.31195325 -1136.21 13.52907855 63.31195229 -1137.2 13.52907963 63.31195133 -1138.19 13.52908072 63.31195037 -1139.19 13.52908181 63.31194941 -1140.18 13.5290829 63.31194845 -1141.17 13.52908398 63.31194749 -1142.17 13.52908507 63.31194653 -1143.16 13.52908616 63.31194557 -1144.15 13.52908724 63.3119446 -1145.14 13.52908833 63.31194364 -1146.14 13.52908942 63.31194268 -1147.13 13.5290905 63.31194171 -1148.12 13.52909157 63.31194075 -1149.12 13.52909266 63.31193978 -1150.11 13.52909375 63.31193881 -1151.1 13.52909481 63.31193785 -1152.09 13.5290959 63.31193688 -1153.09 13.52909699 63.31193591 -1154.08 13.52909805 63.31193494 -1155.07 13.52909914 63.31193397 -1156.06 13.52910021 63.311933 -1157.06 13.5291013 63.31193203 -1158.05 13.52910236 63.31193106 -1159.04 13.52910345 63.31193009 -1160.03 13.52910452 63.31192912 -1161.03 13.52910559 63.31192815 -1162.02 13.52910667 63.31192718 -1163.01 13.52910774 63.3119262 -1164.01 13.52910881 63.31192523 -1165 13.52910988 63.31192425 -1165.99 13.52911095 63.31192328 -1166.98 13.52911203 63.3119223 -1167.98 13.5291131 63.31192133 -1168.97 13.52911417 63.31192035 -1169.96 13.52911524 63.31191937 -1170.95 13.5291163 63.31191839 -1171.95 13.52911737 63.31191742 -1172.94 13.52911844 63.31191644 -1173.93 13.52911949 63.31191546 -1174.92 13.52912056 63.31191448 -1175.92 13.5291216 63.31191349 -1176.91 13.52912265 63.31191251 -1177.9 13.52912368 63.31191152 -1178.89 13.52912473 63.31191054 -1179.89 13.52912574 63.31190955 -1180.88 13.52912677 63.31190856 -1181.87 13.52912775 63.31190757 -1182.86 13.52912876 63.31190658 -1183.86 13.52912975 63.31190558 -1184.85 13.52913074 63.31190459 -1185.84 13.52913171 63.31190359 -1186.84 13.5291327 63.3119026 -1187.83 13.52913369 63.3119016 -1188.82 13.5291347 63.3119006 -1189.81 13.52913571 63.3118996 -1190.81 13.52913671 63.3118986 -1191.8 13.52913772 63.3118976 -1192.79 13.52913875 63.3118966 -1193.78 13.52913978 63.3118956 -1194.78 13.52914083 63.3118946 -1195.77 13.52914188 63.3118936 -1196.76 13.52914293 63.3118926 -1197.75 13.529144 63.31189159 -1198.74 13.52914505 63.31189059 -1199.74 13.5291461 63.31188957 -1200.73 13.52914715 63.31188856 -1201.72 13.52914818 63.31188754 -1202.71 13.52914919 63.31188652 -1203.71 13.52915022 63.3118855 -1204.7 13.52915123 63.31188447 -1205.69 13.52915222 63.31188344 -1206.68 13.52915321 63.3118824 -1207.67 13.5291542 63.31188137 -1208.67 13.52915517 63.31188032 -1209.66 13.52915614 63.31187928 -1210.65 13.52915711 63.31187823 -1211.64 13.52915807 63.31187718 -1212.63 13.52915904 63.31187613 -1213.63 13.52915999 63.31187508 -1214.62 13.52916096 63.31187403 -1215.61 13.52916191 63.31187298 -1216.6 13.52916286 63.31187192 -1217.59 13.52916384 63.31187087 -1218.59 13.52916479 63.31186982 -1219.58 13.52916574 63.31186876 -1220.57 13.52916669 63.31186771 -1221.56 13.52916764 63.31186665 -1222.55 13.5291686 63.31186559 -1223.55 13.52916955 63.31186454 -1224.54 13.52917048 63.31186348 -1225.53 13.52917141 63.31186242 -1226.52 13.52917237 63.31186135 -1227.51 13.52917328 63.31186029 -1228.51 13.52917421 63.31185923 -1229.5 13.52917512 63.31185816 -1230.49 13.52917606 63.31185709 -1231.48 13.52917697 63.31185602 -1232.47 13.52917786 63.31185495 -1233.46 13.52917877 63.31185388 -1234.46 13.52917967 63.31185281 -1235.45 13.52918056 63.31185174 -1236.44 13.52918145 63.31185066 -1237.43 13.52918235 63.31184959 -1238.42 13.52918324 63.31184851 -1239.41 13.52918413 63.31184743 -1240.41 13.52918505 63.31184634 -1241.4 13.52918594 63.31184526 -1242.39 13.52918683 63.31184417 -1243.38 13.52918773 63.31184309 -1244.37 13.52918862 63.311842 -1245.36 13.52918952 63.31184091 -1246.36 13.52919043 63.31183981 -1247.35 13.52919132 63.31183872 -1248.34 13.52919222 63.31183762 -1249.33 13.52919313 63.31183652 -1250.32 13.52919405 63.31183543 -1251.31 13.52919496 63.31183434 -1252.31 13.52919589 63.31183325 -1253.3 13.52919685 63.31183216 -1254.29 13.52919778 63.31183107 -1255.28 13.52919875 63.31182999 -1256.27 13.52919971 63.31182891 -1257.26 13.52920068 63.31182783 -1258.25 13.52920167 63.31182675 -1259.25 13.52920267 63.31182568 -1260.24 13.52920366 63.3118246 -1261.23 13.52920467 63.31182353 -1262.22 13.52920567 63.31182246 -1263.21 13.52920666 63.31182139 -1264.2 13.52920765 63.31182032 -1265.2 13.52920862 63.31181925 -1266.19 13.5292096 63.31181817 -1267.18 13.52921057 63.3118171 -1268.17 13.52921154 63.31181604 -1269.16 13.52921251 63.31181497 -1270.15 13.52921347 63.3118139 -1271.15 13.52921442 63.31181283 -1272.14 13.52921537 63.31181176 -1273.13 13.52921633 63.31181069 -1274.12 13.52921726 63.31180963 -1275.11 13.52921821 63.31180856 -1276.1 13.52921914 63.31180749 -1277.1 13.52922008 63.31180642 -1278.09 13.52922101 63.31180535 -1279.08 13.52922194 63.31180428 -1280.07 13.52922287 63.31180321 -1281.06 13.52922381 63.31180213 -1282.05 13.52922472 63.31180106 -1283.05 13.52922565 63.31179999 -1284.04 13.52922657 63.31179892 -1285.03 13.52922748 63.31179784 -1286.02 13.52922839 63.31179677 -1287.01 13.52922933 63.3117957 -1288.01 13.52923024 63.31179463 -1289 13.52923115 63.31179356 -1289.99 13.52923206 63.31179249 -1290.98 13.52923296 63.31179141 -1291.97 13.52923387 63.31179034 -1292.96 13.52923478 63.31178927 -1293.96 13.5292357 63.3117882 -1294.95 13.52923659 63.31178713 -1295.94 13.5292375 63.31178606 -1296.93 13.52923841 63.311785 -1297.92 13.52923931 63.31178393 -1298.92 13.52924022 63.31178286 -1299.91 13.52924113 63.31178179 -1300.9 13.52924205 63.31178072 -1301.89 13.52924296 63.31177965 -1302.88 13.52924387 63.31177858 -1303.87 13.5292448 63.31177751 -1304.87 13.52924572 63.31177644 -1305.86 13.52924665 63.31177537 -1306.85 13.52924758 63.3117743 -1307.84 13.52924851 63.31177323 -1308.83 13.52924945 63.31177217 -1309.83 13.52925038 63.3117711 -1310.82 13.52925129 63.31177003 -1311.81 13.52925221 63.31176897 -1312.8 13.52925312 63.31176791 -1313.79 13.52925399 63.31176685 -1314.78 13.52925486 63.3117658 -1315.78 13.52925571 63.31176474 -1316.77 13.52925657 63.3117637 -1317.76 13.5292574 63.31176265 -1318.75 13.52925823 63.31176161 -1319.75 13.52925902 63.31176057 -1320.74 13.52925981 63.31175954 -1321.73 13.5292606 63.31175851 -1322.72 13.52926137 63.31175748 -1323.72 13.52926214 63.31175645 -1324.71 13.52926294 63.31175543 -1325.7 13.52926371 63.3117544 -1326.69 13.5292645 63.31175338 -1327.69 13.52926529 63.31175235 -1328.68 13.52926608 63.31175133 -1329.67 13.52926687 63.31175031 -1330.67 13.52926768 63.31174929 -1331.66 13.52926847 63.31174827 -1332.65 13.52926928 63.31174725 -1333.64 13.52927009 63.31174623 -1334.64 13.5292709 63.31174522 -1335.63 13.52927171 63.3117442 -1336.62 13.52927252 63.31174319 -1337.61 13.52927333 63.31174219 -1338.61 13.52927416 63.31174118 -1339.6 13.52927497 63.31174018 -1340.59 13.5292758 63.31173919 -1341.59 13.52927663 63.31173819 -1342.58 13.52927746 63.3117372 -1343.57 13.52927827 63.31173622 -1344.57 13.52927911 63.31173524 -1345.56 13.52927994 63.31173426 -1346.55 13.52928077 63.31173328 -1347.54 13.52928162 63.31173231 -1348.54 13.52928245 63.31173134 -1349.53 13.52928331 63.31173038 -1350.52 13.52928416 63.31172943 -1351.52 13.52928503 63.31172848 -1352.51 13.52928589 63.31172754 -1353.5 13.52928678 63.3117266 -1354.5 13.52928767 63.31172567 -1355.49 13.52928855 63.31172475 -1356.49 13.52928944 63.31172383 -1357.48 13.52929034 63.31172292 -1358.47 13.52929125 63.31172202 -1359.47 13.52929215 63.31172112 -1360.46 13.52929307 63.31172022 -1361.45 13.52929398 63.31171932 -1362.45 13.52929486 63.31171842 -1363.44 13.52929577 63.31171752 -1364.44 13.52929665 63.31171662 -1365.43 13.52929753 63.31171572 -1366.42 13.52929842 63.31171483 -1367.42 13.5292993 63.31171393 -1368.41 13.52930019 63.31171303 -1369.41 13.52930105 63.31171214 -1370.4 13.52930193 63.31171124 -1371.39 13.5293028 63.31171035 -1372.39 13.52930368 63.31170946 -1373.38 13.52930456 63.31170858 -1374.38 13.52930547 63.31170771 -1375.37 13.52930637 63.31170684 -1376.37 13.52930729 63.31170597 -1377.36 13.52930821 63.31170511 -1378.35 13.52930914 63.31170426 -1379.35 13.52931008 63.31170341 -1380.34 13.52931104 63.31170257 -1381.34 13.529312 63.31170174 -1382.33 13.52931296 63.31170091 -1383.33 13.52931394 63.31170009 -1384.32 13.52931492 63.31169927 -1385.32 13.52931592 63.31169845 -1386.31 13.52931692 63.31169764 -1387.31 13.52931792 63.31169683 -1388.3 13.52931892 63.31169602 -1389.29 13.52931994 63.31169521 -1390.29 13.52932096 63.31169441 -1391.28 13.52932199 63.31169361 -1392.28 13.52932301 63.31169281 -1393.27 13.52932405 63.31169201 -1394.27 13.52932511 63.31169122 -1395.26 13.52932615 63.31169043 -1396.26 13.52932721 63.31168964 -1397.25 13.52932826 63.31168885 -1398.25 13.52932932 63.31168807 -1399.24 13.52933038 63.3116873 -1400.24 13.52933144 63.31168653 -1401.23 13.52933251 63.31168576 -1402.23 13.52933357 63.311685 -1403.22 13.52933463 63.31168425 -1404.22 13.52933568 63.31168351 -1405.21 13.52933676 63.31168276 -1406.21 13.52933781 63.31168203 -1407.2 13.52933887 63.3116813 -1408.2 13.52933992 63.31168057 -1409.19 13.529341 63.31167986 -1410.19 13.52934205 63.31167914 -1411.18 13.52934313 63.31167844 -1412.18 13.5293442 63.31167774 -1413.17 13.52934527 63.31167705 -1414.17 13.52934635 63.31167636 -1415.17 13.52934744 63.31167568 -1416.16 13.52934851 63.31167501 -1417.16 13.5293496 63.31167434 -1418.15 13.52935069 63.31167369 -1419.15 13.52935179 63.31167303 -1420.14 13.5293529 63.31167239 -1421.14 13.52935399 63.31167175 -1422.14 13.5293551 63.31167112 -1423.13 13.52935621 63.31167049 -1424.13 13.52935734 63.31166987 -1425.12 13.52935846 63.31166925 -1426.12 13.52935961 63.31166864 -1427.12 13.52936076 63.31166804 -1428.11 13.52936193 63.31166744 -1429.11 13.52936312 63.31166685 -1430.1 13.52936431 63.31166627 -1431.1 13.52936549 63.31166569 -1432.1 13.5293667 63.31166511 -1433.09 13.52936793 63.31166454 -1434.09 13.52936915 63.31166398 -1435.08 13.52937038 63.31166342 -1436.08 13.52937162 63.31166286 -1437.08 13.52937287 63.31166231 -1438.07 13.52937414 63.31166175 -1439.07 13.5293754 63.31166119 -1440.07 13.52937667 63.31166064 -1441.06 13.52937795 63.31166009 -1442.06 13.52937924 63.31165954 -1443.05 13.52938054 63.31165898 -1444.05 13.52938185 63.31165844 -1445.05 13.52938316 63.31165789 -1446.04 13.52938448 63.31165734 -1447.04 13.52938581 63.3116568 -1448.03 13.52938713 63.31165625 -1449.03 13.52938846 63.31165571 -1450.03 13.52938978 63.31165518 -1451.02 13.52939111 63.31165464 -1452.02 13.52939243 63.31165411 -1453.01 13.52939373 63.31165358 -1454.01 13.52939506 63.31165305 -1455.01 13.52939638 63.31165252 -1456 13.52939769 63.311652 -1457 13.52939901 63.31165148 -1457.99 13.52940031 63.31165096 -1458.99 13.52940162 63.31165044 -1459.99 13.52940292 63.31164993 -1460.98 13.52940423 63.31164942 -1461.98 13.52940553 63.31164891 -1462.97 13.52940681 63.3116484 -1463.97 13.5294081 63.31164789 -1464.97 13.52940938 63.31164738 -1465.96 13.52941064 63.31164688 -1466.96 13.5294119 63.31164638 -1467.96 13.52941317 63.31164588 -1468.95 13.52941443 63.31164538 -1469.95 13.52941567 63.31164488 -1470.95 13.52941692 63.31164439 -1471.94 13.52941816 63.3116439 -1472.94 13.5294194 63.3116434 -1473.94 13.52942062 63.31164291 -1474.93 13.52942187 63.31164242 -1475.93 13.52942311 63.31164193 -1476.93 13.52942433 63.31164144 -1477.92 13.52942557 63.31164095 -1478.92 13.52942682 63.31164047 -1479.92 13.52942804 63.31163998 -1480.91 13.52942928 63.31163949 -1481.91 13.5294305 63.311639 -1482.9 13.52943173 63.31163852 -1483.9 13.52943297 63.31163803 -1484.9 13.52943419 63.31163755 -1485.89 13.52943543 63.31163706 -1486.89 13.52943669 63.31163658 -1487.89 13.52943794 63.3116361 -1488.88 13.5294392 63.31163562 -1489.88 13.52944046 63.31163514 -1490.88 13.52944174 63.31163466 -1491.87 13.529443 63.31163418 -1492.87 13.52944429 63.3116337 -1493.87 13.52944559 63.31163323 -1494.86 13.52944689 63.31163275 -1495.86 13.52944819 63.31163227 -1496.86 13.52944949 63.3116318 -1497.85 13.5294508 63.31163132 -1498.85 13.5294521 63.31163084 -1499.85 13.5294534 63.31163036 -1500.84 13.52945468 63.31162987 -1501.84 13.52945598 63.31162938 -1502.84 13.52945727 63.31162889 -1503.83 13.52945855 63.31162839 -1504.83 13.52945983 63.31162789 -1505.82 13.52946111 63.31162739 -1506.82 13.52946238 63.31162689 -1507.82 13.52946366 63.31162638 -1508.81 13.52946492 63.31162588 -1509.81 13.52946619 63.31162537 -1510.81 13.52946747 63.31162486 -1511.8 13.52946873 63.31162435 -1512.8 13.52947002 63.31162384 -1513.8 13.52947128 63.31162334 -1514.79 13.52947256 63.31162283 -1515.79 13.52947383 63.31162233 -1516.78 13.52947511 63.31162183 -1517.78 13.52947639 63.31162133 -1518.78 13.52947768 63.31162083 -1519.77 13.52947896 63.31162033 -1520.77 13.52948024 63.31161983 -1521.77 13.52948152 63.31161933 -1522.76 13.52948281 63.31161883 -1523.76 13.52948409 63.31161833 -1524.76 13.52948537 63.31161783 -1525.75 13.52948668 63.31161733 -1526.75 13.52948796 63.31161682 -1527.74 13.52948924 63.31161632 -1528.74 13.52949055 63.31161581 -1529.74 13.52949183 63.3116153 -1530.73 13.52949313 63.31161479 -1531.73 13.52949444 63.31161428 -1532.73 13.52949572 63.31161376 -1533.72 13.52949702 63.31161325 -1534.72 13.52949833 63.31161274 -1535.71 13.52949963 63.31161222 -1536.71 13.52950094 63.31161171 -1537.71 13.52950224 63.31161119 -1538.7 13.52950356 63.31161068 -1539.7 13.52950489 63.31161017 -1540.7 13.52950619 63.31160965 -1541.69 13.52950751 63.31160914 -1542.69 13.52950884 63.31160863 -1543.68 13.52951016 63.31160812 -1544.68 13.5295115 63.3116076 -1545.68 13.52951283 63.31160709 -1546.67 13.52951417 63.31160658 -1547.67 13.52951549 63.31160607 -1548.66 13.52951682 63.31160556 -1549.66 13.52951814 63.31160505 -1550.66 13.52951946 63.31160453 -1551.65 13.52952079 63.31160402 -1552.65 13.52952209 63.31160351 -1553.65 13.52952341 63.31160299 -1554.64 13.52952472 63.31160247 -1555.64 13.52952602 63.31160196 -1556.63 13.52952731 63.31160144 -1557.63 13.52952861 63.31160093 -1558.63 13.52952989 63.31160041 -1559.62 13.52953118 63.31159989 -1560.62 13.52953246 63.31159937 -1561.62 13.52953374 63.31159886 -1562.61 13.52953503 63.31159834 -1563.61 13.52953629 63.31159782 -1564.6 13.52953758 63.31159731 -1565.6 13.52953884 63.31159679 -1566.6 13.5295401 63.31159628 -1567.59 13.52954137 63.31159576 -1568.59 13.52954261 63.31159525 -1569.59 13.52954387 63.31159474 -1570.58 13.52954512 63.31159422 -1571.58 13.52954636 63.31159371 -1572.58 13.52954761 63.3115932 -1573.57 13.52954885 63.31159269 -1574.57 13.52955009 63.31159217 -1575.56 13.52955132 63.31159166 -1576.56 13.52955254 63.31159114 -1577.56 13.52955376 63.31159063 -1578.55 13.52955497 63.31159012 -1579.55 13.52955617 63.3115896 -1580.55 13.52955738 63.31158909 -1581.54 13.52955858 63.31158857 -1582.54 13.52955978 63.31158806 -1583.54 13.52956097 63.31158754 -1584.53 13.52956215 63.31158703 -1585.53 13.52956334 63.31158651 -1586.53 13.52956452 63.311586 -1587.52 13.52956568 63.31158548 -1588.52 13.52956685 63.31158497 -1589.52 13.52956801 63.31158445 -1590.51 13.52956917 63.31158394 -1591.51 13.52957032 63.31158342 -1592.51 13.52957148 63.31158291 -1593.5 13.52957263 63.31158239 -1594.5 13.52957375 63.31158187 -1595.5 13.52957489 63.31158136 -1596.49 13.52957602 63.31158084 -1597.49 13.52957716 63.31158033 -1598.49 13.52957829 63.31157981 -1599.48 13.52957941 63.3115793 -1600.48 13.52958051 63.31157878 -1601.48 13.52958164 63.31157827 -1602.47 13.52958276 63.31157776 -1603.47 13.52958387 63.31157725 -1604.47 13.52958499 63.31157674 -1605.46 13.52958609 63.31157623 -1606.46 13.5295872 63.31157572 -1607.46 13.5295883 63.31157521 -1608.45 13.52958941 63.3115747 -1609.45 13.52959051 63.31157419 -1610.45 13.52959159 63.31157369 -1611.45 13.5295927 63.31157318 -1612.44 13.52959378 63.31157268 -1613.44 13.52959488 63.31157217 -1614.44 13.52959597 63.31157167 -1615.43 13.52959705 63.31157116 -1616.43 13.52959813 63.31157066 -1617.43 13.52959922 63.31157016 -1618.42 13.5296003 63.31156966 -1619.42 13.52960136 63.31156916 -1620.42 13.52960245 63.31156866 -1621.41 13.52960351 63.31156816 -1622.41 13.52960457 63.31156766 -1623.41 13.52960564 63.31156716 -1624.41 13.5296067 63.31156666 -1625.4 13.52960774 63.31156615 -1626.4 13.52960879 63.31156566 -1627.4 13.52960983 63.31156516 -1628.39 13.52961087 63.31156466 -1629.39 13.5296119 63.31156416 -1630.39 13.52961292 63.31156367 -1631.39 13.52961394 63.31156317 -1632.38 13.52961497 63.31156267 -1633.38 13.52961597 63.31156217 -1634.38 13.52961699 63.31156167 -1635.37 13.529618 63.31156118 -1636.37 13.52961898 63.31156068 -1637.37 13.52961998 63.31156019 -1638.37 13.52962097 63.31155968 -1639.36 13.52962195 63.31155919 -1640.36 13.52962294 63.31155869 -1641.36 13.5296239 63.3115582 -1642.35 13.52962488 63.3115577 -1643.35 13.52962585 63.3115572 -1644.35 13.52962679 63.31155671 -1645.35 13.52962775 63.31155622 -1646.34 13.52962869 63.31155572 -1647.34 13.52962964 63.31155523 -1648.34 13.5296306 63.31155475 -1649.34 13.52963154 63.31155426 -1650.33 13.52963247 63.31155378 -1651.33 13.52963341 63.3115533 -1652.33 13.52963435 63.31155283 -1653.33 13.52963527 63.31155236 -1654.32 13.5296362 63.3115519 -1655.32 13.52963712 63.31155143 -1656.32 13.52963804 63.31155096 -1657.32 13.52963896 63.31155051 -1658.31 13.52963988 63.31155005 -1659.31 13.52964078 63.3115496 -1660.31 13.5296417 63.31154915 -1661.31 13.52964261 63.3115487 -1662.3 13.52964351 63.31154826 -1663.3 13.52964441 63.31154783 -1664.3 13.52964529 63.31154739 -1665.3 13.52964619 63.31154696 -1666.3 13.52964709 63.31154652 -1667.29 13.52964797 63.31154609 -1668.29 13.52964885 63.31154567 -1669.29 13.52964973 63.31154525 -1670.29 13.52965061 63.31154483 -1671.29 13.52965147 63.31154442 -1672.28 13.52965235 63.31154399 -1673.28 13.52965321 63.31154358 -1674.28 13.52965408 63.31154316 -1675.28 13.52965494 63.31154275 -1676.28 13.5296558 63.31154232 -1677.27 13.52965666 63.31154191 -1678.27 13.52965752 63.31154149 -1679.27 13.52965838 63.31154108 -1680.27 13.52965922 63.31154065 -1681.27 13.52966008 63.31154024 -1682.26 13.52966094 63.31153982 -1683.26 13.52966178 63.3115394 -1684.26 13.52966262 63.31153898 -1685.26 13.52966346 63.31153856 -1686.26 13.5296643 63.31153814 -1687.25 13.52966514 63.31153773 -1688.25 13.52966598 63.3115373 -1689.25 13.52966682 63.31153688 -1690.25 13.52966766 63.31153647 -1691.25 13.52966848 63.31153604 -1692.24 13.52966932 63.31153562 -1693.24 13.52967014 63.31153521 -1694.24 13.52967096 63.31153479 -1695.24 13.52967178 63.31153436 -1696.24 13.5296726 63.31153394 -1697.23 13.52967342 63.31153353 -1698.23 13.52967424 63.31153311 -1699.23 13.52967506 63.31153268 -1700.23 13.52967588 63.31153227 -1701.23 13.5296767 63.31153185 -1702.22 13.5296775 63.31153143 -1703.22 13.52967832 63.31153101 -1704.22 13.52967914 63.31153059 -1705.22 13.52967996 63.31153018 -1706.22 13.52968076 63.31152975 -1707.21 13.52968157 63.31152934 -1708.21 13.52968237 63.31152892 -1709.21 13.52968319 63.3115285 -1710.21 13.52968399 63.31152809 -1711.21 13.52968481 63.31152767 -1712.2 13.52968561 63.31152725 -1713.2 13.52968643 63.31152684 -1714.2 13.52968723 63.31152643 -1715.2 13.52968805 63.311526 -1716.2 13.52968885 63.31152559 -1717.2 13.52968965 63.31152518 -1718.19 13.52969045 63.31152476 -1719.19 13.52969127 63.31152435 -1720.19 13.52969207 63.31152394 -1721.19 13.52969287 63.31152352 -1722.19 13.52969367 63.3115231 -1723.18 13.52969447 63.31152269 -1724.18 13.52969527 63.31152227 -1725.18 13.52969607 63.31152186 -1726.18 13.52969687 63.31152145 -1727.18 13.52969767 63.31152102 -1728.17 13.52969845 63.31152061 -1729.17 13.52969925 63.3115202 -1730.17 13.52970005 63.31151977 -1731.17 13.52970083 63.31151936 -1732.17 13.52970163 63.31151894 -1733.17 13.52970241 63.31151852 -1734.16 13.5297032 63.3115181 -1735.16 13.52970398 63.31151769 -1736.16 13.52970476 63.31151726 -1737.16 13.52970556 63.31151684 -1738.16 13.52970634 63.31151643 -1739.15 13.52970712 63.311516 -1740.15 13.5297079 63.31151558 -1741.15 13.52970868 63.31151516 -1742.15 13.52970946 63.31151474 -1743.15 13.52971024 63.31151432 -1744.14 13.52971102 63.3115139 -1745.14 13.52971178 63.31151348 -1746.14 13.52971256 63.31151305 -1747.14 13.52971334 63.31151262 -1748.14 13.5297141 63.3115122 -1749.14 13.52971486 63.31151177 -1750.13 13.52971562 63.31151135 -1751.13 13.52971638 63.31151092 -1752.13 13.52971714 63.3115105 -1753.13 13.52971791 63.31151006 -1754.13 13.52971865 63.31150963 -1755.12 13.52971939 63.3115092 -1756.12 13.52972013 63.31150877 -1757.12 13.52972087 63.31150834 -1758.12 13.52972161 63.3115079 -1759.12 13.52972235 63.31150747 -1760.12 13.52972307 63.31150703 -1761.11 13.52972381 63.3115066 -1762.11 13.52972453 63.31150617 -1763.11 13.52972525 63.31150572 -1764.11 13.52972597 63.31150528 -1765.11 13.52972667 63.31150485 -1766.1 13.5297274 63.31150441 -1767.1 13.5297281 63.31150397 -1768.1 13.5297288 63.31150353 -1769.1 13.5297295 63.31150308 -1770.1 13.5297302 63.31150263 -1771.09 13.5297309 63.31150219 -1772.09 13.5297316 63.31150175 -1773.09 13.52973228 63.3115013 -1774.09 13.52973299 63.31150086 -1775.09 13.52973367 63.31150042 -1776.09 13.52973435 63.31149996 -1777.08 13.52973505 63.31149952 -1778.08 13.52973573 63.31149908 -1779.08 13.52973641 63.31149863 -1780.08 13.52973709 63.31149819 -1781.08 13.52973777 63.31149774 -1782.07 13.52973846 63.3114973 -1783.07 13.52973914 63.31149685 -1784.07 13.52973982 63.3114964 -1785.07 13.5297405 63.31149595 -1786.07 13.52974118 63.31149551 -1787.07 13.52974186 63.31149506 -1788.06 13.52974252 63.31149462 -1789.06 13.52974321 63.31149417 -1790.06 13.52974387 63.31149373 -1791.06 13.52974455 63.31149327 -1792.06 13.52974521 63.31149283 -1793.05 13.52974589 63.31149238 -1794.05 13.52974655 63.31149193 -1795.05 13.52974721 63.31149149 -1796.05 13.5297479 63.31149104 -1797.05 13.52974856 63.3114906 -1798.05 13.52974922 63.31149015 -1799.04 13.52974988 63.31148969 -1800.04 13.52975054 63.31148924 -1801.04 13.5297512 63.31148879 -1802.04 13.52975189 63.31148834 -1803.04 13.52975255 63.3114879 -1804.04 13.52975321 63.31148745 -1805.03 13.52975387 63.311487 -1806.03 13.52975453 63.31148654 -1807.03 13.52975521 63.31148609 -1808.03 13.52975588 63.31148564 -1809.03 13.52975654 63.31148518 -1810.02 13.5297572 63.31148473 -1811.02 13.52975786 63.31148428 -1812.02 13.52975852 63.31148382 -1813.02 13.52975918 63.31148337 -1814.02 13.52975987 63.31148291 -1815.01 13.52976053 63.31148246 -1816.01 13.52976119 63.31148201 -1817.01 13.52976185 63.31148155 -1818.01 13.52976251 63.31148109 -1819.01 13.52976318 63.31148064 -1820.01 13.52976384 63.31148018 -1821 13.5297645 63.31147972 -1822 13.52976516 63.31147927 -1823 13.52976582 63.31147881 -1824 13.52976649 63.31147835 -1825 13.52976713 63.3114779 -1825.99 13.52976777 63.31147744 -1826.99 13.52976841 63.31147698 -1827.99 13.52976905 63.31147653 -1828.99 13.52976968 63.31147607 -1829.99 13.52977032 63.31147561 -1830.99 13.52977094 63.31147515 -1831.98 13.52977156 63.31147469 -1832.98 13.52977216 63.31147424 -1833.98 13.52977279 63.31147378 -1834.98 13.52977339 63.31147333 -1835.98 13.52977399 63.31147287 -1836.98 13.52977459 63.31147242 -1837.97 13.5297752 63.31147196 -1838.97 13.5297758 63.31147151 -1839.97 13.52977638 63.31147105 -1840.97 13.52977696 63.31147059 -1841.97 13.52977754 63.31147014 -1842.96 13.52977813 63.31146968 -1843.96 13.52977869 63.31146923 -1844.96 13.52977925 63.31146878 -1845.96 13.52977981 63.31146832 -1846.96 13.52978037 63.31146786 -1847.96 13.52978094 63.31146741 -1848.95 13.5297815 63.31146696 -1849.95 13.52978206 63.31146651 -1850.95 13.52978262 63.31146606 -1851.95 13.52978318 63.3114656 -1852.95 13.52978373 63.31146514 -1853.95 13.52978429 63.31146469 -1854.94 13.52978485 63.31146424 -1855.94 13.52978539 63.31146379 -1856.94 13.52978595 63.31146333 -1857.94 13.5297865 63.31146288 -1858.94 13.52978706 63.31146243 -1859.94 13.5297876 63.31146199 -1860.93 13.52978814 63.31146153 -1861.93 13.5297887 63.31146108 -1862.93 13.52978925 63.31146063 -1863.93 13.52978979 63.31146018 -1864.93 13.52979033 63.31145973 -1865.93 13.52979089 63.31145927 -1866.92 13.52979143 63.31145883 -1867.92 13.52979197 63.31145838 -1868.92 13.52979252 63.31145793 -1869.92 13.52979306 63.31145748 -1870.92 13.5297936 63.31145703 -1871.92 13.52979412 63.31145658 -1872.91 13.52979466 63.31145613 -1873.91 13.52979519 63.31145568 -1874.91 13.52979573 63.31145524 -1875.91 13.52979625 63.31145479 -1876.91 13.52979675 63.31145434 -1877.91 13.52979727 63.31145389 -1878.91 13.52979777 63.31145345 -1879.9 13.52979828 63.31145299 -1880.9 13.52979878 63.31145255 -1881.9 13.52979928 63.31145211 -1882.9 13.52979978 63.31145166 -1883.9 13.52980026 63.31145121 -1884.9 13.52980075 63.31145077 -1885.89 13.52980123 63.31145032 -1886.89 13.52980169 63.31144988 -1887.89 13.52980217 63.31144943 -1888.89 13.52980263 63.31144899 -1889.89 13.52980309 63.31144855 -1890.89 13.52980356 63.3114481 -1891.89 13.529804 63.31144766 -1892.88 13.52980446 63.31144722 -1893.88 13.5298049 63.31144678 -1894.88 13.52980534 63.31144633 -1895.88 13.52980578 63.3114459 -1896.88 13.52980621 63.31144545 -1897.88 13.52980665 63.31144501 -1898.88 13.52980707 63.31144458 -1899.87 13.52980751 63.31144413 -1900.87 13.52980793 63.3114437 -1901.87 13.52980835 63.31144325 -1902.87 13.52980878 63.31144281 -1903.87 13.5298092 63.31144237 -1904.87 13.5298096 63.31144193 -1905.87 13.52981002 63.31144148 -1906.86 13.52981044 63.31144105 -1907.86 13.52981084 63.3114406 -1908.86 13.52981125 63.31144016 -1909.86 13.52981167 63.31143972 -1910.86 13.52981207 63.31143928 -1911.86 13.52981247 63.31143883 -1912.86 13.52981287 63.3114384 -1913.85 13.52981327 63.31143795 -1914.85 13.52981366 63.31143751 -1915.85 13.52981406 63.31143707 -1916.85 13.52981444 63.31143663 -1917.85 13.52981484 63.31143618 -1918.85 13.52981522 63.31143575 -1919.85 13.52981561 63.3114353 -1920.84 13.52981599 63.31143486 -1921.84</gml:posList> </gml:LineString> </sams:shape> <eposb:boreholeUse> <eposb:BoreholeUse> <eposb:use xlink:href="https://data.geoscience.earth/ncl/BoreholePurpose/_multiDisciplinaryScientificResearch" xlink:title="multidisciplinary scientific research"/> <eposb:usePeriod> <gml:TimePeriod> <gml:begin> <gml:TimeInstant> <gml:timePosition>2020-04-13Z</gml:timePosition> </gml:TimeInstant> </gml:begin> <gml:end> <gml:TimeInstant> <gml:timePosition indeterminatePosition="unknown"/> </gml:TimeInstant> </gml:end> </gml:TimePeriod> </eposb:usePeriod> <eposb:useStatus xlink:href="http://www.opengis.net/def/nil/ogc/0/unknown" xlink:title="unknown"/> </eposb:BoreholeUse> </eposb:boreholeUse> <eposb:custodian> <eposb:Custodian> <eposb:custodian> <gmd:CI_ResponsibleParty id="UU-hl-0.0719975751239279"> <gmd:individualName> <gco:CharacterString>Henning Lorenz</gco:CharacterString> </gmd:individualName> <gmd:organisationName> <gco:CharacterString>Uppsala University, Department of Earth Sciences</gco:CharacterString> </gmd:organisationName> <gmd:positionName> <gco:CharacterString>Coordinator scientific drilling</gco:CharacterString> </gmd:positionName> <gmd:contactInfo> <gmd:CI_Contact id="UU-hl-0.5062105553609909"> <gmd:phone> <gmd:CI_Telephone id="UU-hl-PH-0.08508210343768241"> <gmd:voice> <gco:CharacterString>+464712324</gco:CharacterString> </gmd:voice> </gmd:CI_Telephone> </gmd:phone> <gmd:address> <gmd:CI_Address id="UU-hl-ADR-0.865004495990486"> <gmd:deliveryPoint> <gco:CharacterString>Villavägen 16</gco:CharacterString> </gmd:deliveryPoint> <gmd:city> <gco:CharacterString>Uppsala</gco:CharacterString> </gmd:city> <gmd:postalCode> <gco:CharacterString>753 26</gco:CharacterString> </gmd:postalCode> <gmd:country> <gco:CharacterString>Sweden</gco:CharacterString> </gmd:country> <gmd:electronicMailAddress> <gco:CharacterString>henning.lorenz@geo.uu.se</gco:CharacterString> </gmd:electronicMailAddress> </gmd:CI_Address> </gmd:address> <gmd:onlineResource> <gmd:CI_OnlineResource id="UU-hl-OR-0.6514525459888354"> <gmd:linkage> <gmd:URL>https://katalog.uu.se/profile/?id=N0-558</gmd:URL> </gmd:linkage> </gmd:CI_OnlineResource> </gmd:onlineResource> <gmd:hoursOfService> <gco:CharacterString>Office hours for phone contact</gco:CharacterString> </gmd:hoursOfService> <gmd:contactInstructions> <gco:CharacterString>In case of problems, contact the organisation</gco:CharacterString> </gmd:contactInstructions> </gmd:CI_Contact> </gmd:contactInfo> <gmd:role> <gmd:CI_RoleCode codeList="https://github.com/ISO-TC211/GOM/raw/master/isotc211_GOM_harmonizedOntology/19115/2006/iso19115CitationAndResponsiblePartyInformation.rdf" codeListValue="point Of Contact"/> </gmd:role> </gmd:CI_ResponsibleParty> </eposb:custodian> <eposb:custodianPeriod> <gml:TimePeriod> <gml:begin> <gml:TimeInstant> <gml:timePosition>2020-04-13Z</gml:timePosition> </gml:TimeInstant> </gml:begin> <gml:end> <gml:TimeInstant> <gml:timePosition indeterminatePosition="unknown"/> </gml:TimeInstant> </gml:end> </gml:TimePeriod> </eposb:custodianPeriod> </eposb:Custodian> </eposb:custodian> <eposb:custodian> <eposb:Custodian> <eposb:custodian> <gmd:CI_ResponsibleParty id="BGR-CR-0.9567206589526526"> <gmd:individualName> <gco:CharacterString>Tina Kollaske</gco:CharacterString> </gmd:individualName> <gmd:organisationName> <gco:CharacterString>Federal Institute for Geosciences and Natural Resources (BGR), Core archive for research drilling</gco:CharacterString> </gmd:organisationName> <gmd:positionName> <gco:CharacterString>Curator</gco:CharacterString> </gmd:positionName> <gmd:contactInfo> <gmd:CI_Contact id="BGR-CR-0.46414096537105043"> <gmd:phone> <gmd:CI_Telephone id="BGR-CR-PH-0.2116646140721562"> <gmd:voice> <gco:CharacterString>+493036993413</gco:CharacterString> </gmd:voice> <gmd:facsimile> <gco:CharacterString>+493036993100</gco:CharacterString> </gmd:facsimile> </gmd:CI_Telephone> </gmd:phone> <gmd:address> <gmd:CI_Address id="BGR-CR-ADR-0.32903689700022676"> <gmd:deliveryPoint> <gco:CharacterString>Wilhelmstraße 25-30</gco:CharacterString> </gmd:deliveryPoint> <gmd:city> <gco:CharacterString>Berlin-Spandau</gco:CharacterString> </gmd:city> <gmd:postalCode> <gco:CharacterString>13593</gco:CharacterString> </gmd:postalCode> <gmd:country> <gco:CharacterString>Germany</gco:CharacterString> </gmd:country> <gmd:electronicMailAddress> <gco:CharacterString>tina.kollaske@bgr.de</gco:CharacterString> </gmd:electronicMailAddress> </gmd:CI_Address> </gmd:address> <gmd:onlineResource> <gmd:CI_OnlineResource id="BGR-CR-OR-0.9105738389764192"> <gmd:linkage> <gmd:URL>https://www.geozentrum-hannover.de/DE/Themen/Sammlungen-Grundlagen/Bohrkernlager/Bohrkernlager_kontinentale_Forschungsbohrungen/Bohrkernlager_kontinentale_Forschungsbohrungen_inhalt.html?nn=1554998</gmd:URL> </gmd:linkage> </gmd:CI_OnlineResource> </gmd:onlineResource> <gmd:hoursOfService> <gco:CharacterString>Office hours for phone contact</gco:CharacterString> </gmd:hoursOfService> </gmd:CI_Contact> </gmd:contactInfo> <gmd:role> <gmd:CI_RoleCode codeList="https://github.com/ISO-TC211/GOM/raw/master/isotc211_GOM_harmonizedOntology/19115/2006/iso19115CitationAndResponsiblePartyInformation.rdf" codeListValue="point Of Contact"/> </gmd:role> </gmd:CI_ResponsibleParty> </eposb:custodian> <eposb:custodianPeriod> <gml:TimePeriod> <gml:begin> <gml:TimeInstant> <gml:timePosition>2020-08-20Z</gml:timePosition> </gml:TimeInstant> </gml:begin> <gml:end> <gml:TimeInstant> <gml:timePosition indeterminatePosition="unknown"/> </gml:TimeInstant> </gml:end> </gml:TimePeriod> </eposb:custodianPeriod> </eposb:Custodian> </eposb:custodian> <eposb:custodian> <eposb:Custodian> <eposb:custodian> <gmd:CI_ResponsibleParty id="GFZ-ICDP-0.8873352038685691"> <gmd:individualName> <gco:CharacterString>Ronald Conze</gco:CharacterString> </gmd:individualName> <gmd:organisationName> <gco:CharacterString>International Continental Scientific Drilling Program (ICDP), GFZ German Research Centre for Geosciences</gco:CharacterString> </gmd:organisationName> <gmd:positionName> <gco:CharacterString>Data Management</gco:CharacterString> </gmd:positionName> <gmd:contactInfo> <gmd:CI_Contact id="GFZ-ICDP-0.2103363470269094"> <gmd:phone> <gmd:CI_Telephone id="GFZ-ICDP-PH-0.8883090952355986"> <gmd:voice> <gco:CharacterString>+493312881082</gco:CharacterString> </gmd:voice> </gmd:CI_Telephone> </gmd:phone> <gmd:address> <gmd:CI_Address id="GFZ-ICDP-ADR-0.5870292605604642"> <gmd:deliveryPoint> <gco:CharacterString> Telegrafenberg 69A</gco:CharacterString> </gmd:deliveryPoint> <gmd:city> <gco:CharacterString>Potsdam</gco:CharacterString> </gmd:city> <gmd:postalCode> <gco:CharacterString>14473</gco:CharacterString> </gmd:postalCode> <gmd:country> <gco:CharacterString>Germany</gco:CharacterString> </gmd:country> <gmd:electronicMailAddress> <gco:CharacterString>dm@icdp-online.org</gco:CharacterString> </gmd:electronicMailAddress> </gmd:CI_Address> </gmd:address> <gmd:onlineResource> <gmd:CI_OnlineResource id="GFZ-ICDP-OR-0.8071806820184991"> <gmd:linkage> <gmd:URL>https://www.icdp-online.org/contact/</gmd:URL> </gmd:linkage> </gmd:CI_OnlineResource> </gmd:onlineResource> <gmd:hoursOfService> <gco:CharacterString>Office hours for phone contact</gco:CharacterString> </gmd:hoursOfService> </gmd:CI_Contact> </gmd:contactInfo> <gmd:role> <gmd:CI_RoleCode codeList="https://github.com/ISO-TC211/GOM/raw/master/isotc211_GOM_harmonizedOntology/19115/2006/iso19115CitationAndResponsiblePartyInformation.rdf" codeListValue="point Of Contact"/> </gmd:role> </gmd:CI_ResponsibleParty> </eposb:custodian> <eposb:custodianPeriod> <gml:TimePeriod> <gml:begin> <gml:TimeInstant> <gml:timePosition>2020-08-08Z</gml:timePosition> </gml:TimeInstant> </gml:begin> <gml:end> <gml:TimeInstant> <gml:timePosition indeterminatePosition="unknown"/> </gml:TimeInstant> </gml:end> </gml:TimePeriod> </eposb:custodianPeriod> </eposb:Custodian> </eposb:custodian> <eposb:legalAccessLevel> <gmd:MD_LegalConstraints> <gmd:accessConstraints> <gmd:MD_RestrictionCode codeList="http://registry.it.csiro.au/def/isotc211/MD_RestrictionCode/private" codeListValue="http://registry.it.csiro.au/def/isotc211/MD_RestrictionCode/private"/> </gmd:accessConstraints> </gmd:MD_LegalConstraints> </eposb:legalAccessLevel> <eposb:length uom="http://qudt.org/vocab/unit/M">2276.05</eposb:length> <eposb:operator> <eposb:Operator> <eposb:operator> <gmd:CI_ResponsibleParty id="UU-hl-0.1678677017627156"> <gmd:individualName> <gco:CharacterString>Henning Lorenz</gco:CharacterString> </gmd:individualName> <gmd:organisationName> <gco:CharacterString>Uppsala University, Department of Earth Sciences</gco:CharacterString> </gmd:organisationName> <gmd:positionName> <gco:CharacterString>Coordinator scientific drilling</gco:CharacterString> </gmd:positionName> <gmd:contactInfo> <gmd:CI_Contact id="UU-hl-0.4876165066229553"> <gmd:phone> <gmd:CI_Telephone id="UU-hl-PH-0.6697169682029133"> <gmd:voice> <gco:CharacterString>+464712324</gco:CharacterString> </gmd:voice> </gmd:CI_Telephone> </gmd:phone> <gmd:address> <gmd:CI_Address id="UU-hl-ADR-0.9551668431767124"> <gmd:deliveryPoint> <gco:CharacterString>Villavägen 16</gco:CharacterString> </gmd:deliveryPoint> <gmd:city> <gco:CharacterString>Uppsala</gco:CharacterString> </gmd:city> <gmd:postalCode> <gco:CharacterString>753 26</gco:CharacterString> </gmd:postalCode> <gmd:country> <gco:CharacterString>Sweden</gco:CharacterString> </gmd:country> <gmd:electronicMailAddress> <gco:CharacterString>henning.lorenz@geo.uu.se</gco:CharacterString> </gmd:electronicMailAddress> </gmd:CI_Address> </gmd:address> <gmd:onlineResource> <gmd:CI_OnlineResource id="UU-hl-OR-0.6663582846043291"> <gmd:linkage> <gmd:URL>https://katalog.uu.se/profile/?id=N0-558</gmd:URL> </gmd:linkage> </gmd:CI_OnlineResource> </gmd:onlineResource> <gmd:hoursOfService> <gco:CharacterString>Office hours for phone contact</gco:CharacterString> </gmd:hoursOfService> <gmd:contactInstructions> <gco:CharacterString>In case of problems, contact the organisation</gco:CharacterString> </gmd:contactInstructions> </gmd:CI_Contact> </gmd:contactInfo> <gmd:role> <gmd:CI_RoleCode codeList="https://github.com/ISO-TC211/GOM/raw/master/isotc211_GOM_harmonizedOntology/19115/2006/iso19115CitationAndResponsiblePartyInformation.rdf" codeListValue="point Of Contact"/> </gmd:role> </gmd:CI_ResponsibleParty> </eposb:operator> <eposb:operatorPeriod> <gml:TimePeriod> <gml:begin> <gml:TimeInstant> <gml:timePosition>2020-04-13Z</gml:timePosition> </gml:TimeInstant> </gml:begin> <gml:end> <gml:TimeInstant> <gml:timePosition>2020-08-08Z</gml:timePosition> </gml:TimeInstant> </gml:end> </gml:TimePeriod> </eposb:operatorPeriod> </eposb:Operator> </eposb:operator> <eposb:purpose> <eposb:Purpose> <eposb:purpose xlink:href="https://data.geoscience.earth/ncl/BoreholePurpose/_multiDisciplinaryScientificResearch" xlink:title="multidisciplinary scientific research"/> <eposb:purposePeriod> <gml:TimePeriod> <gml:begin> <gml:TimeInstant> <gml:timePosition>2020-04-13Z</gml:timePosition> </gml:TimeInstant> </gml:begin> <gml:end> <gml:TimeInstant> <gml:timePosition indeterminatePosition="unknown"/> </gml:TimeInstant> </gml:end> </gml:TimePeriod> </eposb:purposePeriod> <eposb:purposeStatus xlink:href="http://www.opengis.net/def/nil/ogc/0/unknown" xlink:title="unknown"/> </eposb:Purpose> </eposb:purpose> <eposb:referenceElevation> <eposb:Elevation> <eposb:elevation axisLabels="elevation above sea level" srsDimension="3" srsName="https://epsg.io/4979" uomLabels="m">320.25</eposb:elevation> <eposb:elevationAccuracy> <gmd:DQ_AbsoluteExternalPositionalAccuracy id="SD-5054_2_A_collar-PosAcc"> <gmd:result> <gmd:DQ_QuantitativeResult id="SD-5054_2_A_collar-0.5579400476605301"> <gmd:valueUnit xlink:href="http://qudt.org/vocab/unit/M" xlink:title="m"/> <gmd:value> <gco:Record>0.1</gco:Record> </gmd:value> </gmd:DQ_QuantitativeResult> </gmd:result> </gmd:DQ_AbsoluteExternalPositionalAccuracy> </eposb:elevationAccuracy> <eposb:elevationMeasurementMethod xlink:href="https://dbpedia.org/resource/Real-time_kinematic_positioning" xlink:title="RTK GNSS"/> <eposb:elevationType xlink:href="https://data.geoscience.earth/ncl/ElevationType/naturalGroundSurface" xlink:title="natural ground surface"/> </eposb:Elevation> </eposb:referenceElevation> <eposb:startPoint xlink:href="natural land surface" xlink:title="https://data.geoscience.earth/ncl/StartPoint/naturalLandSurface"/> <eposb:status xlink:href="https://data.geoscience.earth/ncl/BoreholeStatus/drillingCompleted" xlink:title="drilling completed"/> <eposb:boreCollarPositionalAccuracy uom="http://qudt.org/vocab/unit/M">0.1</eposb:boreCollarPositionalAccuracy> <eposb:locationMeasurementMethod xlink:href="https://dbpedia.org/resource/Real-time_kinematic_positioning" xlink:title="RTK-GNSS"/> <eposb:accessibleDepth> <eposb:AccessibleDepth> <eposb:depthObservationTime> <gml:TimeInstant> <gml:timePosition>2021-10-01Z</gml:timePosition> </gml:TimeInstant> </eposb:depthObservationTime> <eposb:depth uom="http://qudt.org/vocab/unit/M">2276.0</eposb:depth> </eposb:AccessibleDepth> </eposb:accessibleDepth> <eposb:locatedOnAdminUnit xlink:href="http://www.opengis.net/def/nil/ogc/0/unknown" xlink:title="unknown"/> <eposb:bholeHeadworks> <gwml2wc:BoreCollar gml:id="SD-5054_2_A_collar"> <gml:description>Casing in circular, shallow cellar made of concrete rings. Concrete manhole cover with access hatch .</gml:description> <gml:name>5054_2_A_collar</gml:name> <gwml2wc:collarElevation axisLabels="elevation-depth" srsDimension="1" srsName="5613" uomLabels="m">320.250</gwml2wc:collarElevation> <gwml2wc:collarElevationType xlink:href="http://resource.gwml.org/def/collarElevationType/originElevation"/> <gwml2wc:collarHeadworkType xlink:href="https://data.geoscience.earth/ncl/CollarHeadworkType/hood" xlink:title="hood"/> <gwml2wc:collarLocation> <gml:Point srsDimension="3" srsName="http://www.opengis.net/gml/srs/epsg.xml#4979"> <gml:pos>13.5264796 63.3124458 320.05</gml:pos> </gml:Point> </gwml2wc:collarLocation> <gwml2wc:collarSeal> <gwml2wc:SealingComponent> <gwml2wc:sealingMaterial xlink:href="http://somedictionary/concrete" xlink:title="concrete"/> <gwml2wc:sealingType xlink:href="http://somedictionary/annularSealing" xlink:title="annular sealing"/> </gwml2wc:SealingComponent> </gwml2wc:collarSeal> </gwml2wc:BoreCollar> </eposb:bholeHeadworks> <eposb:bholeConstruction> <gwml2wc:Casing gml:id="SD-5054_2_A-casing-0.3132346196298238"> <gwml2wc:casingElement> <gwml2wc:CasingComponent gml:id="SD-5054_2_A-casing-0.000-9.000"> <gml:description>Surface casing</gml:description> <gwml2wc:from> <swe:Quantity> <swe:uom code="m"/> <swe:value>0.0</swe:value> </swe:Quantity> </gwml2wc:from> <gwml2wc:to> <swe:Quantity> <swe:uom code="m"/> <swe:value>9.0</swe:value> </swe:Quantity> </gwml2wc:to> <gwml2wc:casingMaterial xlink:href="http://www.sandre.eaufrance.fr/?urn=urn:sandre:donnees:154::CdElement:1:::referentiel:3.1:xml" xlink:title="steel"/> <gwml2wc:casingInternalDiameter> <swe:Quantity> <swe:uom code="m"/> <swe:value>0.1837</swe:value> </swe:Quantity> </gwml2wc:casingInternalDiameter> <gwml2wc:casingExternalDiameter> <swe:Quantity> <swe:uom code="m"/> <swe:value>0.1937</swe:value> </swe:Quantity> </gwml2wc:casingExternalDiameter> </gwml2wc:CasingComponent> </gwml2wc:casingElement> <gwml2wc:casingElement> <gwml2wc:CasingComponent gml:id="SD-5054_2_A-casing-0.000-100.000"> <gml:description>ODEX115 conductor casing</gml:description> <gwml2wc:from> <swe:Quantity> <swe:uom code="m"/> <swe:value>0.0</swe:value> </swe:Quantity> </gwml2wc:from> <gwml2wc:to> <swe:Quantity> <swe:uom code="m"/> <swe:value>100.0</swe:value> </swe:Quantity> </gwml2wc:to> <gwml2wc:casingMaterial xlink:href="http://www.sandre.eaufrance.fr/?urn=urn:sandre:donnees:154::CdElement:1:::referentiel:3.1:xml" xlink:title="steel"/> <gwml2wc:casingInternalDiameter> <swe:Quantity> <swe:uom code="m"/> <swe:value>0.1297</swe:value> </swe:Quantity> </gwml2wc:casingInternalDiameter> <gwml2wc:casingExternalDiameter> <swe:Quantity> <swe:uom code="m"/> <swe:value>0.1397</swe:value> </swe:Quantity> </gwml2wc:casingExternalDiameter> </gwml2wc:CasingComponent> </gwml2wc:casingElement> </gwml2wc:Casing> </eposb:bholeConstruction> <eposb:boreholeGeology xlink:href="https://www.geodata.rocks/GeologyLogs/SD-5054_2_A_lithology" xlink:title="SD-5054_2_A_lithology"/> <eposb:boreholeGeology xlink:href="https://www.geodata.rocks/GeologyLogs/SD-5054_2_A_full" xlink:title="SD-5054_2_A_full"/> <eposb:alias> <eposb:Alias gml:id="SD-5054_2_A-COSC-2"> <gml:identifier codeSpace="https://tools.ietf.org/html/rfc3629">https://www.geodata.rocks/Boreholes/SD-5054_2_A</gml:identifier> <gml:name>part of COSC-2 (Collisional Orogeny in the Scandinavian Caledonides)</gml:name> <eposb:origin> <gmd:CI_ResponsibleParty id="UU-hl-0.044458169813276216"> <gmd:individualName> <gco:CharacterString>Henning Lorenz</gco:CharacterString> </gmd:individualName> <gmd:organisationName> <gco:CharacterString>Uppsala University, Department of Earth Sciences</gco:CharacterString> </gmd:organisationName> <gmd:positionName> <gco:CharacterString>Coordinator scientific drilling</gco:CharacterString> </gmd:positionName> <gmd:contactInfo> <gmd:CI_Contact id="UU-hl-0.05054617935656247"> <gmd:phone> <gmd:CI_Telephone id="UU-hl-PH-0.2296272689000478"> <gmd:voice> <gco:CharacterString>+464712324</gco:CharacterString> </gmd:voice> </gmd:CI_Telephone> </gmd:phone> <gmd:address> <gmd:CI_Address id="UU-hl-ADR-0.13502307244809741"> <gmd:deliveryPoint> <gco:CharacterString>Villavägen 16</gco:CharacterString> </gmd:deliveryPoint> <gmd:city> <gco:CharacterString>Uppsala</gco:CharacterString> </gmd:city> <gmd:postalCode> <gco:CharacterString>753 26</gco:CharacterString> </gmd:postalCode> <gmd:country> <gco:CharacterString>Sweden</gco:CharacterString> </gmd:country> <gmd:electronicMailAddress> <gco:CharacterString>henning.lorenz@geo.uu.se</gco:CharacterString> </gmd:electronicMailAddress> </gmd:CI_Address> </gmd:address> <gmd:onlineResource> <gmd:CI_OnlineResource id="UU-hl-OR-0.49793187688917306"> <gmd:linkage> <gmd:URL>https://katalog.uu.se/profile/?id=N0-558</gmd:URL> </gmd:linkage> </gmd:CI_OnlineResource> </gmd:onlineResource> <gmd:hoursOfService> <gco:CharacterString>Office hours for phone contact</gco:CharacterString> </gmd:hoursOfService> <gmd:contactInstructions> <gco:CharacterString>In case of problems, contact the organisation</gco:CharacterString> </gmd:contactInstructions> </gmd:CI_Contact> </gmd:contactInfo> <gmd:role> <gmd:CI_RoleCode codeList="https://github.com/ISO-TC211/GOM/raw/master/isotc211_GOM_harmonizedOntology/19115/2006/iso19115CitationAndResponsiblePartyInformation.rdf" codeListValue="point Of Contact"/> </gmd:role> </gmd:CI_ResponsibleParty> </eposb:origin> <eposb:aliasValidityPeriod> <gml:TimePeriod> <gml:begin> <gml:TimeInstant> <gml:timePosition>2017-01-15Z</gml:timePosition> </gml:TimeInstant> </gml:begin> <gml:end> <gml:TimeInstant> <gml:timePosition indeterminatePosition="unknown"/> </gml:TimeInstant> </gml:end> </gml:TimePeriod> </eposb:aliasValidityPeriod> <eposb:borehole/> </eposb:Alias> </eposb:alias> </eposb:Borehole> </wfs:member> </wfs:FeatureCollection> <?xml version="1.0" ?> <wfs:FeatureCollection xmlns:wfs="http://www.opengis.net/wfs/2.0" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:gwml2="http://www.opengis.net/gwml-main/2.2" xmlns:swe="http://www.opengis.net/swe/2.0" xmlns:sams="http://www.opengis.net/samplingSpatial/2.0" xmlns:gsmlp="https://forge.brgm.fr/svnrepository/epos/trunk/schemas" xmlns:gml="http://www.opengis.net/gml/3.2" xmlns:gwml2wc="http://www.opengis.net/gwml-wellconstruction/2.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:eposb="https://data.geoscience.earth/def/eposb" xmlns:gco="http://www.isotc211.org/2005/gco" xmlns:gwml2w="http://www.opengis.net/gwml-well/2.2" xmlns:om="http://www.opengis.net/om/2.0" xmlns:sam="http://www.opengis.net/sampling/2.0" xmlns:gmd="http://www.isotc211.org/2005/gmd" xmlns:xlink="http://www.w3.org/1999/xlink" numberMatched="0" numberReturned="1" timeStamp="2023-09-12T10:04:12.021Z" xsi:schemaLocation="http://www.opengis.net/wfs/2.0 http://schemas.opengis.net/wfs/2.0/wfs.xsd https://data.geoscience.earth/def/eposb https://data.geoscience.earth/def/eposb.xsd http://www.opengis.net/gml/3.2 http://schemas.opengis.net/gml/3.2.1/gml.xsd"> <wfs:member> <eposb:Borehole gml:id="SD-5016_1_A"> <gml:descriptionReference xlink:href="https://igsn.org/" xlink:title="IGSN registry entry"/> <gml:identifier codeSpace="https://tools.ietf.org/html/rfc3629">https://www.geodata.rocks/Boreholes/SD-5016_1_A</gml:identifier> <sam:sampledFeature xlink:href="https://sweet.jpl.nasa.gov/2.3/realmEarthReference.owl#EarthLithosphere" xlink:title="Lithosphere"/> <sam:relatedSamplingFeature> <sam:SamplingFeatureComplex> <sam:role xlink:href="https://data.geoscience.earth/ncl/RelatedSamplingFeatureRole/boreholeSegment" xlink:title="borehole segment"/> <sam:relatedSamplingFeature xlink:href="https://www.geodata.rocks/Segments/SD-5016_1_A" xlink:title="SD-5016_1_A_0.00-12261.00"/> </sam:SamplingFeatureComplex> </sam:relatedSamplingFeature> <sams:shape> <gml:LineString srsDimension="3" srsName="http://www.opengis.net/gml/srs/epsg.xml#4979"> <gml:posList>29.28 69.17 346 29.28 69.17 -11915</gml:posList> </gml:LineString> </sams:shape> <eposb:boreholeUse> <eposb:BoreholeUse> <eposb:use xlink:href="https://data.geoscience.earth/ncl/BoreholePurpose/_multiDisciplinaryScientificResearch" xlink:title="multidisciplinary scientific research"/> <eposb:usePeriod> <gml:TimePeriod> <gml:begin> <gml:TimeInstant> <gml:timePosition>1970-05-01Z</gml:timePosition> </gml:TimeInstant> </gml:begin> <gml:end> <gml:TimeInstant> <gml:timePosition indeterminatePosition="unknown"/> </gml:TimeInstant> </gml:end> </gml:TimePeriod> </eposb:usePeriod> <eposb:useStatus xlink:href="http://www.opengis.net/def/nil/ogc/0/unknown" xlink:title="unknown"/> </eposb:BoreholeUse> </eposb:boreholeUse> <eposb:custodian> <eposb:Custodian> <eposb:custodian> <gmd:CI_ResponsibleParty id="RAS-KSC-0.47553715333799207"> <gmd:organisationName> <gco:CharacterString>Russian Academy of Sciences, Kola Science Centre, Geological Institute</gco:CharacterString> </gmd:organisationName> <gmd:contactInfo> <gmd:CI_Contact id="RAS-KSC-0.12229675011130836"> <gmd:phone> <gmd:CI_Telephone id="RAS-KSC-PH-0.20737224597306514"> <gmd:voice> <gco:CharacterString>+78155576567</gco:CharacterString> </gmd:voice> <gmd:facsimile> <gco:CharacterString>+78155576481</gco:CharacterString> </gmd:facsimile> </gmd:CI_Telephone> </gmd:phone> <gmd:address> <gmd:CI_Address id="RAS-KSC-ADR-0.46043845402822403"> <gmd:deliveryPoint> <gco:CharacterString>Fersmana, 14</gco:CharacterString> </gmd:deliveryPoint> <gmd:city> <gco:CharacterString>Apatity</gco:CharacterString> </gmd:city> <gmd:administrativeArea> <gco:CharacterString>Murmansk oblast</gco:CharacterString> </gmd:administrativeArea> <gmd:postalCode> <gco:CharacterString>194209</gco:CharacterString> </gmd:postalCode> <gmd:country> <gco:CharacterString>Russia</gco:CharacterString> </gmd:country> <gmd:electronicMailAddress> <gco:CharacterString>geo@ksc.ru</gco:CharacterString> </gmd:electronicMailAddress> </gmd:CI_Address> </gmd:address> <gmd:onlineResource> <gmd:CI_OnlineResource id="RAS-KSC-OR-0.4680048593046159"> <gmd:linkage> <gmd:URL>https://geoksc.apatity.ru</gmd:URL> </gmd:linkage> </gmd:CI_OnlineResource> </gmd:onlineResource> </gmd:CI_Contact> </gmd:contactInfo> <gmd:role> <gmd:CI_RoleCode codeList="https://github.com/ISO-TC211/GOM/raw/master/isotc211_GOM_harmonizedOntology/19115/2006/iso19115CitationAndResponsiblePartyInformation.rdf" codeListValue="point Of Contact"/> </gmd:role> </gmd:CI_ResponsibleParty> </eposb:custodian> <eposb:custodianPeriod> <gml:TimePeriod> <gml:begin> <gml:TimeInstant> <gml:timePosition>1989-12-31Z</gml:timePosition> </gml:TimeInstant> </gml:begin> <gml:end> <gml:TimeInstant> <gml:timePosition indeterminatePosition="unknown"/> </gml:TimeInstant> </gml:end> </gml:TimePeriod> </eposb:custodianPeriod> </eposb:Custodian> </eposb:custodian> <eposb:custodian> <eposb:Custodian> <eposb:custodian> <gmd:CI_ResponsibleParty id="RAS-KSC-0.4970790197380106"> <gmd:organisationName> <gco:CharacterString>Russian Academy of Sciences, Kola Science Centre, Geological Institute</gco:CharacterString> </gmd:organisationName> <gmd:contactInfo> <gmd:CI_Contact id="RAS-KSC-0.3419221862130637"> <gmd:phone> <gmd:CI_Telephone id="RAS-KSC-PH-0.6163693834485365"> <gmd:voice> <gco:CharacterString>+78155576567</gco:CharacterString> </gmd:voice> <gmd:facsimile> <gco:CharacterString>+78155576481</gco:CharacterString> </gmd:facsimile> </gmd:CI_Telephone> </gmd:phone> <gmd:address> <gmd:CI_Address id="RAS-KSC-ADR-0.651159277328255"> <gmd:deliveryPoint> <gco:CharacterString>Fersmana, 14</gco:CharacterString> </gmd:deliveryPoint> <gmd:city> <gco:CharacterString>Apatity</gco:CharacterString> </gmd:city> <gmd:administrativeArea> <gco:CharacterString>Murmansk oblast</gco:CharacterString> </gmd:administrativeArea> <gmd:postalCode> <gco:CharacterString>194209</gco:CharacterString> </gmd:postalCode> <gmd:country> <gco:CharacterString>Russia</gco:CharacterString> </gmd:country> <gmd:electronicMailAddress> <gco:CharacterString>geo@ksc.ru</gco:CharacterString> </gmd:electronicMailAddress> </gmd:CI_Address> </gmd:address> <gmd:onlineResource> <gmd:CI_OnlineResource id="RAS-KSC-OR-0.6221813460033163"> <gmd:linkage> <gmd:URL>https://geoksc.apatity.ru</gmd:URL> </gmd:linkage> </gmd:CI_OnlineResource> </gmd:onlineResource> </gmd:CI_Contact> </gmd:contactInfo> <gmd:role> <gmd:CI_RoleCode codeList="https://github.com/ISO-TC211/GOM/raw/master/isotc211_GOM_harmonizedOntology/19115/2006/iso19115CitationAndResponsiblePartyInformation.rdf" codeListValue="point Of Contact"/> </gmd:role> </gmd:CI_ResponsibleParty> </eposb:custodian> <eposb:custodianPeriod> <gml:TimePeriod> <gml:begin> <gml:TimeInstant> <gml:timePosition>1989-12-31Z</gml:timePosition> </gml:TimeInstant> </gml:begin> <gml:end> <gml:TimeInstant> <gml:timePosition indeterminatePosition="unknown"/> </gml:TimeInstant> </gml:end> </gml:TimePeriod> </eposb:custodianPeriod> </eposb:Custodian> </eposb:custodian> <eposb:legalAccessLevel> <gmd:MD_LegalConstraints> <gmd:accessConstraints> <gmd:MD_RestrictionCode codeList="http://registry.it.csiro.au/def/isotc211/MD_RestrictionCode/licenceUnrestricted" codeListValue="http://registry.it.csiro.au/def/isotc211/MD_RestrictionCode/licenceUnrestricted"/> </gmd:accessConstraints> </gmd:MD_LegalConstraints> </eposb:legalAccessLevel> <eposb:length uom="http://qudt.org/vocab/unit/M">12261.0</eposb:length> <eposb:operator> <eposb:Operator> <eposb:operator> <gmd:CI_ResponsibleParty id="RAS-KSC-0.3505231003866308"> <gmd:organisationName> <gco:CharacterString>Russian Academy of Sciences, Kola Science Centre, Geological Institute</gco:CharacterString> </gmd:organisationName> <gmd:contactInfo> <gmd:CI_Contact id="RAS-KSC-0.08031472883315072"> <gmd:phone> <gmd:CI_Telephone id="RAS-KSC-PH-0.6190650978916301"> <gmd:voice> <gco:CharacterString>+78155576567</gco:CharacterString> </gmd:voice> <gmd:facsimile> <gco:CharacterString>+78155576481</gco:CharacterString> </gmd:facsimile> </gmd:CI_Telephone> </gmd:phone> <gmd:address> <gmd:CI_Address id="RAS-KSC-ADR-0.8742471891756496"> <gmd:deliveryPoint> <gco:CharacterString>Fersmana, 14</gco:CharacterString> </gmd:deliveryPoint> <gmd:city> <gco:CharacterString>Apatity</gco:CharacterString> </gmd:city> <gmd:administrativeArea> <gco:CharacterString>Murmansk oblast</gco:CharacterString> </gmd:administrativeArea> <gmd:postalCode> <gco:CharacterString>194209</gco:CharacterString> </gmd:postalCode> <gmd:country> <gco:CharacterString>Russia</gco:CharacterString> </gmd:country> <gmd:electronicMailAddress> <gco:CharacterString>geo@ksc.ru</gco:CharacterString> </gmd:electronicMailAddress> </gmd:CI_Address> </gmd:address> <gmd:onlineResource> <gmd:CI_OnlineResource id="RAS-KSC-OR-0.9341203687849348"> <gmd:linkage> <gmd:URL>https://geoksc.apatity.ru</gmd:URL> </gmd:linkage> </gmd:CI_OnlineResource> </gmd:onlineResource> </gmd:CI_Contact> </gmd:contactInfo> <gmd:role> <gmd:CI_RoleCode codeList="https://github.com/ISO-TC211/GOM/raw/master/isotc211_GOM_harmonizedOntology/19115/2006/iso19115CitationAndResponsiblePartyInformation.rdf" codeListValue="point Of Contact"/> </gmd:role> </gmd:CI_ResponsibleParty> </eposb:operator> <eposb:operatorPeriod> <gml:TimePeriod> <gml:begin> <gml:TimeInstant> <gml:timePosition>1970-05-01Z</gml:timePosition> </gml:TimeInstant> </gml:begin> <gml:end> <gml:TimeInstant> <gml:timePosition>1989-12-31Z</gml:timePosition> </gml:TimeInstant> </gml:end> </gml:TimePeriod> </eposb:operatorPeriod> </eposb:Operator> </eposb:operator> <eposb:purpose> <eposb:Purpose> <eposb:purpose xlink:href="https://data.geoscience.earth/ncl/BoreholePurpose/_multiDisciplinaryScientificResearch" xlink:title="multidisciplinary scientific research"/> <eposb:purposePeriod> <gml:TimePeriod> <gml:begin> <gml:TimeInstant> <gml:timePosition>1970-05-01Z</gml:timePosition> </gml:TimeInstant> </gml:begin> <gml:end> <gml:TimeInstant> <gml:timePosition indeterminatePosition="unknown"/> </gml:TimeInstant> </gml:end> </gml:TimePeriod> </eposb:purposePeriod> <eposb:purposeStatus xlink:href="http://www.opengis.net/def/nil/ogc/0/unknown" xlink:title="unknown"/> </eposb:Purpose> </eposb:purpose> <eposb:referenceElevation> <eposb:Elevation> <eposb:elevation axisLabels="elevation above sea level" srsDimension="3" srsName="https://epsg.io/4979" uomLabels="m">346.0</eposb:elevation> <eposb:elevationAccuracy> <gmd:DQ_AbsoluteExternalPositionalAccuracy id="SD-5016_1_A_collar-PosAcc"> <gmd:result> <gmd:DQ_QuantitativeResult id="SD-5016_1_A_collar-0.608372176615382"> <gmd:valueUnit xlink:href="http://qudt.org/vocab/unit/M" xlink:title="m"/> </gmd:DQ_QuantitativeResult> </gmd:result> </gmd:DQ_AbsoluteExternalPositionalAccuracy> </eposb:elevationAccuracy> <eposb:elevationMeasurementMethod xlink:href="http://www.opengis.net/def/nil/OGC/0/unknown" xlink:title="unknown"/> <eposb:elevationType xlink:href="https://data.geoscience.earth/ncl/ElevationType/naturalGroundSurface" xlink:title="natural ground surface"/> </eposb:Elevation> </eposb:referenceElevation> <eposb:startPoint xlink:href="natural land surface" xlink:title="https://data.geoscience.earth/ncl/StartPoint/naturalLandSurface"/> <eposb:status xlink:href="https://data.geoscience.earth/ncl/BoreholeStatus/drillingCompleted" xlink:title="drilling completed"/> <eposb:locationMeasurementMethod xlink:href="http://www.opengis.net/def/nil/OGC/0/unknown" xlink:title="unknown"/> <eposb:locatedOnAdminUnit xlink:href="http://www.opengis.net/def/nil/ogc/0/unknown" xlink:title="unknown"/> <eposb:bholeHeadworks> <gwml2wc:BoreCollar gml:id="SD-5016_1_A_collar"> <gml:description>infrastructure destroyed, bolted lock</gml:description> <gml:name>5016_1_A_collar</gml:name> <gwml2wc:collarElevation axisLabels="elevation-depth" srsDimension="1" srsName="5613" uomLabels="m">346.000</gwml2wc:collarElevation> <gwml2wc:collarElevationType xlink:href="http://resource.gwml.org/def/collarElevationType/originElevation"/> <gwml2wc:collarHeadworkType xlink:href="https://data.geoscience.earth/ncl/CollarHeadworkType/stopcockCover" xlink:title="stopcock cover"/> <gwml2wc:collarLocation> <gml:Point srsDimension="3" srsName="http://www.opengis.net/gml/srs/epsg.xml#4979"> <gml:pos>29.28 69.17 346</gml:pos> </gml:Point> </gwml2wc:collarLocation> <gwml2wc:collarSeal> <gwml2wc:SealingComponent> <gwml2wc:sealingMaterial xlink:href="http://www.opengis.net/def/nil/ogc/0/missing" xlink:title="missing"/> <gwml2wc:sealingType xlink:href="http://www.opengis.net/def/nil/ogc/0/missing" xlink:title="missing"/> </gwml2wc:SealingComponent> </gwml2wc:collarSeal> </gwml2wc:BoreCollar> </eposb:bholeHeadworks> <eposb:boreholeGeology xlink:href="http://www.opengis.net/def/nil/OGC/0/missing" xlink:title="missing"/> </eposb:Borehole> </wfs:member> </wfs:FeatureCollection>
from owslib.wms import WebMapService
from IPython.display import Image
service_url_GeologicUnit = 'https://data.geoscience.earth/api/wmsGeologicUnit?'
wms = WebMapService(service_url_GeologicUnit, version='1.3.0', auth=Authentication(verify=False))
list(wms.contents)
['GeologicUnitView_Age', 'GeologicUnitView_Lithology', 'GeologicUnitView']
Choose a layer from the WMS content and set desired spatial reference system
target_layer = 'GeologicUnitView_Lithology'
srs = 'EPSG:4326'
Create bounding box from borehole coordinates
# extract locations from Python dictonary
locations = []
for key, value in boreholes.items():
for subkey, subvalue in value.items():
if subkey == 'GML':
locations.append(subvalue)
# get maximum and minimum latitude and longitude
lat_min = 90.00
lat_max = -90.00
lon_min = 180.00
lon_max = -180.00
for loc in locations:
calc = re.search("(\d{1,2}.\d{1,})\s(\d{1,2}.\d{1,})", loc)
loclonlatdeg = calc[2] + ' '+ calc[1]
lonlat = re.match(r"(^\S+) (\S+$)", loclonlatdeg)
if float(lonlat.group(1)) < lat_min: lat_min = float(lonlat.group(1))
if float(lonlat.group(1)) > lat_max: lat_max = float(lonlat.group(1))
if float(lonlat.group(2)) < lon_min: lon_min = float(lonlat.group(2))
if float(lonlat.group(2)) > lon_max: lon_max = float(lonlat.group(2))
# create WMS bounding box
BBOX_GeologicUnit = '(' + str(lat_min) + ',' + str(lon_min) + ',' + str(lat_max) + ',' + str(lon_max) + ')'
print('The bounding box is ' + BBOX_GeologicUnit)
The bounding box is (13.20292,63.31245,29.28,69.17)
Get the map
Get geological units
service_url = 'https://data.geoscience.earth/api/wmsGeologicUnit?'
wfs = WebFeatureService(service_url, version='2.0.0', auth=Authentication(verify=False))
list(wfs.contents)
['epos-gsmlp:GeologicUnitView']
target_layer = 'epos-gsmlp:GeologicUnitView'
Query the GeologicUnitView Service and add the data to the 'boreholes' dictionary
# Select format
format_option = 'application/xml'
for key, value in boreholes.items():
# CQL filters
filter = 'Contains(shape,' + str(boreholes[key]['GML']) + ')'
payload = {
'service' : 'WFS',
'request' : API_method,
'srsName' : 'EPSG:4326',
'version' : '2.0.0',
'typenames' : [target_layer],
'CQL_FILTER' : filter,
'format' : format_option
}
# Retrieve response content and read it as string to variable
response = requests.get(service_url, params=payload, verify=False)
strcontent = ET.fromstring(response.content)
# Extract the value
for elem in strcontent.iter():
for feature in elem.findall(".//{http://www.opengis.net/wfs/2.0}member"):
lithology = feature.find(".//{https://data.geoscience.earth/def/epos-geosciml-lite}lithology").attrib['{http://www.w3.org/1999/xlink}href']
boreholes[key]['lithologygeologicunit'] = lithology
pp.pprint(boreholes)
{ 'COSC-1 A': { 'GML': 'POINT(63.40163 13.20292)', 'details': 'https://www.geodata.rocks/Boreholes/SD-5054_1_A', 'lithologygeologicunit': 'http://inspire.ec.europa.eu/codelist/LithologyValue/micaSchist'}, 'COSC-2 A': { 'GML': 'POINT(63.31245 13.52648)', 'details': 'https://www.geodata.rocks/Boreholes/SD-5054_2_A', 'lithologygeologicunit': 'http://inspire.ec.europa.eu/codelist/LithologyValue/wacke'}, 'Kola SG-3': { 'GML': 'POINT(69.17 29.28)', 'details': 'https://www.geodata.rocks/Boreholes/SD-5016_1_A', 'lithologygeologicunit': None}}
import json
from datetime import date, datetime
from dateutil.relativedelta import relativedelta
# target URL (from EPOS portal): https://gnssproducts.epos.ubi.pt/GlassFramework/webresources/stations/v2/station/bbox/<lonmin>/<latmin>/<lonmax>/<latmax>
distance = 100 # km
baseURL = 'https://gnssproducts.epos.ubi.pt/GlassFramework/webresources/stations/v2/station/'
# method to define the bounding box from the borehole location (as GML point) and the search distance
def gnssbboxfromgmlpoint(gmlpoint, distancekm):
calc = re.search("(\d{1,2}.\d{1,})\s(\d{1,2}.\d{1,})", gmlpoint)
distancedeglat = distancekm/111.1
distancedeglon = distancekm/111.1*math.cos(float(calc[2])*(2*math.pi)/360)
latmin = float(calc[1]) - distancedeglat
latmax = float(calc[1]) + distancedeglat
lonmin = float(calc[2]) - distancedeglon
lonmax = float(calc[2]) + distancedeglon
return('bbox/' + str(lonmin) + '/' + str(latmin) + '/' + str(lonmax) + '/' + str(latmax))
# create a dictionary to hold the retrieved information
GNSS = {}
for key, value in boreholes.items():
for subkey, subvalue in value.items():
if subkey == 'GML':
bbox = gnssbboxfromgmlpoint(subvalue, distance)
content = requests.get(baseURL + bbox)
print(content.url)
if not content.text:
print('No GNSS stations found for', key)
else:
GNSS[key] = json.loads(content.text)
print('GNSS dictionary:')
pp.pprint(GNSS)
https://gnssproducts.epos.ubi.pt/GlassFramework/webresources/stations/v2/station/bbox/12.326621832562381/62.5015399909991/14.07921816743762/64.3017200090009 https://gnssproducts.epos.ubi.pt/GlassFramework/webresources/stations/v2/station/bbox/12.651356753643713/62.4123599909991/14.401603246356286/64.2125400090009 https://gnssproducts.epos.ubi.pt/GlassFramework/webresources/stations/v2/station/bbox/28.494905449144156/68.2699099909991/30.065094550855846/70.07009000900091 No GNSS stations found for Kola SG-3 GNSS dictionary: { 'COSC-1 A': { '@epos_style': { 'station': { 'label': 'GNSS Station', 'marker': { 'character': 'S', 'clustering': 'true', 'pin': 'true'}}}, 'features': [ { 'geometry': { 'coordinates': [ 13.9679, 63.0414], 'type': 'Point'}, 'id': 'GRN000SWE', 'properties': { '@epos_data_keys': [ 'GNSS ' 'Station ' 'ID', 'GNSS ' 'Station ' 'Marker', 'Country', 'TimeSeries ' 'Data ' 'Providers', 'Latitude', 'Longitude', 'Networks', 'Data ' 'Providers', 'City', 'Installed ' 'at', 'Altitude', 'x', 'y', 'z', 'longitude ' ', ' 'latitude'], '@epos_links': [ { 'href': 'https://gnssproducts.epos.ubi.pt/GlassFramework/webresources/products/time-series-plot/ICS/GRN0', 'label': 'TimeSeries ' 'Image', 'type': 'image/png'}], '@epos_map_keys': [ 'GNSS ' 'Station ' 'ID', 'Country', 'City', 'Latitude', 'Longitude', 'Installed ' 'at', 'Data ' 'Providers', 'Networks', '@epos_links'], '@epos_type': 'station', 'Altitude': 606.04, 'City': '--', 'Country': 'Sweden', 'Data Providers': 'Not ' 'disclosed', 'GNSS Station ID': 'GRN000SWE', 'GNSS Station Marker': 'GRN0', 'Installed at': None, 'Latitude': 63.0414, 'Longitude': 13.9679, 'Networks': 'UNKNOWN', 'TimeSeries Data Providers': 'WUT-EUREF ' 'SGO-EPND', 'x': 2813762.5179, 'y': 699874.3772, 'z': 5662613.9285}, 'type': 'Feature'}], 'type': 'FeatureCollection'}, 'COSC-2 A': { '@epos_style': { 'station': { 'label': 'GNSS Station', 'marker': { 'character': 'S', 'clustering': 'true', 'pin': 'true'}}}, 'features': [ { 'geometry': { 'coordinates': [ 13.9679, 63.0414], 'type': 'Point'}, 'id': 'GRN000SWE', 'properties': { '@epos_data_keys': [ 'GNSS ' 'Station ' 'ID', 'GNSS ' 'Station ' 'Marker', 'Country', 'TimeSeries ' 'Data ' 'Providers', 'Latitude', 'Longitude', 'Networks', 'Data ' 'Providers', 'City', 'Installed ' 'at', 'Altitude', 'x', 'y', 'z', 'longitude ' ', ' 'latitude'], '@epos_links': [ { 'href': 'https://gnssproducts.epos.ubi.pt/GlassFramework/webresources/products/time-series-plot/ICS/GRN0', 'label': 'TimeSeries ' 'Image', 'type': 'image/png'}], '@epos_map_keys': [ 'GNSS ' 'Station ' 'ID', 'Country', 'City', 'Latitude', 'Longitude', 'Installed ' 'at', 'Data ' 'Providers', 'Networks', '@epos_links'], '@epos_type': 'station', 'Altitude': 606.04, 'City': '--', 'Country': 'Sweden', 'Data Providers': 'Not ' 'disclosed', 'GNSS Station ID': 'GRN000SWE', 'GNSS Station Marker': 'GRN0', 'Installed at': None, 'Latitude': 63.0414, 'Longitude': 13.9679, 'Networks': 'UNKNOWN', 'TimeSeries Data Providers': 'WUT-EUREF ' 'SGO-EPND', 'x': 2813762.5179, 'y': 699874.3772, 'z': 5662613.9285}, 'type': 'Feature'}, { 'geometry': { 'coordinates': [ 13.5132, 62.4195], 'type': 'Point'}, 'id': 'HED000SWE', 'properties': { '@epos_data_keys': [ 'GNSS ' 'Station ' 'ID', 'GNSS ' 'Station ' 'Marker', 'Country', 'TimeSeries ' 'Data ' 'Providers', 'Latitude', 'Longitude', 'Networks', 'Data ' 'Providers', 'City', 'Installed ' 'at', 'Altitude', 'x', 'y', 'z', 'longitude ' ', ' 'latitude'], '@epos_links': [ { 'href': 'https://gnssproducts.epos.ubi.pt/GlassFramework/webresources/products/time-series-plot/ICS/HED0', 'label': 'TimeSeries ' 'Image', 'type': 'image/png'}], '@epos_map_keys': [ 'GNSS ' 'Station ' 'ID', 'Country', 'City', 'Latitude', 'Longitude', 'Installed ' 'at', 'Data ' 'Providers', 'Networks', '@epos_links'], '@epos_type': 'station', 'Altitude': 470.14, 'City': '--', 'Country': 'Sweden', 'Data Providers': 'Not ' 'disclosed', 'GNSS Station ID': 'HED000SWE', 'GNSS Station Marker': 'HED0', 'Installed at': None, 'Latitude': 62.4195, 'Longitude': 13.5132, 'Networks': 'UNKNOWN', 'TimeSeries Data Providers': 'SGO-EPND', 'x': 2879086.1415, 'y': 691909.4962, 'z': 5630727.5558}, 'type': 'Feature'}], 'type': 'FeatureCollection'}}
Add the GNSS stations to the boreholes dictionary, including their location as GML point
for key in GNSS.keys():
count=0
for items in GNSS[key]['features']:
if count == 0:
dict = {}
count = count + 1
newkey = items['properties']['GNSS Station Marker']
location = 'POINT(' + str(items['properties']['Latitude']) + ' ' + str(items['properties']['Longitude']) + ')'
dict[newkey] = location
boreholes[key]['GNSS'] = dict
pp.pprint(boreholes)
{ 'COSC-1 A': { 'GML': 'POINT(63.40163 13.20292)', 'GNSS': {'GRN0': 'POINT(63.0414 13.9679)'}, 'details': 'https://www.geodata.rocks/Boreholes/SD-5054_1_A', 'lithologygeologicunit': 'http://inspire.ec.europa.eu/codelist/LithologyValue/micaSchist'}, 'COSC-2 A': { 'GML': 'POINT(63.31245 13.52648)', 'GNSS': { 'GRN0': 'POINT(63.0414 13.9679)', 'HED0': 'POINT(62.4195 13.5132)'}, 'details': 'https://www.geodata.rocks/Boreholes/SD-5054_2_A', 'lithologygeologicunit': 'http://inspire.ec.europa.eu/codelist/LithologyValue/wacke'}, 'Kola SG-3': { 'GML': 'POINT(69.17 29.28)', 'details': 'https://www.geodata.rocks/Boreholes/SD-5016_1_A', 'lithologygeologicunit': None}}
Create a new Python dictionary that keeps all sensor data, to avoid duplication (one station can be within the limit of multiple boreholes)
sensordata = {}
Retrieve GNSS station velocity (last week) and 10 years of position timeseries data, and add the retrieved data to the dictionary
# # target URLs for selected GNSS GlassFramwork services (from EPOS portal & service documentation):
# URL velocity: https://gnssproducts.epos.ubi.pt/GlassFramework/webresources/products/velocities/<station>/SGO-EPND/enu/json
# URL position: https://gnssproducts.epos.ubi.pt/GlassFramework/webresources/products/timeseries/<station>/SGO-EPND/weekly/enu/covjson/?epoch_start=<datestart>&epoch_end=<dateend>
stationlist = []
# start- and enddate of the position timeseries
yearsback = 10 # years back from present
def calcdatestart(years):
return(str(date.today() - relativedelta(years=years)))
for key in boreholes.keys():
for subkey, subvalue in boreholes.get(key).items():
if subkey == 'GNSS':
for station in subvalue.keys():
stationlist.append(station)
# discard duplicate values
stationlist = set(stationlist)
# add keys to the sensordata dictionary for storing GNSS data
positionkey = 'positions' + str(yearsback) + 'years'
sensordata['GNSS'] = {}
sensordata['GNSS']['velocities'] = {}
sensordata['GNSS'][positionkey] = {}
# send requests and store the returned data as string in the dictionary; the json is not converted to python dictonary but can be directly used with tools that require the original json or covjson format
for value in stationlist:
urlvel = 'https://gnssproducts.epos.ubi.pt/GlassFramework/webresources/products/velocities/' + value + '/SGO-EPND/enu/json'
urlpos = 'https://gnssproducts.epos.ubi.pt/GlassFramework/webresources/products/timeseries/' + value + '/SGO-EPND/weekly/enu/covjson/?epoch_start=' + str(calcdatestart(yearsback)) + '&epoch_end=' + str(date.today())
print('URL for velocity =', urlvel)
print('URL for position timeseries =', urlpos)
datavel = requests.get(urlvel)
datapos = requests.get(urlpos)
sensordata['GNSS']['velocities'][value] = datavel.text
sensordata['GNSS'][positionkey][value] = datapos.text
pp.pprint(sensordata)
URL for velocity = https://gnssproducts.epos.ubi.pt/GlassFramework/webresources/products/velocities/HED0/SGO-EPND/enu/json URL for position timeseries = https://gnssproducts.epos.ubi.pt/GlassFramework/webresources/products/timeseries/HED0/SGO-EPND/weekly/enu/covjson/?epoch_start=2013-09-12&epoch_end=2023-09-12 URL for velocity = https://gnssproducts.epos.ubi.pt/GlassFramework/webresources/products/velocities/GRN0/SGO-EPND/enu/json URL for position timeseries = https://gnssproducts.epos.ubi.pt/GlassFramework/webresources/products/timeseries/GRN0/SGO-EPND/weekly/enu/covjson/?epoch_start=2013-09-12&epoch_end=2023-09-12 { 'GNSS': { 'positions10years': { 'GRN0': '{"gnss_europe:info":{"analysis_center":"Satellite ' 'Geodetic Observatory, ' 'Hungary","cut_of_angle":"","epoch_start":"2013-09-12","format":"covjson","epoch_end":"2023-09-12","apply_offsets":"","reference_frame":"ITRF14","version":"2023.1","sampling_period":"weekly","otl_model":"","marker":"GRN0","remove_outliers":"","calibration_model":"","coordinate_type":"enu","DOI":"unknown"},"ranges":{"E":{"shape":[429],"dataType":"float","values":[373.88280497468907,374.2119612333105,375.1073190740161,375.97262948350675,371.7494801986327,374.8340241813713,374.6475759920642,374.92308800981755,377.66679725494623,374.83860261560153,375.90814923108496,376.5084851662623,374.93752148201577,374.99121821025716,376.34381012185503,377.4455231271963,378.7790016721103,379.9862290271825,381.32173734490334,381.40941720337776,381.5499115571972,379.9394880540842,380.0102746292366,379.3497848692469,379.76806051394965,380.2443095560315,377.87483452057734,380.92533641646,381.9853201028681,381.97364787095114,381.5782341616888,382.6895958797409,383.51520652098725,382.79033819622504,384.04436208493684,382.93196087949127,383.32190744415453,384.93814564864385,385.00592829774456,384.3071687484526,384.950605017746,386.3136947066801,386.8277279387454,387.75042787142144,387.54983820688307,387.94057202312405,386.45024700084343,387.42225554126725,386.79004543821287,388.85036345014265,389.8536034246679,390.13995440637706,389.96577188303434,390.3050292761832,388.54278355675257,388.1467302979945,390.772265866084,390.7135973604322,389.99306785566546,389.78573502440855,392.520474872466,391.36974831255736,392.6542626196612,392.34456103033676,392.2325433488756,390.66207162844495,392.8181012089435,393.2458811655935,391.5659499592806,394.69832679230467,393.83681404515426,395.86383108553065,395.0812812532997,396.30486392597555,394.9529605374564,394.75311211596113,396.39998514015525,396.760769585482,396.8279126869721,397.739130799026,397.176136412862,397.55952725270134,397.2359365379051,398.4004537195217,397.43608332871037,398.8729607826724,399.4086196854144,398.22050580160277,398.71064727058354,399.7484181225987,398.4616408020647,399.1472983652429,400.6997881130967,401.29909070240745,402.2359288289158,400.89367754540694,401.63628186812497,402.12918139322466,402.56232690698596,403.155329334813,404.4249182076648,403.08641529190214,404.14048906393,404.3481692245357,403.3508454297376,404.2773857383503,403.44424170169543,405.52357789086847,405.8287962609692,405.9902210487265,405.0684163409279,403.6387246829941,405.17678404139065,407.6243887371138,406.84858514000666,406.46204257161304,405.52826098420167,409.07998621709913,405.7025449778017,410.5255872282099,410.5535718544167,411.51529196521625,407.8161168665609,408.3675867288129,409.5219536771854,410.84868609461523,412.2586183261632,412.16339872247397,412.60103054782735,413.1936394217743,412.20133360065364,412.7792074169034,412.924480080705,413.8850069021398,413.9553047212427,413.4072785629882,415.1526278314854,414.7666232173863,413.18723767579473,414.87007133304365,415.18149798552304,415.67065233442713,416.33281158893794,415.7809973586285,417.3514197693304,416.3192176493433,416.17813303232464,417.48132114911897,418.0657475037535,418.13520590332274,418.44840360236134,417.9006759357347,419.4546478488578,418.6074669924331,418.39313911517706,419.76775025315226,419.4826323718621,421.1652693569741,418.5308721224024,422.0613684585395,422.1377730766186,422.68904604100214,421.14591310716474,422.4477206528158,422.92909566730316,421.54113335937626,422.56121419974784,423.35386518475735,424.4920276095382,422.4136357561537,422.9244616439383,426.24506402397907,424.02263260091735,422.6313645507008,422.61821337433014,426.70013358731075,428.06578470140664,424.44740521743495,426.75639471990667,428.133819647951,429.3925694232282,427.1548094738418,428.13598103682625,427.3158439039199,428.08809910927306,427.5729343730157,429.42685120964774,429.54113509767564,429.13163549593787,429.4855721220419,430.47028920581187,430.0673880122659,430.98442083585553,431.8479567832917,431.6178607298025,429.6053264750466,431.8345596319956,432.3671619851413,433.14616662542,433.8476874500089,433.4746405597195,433.2740508837004,434.08665156510045,433.8044395530701,433.37523279360965,434.3615272394583,435.9695369628702,435.3253072771316,436.5672129961726,437.32075150170414,436.21608350478766,436.49307780472026,435.53151478256416,437.4806020248514,437.1924768983446,436.66814892945257,437.18277262705095,439.7083102384187,439.0581674355428,439.0251124314165,440.7212546209003,438.6787153655512,440.89711609483766,441.81626743209836,440.50470652426185,442.91753772868367,443.50354156383173,443.5737903217793,440.7266264753437,443.2768430994911,443.0848263126117,443.9952572851849,442.6012833555939,443.8772281011147,444.8757880927585,443.7731928600816,444.9410093618227,445.8674019780576,445.54528724606956,445.5881941091382,445.2694800822432,444.912929536313,445.82301936862086,446.52783951419474,447.9204326358315,448.0784105108319,448.3199852092186,448.0287083545568,446.92946463314314,447.5760558096977,448.98731965889976,450.3270064748963,450.82251980572147,447.3944876807577,446.73257439760783,447.47127941314494,449.42544345519775,448.6089039212922,450.278045366032,450.63912510851605,454.06051264550126,453.9760795010878,453.2912582378611,453.50185070696597,452.74698381194486,454.0258341966108,453.7333338157632,453.973629441905,452.71082627405355,454.80631469320645,454.0699709413315,454.89804143332947,456.732648119615,455.5805013301431,455.29439955712405,455.1281867980484,457.0469804280242,457.1207744813233,458.9683912220828,459.0962198350688,458.36692058222815,457.3995397063193,459.8742404619015,459.4853794087837,460.2813787962803,459.7259210141998,459.1685347987684,460.5801430181694,460.6381720919185,461.2220081114983,461.1636379106715,461.0039841657547,462.26958488305917,461.0446741282262,459.7597170751995,461.78688158351673,463.23272549595225,463.7153796005794,464.45379590982617,463.64193639019675,464.63261233613355,464.8392102949144,465.2178751259269,464.55059622796944,465.6861941447746,463.82774811977606,465.24467264531154,466.8369731874497,466.8885479896178,467.38149681891946,468.9702946771061,467.10435826988015,468.04759492218136,469.8099945413298,470.08541137925187,470.4950094631447,469.4150236941499,466.49190440047596,469.7461540862068,468.6265244216056,471.8851920387511,468.7363614106443,468.1907030513752,469.0943353856491,470.05368474329157,473.16872881531003,472.3670065847018,472.6160194630752,471.31441203269287,473.76901217317356,475.47777082020474,472.3126276728361,473.190990663271,471.8995271251158,472.73557694361676,474.0110296348883,473.7241865898678,474.8343709339283,475.46801085699633,474.9798863743536,474.8271295421313,476.55819295916876,476.54169004968884,477.23877686825733,477.8464556980294,477.6112367613465,477.70739128225,477.7802964743089,478.37772652675227,479.27628854017223,479.06624066812026,479.8690418335814,480.8375018781786,480.37302969640774,480.01258959396654,479.49589646334465,480.917996078025,480.98597551103575,478.510290723782,478.89393723538376,483.4190025429422,483.6364361386858,482.1809371450011,484.16805783522466,482.74467590230586,480.3897785806275,485.6226188738905,483.73978913704383,483.7900325362859,486.6740361133182,487.19866890656783,485.8201650009848,485.63676369326714,489.517402401362,486.3003497177368,486.49955858631614,489.0575576733935,489.19587777123166,487.2165000751035,489.19188974415,488.2601283813488,490.39581784512967,490.67684939993995,489.91695824443264,490.4321753105364,491.1377335086485,491.56028921856165,492.0916124929374,491.9531415526779,492.01693618145816,491.4107364441151,493.3495291912224,493.4956874228856,493.6475061845327,493.3219937528257,492.0252597428113,493.7228285475532,494.7740950596623,495.97797070800505,495.3980273490369,495.64063841244166,496.1285136721678,494.48016158365704,497.27549498312396,497.6105150202005,498.65843303772044,497.9296291203486,497.50406286351654,497.75903785717713,497.16973470101374,499.14887294285444,498.9176944872954,499.6643851807377,498.98133827065215,501.16840902760805,501.85771028710116,500.1875816746716,501.7060357330083,502.1042600693314,502.9711083969468,500.7622611084389,499.6002987591435,499.93655192519327,502.87045780855965,502.39406108943206,503.34622795829796,503.25735118899894,503.4670023581534,503.80153056309274],"axisNames":["t"],"type":"NdArray"},"U":{"shape":[429],"dataType":"float","values":[1164.2776608727158,1167.280309103873,1165.6321626438482,1168.0198672886297,1167.6218974860253,1166.928665030727,1164.821464587916,1167.0289604838845,1169.238122719946,1167.7199692018994,1168.1931022926287,1169.0598429013598,1167.7949864780298,1167.1982934582816,1166.976306595763,1167.5397910905533,1168.5330228933487,1169.677424005385,1164.885713200793,1165.706047626511,1161.8206599222074,1166.0775957882365,1166.1688633910387,1170.598680834143,1165.4442734630327,1167.2668010026848,1163.5930863683263,1168.6817163065646,1171.050438204864,1170.0610064979426,1171.073295157045,1173.646969257722,1169.987071635845,1170.961893680563,1172.3421986155527,1172.9814436393574,1171.5566922124056,1169.8017708521925,1171.0547036398423,1170.939397000304,1174.1386370617736,1173.0268832352433,1174.7375712707963,1173.8637607291766,1173.3778181929788,1176.0224830883233,1174.9595439620077,1175.0855169227536,1174.5547723371133,1177.243912725309,1175.892875513333,1177.3080228073547,1174.9327127172849,1175.9712988317283,1174.5288678810073,1175.6101283455098,1176.0556003106676,1175.1410000293886,1172.2901434680243,1165.8229108436506,1172.181978313907,1175.1073155871063,1177.156890055164,1179.1331721186225,1177.9812383824892,1177.2330946735622,1182.7197503879543,1180.6403101278809,1180.4787601784485,1182.8539906285237,1178.4583260184356,1179.1052467135812,1179.537078330366,1179.393296976068,1170.6783966727253,1175.7116513131552,1179.3905509561125,1179.5660538776945,1176.8947800246617,1181.0916187569962,1177.5471215674652,1181.6850976307617,1177.091140071323,1179.9945041465548,1178.398237568817,1182.368523897554,1181.5510631130217,1182.3467694999845,1181.7437400124402,1183.2676675805797,1177.8714409305358,1177.6251274022363,1182.023906182081,1183.6033710911238,1180.468771505482,1183.0762784395333,1180.2113378325876,1181.6065562303793,1183.603462811568,1180.8494821554616,1183.844654152216,1181.751505634323,1183.842590542988,1184.6269356140238,1180.8853168476926,1181.6009480986063,1182.3341325795893,1183.420822292527,1183.9640463118758,1185.5202993668072,1178.2116324336753,1183.7244539207154,1185.9555814475548,1188.2094257247547,1186.9548385416144,1184.109631757162,1181.1699496059946,1189.905796994666,1184.3380489216756,1185.4612730047252,1182.4029752499475,1171.0147971442175,1184.1141523334938,1187.153134776891,1188.7306712686136,1189.8237446474645,1191.9102204491032,1190.244439718168,1189.6483050360237,1185.4612666410815,1187.0400357544352,1189.7338888726433,1187.3095394839263,1190.7056658609245,1188.272488503581,1190.3390257392875,1190.4841641987107,1189.7899064574824,1187.4389683697475,1190.575143639198,1188.4664760807746,1193.0091987158642,1191.935706097011,1191.3507506739443,1192.98045036536,1191.3960807008284,1193.4260232102904,1192.0220272952986,1193.4961809458687,1192.6905797580116,1193.5366380254643,1193.6006349768618,1192.298544205136,1192.1010419296147,1189.3325468554697,1191.3134066145517,1192.0568641270218,1194.4319449071609,1188.843715570721,1192.3399670665276,1191.7388103401925,1193.4908099255074,1190.4708664379739,1191.5673510887345,1191.637025578023,1187.8752262696592,1194.5279103201456,1196.7223907164512,1198.1534268746907,1191.9245764897082,1194.5572650123809,1194.2620932101408,1190.9048346814195,1193.1795658042677,1194.7958437540406,1196.0245431381531,1192.3082888126653,1194.2409543047568,1192.3041463963332,1189.7640049655513,1191.8401632098019,1195.801309403962,1193.9133562537415,1193.952426526192,1197.7251319988436,1196.689784995594,1196.228299018396,1198.3804460415392,1196.1526261755228,1197.2039299631997,1197.9163478421524,1198.4829283018862,1198.0065371094179,1198.8589665673412,1199.0937138225813,1195.7820447947668,1197.8949616814496,1199.55079049004,1199.9234869610266,1198.7368736763901,1198.2835373872963,1199.9100579393855,1200.1107415836138,1196.9009250070922,1199.2672412569416,1199.8892442113197,1199.5585803791416,1201.2968617140427,1201.6910898566755,1200.6137169241456,1203.8332867885465,1201.9888826124666,1198.6392089342107,1201.6877018350951,1204.0318067925384,1202.8711831782796,1202.5956639534863,1203.8540163453195,1207.518485565276,1209.1707184727654,1205.142424277268,1204.6953675195296,1201.2855251601077,1204.0172616335412,1202.6781581870769,1195.8735332299602,1197.7742450526268,1198.4509614067176,1201.0853409619447,1202.068556660995,1202.5442762307887,1203.0549723630124,1203.4727078017236,1206.5015009866595,1204.787497831447,1202.5839813880991,1204.87458621127,1206.701789511814,1207.5620170825327,1208.632044858351,1205.7504297830026,1209.756160547099,1207.673701328098,1207.0954568214122,1208.2601264306932,1211.1396111050753,1209.054161479184,1208.5730704923212,1203.9816754716876,1206.518764840511,1207.182410192976,1208.9019086734122,1207.5486490849544,1202.9128730456125,1203.3489311015442,1206.5034547621817,1208.5202116402036,1205.400267759718,1205.9806704227171,1207.7746805197921,1206.6269908224695,1209.9104202354188,1211.7312782679246,1208.8431197466919,1208.9344907702714,1211.735790022607,1201.1654420854059,1198.692049802543,1208.145665840481,1212.4196693151182,1210.082138186158,1211.1360951363652,1213.0629283648705,1207.4286439224406,1202.9137491870858,1209.2086773848653,1212.8570568130622,1209.5739201129704,1210.6350570772615,1213.0942173568878,1208.2532027532689,1211.0764303437863,1211.0340922564615,1210.6305871684579,1211.8388123680659,1210.1848510005389,1214.4222940828984,1214.1115278467396,1212.8667643146048,1214.3216212777527,1209.933777856931,1211.5729115838926,1211.407298232215,1213.7382282130518,1208.7305488558522,1213.6406457345727,1214.7378635168375,1215.2311351710262,1213.580629588765,1212.2052216300144,1214.5687961702972,1213.640570420038,1214.9345766518145,1210.92884076498,1215.581627815522,1210.4840330429477,1213.4376338881393,1212.5479667847708,1214.2805627906682,1216.5590672324968,1216.6664303649393,1213.2556455768922,1217.7898137942411,1212.1620994418975,1210.8716052612217,1212.905061692051,1212.7543349369744,1214.4244529515138,1211.927655417875,1203.6756645102746,1213.1538276677607,1212.0739623304237,1215.0243412786656,1216.919765234569,1212.0569646667668,1209.5662324999653,1216.852337235915,1218.6879370395793,1216.3091630486144,1217.7611080544468,1204.4014291561832,1217.182886926337,1214.4496379824086,1216.226680237052,1215.8008023761013,1217.7602555119458,1215.997748493842,1217.2203391754636,1217.3371934154268,1216.9328347134112,1218.6061934203137,1219.2090292320904,1218.7475996163437,1219.6089502209925,1218.12669767586,1220.1744611467152,1222.712362082747,1221.9650983863546,1223.175206275649,1221.7481965997895,1221.0604777466424,1220.9530540200005,1222.5899373065681,1218.7235770132313,1219.4098118006868,1219.9988406370499,1222.3502771125438,1221.0039729855043,1221.9470816982302,1217.4100115830258,1220.748863393665,1224.726146371078,1223.3702115312446,1222.5920973394086,1223.2152786867734,1222.442704030094,1226.5810846279667,1220.85465705117,1221.8619665525841,1224.3737813237412,1215.6034428760538,1216.06333689669,1219.6898113104783,1230.4680248327663,1225.8077410460294,1224.159222712795,1227.2066542367152,1229.1726916342948,1224.6004800734333,1227.0904207417177,1228.6941372091694,1228.0453797126956,1227.9721450624456,1228.443213777723,1228.7552170006381,1227.9849439608447,1230.1077958817145,1230.9567544542265,1230.0777785219225,1227.964918673126,1227.8397571793996,1229.771517849771,1229.2612853032795,1230.4170735406994,1230.301754173599,1231.6074006370877,1231.23193034631,1230.8782355527196,1232.306965390626,1230.2296762793103,1226.9390391940215,1227.7424009771682,1229.503654431407,1231.6636081393613,1231.5804670208095,1231.8297537394092,1226.959509264091,1233.6058649401425,1232.009785353215,1232.5401546910566,1232.379509583914,1230.7947252400486,1230.7803336478496,1232.3270573987525,1231.8988511466334,1230.2703729939133,1228.3557192773778,1234.2267569216835,1232.688874633224,1219.0861159609467,1224.9745953056838,1233.3047011556205,1231.556340245245,1234.0777975903502,1231.2632929960223,1219.428719851672,1234.3397332824813,1232.4913676635936,1234.4942110540262],"axisNames":["t"],"type":"NdArray"},"N":{"shape":[429],"dataType":"float","values":[24.96757684030332,24.86530508836743,23.65000722020394,25.374421641729427,25.737773798881257,25.865496383310425,26.78801673922776,26.55062987362522,27.082006879814934,24.243517601008293,26.798475789847288,26.042858734257102,27.051824168660033,28.710279250930004,27.029143303331782,29.03147005121287,27.696282971243992,28.84321311487925,31.779200337981315,29.57074751560218,30.04098601250915,32.19308613921834,31.815118291926513,30.25240571868315,31.14422201786049,31.244626899272433,31.56338822537108,32.4332040595432,31.26120044223246,32.610973412646516,33.2014983021256,31.714764561524333,33.48425986605219,33.685225958006825,34.28010627648037,33.81736628263759,33.59663117889311,34.0912254216611,34.84830175127468,35.0308922236558,33.70388426780507,35.382391281582656,36.386491113514,37.22218264736388,36.30265962145229,37.41156730978129,37.95736201952238,38.54789563382482,37.51793465670078,37.767359928250364,37.88697367196819,38.45746426901881,39.11302621721524,39.91654550056012,38.25267059322523,39.479624316951124,40.76547540398967,40.73286369104684,41.74989559251385,41.84798401694506,41.521396284966706,41.769651869920935,41.40159478095029,41.70703868697956,41.54548103639677,42.35467762976442,42.97132415862964,43.33192496029792,42.45840816336804,44.780862106875595,45.30586560532224,43.901588612849096,45.611307058337935,46.68809453210992,43.17619228452785,46.647459933249145,46.186153961109696,46.83371311193352,46.19623008469298,46.72388819199808,47.4944558788245,47.145225557571834,45.76604500059628,46.91777214162857,47.519537391848885,48.53674252058976,48.445490655873115,48.55745702836523,48.0446044478614,49.085026070746665,49.87877760344617,50.42923481099948,50.14074958114823,50.7190438369205,50.7939925955207,50.80687067925,51.211905781800624,51.402475047089666,51.071795480836954,53.08950142759639,53.55338315989938,54.49239245609522,54.17507092148705,53.14029031853706,53.98960632803457,54.303127154845974,53.56745696153875,55.644007683116556,56.274443217425805,55.79546629081711,56.7979428827316,56.12788333398066,56.90282760424736,57.655169369533354,56.72487876700127,58.414607072231675,56.937239115167074,58.158018757353325,58.86989671990317,58.095283401159605,59.8731004945034,59.72018964513204,60.01596928619607,60.70252944210858,59.32143710604537,59.81930327248269,60.12867426460539,59.87449323409949,60.84804397644172,62.50693641445976,61.34400230524489,62.113558697666605,63.39493498146659,62.76167723721804,63.83982663693188,62.511974997719655,63.43981618911742,63.43720435719102,64.97129360653925,64.62854837788429,64.91426549494089,65.66625899034607,65.08577785349229,65.97117467758213,65.6566077275138,66.19086541904379,65.3320123069146,66.17337786938943,67.00284599954054,67.41767363453127,67.54093278940276,67.19452508587814,67.17378727885182,67.76062369153807,69.47599424210694,68.73569922990042,70.38417662429546,69.83935841880556,69.70917618699212,69.98196855878524,70.81098771365019,71.02799993373516,70.06136569534848,71.1922147358876,72.42283306631153,71.12806672376959,70.88593730436394,72.41674101653007,72.51482869158116,73.77653758824282,71.4237933689012,73.28351560126217,74.61239238806688,72.65462182196403,74.43991471553069,75.02405522763456,75.24998995925914,75.99411940682349,77.24337404470738,78.39947995641411,77.18506040803474,76.12470779558328,76.19705458802744,76.5614009980719,77.5479706922132,77.95128441063476,76.82926705502008,77.64920804027837,78.43389193213967,79.12417318503157,79.46606925323995,80.02852576878627,79.55344438095379,79.88475869919314,79.70997420061055,79.82424629574814,80.58897041209806,80.0686206845082,79.8211351943674,80.94096337418961,82.56019831419175,82.71510478481392,82.71758445269545,81.90368061094988,83.03045950726818,84.12363629630443,83.95760779819634,83.98101214194159,84.06617997928694,84.22124933848401,84.64098561092781,85.5100365710797,84.86082042722698,84.97722753541898,85.70651110880556,85.53998149625286,84.97877599836457,87.20309670831439,86.92457032923484,86.91863224183832,88.66246256494614,86.51945781975657,87.81937072643031,89.26442238798793,88.05913990373476,87.25445233386236,89.0981411784621,91.80428572264898,88.38942279048034,90.07384530448498,90.70465480343299,90.09760920252646,89.73951207829856,91.08579339413426,90.86024956231064,91.13392705862644,91.15224579194303,92.16990116707852,92.17707024733323,93.42610886316938,92.89336768541934,92.6717998671322,93.34715157486656,93.95465544040182,94.13528952603134,95.28984979898696,95.132868838534,95.10819332611126,95.57686382991243,95.50760989037077,96.12186379564136,96.16013816599683,97.05615947331458,97.92090177467355,97.94588618987137,95.95681750549745,97.61646611155483,97.55230703581962,97.38172340642348,98.57493367649217,98.73590430369522,99.97858778047063,99.4425872913356,100.64325041635524,101.2356416676955,102.01452728012472,102.56977051920396,103.41817433975875,100.62486529699144,100.53758502812288,100.72182218328446,102.57597176052069,102.58158949205325,104.37278936007944,104.27194467614692,101.84358194869264,103.38340738348577,103.02247528379522,106.31835071368579,105.96115163471976,105.08977339210301,103.92854111408755,105.40144956713793,105.95214977318801,106.11332224028975,107.60056076035018,107.05576787703846,106.85061822249476,106.38629533607902,107.76104071971166,107.9618516122508,108.40077423672456,108.726390744058,110.01097492182565,109.29081540775454,109.91607841803419,110.16315504772933,110.40652297543718,110.80611367661564,111.78979820870849,111.92934579282354,111.04119451453337,111.4087001113439,111.93909324969198,111.52618536289499,111.79896355815022,110.53580675406639,113.45408803186186,113.73130950773435,114.32487340019377,114.20201760010984,113.2538474305248,113.49326300627204,115.97740720406935,116.33091780779687,115.35486293202246,115.93796841895731,115.03659437500929,116.59276101872112,120.68518921809135,117.33627781491379,115.18013535471682,116.63647414770284,116.28474032680036,114.8385655411177,119.5812480772832,117.71874517415853,119.40369861444411,119.71313909152082,120.32157371994784,121.41994997952388,121.12755395093316,119.37666074801517,119.1032725007693,119.54355481120399,120.80853012852272,120.52394332858557,121.73772273433443,123.49321234791022,121.59713044530574,122.40992593766053,123.32020396091886,122.63924127031534,124.40885817080294,124.67616679102822,125.67927946277563,125.4981390055363,124.98211508320806,124.85282806031228,125.29828019302536,124.04755115420419,126.26605658247037,126.40058861677333,127.87015350479858,127.33708309129626,127.7230530406358,128.12910875402477,127.37914508412706,127.28953360104111,129.129292563473,129.16009801724826,129.7003260545853,129.2781128041392,130.45505244559467,130.48711846574108,129.97674023799826,130.81785867367108,130.89321736688598,129.7729928168486,130.81222579864672,132.48270971725407,133.56373827875385,132.2570057671203,135.39589822821856,133.99271568971744,132.8443230350921,135.10246417977595,133.7516259625588,136.25605052653822,134.16190894395402,135.37632825141583,136.03423595816133,136.2885152808162,137.23728213559937,138.69731802511288,138.51328917367357,139.0820127532134,139.3539751064784,139.118971222681,139.63351266784636,139.43843232886587,139.5446529469488,140.96693989859432,140.19447339374912,140.61973003365125,140.50112662451608,142.76136485362585,141.55976681579918,141.4418072662096,140.65115330412337,141.18729686946486,141.240095015736,143.5785602310131,143.43464923853367,143.09077543707016,143.06386950148652,143.99255936196332,143.87316514869124,145.0480765290053,145.26262048539385,145.1373053575895,145.05474792416751,145.34774207335394,145.28454965481464,147.9131718546689,146.6150868357825,144.75469269916064,147.57139435355415,148.63188258645744,149.89937090496076,147.71868291576757,147.59755576941836,147.52779709237112,149.5406914005435,149.07452497381013,150.83601715984085,150.76829166686878,148.8216815582154,150.0013462310505],"axisNames":["t"],"type":"NdArray"}},"domain":{"referencing":[{"system":{"id":"http:\\/\\/www.opengis.net\\/def\\/crs\\/OGC\\/1.3\\/CRS84","type":"GeographicCRS"},"coordinates":["x","y","z"]},{"system":{"calendar":"Gregorian","type":"TemporalRS"},"coordinates":["t"]}],"domainType":"PointSeries","axes":{"t":{"values":["2013-09-15T12:00:00.000Z","2013-09-22T12:00:00.000Z","2013-09-29T12:00:00.000Z","2013-10-06T12:00:00.000Z","2013-10-13T12:00:00.000Z","2013-10-20T12:00:00.000Z","2013-10-27T12:00:00.000Z","2013-11-03T12:00:00.000Z","2013-11-10T12:00:00.000Z","2013-11-17T12:00:00.000Z","2013-11-24T12:00:00.000Z","2013-12-01T12:00:00.000Z","2013-12-08T12:00:00.000Z","2013-12-15T12:00:00.000Z","2013-12-22T12:00:00.000Z","2013-12-29T12:00:00.000Z","2014-01-05T12:00:00.000Z","2014-01-12T12:00:00.000Z","2014-01-19T12:00:00.000Z","2014-01-26T12:00:00.000Z","2014-02-02T12:00:00.000Z","2014-02-09T12:00:00.000Z","2014-02-16T12:00:00.000Z","2014-02-23T12:00:00.000Z","2014-03-02T12:00:00.000Z","2014-03-09T12:00:00.000Z","2014-03-16T12:00:00.000Z","2014-03-23T12:00:00.000Z","2014-03-30T12:00:00.000Z","2014-04-06T12:00:00.000Z","2014-04-13T12:00:00.000Z","2014-04-20T12:00:00.000Z","2014-04-27T12:00:00.000Z","2014-05-04T12:00:00.000Z","2014-05-11T12:00:00.000Z","2014-05-18T12:00:00.000Z","2014-05-25T12:00:00.000Z","2014-06-01T12:00:00.000Z","2014-06-08T12:00:00.000Z","2014-06-15T12:00:00.000Z","2014-06-22T12:00:00.000Z","2014-06-29T12:00:00.000Z","2014-07-06T12:00:00.000Z","2014-07-13T12:00:00.000Z","2014-07-20T12:00:00.000Z","2014-07-27T12:00:00.000Z","2014-08-03T12:00:00.000Z","2014-08-10T12:00:00.000Z","2014-08-17T12:00:00.000Z","2014-08-24T12:00:00.000Z","2014-08-31T12:00:00.000Z","2014-09-07T12:00:00.000Z","2014-09-14T12:00:00.000Z","2014-09-21T12:00:00.000Z","2014-09-28T12:00:00.000Z","2014-10-05T12:00:00.000Z","2014-10-12T12:00:00.000Z","2014-10-19T12:00:00.000Z","2014-10-26T12:00:00.000Z","2014-11-02T12:00:00.000Z","2014-11-09T12:00:00.000Z","2014-11-16T12:00:00.000Z","2014-11-23T12:00:00.000Z","2014-11-30T12:00:00.000Z","2014-12-07T12:00:00.000Z","2014-12-14T12:00:00.000Z","2014-12-21T12:00:00.000Z","2014-12-28T12:00:00.000Z","2015-01-04T12:00:00.000Z","2015-01-11T12:00:00.000Z","2015-01-18T12:00:00.000Z","2015-01-25T12:00:00.000Z","2015-02-01T12:00:00.000Z","2015-02-08T12:00:00.000Z","2015-02-15T12:00:00.000Z","2015-02-22T12:00:00.000Z","2015-03-01T12:00:00.000Z","2015-03-08T12:00:00.000Z","2015-03-15T12:00:00.000Z","2015-03-22T12:00:00.000Z","2015-03-29T12:00:00.000Z","2015-04-05T12:00:00.000Z","2015-04-12T12:00:00.000Z","2015-04-19T12:00:00.000Z","2015-04-26T12:00:00.000Z","2015-05-03T12:00:00.000Z","2015-05-10T12:00:00.000Z","2015-05-17T12:00:00.000Z","2015-05-24T12:00:00.000Z","2015-05-31T12:00:00.000Z","2015-06-07T12:00:00.000Z","2015-06-14T12:00:00.000Z","2015-06-21T12:00:00.000Z","2015-06-28T12:00:00.000Z","2015-07-05T12:00:00.000Z","2015-07-12T12:00:00.000Z","2015-07-19T12:00:00.000Z","2015-07-26T12:00:00.000Z","2015-08-02T12:00:00.000Z","2015-08-16T12:00:00.000Z","2015-08-23T12:00:00.000Z","2015-08-30T12:00:00.000Z","2015-09-06T12:00:00.000Z","2015-09-13T12:00:00.000Z","2015-09-20T12:00:00.000Z","2015-09-27T12:00:00.000Z","2015-10-04T12:00:00.000Z","2015-10-11T12:00:00.000Z","2015-10-18T12:00:00.000Z","2015-10-25T12:00:00.000Z","2015-11-01T12:00:00.000Z","2015-11-08T12:00:00.000Z","2015-11-15T12:00:00.000Z","2015-11-22T12:00:00.000Z","2015-11-29T12:00:00.000Z","2015-12-06T12:00:00.000Z","2015-12-13T12:00:00.000Z","2015-12-20T12:00:00.000Z","2015-12-27T12:00:00.000Z","2016-01-03T12:00:00.000Z","2016-01-10T12:00:00.000Z","2016-01-17T12:00:00.000Z","2016-01-24T12:00:00.000Z","2016-01-31T12:00:00.000Z","2016-02-07T12:00:00.000Z","2016-02-14T12:00:00.000Z","2016-02-21T12:00:00.000Z","2016-02-28T12:00:00.000Z","2016-03-06T12:00:00.000Z","2016-03-13T12:00:00.000Z","2016-03-20T12:00:00.000Z","2016-03-27T12:00:00.000Z","2016-04-03T12:00:00.000Z","2016-04-10T12:00:00.000Z","2016-04-17T12:00:00.000Z","2016-04-24T12:00:00.000Z","2016-05-01T12:00:00.000Z","2016-05-08T12:00:00.000Z","2016-05-15T12:00:00.000Z","2016-05-22T12:00:00.000Z","2016-05-29T12:00:00.000Z","2016-06-05T12:00:00.000Z","2016-06-12T12:00:00.000Z","2016-06-19T12:00:00.000Z","2016-06-26T12:00:00.000Z","2016-07-03T12:00:00.000Z","2016-07-10T12:00:00.000Z","2016-07-17T12:00:00.000Z","2016-07-24T12:00:00.000Z","2016-07-31T12:00:00.000Z","2016-08-07T12:00:00.000Z","2016-08-14T12:00:00.000Z","2016-08-21T12:00:00.000Z","2016-08-28T12:00:00.000Z","2016-09-04T12:00:00.000Z","2016-09-11T12:00:00.000Z","2016-09-18T12:00:00.000Z","2016-09-25T12:00:00.000Z","2016-10-02T12:00:00.000Z","2016-10-09T12:00:00.000Z","2016-10-16T12:00:00.000Z","2016-10-23T12:00:00.000Z","2016-10-30T12:00:00.000Z","2016-11-06T12:00:00.000Z","2016-11-20T12:00:00.000Z","2016-11-27T12:00:00.000Z","2016-12-04T12:00:00.000Z","2016-12-11T12:00:00.000Z","2016-12-18T12:00:00.000Z","2016-12-25T12:00:00.000Z","2017-01-01T12:00:00.000Z","2017-01-08T12:00:00.000Z","2017-01-15T12:00:00.000Z","2017-01-22T12:00:00.000Z","2017-01-29T12:00:00.000Z","2017-02-05T12:00:00.000Z","2017-02-12T12:00:00.000Z","2017-02-19T12:00:00.000Z","2017-02-26T12:00:00.000Z","2017-03-05T12:00:00.000Z","2017-03-12T12:00:00.000Z","2017-03-19T12:00:00.000Z","2017-03-26T12:00:00.000Z","2017-04-02T12:00:00.000Z","2017-04-09T12:00:00.000Z","2017-04-16T12:00:00.000Z","2017-04-23T12:00:00.000Z","2017-04-30T12:00:00.000Z","2017-05-07T12:00:00.000Z","2017-05-14T12:00:00.000Z","2017-05-21T12:00:00.000Z","2017-05-28T12:00:00.000Z","2017-06-04T12:00:00.000Z","2017-06-11T12:00:00.000Z","2017-06-18T12:00:00.000Z","2017-06-25T12:00:00.000Z","2017-07-02T12:00:00.000Z","2017-07-09T12:00:00.000Z","2017-07-16T12:00:00.000Z","2017-07-23T12:00:00.000Z","2017-07-30T12:00:00.000Z","2017-08-06T12:00:00.000Z","2017-08-13T12:00:00.000Z","2017-08-20T12:00:00.000Z","2017-08-27T12:00:00.000Z","2017-09-03T12:00:00.000Z","2017-09-10T12:00:00.000Z","2017-09-17T12:00:00.000Z","2017-09-24T12:00:00.000Z","2017-10-01T12:00:00.000Z","2017-10-08T12:00:00.000Z","2017-10-15T12:00:00.000Z","2017-10-22T12:00:00.000Z","2017-10-29T12:00:00.000Z","2017-11-05T12:00:00.000Z","2017-11-12T12:00:00.000Z","2017-11-19T12:00:00.000Z","2017-11-26T12:00:00.000Z","2017-12-03T12:00:00.000Z","2017-12-10T12:00:00.000Z","2017-12-17T12:00:00.000Z","2017-12-24T12:00:00.000Z","2018-01-14T12:00:00.000Z","2018-01-21T12:00:00.000Z","2018-01-28T12:00:00.000Z","2018-02-25T12:00:00.000Z","2018-03-04T12:00:00.000Z","2018-03-11T12:00:00.000Z","2018-03-25T12:00:00.000Z","2018-04-01T12:00:00.000Z","2018-04-08T12:00:00.000Z","2018-04-15T12:00:00.000Z","2018-04-22T12:00:00.000Z","2018-04-29T12:00:00.000Z","2018-05-06T12:00:00.000Z","2018-05-13T12:00:00.000Z","2018-05-20T12:00:00.000Z","2018-05-27T12:00:00.000Z","2018-06-03T12:00:00.000Z","2018-06-10T12:00:00.000Z","2018-06-17T12:00:00.000Z","2018-06-24T12:00:00.000Z","2018-07-01T12:00:00.000Z","2018-07-08T12:00:00.000Z","2018-07-15T12:00:00.000Z","2018-07-22T12:00:00.000Z","2018-07-29T12:00:00.000Z","2018-08-05T12:00:00.000Z","2018-08-12T12:00:00.000Z","2018-08-19T12:00:00.000Z","2018-08-26T12:00:00.000Z","2018-09-02T12:00:00.000Z","2018-09-09T12:00:00.000Z","2018-09-16T12:00:00.000Z","2018-09-23T12:00:00.000Z","2018-09-30T12:00:00.000Z","2018-10-07T12:00:00.000Z","2018-10-14T12:00:00.000Z","2018-10-21T12:00:00.000Z","2018-10-28T12:00:00.000Z","2018-11-04T12:00:00.000Z","2018-11-11T12:00:00.000Z","2018-11-18T12:00:00.000Z","2018-11-25T12:00:00.000Z","2018-12-02T12:00:00.000Z","2018-12-09T12:00:00.000Z","2018-12-16T12:00:00.000Z","2018-12-23T12:00:00.000Z","2018-12-30T12:00:00.000Z","2019-01-06T12:00:00.000Z","2019-01-13T12:00:00.000Z","2019-01-20T12:00:00.000Z","2019-01-27T12:00:00.000Z","2019-02-03T12:00:00.000Z","2019-02-10T12:00:00.000Z","2019-02-17T12:00:00.000Z","2019-02-24T12:00:00.000Z","2019-03-03T12:00:00.000Z","2019-03-10T12:00:00.000Z","2019-03-17T12:00:00.000Z","2019-03-24T12:00:00.000Z","2019-03-31T12:00:00.000Z","2019-04-07T12:00:00.000Z","2019-04-14T12:00:00.000Z","2019-04-21T12:00:00.000Z","2019-04-28T12:00:00.000Z","2019-05-05T12:00:00.000Z","2019-05-12T12:00:00.000Z","2019-05-19T12:00:00.000Z","2019-05-26T12:00:00.000Z","2019-06-02T12:00:00.000Z","2019-06-09T12:00:00.000Z","2019-06-16T12:00:00.000Z","2019-06-23T12:00:00.000Z","2019-06-30T12:00:00.000Z","2019-07-07T12:00:00.000Z","2019-07-14T12:00:00.000Z","2019-07-21T12:00:00.000Z","2019-07-28T12:00:00.000Z","2019-08-04T12:00:00.000Z","2019-08-11T12:00:00.000Z","2019-08-18T12:00:00.000Z","2019-08-25T12:00:00.000Z","2019-09-01T12:00:00.000Z","2019-09-08T12:00:00.000Z","2019-09-15T12:00:00.000Z","2019-09-22T12:00:00.000Z","2019-09-29T12:00:00.000Z","2019-10-06T12:00:00.000Z","2019-10-13T12:00:00.000Z","2019-10-20T12:00:00.000Z","2019-10-27T12:00:00.000Z","2019-11-03T12:00:00.000Z","2019-11-10T12:00:00.000Z","2019-11-17T12:00:00.000Z","2019-11-24T12:00:00.000Z","2019-12-01T12:00:00.000Z","2019-12-08T12:00:00.000Z","2019-12-15T12:00:00.000Z","2019-12-22T12:00:00.000Z","2019-12-29T12:00:00.000Z","2020-01-05T12:00:00.000Z","2020-01-12T12:00:00.000Z","2020-01-19T12:00:00.000Z","2020-01-26T12:00:00.000Z","2020-02-02T12:00:00.000Z","2020-02-09T12:00:00.000Z","2020-02-16T12:00:00.000Z","2020-02-23T12:00:00.000Z","2020-03-01T12:00:00.000Z","2020-03-08T12:00:00.000Z","2020-03-15T12:00:00.000Z","2020-03-22T12:00:00.000Z","2020-03-29T12:00:00.000Z","2020-04-05T12:00:00.000Z","2020-04-12T12:00:00.000Z","2020-04-19T12:00:00.000Z","2020-04-26T12:00:00.000Z","2020-05-03T12:00:00.000Z","2020-05-10T12:00:00.000Z","2020-05-17T12:00:00.000Z","2020-05-24T12:00:00.000Z","2020-05-31T12:00:00.000Z","2020-06-07T12:00:00.000Z","2020-06-14T12:00:00.000Z","2020-06-21T12:00:00.000Z","2020-06-28T12:00:00.000Z","2020-07-05T12:00:00.000Z","2020-07-12T12:00:00.000Z","2020-07-19T12:00:00.000Z","2020-07-26T12:00:00.000Z","2020-08-02T12:00:00.000Z","2020-08-09T12:00:00.000Z","2020-08-16T12:00:00.000Z","2020-08-23T12:00:00.000Z","2020-08-30T12:00:00.000Z","2020-09-06T12:00:00.000Z","2020-09-13T12:00:00.000Z","2020-09-20T12:00:00.000Z","2020-09-27T12:00:00.000Z","2020-10-04T12:00:00.000Z","2020-10-11T12:00:00.000Z","2020-10-18T12:00:00.000Z","2020-10-25T12:00:00.000Z","2020-11-01T12:00:00.000Z","2020-11-08T12:00:00.000Z","2020-11-15T12:00:00.000Z","2020-11-22T12:00:00.000Z","2020-11-29T12:00:00.000Z","2020-12-06T12:00:00.000Z","2020-12-13T12:00:00.000Z","2020-12-20T12:00:00.000Z","2020-12-27T12:00:00.000Z","2021-02-21T12:00:00.000Z","2021-02-28T12:00:00.000Z","2021-03-07T12:00:00.000Z","2021-03-14T12:00:00.000Z","2021-03-21T12:00:00.000Z","2021-03-28T12:00:00.000Z","2021-04-04T12:00:00.000Z","2021-04-11T12:00:00.000Z","2021-04-18T12:00:00.000Z","2021-04-25T12:00:00.000Z","2021-05-02T12:00:00.000Z","2021-05-09T12:00:00.000Z","2021-05-16T12:00:00.000Z","2021-05-23T12:00:00.000Z","2021-05-30T12:00:00.000Z","2021-06-06T12:00:00.000Z","2021-06-13T12:00:00.000Z","2021-06-20T12:00:00.000Z","2021-06-27T12:00:00.000Z","2021-07-04T12:00:00.000Z","2021-07-11T12:00:00.000Z","2021-07-18T12:00:00.000Z","2021-07-25T12:00:00.000Z","2021-08-01T12:00:00.000Z","2021-08-08T12:00:00.000Z","2021-08-15T12:00:00.000Z","2021-08-22T12:00:00.000Z","2021-08-29T12:00:00.000Z","2021-09-05T12:00:00.000Z","2021-09-12T12:00:00.000Z","2021-09-19T12:00:00.000Z","2021-09-26T12:00:00.000Z","2021-10-03T12:00:00.000Z","2021-10-10T12:00:00.000Z","2021-10-17T12:00:00.000Z","2021-10-24T12:00:00.000Z","2021-10-31T12:00:00.000Z","2021-11-07T12:00:00.000Z","2021-11-14T12:00:00.000Z","2021-11-21T12:00:00.000Z","2021-11-28T12:00:00.000Z","2021-12-05T12:00:00.000Z","2021-12-12T12:00:00.000Z","2021-12-19T12:00:00.000Z","2021-12-26T12:00:00.000Z","2022-01-02T12:00:00.000Z","2022-01-09T12:00:00.000Z","2022-01-16T12:00:00.000Z","2022-01-23T12:00:00.000Z","2022-01-30T12:00:00.000Z","2022-02-06T12:00:00.000Z","2022-02-13T12:00:00.000Z","2022-02-20T12:00:00.000Z","2022-02-27T12:00:00.000Z","2022-03-06T12:00:00.000Z","2022-03-13T12:00:00.000Z"]},"x":{"values":[13.9679]},"y":{"values":[63.0414]},"z":{"values":[606.04]}},"type":"Domain"},"type":"Coverage","parameters":{"E":{"unit":{"symbol":{"type":"https:\\/\\/gnssproducts.epos.ubi.pt\\/faq","value":"mm"},"label":{"en":"East"}},"description":{"en":"Geographic ' 'east component (positive ' 'east)"},"observedProperty":{"id":"https:\\/\\/gnssproducts.epos.ubi.pt\\/faq","label":{"en":"East ' 'component"}},"type":"Parameter"},"U":{"unit":{"symbol":{"type":"https:\\/\\/gnssproducts.epos.ubi.pt\\/faq","value":"mm"},"label":{"en":"Up"}},"description":{"en":"Geographic ' 'UP component (positive ' 'UP)"},"observedProperty":{"id":"https:\\/\\/gnssproducts.epos.ubi.pt\\/faq","label":{"en":"Up ' 'component"}},"type":"Parameter"},"N":{"unit":{"symbol":{"type":"https:\\/\\/gnssproducts.epos.ubi.pt\\/faq","value":"mm"},"label":{"en":"North"}},"description":{"en":"Geographic ' 'Y ' 'component"},"observedProperty":{"id":"https:\\/\\/gnssproducts.epos.ubi.pt\\/faq","label":{"en":"North ' 'component"}},"type":"Parameter"}},"epos:info":{"tcs":"wp10","date_created":"2023-09-12T10:04:26.000Z","usage":"timeseries","format":"covjson","resampling_method":"null","type":"CovJSON ' 'Timeseries ' 'Values","web_service_uri":"http:\\/\\/gnssproducts.epos.ubi.pt\\/GlassFramework\\/webresources\\/products\\/timeseries\\/GRN0\\/SGO-EPND\\/weekly\\/enu\\/covjson\\/?epoch_start=2013-09-12&epoch_end=2023-09-12"}}', 'HED0': '{"gnss_europe:info":{"analysis_center":"Satellite ' 'Geodetic Observatory, ' 'Hungary","cut_of_angle":"","epoch_start":"2013-09-12","format":"covjson","epoch_end":"2023-09-12","apply_offsets":"","reference_frame":"ITRF14","version":"2023.1","sampling_period":"weekly","otl_model":"","marker":"HED0","remove_outliers":"","calibration_model":"","coordinate_type":"enu","DOI":"unknown"},"ranges":{"E":{"shape":[443],"dataType":"float","values":[583.1067233444517,582.8808323936406,583.395109157638,584.6305621114074,583.8897827807909,583.968415052098,584.3690090604421,584.5753753196636,585.3187894031705,585.9883071096299,586.306035171547,585.9504183775517,585.9780038916992,587.4681725298642,587.1532202457622,587.1113793189495,588.0271129293739,588.1958882700374,589.5366026558067,590.1497264550535,590.2076263427307,588.8018452487565,589.2991377502088,589.8338488630377,590.0011028225026,590.440903338742,589.5163876748114,590.9788608217559,591.8002953428945,591.7932227363667,592.1341917575747,592.7595634567762,592.8548663064212,592.8584106018359,593.2584872063715,593.6179304598195,593.384747206694,593.8274961636008,593.8620133720509,594.2516139865082,593.5758231319624,595.4310647060154,595.5484170240858,595.7494669685652,595.5245483575108,595.6844160231016,595.6776253571276,595.4106777613595,596.177270223867,596.9369627461132,598.5290832909395,598.3457075756645,598.0251571425027,598.3533294486668,598.1824526291232,599.2164165803306,599.6036964683617,599.3141972854711,599.6576441523655,598.9367658892636,600.3624166531307,600.4433697672298,600.785123293918,600.5935767704717,601.0410774979573,601.5421964465721,602.2946751218936,603.2924283058505,603.4344020397299,604.873523930715,605.0605222831169,605.1629763100964,604.9441738438092,605.1029748354258,604.6042553958013,605.3336176633464,606.256565137301,606.8668817538928,606.2248552394115,606.8075863427886,607.1007866098822,607.2602777871384,607.7718415754889,608.5870815117105,607.7829290734508,608.2640373516838,608.424124489906,608.7366926602845,606.5612609281384,607.0478738403499,607.4732934642437,607.9517828744465,607.6824669214031,607.728307090025,607.4334286394105,608.2379888837336,608.5106922298465,608.9533626298589,608.8066055906045,609.3771982967482,609.5962987995774,609.3569208476631,610.1062944009976,611.0794257827342,610.1987583008544,610.5901783413491,611.4929265936215,612.0059332129841,612.1207293444329,612.7872361324143,613.1806163982095,612.5881152652014,613.1852113732837,613.7584229462433,614.818623807508,614.2224215831595,614.8962522102815,616.1421184814129,615.7176867443947,617.4946258404609,616.8676391626441,616.7794410770441,617.5430226217395,616.7874071425089,617.3413136002858,617.438325678968,619.3223762425538,618.1951480984403,619.3958018199377,619.2289399003593,618.4702354855622,620.104243879808,619.924161441488,620.3290214730235,620.7528572571088,620.6107578681072,621.5502973631876,621.0188326108678,620.4837139816613,621.673844391553,621.4384655670777,621.0862520455549,622.2598217661655,621.8235497714616,622.8997311455554,622.5703512573646,623.3703634399956,623.6562557523949,624.083024095855,623.6211425892001,624.8327739212017,624.8498676725283,625.9349725184638,625.5167357114749,625.2765107773682,626.3967914624371,625.7215336704315,626.4665942920502,626.3002966639538,628.3919527417756,628.082552381848,628.4364909894773,627.9864340709322,628.6039804239991,629.5664637934977,629.433601019971,628.8055162296213,629.2035700398262,630.4810676385523,631.8450863356844,630.535564480738,630.8134586501566,632.6186891340617,632.2293704412615,632.2060035223818,632.8747217805974,633.5024616486149,635.0004559118071,633.7777997454218,633.0131357526581,633.8344136120729,635.2160118885308,634.769859860296,635.695003035218,635.8188636620365,635.5004771508696,635.8724508418063,635.8840558472673,636.4159754376283,636.3256129030713,636.3021049711544,636.8589438753836,636.921815129183,637.4345863989743,638.1972115996382,638.1532690868171,638.230317422751,638.2738992346904,638.7589124050114,639.0778163088827,640.2096235450863,639.4096271486686,639.7079556766151,640.6873444367308,640.3378438976641,640.6629425176615,640.7234612747934,642.0093494065886,641.3933086653909,642.6517522960801,642.9819632802098,642.1855580631899,643.5851914329398,643.6695320518761,643.808212491132,643.3782136648608,644.7855782465981,644.9503386980556,645.6153558606508,646.3084917160634,645.5611570508843,647.9202312274382,648.1117618820397,648.6865891029562,650.0596408708622,647.8342446894053,648.7252622355751,649.3484224462396,650.0400060284722,651.3029661799762,650.0587463949187,651.1066837505684,651.8073945036585,650.6504011280383,651.2490343130871,650.4450697634359,651.1954312325942,650.9046303419995,651.3648651107954,650.8718381121353,651.0684026723868,651.7160906212594,651.9324938137053,652.3802924773161,652.4808329588936,651.9714806555629,652.1164342740809,652.7084021148531,653.4417792755133,654.0559380304893,653.6511880038189,653.7592561269178,653.6530856769668,654.64302887842,653.4503106016888,655.2102968832556,654.9266628264054,656.4952752509153,657.5195945330578,657.4134082947288,657.5303683270474,657.444365515246,657.9989620519441,658.2873636757434,658.5069187793054,658.4263420357785,658.307798039843,660.5022996692354,660.2530418026005,660.5393730469649,660.8242462801144,660.3080559188564,661.20139488329,664.1176219105798,663.1923067568318,662.6963622571398,662.4101404313928,662.5415445043038,662.9324470630912,663.9387786302487,663.82432790927,666.165115961919,665.7037044533212,666.1240429257741,666.2049334966553,666.7241347613699,667.4692738379646,667.735468631635,667.4777735776007,668.4186150448827,668.2947859898842,668.508240613446,668.3699365529554,667.8775838453982,669.2813258929609,669.3922170390409,669.1269003158027,669.6384640081073,670.2778557727199,670.3188030767869,669.5889544190997,670.7801044271401,670.8654172588593,671.160891692555,671.116117968948,671.9330203332751,671.2194975033086,671.8896896798618,672.4987670421859,673.2597456250722,673.4361269831438,673.5721727863635,674.2332850754738,673.4810573995161,674.8833096302382,675.0885625479222,675.5964251360975,676.2401924120602,675.9208963328285,676.612683493021,677.2637121970721,678.3353769553848,678.7894796507055,677.3359302090955,677.1132381313132,678.5610326410507,678.7023951128704,680.4513405329845,678.5063630794275,680.2223911725791,680.104882056012,680.1983498475531,681.075802681407,681.4549432180672,681.926234119746,681.4977248893451,682.731186606494,683.6088747053303,682.2661056847203,682.6125325588476,683.586432585935,682.8586384114886,684.1234804533719,683.6144260829142,684.0812320796524,684.5361818960969,684.8231247737752,684.9347529858812,685.8879989636256,685.7765276683098,685.5035423108459,686.1335874439065,685.9029446123787,685.8393363954187,685.8486047924486,687.3963122307167,687.4306098589539,687.8548221520118,688.3139904496048,688.8722880968312,688.3292498254858,688.0236758857923,688.2402985430606,689.5542112518193,689.6965769862526,690.2519420843789,690.2603791603392,691.7175988873413,692.108093468353,691.88477439204,692.0786417704782,693.0619353903581,692.7245572307609,693.9380236196996,693.7542400416804,694.0696155629926,695.5936739713628,694.690266997704,694.5796896756269,694.2445539621265,696.4926118621385,698.9271972443067,698.4123563568048,698.0171566170028,697.7030980569745,697.9699521307081,697.1820156982058,698.85165438036,697.7268256517715,697.0789339382854,698.3524484362979,698.8671017100888,699.1780859102453,698.4339349639818,698.7339884564941,700.1453054470051,699.6312638170673,699.9636706317513,700.0929416703133,700.503870622254,700.8784003878417,701.3630528644846,701.5609977306722,701.0375311160454,701.2199344949735,701.5479656881197,701.5736851349394,701.7171801006168,702.0921805164103,702.626421141564,702.4225327208811,703.5251863091463,703.659789143584,703.9366326336245,705.1870939399133,704.281256095931,705.6815479983711,705.6751497243007,706.4756792828263,707.6383810794997,706.8850869189544,707.3215157522849,707.6530129005015,708.407859172111,708.8886853577505,708.5439367149285,708.7437476490315,708.9873598764913,709.978557991416,711.4317627814747,709.9253314858651,710.401923155589,711.037551278256,712.849101796388,712.7701557286674,711.8640826110767,712.1525469169248,712.7100291737255,712.9345397922252,713.248268824862,713.3358398983706,713.621057929842,713.9653049096972],"axisNames":["t"],"type":"NdArray"},"U":{"shape":[443],"dataType":"float","values":[678.4600503999791,678.9499497976105,678.0864429562498,677.7085518914282,679.8254283409315,678.4210061023548,681.3428508097348,682.9464086949502,682.0179238258338,684.4603129618345,681.163528873706,683.9482424247105,683.9498497054982,678.2479202929652,684.2083794561153,685.2467966901515,684.7282470911244,682.5276422612271,672.9148519986402,668.3357309479838,664.3356397089598,681.8873590446099,686.9358174644799,683.8321429246215,682.5062658754026,682.4390312000324,679.9414852962489,682.7827681285272,678.9974313379219,679.4375199147032,682.7109496197577,683.6293185603187,679.6786113425301,681.2698354750908,682.1477639829494,683.4350696096823,681.7413145545927,680.232471552542,682.2541485166198,682.7205460084275,684.1261435980344,683.6612025811004,684.6468510524047,682.5336714248201,683.4518627696045,683.2283537463514,685.2008320438543,682.9151638799133,686.8739393589175,687.2561559532304,685.13848656994,685.1903629365207,684.9001081200787,685.2997475168314,687.6263815530083,688.8296223086921,687.8619384859193,686.8017405694468,692.4323130018737,690.2855109810808,688.0197264536297,687.2871149387571,686.0995166451665,688.9759330548828,690.3172231176866,697.4965708762184,694.0515565871264,689.5615305955502,694.7939722113264,694.1498789047835,695.1004200907505,689.5092275622621,689.387951689291,692.2260348303979,690.9442187266043,692.9553650493449,695.9360934373309,693.3077294890843,690.678435591267,689.0589160359489,690.5504510198292,691.4246680471425,689.9704394846866,692.3249547511067,691.2494043457158,690.9034135397216,692.5059234818899,692.7182077587036,695.3610178623672,695.572209635361,694.3490848428175,692.70566108831,693.7625676154519,693.9761105781139,696.88577405175,693.2507538092696,692.0465573615398,692.9701520082076,693.4285890175036,691.9935703675125,693.6356944175054,696.0520248039701,694.9691874589635,696.4971451823212,697.0961714297241,697.278008675576,697.1781778070216,696.1205261855381,696.7737427461932,700.6765967282389,700.2055267711636,698.8974266968378,701.5387370697974,702.7750117093585,703.1867973806749,704.0709867515616,704.373066003353,703.5746569707658,704.9663514881279,702.2981583864636,697.1105304489955,684.1908059980577,688.8477759398437,703.2402953892272,706.3396880211809,705.2690308797274,703.6244362069524,706.2381403636263,702.9620897201901,700.9805235191532,699.9957419694687,703.2584562289112,706.7061096959665,702.5136125905328,701.7143028417577,705.6232216800184,703.4467090619473,704.1123585648572,701.6352356715983,704.4349857372392,703.0776093759507,702.7607742411445,703.222660203474,704.9103885444422,705.5995268266005,705.8909726448966,704.8154146097136,705.8011950604239,705.3268138567894,706.286441873523,705.725561084009,707.5342174054074,704.7456318656751,703.4099624825561,706.2732364334142,706.534853099287,704.8939767656599,706.1198581383751,709.8710164973647,704.5510527595515,704.0584089730488,706.853754163386,707.6972972777373,705.4632694002273,698.9222517040627,710.1348060533469,709.3436680071757,710.4856352560607,712.0857475829866,701.7377088806605,710.4337985304122,711.8849681070423,708.23569771974,710.9591846203393,710.2064780192314,711.1909629594891,707.7119877833475,703.5315490823355,709.646177690143,711.1114246895414,709.5141521398265,708.4397075201775,711.1355589550881,710.8815071252371,709.2486490209515,709.8328215310114,710.251813045429,710.0647038758804,709.5295617762952,708.4908610996503,708.921953284042,711.1496880759806,710.3987087401796,710.8149790735495,711.5930336491625,711.4013489632664,709.7293797427848,707.6833959020844,710.7053917622412,712.2183160849266,712.2434512356823,710.0190693927359,711.6409714317838,713.3565637315064,713.0365885461928,710.9003359009516,711.6810764041427,711.9103955522186,714.7969136911922,712.8392383555811,712.0680723418595,716.9141722033897,713.7735996959249,712.7164272145683,714.2428640802431,714.5112356853882,715.9122689333017,717.6121387634755,718.8034669811938,719.5026477654172,721.3292195576737,716.6323038803904,711.436299658608,710.967043655001,704.8884914916248,702.6201153373386,713.541701849799,716.5452592180096,712.6549599018462,712.3090750539209,717.4245689531255,713.227903777035,708.7344840700688,713.0630051691668,709.7835156130819,715.2725080102426,713.4896059060188,715.4935640230957,713.1329789665215,715.7908511389428,718.0619066122089,716.9064605701443,717.2017779066064,718.3709667734834,718.4953501159047,717.1375729290771,717.6257882623122,719.0199176711376,720.58739693308,717.6586152903459,718.4649124417771,721.7453850317827,718.7526785540508,721.079856917312,722.4734727834394,721.9448534006988,721.8890592413536,720.0074830321818,721.1349234118001,719.5098912616108,723.7852550147222,722.708468346881,723.3919494307315,721.1808973674209,723.3169368616581,722.9695504837782,722.9559441220988,721.0141623529684,722.8254389264803,725.2562190440311,719.0403621255199,723.8910399099727,725.3880683255187,718.3743480957154,712.575268157131,722.2098665417705,726.5867547093267,724.1807282303673,722.4338758314608,719.494656364532,712.4124583267542,716.6916617055691,724.0198179315645,726.7805874241383,725.6059264395363,723.5581795421832,724.8777510258993,725.8843363521121,726.0955493753074,720.7485172483692,720.7539792268412,720.9575000014163,721.2583279923665,725.145910850226,727.069068160836,723.3704386360008,725.8299866317232,725.3684834367182,726.4725675006937,722.7595558283107,724.8955180848391,723.408950076303,726.148241188085,724.9595949624073,725.5401288916967,726.1020246290924,721.0315885894722,726.3789102523813,729.1535639235067,727.2011197065034,726.8321175542129,728.0476597972239,726.1191826440057,726.8644188446766,727.3967272305181,726.5737554600829,727.8081807912449,727.8610482907608,729.35420407921,729.3312319119924,726.7860431109832,725.3936189519244,728.719711149662,726.1500106657612,730.8221722762962,727.8401369686594,726.3367185906641,726.8529482624272,732.6844177774643,733.6863315959818,735.269884202588,733.5918631476435,731.5786983610053,731.4890687974754,734.9864258720023,735.9276933505821,730.8803182330626,723.8034701844131,734.3326993460777,731.2126943179171,730.8793399051639,730.9022764166106,730.8556998469816,730.2387730939813,727.5985424289474,730.1231463048586,729.760689591378,731.6338079382587,731.9627837500074,730.8886363960106,730.5515790566582,730.326402073521,730.8822954326608,731.9115093866229,734.2727575556538,734.2996582744909,733.3075927089768,734.6369109838754,734.4338303347753,734.529334615042,730.3865250980513,732.8579504436008,734.3765617174314,733.5618133387567,736.4263547945469,735.0003426641957,735.6431367997478,732.745649492968,736.8705006739914,734.3574357344969,736.309863339921,740.0461727978844,741.3259609145477,737.597169094218,741.7214363620935,738.4229680733001,737.1397688497193,734.9878970322288,734.6294858904123,742.0360123179031,734.3834164153491,727.012853652514,723.2338584371284,728.5808375161602,736.9056653283478,732.5671222884581,729.8784124234139,739.7609165665106,742.60830564743,740.2066507559024,741.2789403484263,740.5674771670473,742.1519828361922,740.4957550494197,743.3286711414767,739.0399113784151,739.8299466124454,738.9617178874305,739.8070679814567,740.574936472058,741.6986295768784,740.9495520422328,739.7360531097758,740.0249510725466,740.0411445114016,740.7559490256897,738.9398935070845,741.923746999297,740.2059605468088,741.4594431105254,742.9841616104351,740.7520168290613,745.2493803963662,745.132660513852,742.5740622928396,742.1261280253655,743.550660829813,742.9513763005186,745.4708658852406,747.6143474865671,747.4148254876267,747.5010643049723,747.9406808070539,750.4517357780895,749.7522166235373,747.451707404401,748.9510966252675,748.1121181853139,744.5904197746913,741.2945572500967,743.2722052464059,746.419863851013,747.1380588197792,743.2941570418391,745.5381297128672,749.1788823413364,748.8457846246399,748.1331074588089,750.7466264324883,747.6958321414718,750.9928376276298,747.6909627711559,746.9876072766937],"axisNames":["t"],"type":"NdArray"},"N":{"shape":[443],"dataType":"float","values":[164.0396829797486,164.63531055081137,164.47413791962052,164.76560580322544,165.09753944651646,166.03669589309516,166.0155105084738,166.22862171221843,166.1918434542328,165.05827246314954,166.03482864514444,167.07531169456954,166.96424237778163,167.16719816906965,166.33971928558725,166.05804794630126,167.72031642197985,167.8942496091734,167.139168388739,168.10840917726864,167.25640042574156,170.30792972218467,170.83762122415462,170.27816723638466,169.5982569675794,169.16541218218754,169.41104504168752,170.90479279135783,170.22481766602397,171.62855237179798,171.3662596114774,171.59519119290113,172.44131760703,173.43398692568775,173.30836661980425,172.72300898685273,173.9784838130267,173.62724713387453,174.3142186342783,174.06930011684895,175.59012347340183,175.07630539691894,175.17643659170537,176.80288932160195,176.90256889268025,176.8120920915998,177.18287819849047,178.40519550909306,177.45723049936424,177.8918304272607,177.25903545999327,178.06686096607916,179.16248838378763,178.9805770175566,179.73169061506178,179.3720643406812,179.8638998229794,180.31685824147203,180.38010072144016,178.72315418873973,180.900936760978,180.70516390406857,181.01324648313064,180.40947568735493,181.85902080205537,181.82987892974162,182.35585737403312,183.19773133116288,183.07282483171312,184.1330940755366,184.30043288148136,183.4058529392693,184.00520061924445,184.4467462465711,186.36070199560515,184.7999905007788,186.19957207733364,186.436461900749,185.57360906577986,186.4493826317571,186.9633438868044,187.49278484607055,187.0585915773789,188.25309749326073,188.45466717060083,188.16669899355523,188.4034140446578,187.95381825910988,189.30916157313624,189.5312109301906,189.9721006765259,190.82884161058345,190.79255388916602,192.13322474914966,192.02736685936642,192.3123373516374,191.85304990360737,192.48234700128512,192.27426574295498,192.94801919785462,192.80651740662069,194.87621467622392,195.2213265238308,194.45604253455457,194.4971802738328,195.07780546279625,194.96654503687046,195.76020547761823,196.30235755685993,196.30378999196935,196.60085084668674,196.90204053424887,197.029137965422,197.27582504276205,197.1570534203637,197.86178824433907,197.17549335484173,198.35839633985765,198.7827132043107,198.10232159761557,199.73972780582676,199.09509393772146,198.88395665032502,199.66805406006307,199.97652336225366,200.01753568149118,200.42294924490872,200.21412421819124,201.19418552302233,201.59674367020264,201.62454483999514,201.92272944126785,202.29883449110525,202.83029915237537,203.38857016263663,203.50798198262626,203.16062623919538,202.94462796447203,204.83584685651854,204.59483126996986,205.09834613580315,205.5969051316989,206.18136682664073,206.1253471933315,206.2747555094456,206.66714296998504,205.85359895595718,206.40704446584044,206.47286006311316,207.70273029907307,207.5453693037562,206.9770646707172,208.10384479976125,208.4362116785028,209.04551851523777,209.51661078051808,209.9797009307065,209.9655052918986,209.69578151203996,210.70099397746068,211.21214324674858,211.1955470514245,211.5029286928739,211.35207321002375,211.58469369796123,212.27936727166013,212.15244066888562,213.31401910242852,213.33933950057488,213.51665627087758,212.6357096969745,212.6221901147951,213.9279718405265,214.00574229476868,213.50286495559777,214.40436525252284,215.34093735142756,215.0717693364914,216.19539466827837,217.04046348785673,216.92331193287046,216.4748107115179,216.36790235385288,217.00545056378047,218.23073856312783,217.71715139759928,218.42692785170703,218.0939775854267,218.6216929313477,219.05509456505655,220.08728006858502,219.2782500878735,219.80879404213337,220.5021802713458,220.48136462023038,220.41635776053073,221.11175967654736,221.55124674305395,221.64071061670253,222.2865113041805,222.1088024087534,222.69542882174954,223.54297349140907,223.00164157812625,223.4630145788333,223.53535120428324,223.358203929313,224.92785477066718,225.2334807772346,224.85595344706323,224.41001259242466,226.14784197631886,226.58776137472,225.80381492253576,225.94858044784655,226.7739153426658,226.53239808085885,226.84190869282133,227.1098465070482,227.54240670807326,227.93333521617114,228.58812125412624,226.48342115421028,228.93686202828067,230.22799935300503,229.79732579362096,230.89784048056558,229.7914881350091,230.7163563138189,230.6225722867899,230.59195924421428,230.18106798367532,231.46141028490624,232.8293909882594,232.6713134711143,232.6816206945139,233.43820361899793,233.55433954894838,232.6954326748893,233.26599073260746,233.540347329579,233.225316107676,233.91267124447188,234.93574176748427,234.26565212528888,235.6554726736157,236.88068057324813,236.09082074497505,236.2002117609499,236.10508528989493,237.08852952292517,237.1367327796324,238.50309177410614,238.47561932591466,238.5290836176561,239.56267382238693,239.215919552202,239.5134508682706,239.40692764746362,239.990875266739,240.35909776315702,239.63429850181095,239.7945349843121,240.76601445316572,241.12605721762452,240.71117274611245,242.46510017805798,241.51718443857857,242.6933425513037,242.7483138583218,242.96320103171377,242.44602309196128,244.3317723499106,242.96391250408183,244.2815876543125,243.46142685018896,243.05212930873293,244.44006646432192,244.97644592777428,245.26847804497032,245.52200756922403,246.53083345126686,245.63365256578942,245.18647995848664,245.9665616236759,247.57574190312872,247.900547257427,246.10312545616293,246.88669547006072,246.82060321447418,247.738882431961,247.54364787664997,248.3068480541606,249.13665926261737,248.71632947459076,248.36712571380394,249.46854659256942,249.5529077937639,249.9446670629893,249.8389812486279,250.32876388203846,251.61956781394957,252.09905390525057,252.4307403391261,252.57207489131955,253.22425920199615,254.22693885364623,254.2276818164423,254.14270324340671,253.798358762571,254.2887943351636,254.59676931221824,254.61691378938977,255.047699861242,255.58373705880345,256.16570715345654,256.39433689381787,256.59550431656174,256.0696367030014,256.89116077882744,258.13513756916325,257.7554148704712,257.327509621543,258.76960342543094,257.5574500477603,257.82345476601034,260.5504215184668,258.69820723440404,258.1176689006626,258.489038919821,259.1508200213094,258.7130872975591,260.4288506927833,261.48597848973964,261.42135392137334,260.91529503859624,262.91055673041495,262.8514648831827,262.240883115795,261.56150267583234,261.22774563241325,262.4581481636311,262.2881326651647,263.7283634580483,264.0095687088658,264.85685617424923,264.276435447725,265.2478085836103,265.1147793713791,265.1408757276899,266.6284816063955,266.2820159558484,266.6001145906646,267.8047613962665,268.79198880132805,267.57417187651345,267.31353828926046,268.9371940043672,268.13805530930887,268.7327672691305,269.23390473142916,269.6214361983629,270.32114676193544,269.9802379418265,270.0687542453118,270.53087859687577,270.42343178838183,271.0675409223888,271.723903690386,271.63207201470317,273.2723603209014,272.4047069934914,272.5032965698176,273.1621690635918,273.150098014416,272.61798185845225,272.4395298685743,273.25451696220756,272.64475168996205,274.1677586669787,274.10935945410426,272.12873139027613,273.53166962308467,274.80737875841874,274.2052089408523,274.92987033504767,275.2822868426401,277.03292052740693,275.7503711018057,276.3307936126066,277.17219444731205,277.0439274111258,277.207117620467,277.48361206360505,278.1510361838636,278.0460434602109,279.0390219732782,279.4700499717484,280.4219283365931,280.0966359864122,280.5588479084566,280.2218103818881,280.90345435798116,281.3007214741711,281.24812097011375,282.1475373480694,282.81640177088826,282.8276959589251,283.5460157388417,283.52217550054513,284.0374050062407,284.1853258829363,285.1868760719577,284.7839690721464,284.7793066273806,284.6864997029561,285.63110973352053,286.10883046690935,286.20996242645725,286.31817362093324,285.1882452127573,286.7510283893195,287.37812291018406,286.8258464604387,288.1866104015328,287.925442933454,288.29477798952644,288.3242343790724,289.8825558688949,288.41671754864996,287.97846104652183,290.07360065660833,290.72894198509454,290.85223544652075,289.19137615225895,290.36413084122364,291.10980773077637,292.5821541241488,291.3801508684849,292.08016963005923,292.57188884465467,291.26874823355837,292.4208698138904],"axisNames":["t"],"type":"NdArray"}},"domain":{"referencing":[{"system":{"id":"http:\\/\\/www.opengis.net\\/def\\/crs\\/OGC\\/1.3\\/CRS84","type":"GeographicCRS"},"coordinates":["x","y","z"]},{"system":{"calendar":"Gregorian","type":"TemporalRS"},"coordinates":["t"]}],"domainType":"PointSeries","axes":{"t":{"values":["2013-09-15T12:00:00.000Z","2013-09-22T12:00:00.000Z","2013-09-29T12:00:00.000Z","2013-10-06T12:00:00.000Z","2013-10-13T12:00:00.000Z","2013-10-20T12:00:00.000Z","2013-10-27T12:00:00.000Z","2013-11-03T12:00:00.000Z","2013-11-10T12:00:00.000Z","2013-11-17T12:00:00.000Z","2013-11-24T12:00:00.000Z","2013-12-01T12:00:00.000Z","2013-12-08T12:00:00.000Z","2013-12-15T12:00:00.000Z","2013-12-22T12:00:00.000Z","2013-12-29T12:00:00.000Z","2014-01-05T12:00:00.000Z","2014-01-12T12:00:00.000Z","2014-01-19T12:00:00.000Z","2014-01-26T12:00:00.000Z","2014-02-02T12:00:00.000Z","2014-02-09T12:00:00.000Z","2014-02-16T12:00:00.000Z","2014-02-23T12:00:00.000Z","2014-03-02T12:00:00.000Z","2014-03-09T12:00:00.000Z","2014-03-16T12:00:00.000Z","2014-03-23T12:00:00.000Z","2014-03-30T12:00:00.000Z","2014-04-06T12:00:00.000Z","2014-04-13T12:00:00.000Z","2014-04-20T12:00:00.000Z","2014-04-27T12:00:00.000Z","2014-05-04T12:00:00.000Z","2014-05-11T12:00:00.000Z","2014-05-18T12:00:00.000Z","2014-05-25T12:00:00.000Z","2014-06-01T12:00:00.000Z","2014-06-08T12:00:00.000Z","2014-06-15T12:00:00.000Z","2014-06-22T12:00:00.000Z","2014-06-29T12:00:00.000Z","2014-07-06T12:00:00.000Z","2014-07-13T12:00:00.000Z","2014-07-20T12:00:00.000Z","2014-07-27T12:00:00.000Z","2014-08-03T12:00:00.000Z","2014-08-10T12:00:00.000Z","2014-08-17T12:00:00.000Z","2014-08-24T12:00:00.000Z","2014-08-31T12:00:00.000Z","2014-09-07T12:00:00.000Z","2014-09-14T12:00:00.000Z","2014-09-21T12:00:00.000Z","2014-09-28T12:00:00.000Z","2014-10-05T12:00:00.000Z","2014-10-12T12:00:00.000Z","2014-10-19T12:00:00.000Z","2014-10-26T12:00:00.000Z","2014-11-02T12:00:00.000Z","2014-11-09T12:00:00.000Z","2014-11-16T12:00:00.000Z","2014-11-23T12:00:00.000Z","2014-11-30T12:00:00.000Z","2014-12-07T12:00:00.000Z","2014-12-14T12:00:00.000Z","2014-12-21T12:00:00.000Z","2014-12-28T12:00:00.000Z","2015-01-04T12:00:00.000Z","2015-01-11T12:00:00.000Z","2015-01-18T12:00:00.000Z","2015-01-25T12:00:00.000Z","2015-02-01T12:00:00.000Z","2015-02-08T12:00:00.000Z","2015-02-15T12:00:00.000Z","2015-02-22T12:00:00.000Z","2015-03-01T12:00:00.000Z","2015-03-08T12:00:00.000Z","2015-03-15T12:00:00.000Z","2015-03-22T12:00:00.000Z","2015-03-29T12:00:00.000Z","2015-04-05T12:00:00.000Z","2015-04-12T12:00:00.000Z","2015-04-19T12:00:00.000Z","2015-04-26T12:00:00.000Z","2015-05-03T12:00:00.000Z","2015-05-10T12:00:00.000Z","2015-05-17T12:00:00.000Z","2015-05-31T12:00:00.000Z","2015-06-07T12:00:00.000Z","2015-06-14T12:00:00.000Z","2015-06-21T12:00:00.000Z","2015-06-28T12:00:00.000Z","2015-07-05T12:00:00.000Z","2015-07-12T12:00:00.000Z","2015-07-19T12:00:00.000Z","2015-07-26T12:00:00.000Z","2015-08-02T12:00:00.000Z","2015-08-09T12:00:00.000Z","2015-08-16T12:00:00.000Z","2015-08-23T12:00:00.000Z","2015-08-30T12:00:00.000Z","2015-09-06T12:00:00.000Z","2015-09-13T12:00:00.000Z","2015-09-20T12:00:00.000Z","2015-09-27T12:00:00.000Z","2015-10-04T12:00:00.000Z","2015-10-11T12:00:00.000Z","2015-10-18T12:00:00.000Z","2015-10-25T12:00:00.000Z","2015-11-01T12:00:00.000Z","2015-11-08T12:00:00.000Z","2015-11-15T12:00:00.000Z","2015-11-22T12:00:00.000Z","2015-11-29T12:00:00.000Z","2015-12-06T12:00:00.000Z","2015-12-13T12:00:00.000Z","2015-12-20T12:00:00.000Z","2015-12-27T12:00:00.000Z","2016-01-03T12:00:00.000Z","2016-01-10T12:00:00.000Z","2016-01-17T12:00:00.000Z","2016-01-24T12:00:00.000Z","2016-01-31T12:00:00.000Z","2016-02-07T12:00:00.000Z","2016-02-14T12:00:00.000Z","2016-02-21T12:00:00.000Z","2016-02-28T12:00:00.000Z","2016-03-06T12:00:00.000Z","2016-03-13T12:00:00.000Z","2016-03-20T12:00:00.000Z","2016-03-27T12:00:00.000Z","2016-04-03T12:00:00.000Z","2016-04-10T12:00:00.000Z","2016-04-17T12:00:00.000Z","2016-04-24T12:00:00.000Z","2016-05-01T12:00:00.000Z","2016-05-08T12:00:00.000Z","2016-05-15T12:00:00.000Z","2016-05-22T12:00:00.000Z","2016-05-29T12:00:00.000Z","2016-06-05T12:00:00.000Z","2016-06-12T12:00:00.000Z","2016-06-19T12:00:00.000Z","2016-06-26T12:00:00.000Z","2016-07-03T12:00:00.000Z","2016-07-10T12:00:00.000Z","2016-07-17T12:00:00.000Z","2016-07-24T12:00:00.000Z","2016-07-31T12:00:00.000Z","2016-08-07T12:00:00.000Z","2016-08-14T12:00:00.000Z","2016-08-21T12:00:00.000Z","2016-08-28T12:00:00.000Z","2016-09-04T12:00:00.000Z","2016-09-11T12:00:00.000Z","2016-09-18T12:00:00.000Z","2016-09-25T12:00:00.000Z","2016-10-02T12:00:00.000Z","2016-10-09T12:00:00.000Z","2016-10-16T12:00:00.000Z","2016-10-23T12:00:00.000Z","2016-10-30T12:00:00.000Z","2016-11-06T12:00:00.000Z","2016-11-13T12:00:00.000Z","2016-11-20T12:00:00.000Z","2016-11-27T12:00:00.000Z","2016-12-04T12:00:00.000Z","2016-12-11T12:00:00.000Z","2016-12-18T12:00:00.000Z","2016-12-25T12:00:00.000Z","2017-01-01T12:00:00.000Z","2017-01-08T12:00:00.000Z","2017-01-15T12:00:00.000Z","2017-01-22T12:00:00.000Z","2017-01-29T12:00:00.000Z","2017-02-05T12:00:00.000Z","2017-02-12T12:00:00.000Z","2017-02-19T12:00:00.000Z","2017-02-26T12:00:00.000Z","2017-03-05T12:00:00.000Z","2017-03-12T12:00:00.000Z","2017-03-19T12:00:00.000Z","2017-03-26T12:00:00.000Z","2017-04-02T12:00:00.000Z","2017-04-09T12:00:00.000Z","2017-04-16T12:00:00.000Z","2017-04-23T12:00:00.000Z","2017-04-30T12:00:00.000Z","2017-05-07T12:00:00.000Z","2017-05-14T12:00:00.000Z","2017-05-21T12:00:00.000Z","2017-05-28T12:00:00.000Z","2017-06-04T12:00:00.000Z","2017-06-11T12:00:00.000Z","2017-06-18T12:00:00.000Z","2017-06-25T12:00:00.000Z","2017-07-02T12:00:00.000Z","2017-07-09T12:00:00.000Z","2017-07-16T12:00:00.000Z","2017-07-23T12:00:00.000Z","2017-07-30T12:00:00.000Z","2017-08-06T12:00:00.000Z","2017-08-13T12:00:00.000Z","2017-08-20T12:00:00.000Z","2017-08-27T12:00:00.000Z","2017-09-03T12:00:00.000Z","2017-09-10T12:00:00.000Z","2017-09-17T12:00:00.000Z","2017-09-24T12:00:00.000Z","2017-10-01T12:00:00.000Z","2017-10-08T12:00:00.000Z","2017-10-15T12:00:00.000Z","2017-10-22T12:00:00.000Z","2017-10-29T12:00:00.000Z","2017-11-05T12:00:00.000Z","2017-11-12T12:00:00.000Z","2017-11-19T12:00:00.000Z","2017-11-26T12:00:00.000Z","2017-12-03T12:00:00.000Z","2017-12-10T12:00:00.000Z","2017-12-17T12:00:00.000Z","2017-12-24T12:00:00.000Z","2017-12-31T12:00:00.000Z","2018-01-07T12:00:00.000Z","2018-01-14T12:00:00.000Z","2018-01-21T12:00:00.000Z","2018-01-28T12:00:00.000Z","2018-02-04T12:00:00.000Z","2018-02-11T12:00:00.000Z","2018-02-18T12:00:00.000Z","2018-02-25T12:00:00.000Z","2018-03-04T12:00:00.000Z","2018-03-11T12:00:00.000Z","2018-03-18T12:00:00.000Z","2018-03-25T12:00:00.000Z","2018-04-01T12:00:00.000Z","2018-04-08T12:00:00.000Z","2018-04-15T12:00:00.000Z","2018-04-22T12:00:00.000Z","2018-04-29T12:00:00.000Z","2018-05-06T12:00:00.000Z","2018-05-13T12:00:00.000Z","2018-05-20T12:00:00.000Z","2018-05-27T12:00:00.000Z","2018-06-03T12:00:00.000Z","2018-06-10T12:00:00.000Z","2018-06-17T12:00:00.000Z","2018-06-24T12:00:00.000Z","2018-07-01T12:00:00.000Z","2018-07-08T12:00:00.000Z","2018-07-15T12:00:00.000Z","2018-07-22T12:00:00.000Z","2018-07-29T12:00:00.000Z","2018-08-05T12:00:00.000Z","2018-08-12T12:00:00.000Z","2018-08-19T12:00:00.000Z","2018-08-26T12:00:00.000Z","2018-09-02T12:00:00.000Z","2018-09-09T12:00:00.000Z","2018-09-16T12:00:00.000Z","2018-09-23T12:00:00.000Z","2018-09-30T12:00:00.000Z","2018-10-07T12:00:00.000Z","2018-10-14T12:00:00.000Z","2018-10-21T12:00:00.000Z","2018-10-28T12:00:00.000Z","2018-11-04T12:00:00.000Z","2018-11-11T12:00:00.000Z","2018-11-18T12:00:00.000Z","2018-11-25T12:00:00.000Z","2018-12-02T12:00:00.000Z","2018-12-09T12:00:00.000Z","2018-12-16T12:00:00.000Z","2018-12-23T12:00:00.000Z","2018-12-30T12:00:00.000Z","2019-01-06T12:00:00.000Z","2019-01-13T12:00:00.000Z","2019-01-20T12:00:00.000Z","2019-01-27T12:00:00.000Z","2019-02-03T12:00:00.000Z","2019-02-10T12:00:00.000Z","2019-02-17T12:00:00.000Z","2019-02-24T12:00:00.000Z","2019-03-03T12:00:00.000Z","2019-03-10T12:00:00.000Z","2019-03-17T12:00:00.000Z","2019-03-24T12:00:00.000Z","2019-03-31T12:00:00.000Z","2019-04-07T12:00:00.000Z","2019-04-14T12:00:00.000Z","2019-04-21T12:00:00.000Z","2019-04-28T12:00:00.000Z","2019-05-05T12:00:00.000Z","2019-05-12T12:00:00.000Z","2019-05-19T12:00:00.000Z","2019-05-26T12:00:00.000Z","2019-06-02T12:00:00.000Z","2019-06-09T12:00:00.000Z","2019-06-16T12:00:00.000Z","2019-06-23T12:00:00.000Z","2019-06-30T12:00:00.000Z","2019-07-07T12:00:00.000Z","2019-07-14T12:00:00.000Z","2019-07-21T12:00:00.000Z","2019-07-28T12:00:00.000Z","2019-08-04T12:00:00.000Z","2019-08-11T12:00:00.000Z","2019-08-18T12:00:00.000Z","2019-08-25T12:00:00.000Z","2019-09-01T12:00:00.000Z","2019-09-08T12:00:00.000Z","2019-09-15T12:00:00.000Z","2019-09-22T12:00:00.000Z","2019-09-29T12:00:00.000Z","2019-10-06T12:00:00.000Z","2019-10-13T12:00:00.000Z","2019-10-20T12:00:00.000Z","2019-10-27T12:00:00.000Z","2019-11-03T12:00:00.000Z","2019-11-10T12:00:00.000Z","2019-11-17T12:00:00.000Z","2019-11-24T12:00:00.000Z","2019-12-01T12:00:00.000Z","2019-12-08T12:00:00.000Z","2019-12-15T12:00:00.000Z","2019-12-22T12:00:00.000Z","2019-12-29T12:00:00.000Z","2020-01-05T12:00:00.000Z","2020-01-12T12:00:00.000Z","2020-01-19T12:00:00.000Z","2020-01-26T12:00:00.000Z","2020-02-02T12:00:00.000Z","2020-02-09T12:00:00.000Z","2020-02-16T12:00:00.000Z","2020-02-23T12:00:00.000Z","2020-03-01T12:00:00.000Z","2020-03-08T12:00:00.000Z","2020-03-15T12:00:00.000Z","2020-03-22T12:00:00.000Z","2020-03-29T12:00:00.000Z","2020-04-05T12:00:00.000Z","2020-04-12T12:00:00.000Z","2020-04-19T12:00:00.000Z","2020-04-26T12:00:00.000Z","2020-05-03T12:00:00.000Z","2020-05-10T12:00:00.000Z","2020-05-17T12:00:00.000Z","2020-05-24T12:00:00.000Z","2020-05-31T12:00:00.000Z","2020-06-07T12:00:00.000Z","2020-06-14T12:00:00.000Z","2020-06-21T12:00:00.000Z","2020-06-28T12:00:00.000Z","2020-07-05T12:00:00.000Z","2020-07-12T12:00:00.000Z","2020-07-19T12:00:00.000Z","2020-07-26T12:00:00.000Z","2020-08-02T12:00:00.000Z","2020-08-09T12:00:00.000Z","2020-08-16T12:00:00.000Z","2020-08-23T12:00:00.000Z","2020-08-30T12:00:00.000Z","2020-09-06T12:00:00.000Z","2020-09-13T12:00:00.000Z","2020-09-20T12:00:00.000Z","2020-09-27T12:00:00.000Z","2020-10-04T12:00:00.000Z","2020-10-11T12:00:00.000Z","2020-10-18T12:00:00.000Z","2020-10-25T12:00:00.000Z","2020-11-01T12:00:00.000Z","2020-11-08T12:00:00.000Z","2020-11-15T12:00:00.000Z","2020-11-22T12:00:00.000Z","2020-11-29T12:00:00.000Z","2020-12-06T12:00:00.000Z","2020-12-13T12:00:00.000Z","2020-12-20T12:00:00.000Z","2020-12-27T12:00:00.000Z","2021-01-03T12:00:00.000Z","2021-01-10T12:00:00.000Z","2021-01-17T12:00:00.000Z","2021-01-24T12:00:00.000Z","2021-01-31T12:00:00.000Z","2021-02-07T12:00:00.000Z","2021-02-14T12:00:00.000Z","2021-02-21T12:00:00.000Z","2021-02-28T12:00:00.000Z","2021-03-07T12:00:00.000Z","2021-03-14T12:00:00.000Z","2021-03-21T12:00:00.000Z","2021-03-28T12:00:00.000Z","2021-04-04T12:00:00.000Z","2021-04-11T12:00:00.000Z","2021-04-18T12:00:00.000Z","2021-04-25T12:00:00.000Z","2021-05-02T12:00:00.000Z","2021-05-09T12:00:00.000Z","2021-05-16T12:00:00.000Z","2021-05-23T12:00:00.000Z","2021-05-30T12:00:00.000Z","2021-06-06T12:00:00.000Z","2021-06-13T12:00:00.000Z","2021-06-20T12:00:00.000Z","2021-06-27T12:00:00.000Z","2021-07-04T12:00:00.000Z","2021-07-11T12:00:00.000Z","2021-07-18T12:00:00.000Z","2021-07-25T12:00:00.000Z","2021-08-01T12:00:00.000Z","2021-08-08T12:00:00.000Z","2021-08-15T12:00:00.000Z","2021-08-22T12:00:00.000Z","2021-08-29T12:00:00.000Z","2021-09-05T12:00:00.000Z","2021-09-12T12:00:00.000Z","2021-09-19T12:00:00.000Z","2021-09-26T12:00:00.000Z","2021-10-03T12:00:00.000Z","2021-10-10T12:00:00.000Z","2021-10-17T12:00:00.000Z","2021-10-24T12:00:00.000Z","2021-10-31T12:00:00.000Z","2021-11-07T12:00:00.000Z","2021-11-14T12:00:00.000Z","2021-11-21T12:00:00.000Z","2021-11-28T12:00:00.000Z","2021-12-05T12:00:00.000Z","2021-12-12T12:00:00.000Z","2021-12-19T12:00:00.000Z","2021-12-26T12:00:00.000Z","2022-01-02T12:00:00.000Z","2022-01-09T12:00:00.000Z","2022-01-16T12:00:00.000Z","2022-01-23T12:00:00.000Z","2022-01-30T12:00:00.000Z","2022-02-06T12:00:00.000Z","2022-02-13T12:00:00.000Z","2022-02-20T12:00:00.000Z","2022-02-27T12:00:00.000Z","2022-03-06T12:00:00.000Z","2022-03-13T12:00:00.000Z"]},"x":{"values":[13.5132]},"y":{"values":[62.4195]},"z":{"values":[470.14]}},"type":"Domain"},"type":"Coverage","parameters":{"E":{"unit":{"symbol":{"type":"https:\\/\\/gnssproducts.epos.ubi.pt\\/faq","value":"mm"},"label":{"en":"East"}},"description":{"en":"Geographic ' 'east component (positive ' 'east)"},"observedProperty":{"id":"https:\\/\\/gnssproducts.epos.ubi.pt\\/faq","label":{"en":"East ' 'component"}},"type":"Parameter"},"U":{"unit":{"symbol":{"type":"https:\\/\\/gnssproducts.epos.ubi.pt\\/faq","value":"mm"},"label":{"en":"Up"}},"description":{"en":"Geographic ' 'UP component (positive ' 'UP)"},"observedProperty":{"id":"https:\\/\\/gnssproducts.epos.ubi.pt\\/faq","label":{"en":"Up ' 'component"}},"type":"Parameter"},"N":{"unit":{"symbol":{"type":"https:\\/\\/gnssproducts.epos.ubi.pt\\/faq","value":"mm"},"label":{"en":"North"}},"description":{"en":"Geographic ' 'Y ' 'component"},"observedProperty":{"id":"https:\\/\\/gnssproducts.epos.ubi.pt\\/faq","label":{"en":"North ' 'component"}},"type":"Parameter"}},"epos:info":{"tcs":"wp10","date_created":"2023-09-12T10:04:25.000Z","usage":"timeseries","format":"covjson","resampling_method":"null","type":"CovJSON ' 'Timeseries ' 'Values","web_service_uri":"http:\\/\\/gnssproducts.epos.ubi.pt\\/GlassFramework\\/webresources\\/products\\/timeseries\\/HED0\\/SGO-EPND\\/weekly\\/enu\\/covjson\\/?epoch_start=2013-09-12&epoch_end=2023-09-12"}}'}, 'velocities': { 'GRN0': '[{"rf_frame":"IGS14","SEd":6.0E-5,"SUd":6.0E-5,"Reu":0.0,"e":0.015345838249490108,"u":0.008063014835526905,"SNd":6.0E-5,"Rne":0.0,"Rnu":0.0,"version":"2023.1","n":0.014940369479452624,"DOI":"unknown"}]', 'HED0': '[{"rf_frame":"IGS14","SEd":1.2E-4,"SUd":1.2E-4,"Reu":0.0,"e":0.0156269388590203,"u":0.007754606611304277,"SNd":1.2E-4,"Rne":0.0,"Rnu":-5.744309809396026E-17,"version":"2023.1","n":0.015176447482871521,"DOI":"unknown"}]'}}}
# target URL for FDSN station service (from EPOS portal & service documentation):
# https://<node url>/fdsnws/station/1/query?starttime=<starttime>&endtime=<endtime>&latitude=<lat>&longitude=<lon>&maxradius=<maxrad>&minradius=<minrad>
# dictonary of EIDA nodes from EPOS portal/documentation
EIDAnodes = {'ODC':'orfeus-eu.org',
'GFZ':'geofon.gfz-potsdam.de',
'RESIF':'geofon.gfz-potsdam.de',
'INGV':'webservices.ingv.it',
'ETHZ':'eida.ethz.ch',
'BGR':'eida.bgr.de',
'NIEP':'eida-sc3.infp.ro',
'KOERI':'eida.koeri.boun.edu.tr',
'LMU':'erde.geophysik.uni-muenchen.de',
'NOA':'eida.gein.noa.gr',
'UIB':'eida.geo.uib.no',
'ICGC':'ws.icgc.cat'}
distance = 150 # km
# method to create the spatial query from the borehole location (GML Point) and the search distance
def seisspatialfromgmlpoint(gmlpoint, distancekm):
calc = re.search("(\d{1,2}.\d{1,})\s(\d{1,2}.\d{1,})", gmlpoint)
lat = calc[1]
lon = calc[2]
maxrad = round(distancekm/111.1, 4)
minrad = 0
return('&latitude=' + str(lat) + '&longitude=' + str(lon) + '&maxradius=' + str(maxrad) + '&minradius=' + str(minrad))
# create a dictionary to hold the retrieved information
SEIS = {}
timeforurl = 'starttime=' + str(date.today() - relativedelta(years=yearsback)) + '&endtime=' + str(date.today())
count = -1
for node, address in EIDAnodes.items():
count = count+1
for key, value in boreholes.items():
for subkey, subvalue in value.items():
if subkey == 'GML':
if key not in SEIS:
SEIS[key] = {}
baseURL = ('https://' + address + '/fdsnws/station/1/query?')
spatialforurl = seisspatialfromgmlpoint(subvalue, distance)
content = requests.get(baseURL + timeforurl + spatialforurl)
if not content.text:
print('No seismic stations found for', key, 'by provider', node)
else:
# print(xmlmd.parseString(content.text).toprettyxml())
# SEIS[key][count] = xmltodict.parse(content.text) # xmltodict has unwanted side effects (it puts multiple features in a list, but not single features of the same type, thus it is difficult to access the data in the dictionary)
SEIS[key][count] = content.text
print('SEIS dictionary:')
pp.pprint(SEIS)
No seismic stations found for Kola SG-3 by provider ODC No seismic stations found for COSC-1 A by provider INGV No seismic stations found for COSC-2 A by provider INGV No seismic stations found for Kola SG-3 by provider INGV No seismic stations found for COSC-1 A by provider ETHZ No seismic stations found for COSC-2 A by provider ETHZ No seismic stations found for Kola SG-3 by provider ETHZ No seismic stations found for COSC-1 A by provider BGR No seismic stations found for COSC-2 A by provider BGR No seismic stations found for Kola SG-3 by provider BGR No seismic stations found for COSC-1 A by provider NIEP No seismic stations found for COSC-2 A by provider NIEP No seismic stations found for Kola SG-3 by provider NIEP No seismic stations found for COSC-1 A by provider KOERI No seismic stations found for COSC-2 A by provider KOERI No seismic stations found for Kola SG-3 by provider KOERI No seismic stations found for COSC-1 A by provider LMU No seismic stations found for COSC-2 A by provider LMU No seismic stations found for Kola SG-3 by provider LMU No seismic stations found for COSC-1 A by provider NOA No seismic stations found for COSC-2 A by provider NOA No seismic stations found for Kola SG-3 by provider NOA No seismic stations found for COSC-1 A by provider ICGC No seismic stations found for COSC-2 A by provider ICGC No seismic stations found for Kola SG-3 by provider ICGC SEIS dictionary: { 'COSC-1 A': { 0: '<?xml version="1.0" encoding="UTF-8"?><FDSNStationXML ' 'xmlns="http://www.fdsn.org/xml/station/1" ' 'schemaVersion="1.1"><Source>SeisComP</Source><Sender>ODC</Sender><Created>2023-09-12T10:04:27.131124</Created><Network ' 'code="UP" startDate="1980-01-01T00:00:00" ' 'restrictedStatus="open"><Description>Swedish National ' 'Seismic Network</Description><Station code="NOD" ' 'startDate="1999-09-07T12:00:00" ' 'restrictedStatus="open"><Latitude>63.4428</Latitude><Longitude>14.8573</Longitude><Elevation>450</Elevation><Site><Name>NOR; ' 'Norder&aring;sen</Name></Site><CreationDate>1999-09-07T12:00:00</CreationDate></Station></Network></FDSNStationXML>\n', 1: '<?xml version="1.0" encoding="UTF-8"?><FDSNStationXML ' 'xmlns="http://www.fdsn.org/xml/station/1" ' 'schemaVersion="1.2"><Source>SeisComP</Source><Sender>GFZ</Sender><Created>2023-09-12T10:04:27.877515Z</Created><Network ' 'code="1G" startDate="2012-01-01T00:00:00Z" ' 'endDate="2017-12-31T00:00:00Z" ' 'restrictedStatus="open"><Description>ScanArray ' 'Core</Description><Identifier ' 'type="DOI">10.14470/6T569239</Identifier><Station ' 'code="SA39" startDate="2012-10-01T00:00:00Z" ' 'endDate="2017-05-22T00:00:00Z" ' 'restrictedStatus="open"><Latitude>64.0718</Latitude><Longitude>14.09061</Longitude><Elevation>0</Elevation><Site><Name>Station ' 'Valsjoebyn, ' 'Sweden</Name><Country>Sweden</Country></Site><CreationDate>2012-10-01T00:00:00Z</CreationDate></Station><Station ' 'code="SA44" startDate="2012-09-30T00:00:00Z" ' 'endDate="2016-10-12T00:00:00Z" ' 'restrictedStatus="open"><Latitude>63.70518</Latitude><Longitude>12.34839</Longitude><Elevation>0</Elevation><Site><Name>Station ' 'Jaerpen, ' 'Sweden</Name><Country>Sweden</Country></Site><CreationDate>2012-09-30T00:00:00Z</CreationDate></Station><Station ' 'code="SA48" startDate="2012-09-29T00:00:00Z" ' 'endDate="2015-07-15T00:00:00Z" ' 'restrictedStatus="open"><Latitude>63.23047</Latitude><Longitude>13.67801</Longitude><Elevation>0</Elevation><Site><Name>Station ' 'Moersil, ' 'Sweden</Name><Country>Sweden</Country></Site><CreationDate>2012-09-29T00:00:00Z</CreationDate></Station><Station ' 'code="SA57" startDate="2012-09-28T00:00:00Z" ' 'endDate="2017-05-21T00:00:00Z" ' 'restrictedStatus="open"><Latitude>62.44944</Latitude><Longitude>14.92132</Longitude><Elevation>0</Elevation><Site><Name>Station ' 'Oeverturingen, ' 'Sweden</Name><Country>Sweden</Country></Site><CreationDate>2012-09-28T00:00:00Z</CreationDate></Station><Station ' 'code="SA53" startDate="2015-03-16T00:00:00Z" ' 'endDate="2015-11-12T00:00:00Z" ' 'restrictedStatus="open"><Latitude>62.80045</Latitude><Longitude>13.05265</Longitude><Elevation>0</Elevation><Site><Name>Station ' 'Storsjoekapell, ' 'Sweden</Name><Country>Sweden</Country></Site><CreationDate>2015-03-16T00:00:00Z</CreationDate></Station><Station ' 'code="SA35" startDate="2015-09-08T00:00:00Z" ' 'endDate="2017-04-28T00:00:00Z" ' 'restrictedStatus="open"><Latitude>64.53397</Latitude><Longitude>12.40071</Longitude><Elevation>0</Elevation><Site><Name>Station ' 'Grong, ' 'Norway</Name><Country>Norway</Country></Site><CreationDate>2015-09-08T00:00:00Z</CreationDate></Station><Station ' 'code="SA40" startDate="2015-09-07T00:00:00Z" ' 'endDate="2016-10-20T00:00:00Z" ' 'restrictedStatus="open"><Latitude>64.04353</Latitude><Longitude>11.33531</Longitude><Elevation>0</Elevation><Site><Name>Station ' 'Steinkjer, ' 'Norway</Name><Country>Norway</Country></Site><CreationDate>2015-09-07T00:00:00Z</CreationDate></Station><Station ' 'code="SA51" startDate="2012-10-08T00:00:00Z" ' 'endDate="2017-07-10T00:00:00Z" ' 'restrictedStatus="open"><Latitude>63.04408</Latitude><Longitude>11.6437</Longitude><Elevation>0</Elevation><Site><Name>Station ' 'Tydal, ' 'Norway</Name><Country>Norway</Country></Site><CreationDate>2012-10-08T00:00:00Z</CreationDate></Station><Station ' 'code="SA43" startDate="2015-03-18T00:00:00Z" ' 'endDate="2017-01-11T00:00:00Z" ' 'restrictedStatus="open"><Latitude>63.81655</Latitude><Longitude>15.51477</Longitude><Elevation>0</Elevation><Site><Name>Station ' 'Tullingsas, ' 'Sweden</Name><Country>Sweden</Country></Site><CreationDate>2015-03-18T00:00:00Z</CreationDate></Station></Network></FDSNStationXML>\n', 2: '<?xml version="1.0" encoding="UTF-8"?><FDSNStationXML ' 'xmlns="http://www.fdsn.org/xml/station/1" ' 'schemaVersion="1.2"><Source>SeisComP</Source><Sender>GFZ</Sender><Created>2023-09-12T10:04:29.158513Z</Created><Network ' 'code="1G" startDate="2012-01-01T00:00:00Z" ' 'endDate="2017-12-31T00:00:00Z" ' 'restrictedStatus="open"><Description>ScanArray ' 'Core</Description><Identifier ' 'type="DOI">10.14470/6T569239</Identifier><Station ' 'code="SA39" startDate="2012-10-01T00:00:00Z" ' 'endDate="2017-05-22T00:00:00Z" ' 'restrictedStatus="open"><Latitude>64.0718</Latitude><Longitude>14.09061</Longitude><Elevation>0</Elevation><Site><Name>Station ' 'Valsjoebyn, ' 'Sweden</Name><Country>Sweden</Country></Site><CreationDate>2012-10-01T00:00:00Z</CreationDate></Station><Station ' 'code="SA44" startDate="2012-09-30T00:00:00Z" ' 'endDate="2016-10-12T00:00:00Z" ' 'restrictedStatus="open"><Latitude>63.70518</Latitude><Longitude>12.34839</Longitude><Elevation>0</Elevation><Site><Name>Station ' 'Jaerpen, ' 'Sweden</Name><Country>Sweden</Country></Site><CreationDate>2012-09-30T00:00:00Z</CreationDate></Station><Station ' 'code="SA48" startDate="2012-09-29T00:00:00Z" ' 'endDate="2015-07-15T00:00:00Z" ' 'restrictedStatus="open"><Latitude>63.23047</Latitude><Longitude>13.67801</Longitude><Elevation>0</Elevation><Site><Name>Station ' 'Moersil, ' 'Sweden</Name><Country>Sweden</Country></Site><CreationDate>2012-09-29T00:00:00Z</CreationDate></Station><Station ' 'code="SA57" startDate="2012-09-28T00:00:00Z" ' 'endDate="2017-05-21T00:00:00Z" ' 'restrictedStatus="open"><Latitude>62.44944</Latitude><Longitude>14.92132</Longitude><Elevation>0</Elevation><Site><Name>Station ' 'Oeverturingen, ' 'Sweden</Name><Country>Sweden</Country></Site><CreationDate>2012-09-28T00:00:00Z</CreationDate></Station><Station ' 'code="SA53" startDate="2015-03-16T00:00:00Z" ' 'endDate="2015-11-12T00:00:00Z" ' 'restrictedStatus="open"><Latitude>62.80045</Latitude><Longitude>13.05265</Longitude><Elevation>0</Elevation><Site><Name>Station ' 'Storsjoekapell, ' 'Sweden</Name><Country>Sweden</Country></Site><CreationDate>2015-03-16T00:00:00Z</CreationDate></Station><Station ' 'code="SA35" startDate="2015-09-08T00:00:00Z" ' 'endDate="2017-04-28T00:00:00Z" ' 'restrictedStatus="open"><Latitude>64.53397</Latitude><Longitude>12.40071</Longitude><Elevation>0</Elevation><Site><Name>Station ' 'Grong, ' 'Norway</Name><Country>Norway</Country></Site><CreationDate>2015-09-08T00:00:00Z</CreationDate></Station><Station ' 'code="SA40" startDate="2015-09-07T00:00:00Z" ' 'endDate="2016-10-20T00:00:00Z" ' 'restrictedStatus="open"><Latitude>64.04353</Latitude><Longitude>11.33531</Longitude><Elevation>0</Elevation><Site><Name>Station ' 'Steinkjer, ' 'Norway</Name><Country>Norway</Country></Site><CreationDate>2015-09-07T00:00:00Z</CreationDate></Station><Station ' 'code="SA51" startDate="2012-10-08T00:00:00Z" ' 'endDate="2017-07-10T00:00:00Z" ' 'restrictedStatus="open"><Latitude>63.04408</Latitude><Longitude>11.6437</Longitude><Elevation>0</Elevation><Site><Name>Station ' 'Tydal, ' 'Norway</Name><Country>Norway</Country></Site><CreationDate>2012-10-08T00:00:00Z</CreationDate></Station><Station ' 'code="SA43" startDate="2015-03-18T00:00:00Z" ' 'endDate="2017-01-11T00:00:00Z" ' 'restrictedStatus="open"><Latitude>63.81655</Latitude><Longitude>15.51477</Longitude><Elevation>0</Elevation><Site><Name>Station ' 'Tullingsas, ' 'Sweden</Name><Country>Sweden</Country></Site><CreationDate>2015-03-18T00:00:00Z</CreationDate></Station></Network></FDSNStationXML>\n', 10: '<?xml version="1.0" encoding="UTF-8"?><FDSNStationXML ' 'xmlns="http://www.fdsn.org/xml/station/1" ' 'schemaVersion="1.2"><Source>SeisComP</Source><Sender>UIB</Sender><Created>2023-09-12T10:04:46.724243Z</Created><Network ' 'code="NS" startDate="1980-01-01T00:00:00Z" ' 'restrictedStatus="open"><Description>UIB</Description><Station ' 'code="ODLO" startDate="2019-05-14T00:00:00Z" ' 'endDate="2029-12-31T00:00:00Z" ' 'restrictedStatus="open"><Latitude>63.455</Latitude><Longitude>10.44583</Longitude><Elevation>30</Elevation><Site><Name>Temporary ' 'site at NGU, Trondheim, Norway</Name><Country> ' 'Norway</Country></Site><CreationDate>2019-05-14T00:00:00Z</CreationDate></Station><Station ' 'code="TBLU" startDate="2008-12-15T00:00:00Z" ' 'endDate="2019-05-15T00:00:00Z" ' 'restrictedStatus="open"><Latitude>63.42033</Latitude><Longitude>10.43033</Longitude><Elevation>116</Elevation><Site><Name>Trondheim, ' 'Norway</Name><Country> ' 'Norway</Country></Site><CreationDate>2008-12-15T00:00:00Z</CreationDate></Station><Station ' 'code="NSS" startDate="1992-12-16T00:00:00Z" ' 'endDate="2029-12-31T00:00:00Z" ' 'restrictedStatus="open"><Latitude>64.53033</Latitude><Longitude>11.96583</Longitude><Elevation>102</Elevation><Site><Name>Namsos, ' 'Norway</Name><Country> ' 'Norway</Country></Site><CreationDate>1992-12-16T00:00:00Z</CreationDate></Station><Station ' 'code="TRON" startDate="1997-02-05T00:00:00Z" ' 'endDate="2029-12-31T00:00:00Z" ' 'restrictedStatus="open"><Latitude>63.4545</Latitude><Longitude>10.43633</Longitude><Elevation>34</Elevation><Site><Name>Trondheim, ' 'Norway</Name><Country> ' 'Norway</Country></Site><CreationDate>1997-02-05T00:00:00Z</CreationDate></Station><Station ' 'code="LADE" startDate="2021-12-08T00:00:00Z" ' 'endDate="2029-12-31T00:00:00Z" ' 'restrictedStatus="open"><Latitude>63.455</Latitude><Longitude>10.44583</Longitude><Elevation>30</Elevation><Site><Name>LADE ' '</Name></Site><CreationDate>2021-12-08T00:00:00Z</CreationDate></Station></Network><Network ' 'code="NS" startDate="2023-06-06T00:00:00Z" ' 'endDate="2029-12-31T00:00:00Z"><Description>UIB</Description><Station ' 'code="ROROS" startDate="2023-06-06T00:00:00Z" ' 'endDate="2029-12-31T00:00:00Z"><Latitude>62.5615</Latitude><Longitude>11.55517</Longitude><Elevation>0</Elevation><Site><Name>Roros, ' 'Norway</Name></Site><CreationDate>2023-06-06T00:00:00Z</CreationDate></Station></Network></FDSNStationXML>\n'}, 'COSC-2 A': { 0: '<?xml version="1.0" encoding="UTF-8"?><FDSNStationXML ' 'xmlns="http://www.fdsn.org/xml/station/1" ' 'schemaVersion="1.1"><Source>SeisComP</Source><Sender>ODC</Sender><Created>2023-09-12T10:04:27.310575</Created><Network ' 'code="UP" startDate="1980-01-01T00:00:00" ' 'restrictedStatus="open"><Description>Swedish National ' 'Seismic Network</Description><Station code="NOD" ' 'startDate="1999-09-07T12:00:00" ' 'restrictedStatus="open"><Latitude>63.4428</Latitude><Longitude>14.8573</Longitude><Elevation>450</Elevation><Site><Name>NOR; ' 'Norder&aring;sen</Name></Site><CreationDate>1999-09-07T12:00:00</CreationDate></Station></Network></FDSNStationXML>\n', 1: '<?xml version="1.0" encoding="UTF-8"?><FDSNStationXML ' 'xmlns="http://www.fdsn.org/xml/station/1" ' 'schemaVersion="1.2"><Source>SeisComP</Source><Sender>GFZ</Sender><Created>2023-09-12T10:04:28.121439Z</Created><Network ' 'code="1G" startDate="2012-01-01T00:00:00Z" ' 'endDate="2017-12-31T00:00:00Z" ' 'restrictedStatus="open"><Description>ScanArray ' 'Core</Description><Identifier ' 'type="DOI">10.14470/6T569239</Identifier><Station ' 'code="SA39" startDate="2012-10-01T00:00:00Z" ' 'endDate="2017-05-22T00:00:00Z" ' 'restrictedStatus="open"><Latitude>64.0718</Latitude><Longitude>14.09061</Longitude><Elevation>0</Elevation><Site><Name>Station ' 'Valsjoebyn, ' 'Sweden</Name><Country>Sweden</Country></Site><CreationDate>2012-10-01T00:00:00Z</CreationDate></Station><Station ' 'code="SA44" startDate="2012-09-30T00:00:00Z" ' 'endDate="2016-10-12T00:00:00Z" ' 'restrictedStatus="open"><Latitude>63.70518</Latitude><Longitude>12.34839</Longitude><Elevation>0</Elevation><Site><Name>Station ' 'Jaerpen, ' 'Sweden</Name><Country>Sweden</Country></Site><CreationDate>2012-09-30T00:00:00Z</CreationDate></Station><Station ' 'code="SA48" startDate="2012-09-29T00:00:00Z" ' 'endDate="2015-07-15T00:00:00Z" ' 'restrictedStatus="open"><Latitude>63.23047</Latitude><Longitude>13.67801</Longitude><Elevation>0</Elevation><Site><Name>Station ' 'Moersil, ' 'Sweden</Name><Country>Sweden</Country></Site><CreationDate>2012-09-29T00:00:00Z</CreationDate></Station><Station ' 'code="SA50" startDate="2012-10-02T00:00:00Z" ' 'endDate="2017-05-24T00:00:00Z" ' 'restrictedStatus="open"><Latitude>63.11401</Latitude><Longitude>16.32236</Longitude><Elevation>0</Elevation><Site><Name>Station ' 'Hammarstrand, ' 'Sweden</Name><Country>Sweden</Country></Site><CreationDate>2012-10-02T00:00:00Z</CreationDate></Station><Station ' 'code="SA57" startDate="2012-09-28T00:00:00Z" ' 'endDate="2017-05-21T00:00:00Z" ' 'restrictedStatus="open"><Latitude>62.44944</Latitude><Longitude>14.92132</Longitude><Elevation>0</Elevation><Site><Name>Station ' 'Oeverturingen, ' 'Sweden</Name><Country>Sweden</Country></Site><CreationDate>2012-09-28T00:00:00Z</CreationDate></Station><Station ' 'code="SA53" startDate="2015-03-16T00:00:00Z" ' 'endDate="2015-11-12T00:00:00Z" ' 'restrictedStatus="open"><Latitude>62.80045</Latitude><Longitude>13.05265</Longitude><Elevation>0</Elevation><Site><Name>Station ' 'Storsjoekapell, ' 'Sweden</Name><Country>Sweden</Country></Site><CreationDate>2015-03-16T00:00:00Z</CreationDate></Station><Station ' 'code="SA35" startDate="2015-09-08T00:00:00Z" ' 'endDate="2017-04-28T00:00:00Z" ' 'restrictedStatus="open"><Latitude>64.53397</Latitude><Longitude>12.40071</Longitude><Elevation>0</Elevation><Site><Name>Station ' 'Grong, ' 'Norway</Name><Country>Norway</Country></Site><CreationDate>2015-09-08T00:00:00Z</CreationDate></Station><Station ' 'code="SA40" startDate="2015-09-07T00:00:00Z" ' 'endDate="2016-10-20T00:00:00Z" ' 'restrictedStatus="open"><Latitude>64.04353</Latitude><Longitude>11.33531</Longitude><Elevation>0</Elevation><Site><Name>Station ' 'Steinkjer, ' 'Norway</Name><Country>Norway</Country></Site><CreationDate>2015-09-07T00:00:00Z</CreationDate></Station><Station ' 'code="SA51" startDate="2012-10-08T00:00:00Z" ' 'endDate="2017-07-10T00:00:00Z" ' 'restrictedStatus="open"><Latitude>63.04408</Latitude><Longitude>11.6437</Longitude><Elevation>0</Elevation><Site><Name>Station ' 'Tydal, ' 'Norway</Name><Country>Norway</Country></Site><CreationDate>2012-10-08T00:00:00Z</CreationDate></Station><Station ' 'code="SA43" startDate="2015-03-18T00:00:00Z" ' 'endDate="2017-01-11T00:00:00Z" ' 'restrictedStatus="open"><Latitude>63.81655</Latitude><Longitude>15.51477</Longitude><Elevation>0</Elevation><Site><Name>Station ' 'Tullingsas, ' 'Sweden</Name><Country>Sweden</Country></Site><CreationDate>2015-03-18T00:00:00Z</CreationDate></Station></Network></FDSNStationXML>\n', 2: '<?xml version="1.0" encoding="UTF-8"?><FDSNStationXML ' 'xmlns="http://www.fdsn.org/xml/station/1" ' 'schemaVersion="1.2"><Source>SeisComP</Source><Sender>GFZ</Sender><Created>2023-09-12T10:04:29.357041Z</Created><Network ' 'code="1G" startDate="2012-01-01T00:00:00Z" ' 'endDate="2017-12-31T00:00:00Z" ' 'restrictedStatus="open"><Description>ScanArray ' 'Core</Description><Identifier ' 'type="DOI">10.14470/6T569239</Identifier><Station ' 'code="SA39" startDate="2012-10-01T00:00:00Z" ' 'endDate="2017-05-22T00:00:00Z" ' 'restrictedStatus="open"><Latitude>64.0718</Latitude><Longitude>14.09061</Longitude><Elevation>0</Elevation><Site><Name>Station ' 'Valsjoebyn, ' 'Sweden</Name><Country>Sweden</Country></Site><CreationDate>2012-10-01T00:00:00Z</CreationDate></Station><Station ' 'code="SA44" startDate="2012-09-30T00:00:00Z" ' 'endDate="2016-10-12T00:00:00Z" ' 'restrictedStatus="open"><Latitude>63.70518</Latitude><Longitude>12.34839</Longitude><Elevation>0</Elevation><Site><Name>Station ' 'Jaerpen, ' 'Sweden</Name><Country>Sweden</Country></Site><CreationDate>2012-09-30T00:00:00Z</CreationDate></Station><Station ' 'code="SA48" startDate="2012-09-29T00:00:00Z" ' 'endDate="2015-07-15T00:00:00Z" ' 'restrictedStatus="open"><Latitude>63.23047</Latitude><Longitude>13.67801</Longitude><Elevation>0</Elevation><Site><Name>Station ' 'Moersil, ' 'Sweden</Name><Country>Sweden</Country></Site><CreationDate>2012-09-29T00:00:00Z</CreationDate></Station><Station ' 'code="SA50" startDate="2012-10-02T00:00:00Z" ' 'endDate="2017-05-24T00:00:00Z" ' 'restrictedStatus="open"><Latitude>63.11401</Latitude><Longitude>16.32236</Longitude><Elevation>0</Elevation><Site><Name>Station ' 'Hammarstrand, ' 'Sweden</Name><Country>Sweden</Country></Site><CreationDate>2012-10-02T00:00:00Z</CreationDate></Station><Station ' 'code="SA57" startDate="2012-09-28T00:00:00Z" ' 'endDate="2017-05-21T00:00:00Z" ' 'restrictedStatus="open"><Latitude>62.44944</Latitude><Longitude>14.92132</Longitude><Elevation>0</Elevation><Site><Name>Station ' 'Oeverturingen, ' 'Sweden</Name><Country>Sweden</Country></Site><CreationDate>2012-09-28T00:00:00Z</CreationDate></Station><Station ' 'code="SA53" startDate="2015-03-16T00:00:00Z" ' 'endDate="2015-11-12T00:00:00Z" ' 'restrictedStatus="open"><Latitude>62.80045</Latitude><Longitude>13.05265</Longitude><Elevation>0</Elevation><Site><Name>Station ' 'Storsjoekapell, ' 'Sweden</Name><Country>Sweden</Country></Site><CreationDate>2015-03-16T00:00:00Z</CreationDate></Station><Station ' 'code="SA35" startDate="2015-09-08T00:00:00Z" ' 'endDate="2017-04-28T00:00:00Z" ' 'restrictedStatus="open"><Latitude>64.53397</Latitude><Longitude>12.40071</Longitude><Elevation>0</Elevation><Site><Name>Station ' 'Grong, ' 'Norway</Name><Country>Norway</Country></Site><CreationDate>2015-09-08T00:00:00Z</CreationDate></Station><Station ' 'code="SA40" startDate="2015-09-07T00:00:00Z" ' 'endDate="2016-10-20T00:00:00Z" ' 'restrictedStatus="open"><Latitude>64.04353</Latitude><Longitude>11.33531</Longitude><Elevation>0</Elevation><Site><Name>Station ' 'Steinkjer, ' 'Norway</Name><Country>Norway</Country></Site><CreationDate>2015-09-07T00:00:00Z</CreationDate></Station><Station ' 'code="SA51" startDate="2012-10-08T00:00:00Z" ' 'endDate="2017-07-10T00:00:00Z" ' 'restrictedStatus="open"><Latitude>63.04408</Latitude><Longitude>11.6437</Longitude><Elevation>0</Elevation><Site><Name>Station ' 'Tydal, ' 'Norway</Name><Country>Norway</Country></Site><CreationDate>2012-10-08T00:00:00Z</CreationDate></Station><Station ' 'code="SA43" startDate="2015-03-18T00:00:00Z" ' 'endDate="2017-01-11T00:00:00Z" ' 'restrictedStatus="open"><Latitude>63.81655</Latitude><Longitude>15.51477</Longitude><Elevation>0</Elevation><Site><Name>Station ' 'Tullingsas, ' 'Sweden</Name><Country>Sweden</Country></Site><CreationDate>2015-03-18T00:00:00Z</CreationDate></Station></Network></FDSNStationXML>\n', 10: '<?xml version="1.0" encoding="UTF-8"?><FDSNStationXML ' 'xmlns="http://www.fdsn.org/xml/station/1" ' 'schemaVersion="1.2"><Source>SeisComP</Source><Sender>UIB</Sender><Created>2023-09-12T10:04:46.859277Z</Created><Network ' 'code="NS" startDate="2023-06-06T00:00:00Z" ' 'endDate="2029-12-31T00:00:00Z"><Description>UIB</Description><Station ' 'code="ROROS" startDate="2023-06-06T00:00:00Z" ' 'endDate="2029-12-31T00:00:00Z"><Latitude>62.5615</Latitude><Longitude>11.55517</Longitude><Elevation>0</Elevation><Site><Name>Roros, ' 'Norway</Name></Site><CreationDate>2023-06-06T00:00:00Z</CreationDate></Station></Network></FDSNStationXML>\n'}, 'Kola SG-3': { 1: '<?xml version="1.0" encoding="UTF-8"?><FDSNStationXML ' 'xmlns="http://www.fdsn.org/xml/station/1" ' 'schemaVersion="1.2"><Source>SeisComP</Source><Sender>GFZ</Sender><Created>2023-09-12T10:04:28.741024Z</Created><Network ' 'code="1G" startDate="2012-01-01T00:00:00Z" ' 'endDate="2017-12-31T00:00:00Z" ' 'restrictedStatus="open"><Description>ScanArray ' 'Core</Description><Identifier ' 'type="DOI">10.14470/6T569239</Identifier><Station ' 'code="SA03" startDate="2012-08-03T00:00:00Z" ' 'endDate="2017-08-31T00:00:00Z" ' 'restrictedStatus="open"><Latitude>70.5034</Latitude><Longitude>29.06682</Longitude><Elevation>272</Elevation><Site><Name>Station ' 'Monteret, ' 'Norway</Name><Country>Norway</Country></Site><CreationDate>2012-08-03T00:00:00Z</CreationDate></Station><Station ' 'code="SA05" startDate="2013-09-24T00:00:00Z" ' 'endDate="2015-05-19T00:00:00Z" ' 'restrictedStatus="open"><Latitude>70.28404</Latitude><Longitude>31.00829</Longitude><Elevation>38</Elevation><Site><Name>Station ' 'Kiberg, ' 'Norway</Name><Country>Norway</Country></Site><CreationDate>2013-09-24T00:00:00Z</CreationDate></Station><Station ' 'code="SA09" startDate="2013-09-23T00:00:00Z" ' 'endDate="2016-05-09T00:00:00Z" ' 'restrictedStatus="open"><Latitude>69.45361</Latitude><Longitude>30.03907</Longitude><Elevation>64</Elevation><Site><Name>Station ' 'Svanvik, ' 'Norway</Name><Country>Norway</Country></Site><CreationDate>2013-09-23T00:00:00Z</CreationDate></Station><Station ' 'code="SA10" startDate="2013-09-25T00:00:00Z" ' 'endDate="2016-05-11T00:00:00Z" ' 'restrictedStatus="open"><Latitude>69.20068</Latitude><Longitude>25.69157</Longitude><Elevation>186</Elevation><Site><Name>Station ' 'Mareveadji, ' 'Norway</Name><Country>Norway</Country></Site><CreationDate>2013-09-25T00:00:00Z</CreationDate></Station></Network><Network ' 'code="HE" startDate="1980-01-01T00:00:00Z" ' 'restrictedStatus="open"><Description>Finnish National ' 'Seismic Network</Description><Identifier ' 'type="DOI">10.14470/UR044600</Identifier><Station ' 'code="KEV" startDate="1980-01-01T00:00:00Z" ' 'restrictedStatus="open"><Latitude>69.75651</Latitude><Longitude>27.00356</Longitude><Elevation>81</Elevation><Site><Name>Station ' 'Kevo, ' 'Finland</Name><Country>Finland</Country></Site><CreationDate>1980-01-01T00:00:00Z</CreationDate></Station></Network></FDSNStationXML>\n', 2: '<?xml version="1.0" encoding="UTF-8"?><FDSNStationXML ' 'xmlns="http://www.fdsn.org/xml/station/1" ' 'schemaVersion="1.2"><Source>SeisComP</Source><Sender>GFZ</Sender><Created>2023-09-12T10:04:29.908546Z</Created><Network ' 'code="1G" startDate="2012-01-01T00:00:00Z" ' 'endDate="2017-12-31T00:00:00Z" ' 'restrictedStatus="open"><Description>ScanArray ' 'Core</Description><Identifier ' 'type="DOI">10.14470/6T569239</Identifier><Station ' 'code="SA03" startDate="2012-08-03T00:00:00Z" ' 'endDate="2017-08-31T00:00:00Z" ' 'restrictedStatus="open"><Latitude>70.5034</Latitude><Longitude>29.06682</Longitude><Elevation>272</Elevation><Site><Name>Station ' 'Monteret, ' 'Norway</Name><Country>Norway</Country></Site><CreationDate>2012-08-03T00:00:00Z</CreationDate></Station><Station ' 'code="SA05" startDate="2013-09-24T00:00:00Z" ' 'endDate="2015-05-19T00:00:00Z" ' 'restrictedStatus="open"><Latitude>70.28404</Latitude><Longitude>31.00829</Longitude><Elevation>38</Elevation><Site><Name>Station ' 'Kiberg, ' 'Norway</Name><Country>Norway</Country></Site><CreationDate>2013-09-24T00:00:00Z</CreationDate></Station><Station ' 'code="SA09" startDate="2013-09-23T00:00:00Z" ' 'endDate="2016-05-09T00:00:00Z" ' 'restrictedStatus="open"><Latitude>69.45361</Latitude><Longitude>30.03907</Longitude><Elevation>64</Elevation><Site><Name>Station ' 'Svanvik, ' 'Norway</Name><Country>Norway</Country></Site><CreationDate>2013-09-23T00:00:00Z</CreationDate></Station><Station ' 'code="SA10" startDate="2013-09-25T00:00:00Z" ' 'endDate="2016-05-11T00:00:00Z" ' 'restrictedStatus="open"><Latitude>69.20068</Latitude><Longitude>25.69157</Longitude><Elevation>186</Elevation><Site><Name>Station ' 'Mareveadji, ' 'Norway</Name><Country>Norway</Country></Site><CreationDate>2013-09-25T00:00:00Z</CreationDate></Station></Network><Network ' 'code="HE" startDate="1980-01-01T00:00:00Z" ' 'restrictedStatus="open"><Description>Finnish National ' 'Seismic Network</Description><Identifier ' 'type="DOI">10.14470/UR044600</Identifier><Station ' 'code="KEV" startDate="1980-01-01T00:00:00Z" ' 'restrictedStatus="open"><Latitude>69.75651</Latitude><Longitude>27.00356</Longitude><Elevation>81</Elevation><Site><Name>Station ' 'Kevo, ' 'Finland</Name><Country>Finland</Country></Site><CreationDate>1980-01-01T00:00:00Z</CreationDate></Station></Network></FDSNStationXML>\n', 10: '<?xml version="1.0" ' 'encoding="UTF-8"?><FDSNStationXML ' 'xmlns="http://www.fdsn.org/xml/station/1" ' 'schemaVersion="1.2"><Source>SeisComP</Source><Sender>UIB</Sender><Created>2023-09-12T10:04:46.99027Z</Created><Network ' 'code="NS" startDate="1980-01-01T00:00:00Z" ' 'restrictedStatus="open"><Description>UIB</Description><Station ' 'code="VADS" startDate="2016-09-07T00:00:00Z" ' 'endDate="2029-12-31T00:00:00Z" ' 'restrictedStatus="open"><Latitude>70.12016</Latitude><Longitude>29.365</Longitude><Elevation>105</Elevation><Site><Name>Vadso, ' 'Norway</Name><Country> ' 'Norway</Country></Site><CreationDate>2016-09-07T00:00:00Z</CreationDate></Station></Network></FDSNStationXML>\n'}}
List XML attributes with full namespace
for key, value in SEIS.items():
for subkey, subvalue in value.items():
elemList = []
for elem in ET.fromstring(subvalue).iter():
elemList.append(elem.tag)
pp.pprint(elemList)
[ '{http://www.fdsn.org/xml/station/1}FDSNStationXML', '{http://www.fdsn.org/xml/station/1}Source', '{http://www.fdsn.org/xml/station/1}Sender', '{http://www.fdsn.org/xml/station/1}Created', '{http://www.fdsn.org/xml/station/1}Network', '{http://www.fdsn.org/xml/station/1}Description', '{http://www.fdsn.org/xml/station/1}Station', '{http://www.fdsn.org/xml/station/1}Latitude', '{http://www.fdsn.org/xml/station/1}Longitude', '{http://www.fdsn.org/xml/station/1}Elevation', '{http://www.fdsn.org/xml/station/1}Site', '{http://www.fdsn.org/xml/station/1}Name', '{http://www.fdsn.org/xml/station/1}Country', '{http://www.fdsn.org/xml/station/1}CreationDate']
Extract station information and add it to the borehole dictonary, compile a dictionary of unique seismic stations with data providers
stationdict = {}
for key, value in SEIS.items():
boreholes[key]['SeisStation'] = {}
for subkey, subvalue in value.items():
xml = ET.fromstring(subvalue)
networkcode = xml.find("{http://www.fdsn.org/xml/station/1}Network").get('code')
provider = xml.find("{http://www.fdsn.org/xml/station/1}Sender").text
try:
test = (boreholes[key]['SeisStation'][networkcode])
except:
boreholes[key]['SeisStation'][networkcode] = {}
for network in xml.iter('{http://www.fdsn.org/xml/station/1}Network'):
for station in network.iter("{http://www.fdsn.org/xml/station/1}Station"):
stationcode = station.get('code')
stationdatestart = station.get('startdate')
stationdateend = station.get('enddate')
locationgml = 'POINT(' + station.find(".//{http://www.fdsn.org/xml/station/1}Latitude").text + ' ' + station.find(".//{http://www.fdsn.org/xml/station/1}Longitude").text + ' ' + station.find(".//{http://www.fdsn.org/xml/station/1}Elevation").text + ')'
boreholes[key]['SeisStation'][networkcode][stationcode] = locationgml
stationdict[stationcode] = [provider, networkcode]
print('Boreholes dictionary:')
pp.pprint(boreholes)
print('Seismic stations with data providers and network:')
pp.pprint(stationdict)
Boreholes dictionary: { 'COSC-1 A': { 'GML': 'POINT(63.40163 13.20292)', 'GNSS': {'GRN0': 'POINT(63.0414 13.9679)'}, 'SeisStation': { '1G': { 'SA35': 'POINT(64.53397 ' '12.40071 0)', 'SA39': 'POINT(64.0718 ' '14.09061 0)', 'SA40': 'POINT(64.04353 ' '11.33531 0)', 'SA43': 'POINT(63.81655 ' '15.51477 0)', 'SA44': 'POINT(63.70518 ' '12.34839 0)', 'SA48': 'POINT(63.23047 ' '13.67801 0)', 'SA51': 'POINT(63.04408 ' '11.6437 0)', 'SA53': 'POINT(62.80045 ' '13.05265 0)', 'SA57': 'POINT(62.44944 ' '14.92132 0)'}, 'NS': { 'LADE': 'POINT(63.455 ' '10.44583 30)', 'NSS': 'POINT(64.53033 ' '11.96583 102)', 'ODLO': 'POINT(63.455 ' '10.44583 30)', 'ROROS': 'POINT(62.5615 ' '11.55517 0)', 'TBLU': 'POINT(63.42033 ' '10.43033 116)', 'TRON': 'POINT(63.4545 ' '10.43633 34)'}, 'UP': { 'NOD': 'POINT(63.4428 14.8573 ' '450)'}}, 'details': 'https://www.geodata.rocks/Boreholes/SD-5054_1_A', 'lithologygeologicunit': 'http://inspire.ec.europa.eu/codelist/LithologyValue/micaSchist'}, 'COSC-2 A': { 'GML': 'POINT(63.31245 13.52648)', 'GNSS': { 'GRN0': 'POINT(63.0414 13.9679)', 'HED0': 'POINT(62.4195 13.5132)'}, 'SeisStation': { '1G': { 'SA35': 'POINT(64.53397 ' '12.40071 0)', 'SA39': 'POINT(64.0718 ' '14.09061 0)', 'SA40': 'POINT(64.04353 ' '11.33531 0)', 'SA43': 'POINT(63.81655 ' '15.51477 0)', 'SA44': 'POINT(63.70518 ' '12.34839 0)', 'SA48': 'POINT(63.23047 ' '13.67801 0)', 'SA50': 'POINT(63.11401 ' '16.32236 0)', 'SA51': 'POINT(63.04408 ' '11.6437 0)', 'SA53': 'POINT(62.80045 ' '13.05265 0)', 'SA57': 'POINT(62.44944 ' '14.92132 0)'}, 'NS': { 'ROROS': 'POINT(62.5615 ' '11.55517 0)'}, 'UP': { 'NOD': 'POINT(63.4428 14.8573 ' '450)'}}, 'details': 'https://www.geodata.rocks/Boreholes/SD-5054_2_A', 'lithologygeologicunit': 'http://inspire.ec.europa.eu/codelist/LithologyValue/wacke'}, 'Kola SG-3': { 'GML': 'POINT(69.17 29.28)', 'SeisStation': { '1G': { 'KEV': 'POINT(69.75651 ' '27.00356 81)', 'SA03': 'POINT(70.5034 ' '29.06682 272)', 'SA05': 'POINT(70.28404 ' '31.00829 38)', 'SA09': 'POINT(69.45361 ' '30.03907 64)', 'SA10': 'POINT(69.20068 ' '25.69157 186)'}, 'NS': { 'VADS': 'POINT(70.12016 ' '29.365 105)'}}, 'details': 'https://www.geodata.rocks/Boreholes/SD-5016_1_A', 'lithologygeologicunit': None}} Seismic stations with data providers and network: { 'KEV': ['GFZ', '1G'], 'LADE': ['UIB', 'NS'], 'NOD': ['ODC', 'UP'], 'NSS': ['UIB', 'NS'], 'ODLO': ['UIB', 'NS'], 'ROROS': ['UIB', 'NS'], 'SA03': ['GFZ', '1G'], 'SA05': ['GFZ', '1G'], 'SA09': ['GFZ', '1G'], 'SA10': ['GFZ', '1G'], 'SA35': ['GFZ', '1G'], 'SA39': ['GFZ', '1G'], 'SA40': ['GFZ', '1G'], 'SA43': ['GFZ', '1G'], 'SA44': ['GFZ', '1G'], 'SA48': ['GFZ', '1G'], 'SA50': ['GFZ', '1G'], 'SA51': ['GFZ', '1G'], 'SA53': ['GFZ', '1G'], 'SA57': ['GFZ', '1G'], 'TBLU': ['UIB', 'NS'], 'TRON': ['UIB', 'NS'], 'VADS': ['UIB', 'NS']}
Use Obspy to retrieve the data and add data to the dictionary
from obspy.clients.fdsn import Client
from obspy.core import UTCDateTime
sensordata['Seismic'] = {}
sensordata['Seismic']['waveforms'] = {}
timestart = UTCDateTime((datetime.utcnow() - relativedelta(hours=2)))
timeend = UTCDateTime((datetime.utcnow() - relativedelta(hours=0)))
nodataforstation = []
for key, value in stationdict.items():
try:
st = Client('https://' + EIDAnodes[value[0]]).get_waveforms(value[1],key,"00","*Z",timestart,timeend)
except:
nodataforstation.append({str(key): str(EIDAnodes[value[0]])})
else:
try:
sensordata['Seismic']['waveforms'][key]
except:
sensordata['Seismic']['waveforms'][key] = {}
sensordata['Seismic']['waveforms'][key][value[1]] = st
print('No data available for this time intervall for station | from provider')
for item in nodataforstation:
for station, provider in item.items():
print(station, "|", provider)
# for station, content in sensordata['Seismic']['waveforms'].items():
# for network, data in content.items():
# data.plot()
No data available for this time intervall for station | from provider NOD | orfeus-eu.org SA39 | geofon.gfz-potsdam.de SA44 | geofon.gfz-potsdam.de SA48 | geofon.gfz-potsdam.de SA57 | geofon.gfz-potsdam.de SA53 | geofon.gfz-potsdam.de SA35 | geofon.gfz-potsdam.de SA40 | geofon.gfz-potsdam.de SA51 | geofon.gfz-potsdam.de SA43 | geofon.gfz-potsdam.de ODLO | eida.geo.uib.no TBLU | eida.geo.uib.no TRON | eida.geo.uib.no SA50 | geofon.gfz-potsdam.de SA03 | geofon.gfz-potsdam.de SA05 | geofon.gfz-potsdam.de SA09 | geofon.gfz-potsdam.de SA10 | geofon.gfz-potsdam.de KEV | geofon.gfz-potsdam.de
import folium
# define the map
map = folium.Map(location=[(lat_max + lat_min)/2,(lon_max + lon_min)/2], tiles="CartoDB positron")
map.fit_bounds([[lat_min,lon_min],[lat_max,lon_max]])
# add the borehole locations to the map
for key, value in boreholes.items():
coord = latlonfromgmlpoint(boreholes[key]['GML'])
bh_icon = folium.features.CustomIcon('./Rigg_black_large.png', icon_size=(62,72), icon_anchor=(31,36),)
bh_marker = folium.Marker(location=[coord[0],coord[1]], icon=bh_icon)
bh_pop = folium.Popup(key)
bh_marker.add_child(bh_pop)
map.add_child(bh_marker)
# plot the map object
# map
# compile data for the markers
stations = []
for key, value in boreholes.items():
if 'GNSS' in boreholes[key]:
for subkey, subvalue in boreholes[key]['GNSS'].items():
coord = latlonfromgmlpoint(subvalue)
stations.append((subkey,coord[0],coord[1]))
stations = set(stations)
for item in stations:
# define the icon for GNSS stations
gnss_icon = folium.features.CustomIcon(
'https://www.epos-eu.org/sites/default/files/2021-11/GNSS%20Data%20and%20Products%20v2.png',
icon_size=(30,30),
icon_anchor=(15, 15),
)
# define the marker
gnss_marker = folium.Marker(location=[item[1],item[2]], icon=gnss_icon, popup=folium.Popup(item[0]))
# add the marker to the map
map.add_child(gnss_marker)
# compile data for the markers
stations = []
for key, value in boreholes.items():
if 'SeisStation' in boreholes[key]:
for subkey, subvalue in boreholes[key]['SeisStation'].items():
for subsubkey, subsubvalue in subvalue.items():
coord = latlonfromgmlpoint(subsubvalue)
stations.append((subsubkey,coord[0],coord[1]))
stations = set(stations)
for item in stations:
# define the icon for seismic stations
gnss_icon = folium.features.CustomIcon(
'https://www.epos-eu.org/sites/default/files/2021-11/Seismology%20v2.png',
icon_size=(30,30),
icon_anchor=(15, 15),
)
# define the marker
seis_marker = folium.Marker(location=[item[1],item[2]], icon=gnss_icon, popup=folium.Popup(item[0]))
# add the marker to the map
map.add_child(seis_marker)
# use geopandas to read/convert diverse common geodata formats
import geopandas
# read the geopackage layer and display it
ndk = geopandas.read_file("../../external_data/NKG/NKG.gpkg", layer='nkg2016luabs_cont')
folium.GeoJson(ndk, style_function=lambda x:{'color': 'blue', 'weight': 2}, tooltip=folium.GeoJsonTooltip(fields=['Contour'])).add_to(map)
map
# read the shape file and display it
gif = geopandas.read_file("../../external_data/Glacially-Induced_Faults/GIF.shp")
folium.GeoJson(gif, style_function=lambda x:{'color': 'red'}, tooltip=folium.GeoJsonTooltip(fields=['Complex_na'])).add_to(map)
map